diff --git a/README.md b/README.md index 1dbb94f..a5a3460 100644 --- a/README.md +++ b/README.md @@ -19,14 +19,7 @@ Instantiate and use the client with the following: import { GooeyClient } from "gooeyai"; const client = new GooeyClient({ apiKey: "YOUR_API_KEY" }); -await client.animate({ - animationPrompts: [ - { - frame: "frame", - prompt: "prompt", - }, - ], -}); +await client.animate(); ``` ## Request And Response Types @@ -37,7 +30,7 @@ following namespace: ```typescript import { Gooey } from "gooeyai"; -const request: Gooey.CreateStreamRequest = { +const request: Gooey.AsyncFormVideoBotsRequest = { ... }; ``` diff --git a/package.json b/package.json index 262a18a..e1e58df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gooeyai", - "version": "0.0.1-beta18", + "version": "0.0.1-beta19", "private": false, "repository": "https://github.com/GooeyAI/typescript-sdk", "main": "./index.js", diff --git a/reference.md b/reference.md index cbf3dab..d47ce85 100644 --- a/reference.md +++ b/reference.md @@ -44,7 +44,7 @@ await client.postV3VideoBotsAsync(); ## CopilotIntegrations -
client.copilotIntegrations.videoBotsStreamCreate({ ...params }) -> Gooey.CreateStreamResponse +
client.copilotIntegrations.videoBotsStreamCreate() -> Gooey.CreateStreamResponse
@@ -57,9 +57,7 @@ await client.postV3VideoBotsAsync();
```typescript -await client.copilotIntegrations.videoBotsStreamCreate({ - integrationId: "integration_id", -}); +await client.copilotIntegrations.videoBotsStreamCreate(); ```
@@ -75,14 +73,6 @@ await client.copilotIntegrations.videoBotsStreamCreate({
-**request:** `Gooey.CreateStreamRequest` - -
-
- -
-
- **requestOptions:** `CopilotIntegrations.RequestOptions`
@@ -173,7 +163,7 @@ await client.copilotForYourEnterprise.asyncFormVideoBots();
-**request:** `Gooey.VideoBotsPageRequest` +**request:** `Gooey.AsyncFormVideoBotsRequest`
@@ -661,9 +651,7 @@ await client.bulkRunner.post();
```typescript -await client.evaluator.asyncFormBulkEval({ - documents: ["documents"], -}); +await client.evaluator.asyncFormBulkEval(); ```
@@ -679,7 +667,7 @@ await client.evaluator.asyncFormBulkEval({
-**request:** `Gooey.BulkEvalPageRequest` +**request:** `Gooey.AsyncFormBulkEvalRequest`
@@ -919,9 +907,7 @@ await client.searchYourDocsWithGpt.statusDocSearch({
```typescript -await client.smartGpt.asyncFormSmartGpt({ - inputPrompt: "input_prompt", -}); +await client.smartGpt.asyncFormSmartGpt(); ```
@@ -937,7 +923,7 @@ await client.smartGpt.asyncFormSmartGpt({
-**request:** `Gooey.SmartGptPageRequest` +**request:** `Gooey.AsyncFormSmartGptRequest`
@@ -1129,7 +1115,7 @@ await client.functions.asyncFormFunctions();
-**request:** `Gooey.FunctionsPageRequest` +**request:** `Gooey.AsyncFormFunctionsRequest`
@@ -1269,7 +1255,7 @@ await client.lipSyncing.asyncFormLipsync();
-**request:** `Gooey.LipsyncPageRequest` +**request:** `Gooey.AsyncFormLipsyncRequest`
@@ -2317,9 +2303,7 @@ await client.misc.getBalance();
```typescript -await client.misc.videoBotsBroadcast({ - text: "text", -}); +await client.misc.videoBotsBroadcast(); ```
@@ -2335,7 +2319,7 @@ await client.misc.videoBotsBroadcast({
-**request:** `Gooey.BotBroadcastRequestModel` +**request:** `Gooey.VideoBotsBroadcastRequest`
diff --git a/src/Client.ts b/src/Client.ts index 52ec3fe..730da64 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -5,8 +5,8 @@ import * as environments from "./environments"; import * as core from "./core"; import * as Gooey from "./api/index"; -import * as serializers from "./serialization/index"; import urlJoin from "url-join"; +import * as serializers from "./serialization/index"; import * as errors from "./errors/index"; import { CopilotIntegrations } from "./api/resources/copilotIntegrations/client/Client"; import { CopilotForYourEnterprise } from "./api/resources/copilotForYourEnterprise/client/Client"; @@ -65,7 +65,7 @@ export class GooeyClient { constructor(protected readonly _options: GooeyClient.Options = {}) {} /** - * @param {Gooey.DeforumSdPageRequest} request + * @param {Gooey.AnimateRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -75,18 +75,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.animate({ - * animationPrompts: [{ - * frame: "frame", - * prompt: "prompt" - * }] - * }) + * await client.animate() */ public async animate( - request: Gooey.DeforumSdPageRequest, + request: Gooey.AnimateRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -102,14 +97,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.DeforumSdPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -192,7 +186,7 @@ export class GooeyClient { } /** - * @param {Gooey.QrCodeGeneratorPageRequest} request + * @param {Gooey.QrCodeRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -202,15 +196,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.qrCode({ - * textPrompt: "text_prompt" - * }) + * await client.qrCode() */ public async qrCode( - request: Gooey.QrCodeGeneratorPageRequest, + request: Gooey.QrCodeRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -226,14 +218,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.QrCodeGeneratorPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -316,7 +307,7 @@ export class GooeyClient { } /** - * @param {Gooey.RelatedQnAPageRequest} request + * @param {Gooey.SeoPeopleAlsoAskRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -326,16 +317,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.seoPeopleAlsoAsk({ - * searchQuery: "search_query", - * siteFilter: "site_filter" - * }) + * await client.seoPeopleAlsoAsk() */ public async seoPeopleAlsoAsk( - request: Gooey.RelatedQnAPageRequest, + request: Gooey.SeoPeopleAlsoAskRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -351,14 +339,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.RelatedQnAPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -441,7 +428,7 @@ export class GooeyClient { } /** - * @param {Gooey.SeoSummaryPageRequest} request + * @param {Gooey.SeoContentRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -451,18 +438,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.seoContent({ - * searchQuery: "search_query", - * keywords: "keywords", - * title: "title", - * companyUrl: "company_url" - * }) + * await client.seoContent() */ public async seoContent( - request: Gooey.SeoSummaryPageRequest, + request: Gooey.SeoContentRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -478,14 +460,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.SeoSummaryPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -568,7 +549,7 @@ export class GooeyClient { } /** - * @param {Gooey.GoogleGptPageRequest} request + * @param {Gooey.WebSearchLlmRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -578,16 +559,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.webSearchLlm({ - * searchQuery: "search_query", - * siteFilter: "site_filter" - * }) + * await client.webSearchLlm() */ public async webSearchLlm( - request: Gooey.GoogleGptPageRequest, + request: Gooey.WebSearchLlmRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -603,14 +581,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.GoogleGptPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -693,7 +670,7 @@ export class GooeyClient { } /** - * @param {Gooey.SocialLookupEmailPageRequest} request + * @param {Gooey.PersonalizeEmailRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -703,15 +680,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.personalizeEmail({ - * emailAddress: "email_address" - * }) + * await client.personalizeEmail() */ public async personalizeEmail( - request: Gooey.SocialLookupEmailPageRequest, + request: Gooey.PersonalizeEmailRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -727,14 +702,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.SocialLookupEmailPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -817,7 +791,7 @@ export class GooeyClient { } /** - * @param {Gooey.BulkRunnerPageRequest} request + * @param {Gooey.BulkRunRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -827,22 +801,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.bulkRun({ - * documents: ["documents"], - * runUrls: ["run_urls"], - * inputColumns: { - * "key": "value" - * }, - * outputColumns: { - * "key": "value" - * } - * }) + * await client.bulkRun() */ public async bulkRun( - request: Gooey.BulkRunnerPageRequest, + request: Gooey.BulkRunRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -858,14 +823,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.BulkRunnerPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -948,7 +912,7 @@ export class GooeyClient { } /** - * @param {Gooey.DocExtractPageRequest} request + * @param {Gooey.SynthesizeDataRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -958,15 +922,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.synthesizeData({ - * documents: ["documents"] - * }) + * await client.synthesizeData() */ public async synthesizeData( - request: Gooey.DocExtractPageRequest, + request: Gooey.SynthesizeDataRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -982,14 +944,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.DocExtractPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -1072,7 +1033,7 @@ export class GooeyClient { } /** - * @param {Gooey.CompareLlmPageRequest} request + * @param {Gooey.LlmRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -1085,10 +1046,10 @@ export class GooeyClient { * await client.llm() */ public async llm( - request: Gooey.CompareLlmPageRequest = {}, + request: Gooey.LlmRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -1104,14 +1065,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.CompareLlmPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -1194,7 +1154,7 @@ export class GooeyClient { } /** - * @param {Gooey.DocSearchPageRequest} request + * @param {Gooey.RagRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -1204,15 +1164,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.rag({ - * searchQuery: "search_query" - * }) + * await client.rag() */ public async rag( - request: Gooey.DocSearchPageRequest, + request: Gooey.RagRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -1228,14 +1186,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.DocSearchPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -1318,7 +1275,7 @@ export class GooeyClient { } /** - * @param {Gooey.DocSummaryPageRequest} request + * @param {Gooey.DocSummaryRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -1328,15 +1285,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.docSummary({ - * documents: ["documents"] - * }) + * await client.docSummary() */ public async docSummary( - request: Gooey.DocSummaryPageRequest, + request: Gooey.DocSummaryRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -1352,14 +1307,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.DocSummaryPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -1442,7 +1396,7 @@ export class GooeyClient { } /** - * @param {Gooey.LipsyncTtsPageRequest} request + * @param {Gooey.LipsyncTtsRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -1452,15 +1406,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.lipsyncTts({ - * textPrompt: "text_prompt" - * }) + * await client.lipsyncTts() */ public async lipsyncTts( - request: Gooey.LipsyncTtsPageRequest, + request: Gooey.LipsyncTtsRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -1476,14 +1428,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.LipsyncTtsPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -1566,7 +1517,7 @@ export class GooeyClient { } /** - * @param {Gooey.TextToSpeechPageRequest} request + * @param {Gooey.TextToSpeechRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -1576,15 +1527,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.textToSpeech({ - * textPrompt: "text_prompt" - * }) + * await client.textToSpeech() */ public async textToSpeech( - request: Gooey.TextToSpeechPageRequest, + request: Gooey.TextToSpeechRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -1600,14 +1549,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.TextToSpeechPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -1690,7 +1638,7 @@ export class GooeyClient { } /** - * @param {Gooey.AsrPageRequest} request + * @param {Gooey.SpeechRecognitionRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -1700,15 +1648,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.speechRecognition({ - * documents: ["documents"] - * }) + * await client.speechRecognition() */ public async speechRecognition( - request: Gooey.AsrPageRequest, + request: Gooey.SpeechRecognitionRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -1724,14 +1670,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.AsrPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -1814,7 +1759,7 @@ export class GooeyClient { } /** - * @param {Gooey.Text2AudioPageRequest} request + * @param {Gooey.TextToMusicRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -1824,15 +1769,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.textToMusic({ - * textPrompt: "text_prompt" - * }) + * await client.textToMusic() */ public async textToMusic( - request: Gooey.Text2AudioPageRequest, + request: Gooey.TextToMusicRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -1848,14 +1791,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.Text2AudioPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -1938,7 +1880,7 @@ export class GooeyClient { } /** - * @param {Gooey.TranslationPageRequest} request + * @param {Gooey.TranslateRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -1951,10 +1893,10 @@ export class GooeyClient { * await client.translate() */ public async translate( - request: Gooey.TranslationPageRequest = {}, + request: Gooey.TranslateRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -1970,14 +1912,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.TranslationPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -2060,7 +2001,7 @@ export class GooeyClient { } /** - * @param {Gooey.Img2ImgPageRequest} request + * @param {Gooey.RemixImageRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -2070,15 +2011,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.remixImage({ - * inputImage: "input_image" - * }) + * await client.remixImage() */ public async remixImage( - request: Gooey.Img2ImgPageRequest, + request: Gooey.RemixImageRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -2094,14 +2033,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.Img2ImgPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -2184,7 +2122,7 @@ export class GooeyClient { } /** - * @param {Gooey.CompareText2ImgPageRequest} request + * @param {Gooey.TextToImageRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -2194,15 +2132,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.textToImage({ - * textPrompt: "text_prompt" - * }) + * await client.textToImage() */ public async textToImage( - request: Gooey.CompareText2ImgPageRequest, + request: Gooey.TextToImageRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -2218,14 +2154,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.CompareText2ImgPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -2308,7 +2243,7 @@ export class GooeyClient { } /** - * @param {Gooey.ObjectInpaintingPageRequest} request + * @param {Gooey.ProductImageRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -2318,16 +2253,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.productImage({ - * inputImage: "input_image", - * textPrompt: "text_prompt" - * }) + * await client.productImage() */ public async productImage( - request: Gooey.ObjectInpaintingPageRequest, + request: Gooey.ProductImageRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -2343,14 +2275,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.ObjectInpaintingPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -2433,7 +2364,7 @@ export class GooeyClient { } /** - * @param {Gooey.FaceInpaintingPageRequest} request + * @param {Gooey.PortraitRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -2443,16 +2374,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.portrait({ - * inputImage: "input_image", - * textPrompt: "tony stark from the iron man" - * }) + * await client.portrait() */ public async portrait( - request: Gooey.FaceInpaintingPageRequest, + request: Gooey.PortraitRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -2468,14 +2396,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.FaceInpaintingPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -2558,7 +2485,7 @@ export class GooeyClient { } /** - * @param {Gooey.EmailFaceInpaintingPageRequest} request + * @param {Gooey.ImageFromEmailRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -2568,16 +2495,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.imageFromEmail({ - * emailAddress: "sean@dara.network", - * textPrompt: "winter's day in paris" - * }) + * await client.imageFromEmail() */ public async imageFromEmail( - request: Gooey.EmailFaceInpaintingPageRequest, + request: Gooey.ImageFromEmailRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -2593,14 +2517,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.EmailFaceInpaintingPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -2683,7 +2606,7 @@ export class GooeyClient { } /** - * @param {Gooey.GoogleImageGenPageRequest} request + * @param {Gooey.ImageFromWebSearchRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -2693,16 +2616,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.imageFromWebSearch({ - * searchQuery: "search_query", - * textPrompt: "text_prompt" - * }) + * await client.imageFromWebSearch() */ public async imageFromWebSearch( - request: Gooey.GoogleImageGenPageRequest, + request: Gooey.ImageFromWebSearchRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -2718,14 +2638,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.GoogleImageGenPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -2808,7 +2727,7 @@ export class GooeyClient { } /** - * @param {Gooey.ImageSegmentationPageRequest} request + * @param {Gooey.RemoveBackgroundRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -2818,15 +2737,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.removeBackground({ - * inputImage: "input_image" - * }) + * await client.removeBackground() */ public async removeBackground( - request: Gooey.ImageSegmentationPageRequest, + request: Gooey.RemoveBackgroundRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -2842,14 +2759,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.ImageSegmentationPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -2932,7 +2848,7 @@ export class GooeyClient { } /** - * @param {Gooey.CompareUpscalerPageRequest} request + * @param {Gooey.UpscaleRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -2942,15 +2858,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.upscale({ - * scale: 1 - * }) + * await client.upscale() */ public async upscale( - request: Gooey.CompareUpscalerPageRequest, + request: Gooey.UpscaleRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -2966,14 +2880,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.CompareUpscalerPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -3056,7 +2969,7 @@ export class GooeyClient { } /** - * @param {Gooey.EmbeddingsPageRequest} request + * @param {Gooey.EmbedRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -3066,15 +2979,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.embed({ - * texts: ["texts"] - * }) + * await client.embed() */ public async embed( - request: Gooey.EmbeddingsPageRequest, + request: Gooey.EmbedRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -3090,14 +3001,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.EmbeddingsPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -3180,7 +3090,7 @@ export class GooeyClient { } /** - * @param {Gooey.RelatedQnADocPageRequest} request + * @param {Gooey.SeoPeopleAlsoAskDocRequest} request * @param {GooeyClient.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -3190,15 +3100,13 @@ export class GooeyClient { * @throws {@link Gooey.InternalServerError} * * @example - * await client.seoPeopleAlsoAskDoc({ - * searchQuery: "search_query" - * }) + * await client.seoPeopleAlsoAskDoc() */ public async seoPeopleAlsoAskDoc( - request: Gooey.RelatedQnADocPageRequest, + request: Gooey.SeoPeopleAlsoAskDocRequest = {}, requestOptions?: GooeyClient.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -3214,14 +3122,13 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.RelatedQnADocPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -3320,7 +3227,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3373,7 +3280,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3426,7 +3333,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3479,7 +3386,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3532,7 +3439,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3585,7 +3492,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3638,7 +3545,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3691,7 +3598,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3744,7 +3651,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3797,7 +3704,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3850,7 +3757,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3903,7 +3810,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -3956,7 +3863,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4009,7 +3916,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4062,7 +3969,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4115,7 +4022,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4168,7 +4075,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4221,7 +4128,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4274,7 +4181,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4327,7 +4234,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4380,7 +4287,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4433,7 +4340,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4486,7 +4393,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4539,7 +4446,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4592,7 +4499,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4645,7 +4552,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4698,7 +4605,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4751,7 +4658,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4804,7 +4711,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4857,7 +4764,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4910,7 +4817,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -4963,7 +4870,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -5016,7 +4923,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -5069,7 +4976,7 @@ export class GooeyClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/client/requests/AnimateRequest.ts b/src/api/client/requests/AnimateRequest.ts new file mode 100644 index 0000000..75483e5 --- /dev/null +++ b/src/api/client/requests/AnimateRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface AnimateRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/BulkRunRequest.ts b/src/api/client/requests/BulkRunRequest.ts new file mode 100644 index 0000000..50d9e38 --- /dev/null +++ b/src/api/client/requests/BulkRunRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface BulkRunRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/DocSummaryRequest.ts b/src/api/client/requests/DocSummaryRequest.ts new file mode 100644 index 0000000..7bb510e --- /dev/null +++ b/src/api/client/requests/DocSummaryRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface DocSummaryRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/EmbedRequest.ts b/src/api/client/requests/EmbedRequest.ts new file mode 100644 index 0000000..e801c72 --- /dev/null +++ b/src/api/client/requests/EmbedRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface EmbedRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/ImageFromEmailRequest.ts b/src/api/client/requests/ImageFromEmailRequest.ts new file mode 100644 index 0000000..fd05cfd --- /dev/null +++ b/src/api/client/requests/ImageFromEmailRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface ImageFromEmailRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/ImageFromWebSearchRequest.ts b/src/api/client/requests/ImageFromWebSearchRequest.ts new file mode 100644 index 0000000..2b6e552 --- /dev/null +++ b/src/api/client/requests/ImageFromWebSearchRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface ImageFromWebSearchRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/LipsyncTtsRequest.ts b/src/api/client/requests/LipsyncTtsRequest.ts new file mode 100644 index 0000000..7efac26 --- /dev/null +++ b/src/api/client/requests/LipsyncTtsRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface LipsyncTtsRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/LlmRequest.ts b/src/api/client/requests/LlmRequest.ts new file mode 100644 index 0000000..daae316 --- /dev/null +++ b/src/api/client/requests/LlmRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface LlmRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/PersonalizeEmailRequest.ts b/src/api/client/requests/PersonalizeEmailRequest.ts new file mode 100644 index 0000000..08e1e25 --- /dev/null +++ b/src/api/client/requests/PersonalizeEmailRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface PersonalizeEmailRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/PortraitRequest.ts b/src/api/client/requests/PortraitRequest.ts new file mode 100644 index 0000000..6a284a9 --- /dev/null +++ b/src/api/client/requests/PortraitRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface PortraitRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/ProductImageRequest.ts b/src/api/client/requests/ProductImageRequest.ts new file mode 100644 index 0000000..80f4382 --- /dev/null +++ b/src/api/client/requests/ProductImageRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface ProductImageRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/QrCodeRequest.ts b/src/api/client/requests/QrCodeRequest.ts new file mode 100644 index 0000000..bc5229d --- /dev/null +++ b/src/api/client/requests/QrCodeRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface QrCodeRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/RagRequest.ts b/src/api/client/requests/RagRequest.ts new file mode 100644 index 0000000..af5ad21 --- /dev/null +++ b/src/api/client/requests/RagRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface RagRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/RemixImageRequest.ts b/src/api/client/requests/RemixImageRequest.ts new file mode 100644 index 0000000..da6d6ac --- /dev/null +++ b/src/api/client/requests/RemixImageRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface RemixImageRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/RemoveBackgroundRequest.ts b/src/api/client/requests/RemoveBackgroundRequest.ts new file mode 100644 index 0000000..03a5fae --- /dev/null +++ b/src/api/client/requests/RemoveBackgroundRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface RemoveBackgroundRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/SeoContentRequest.ts b/src/api/client/requests/SeoContentRequest.ts new file mode 100644 index 0000000..d3a1857 --- /dev/null +++ b/src/api/client/requests/SeoContentRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface SeoContentRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/SeoPeopleAlsoAskDocRequest.ts b/src/api/client/requests/SeoPeopleAlsoAskDocRequest.ts new file mode 100644 index 0000000..e68484e --- /dev/null +++ b/src/api/client/requests/SeoPeopleAlsoAskDocRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface SeoPeopleAlsoAskDocRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/SeoPeopleAlsoAskRequest.ts b/src/api/client/requests/SeoPeopleAlsoAskRequest.ts new file mode 100644 index 0000000..dcfd701 --- /dev/null +++ b/src/api/client/requests/SeoPeopleAlsoAskRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface SeoPeopleAlsoAskRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/SpeechRecognitionRequest.ts b/src/api/client/requests/SpeechRecognitionRequest.ts new file mode 100644 index 0000000..39974c6 --- /dev/null +++ b/src/api/client/requests/SpeechRecognitionRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface SpeechRecognitionRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/SynthesizeDataRequest.ts b/src/api/client/requests/SynthesizeDataRequest.ts new file mode 100644 index 0000000..7ce5438 --- /dev/null +++ b/src/api/client/requests/SynthesizeDataRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface SynthesizeDataRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/TextToImageRequest.ts b/src/api/client/requests/TextToImageRequest.ts new file mode 100644 index 0000000..4bb33fc --- /dev/null +++ b/src/api/client/requests/TextToImageRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface TextToImageRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/TextToMusicRequest.ts b/src/api/client/requests/TextToMusicRequest.ts new file mode 100644 index 0000000..d08e82b --- /dev/null +++ b/src/api/client/requests/TextToMusicRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface TextToMusicRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/TextToSpeechRequest.ts b/src/api/client/requests/TextToSpeechRequest.ts new file mode 100644 index 0000000..789b499 --- /dev/null +++ b/src/api/client/requests/TextToSpeechRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface TextToSpeechRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/TranslateRequest.ts b/src/api/client/requests/TranslateRequest.ts new file mode 100644 index 0000000..3a95409 --- /dev/null +++ b/src/api/client/requests/TranslateRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface TranslateRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/UpscaleRequest.ts b/src/api/client/requests/UpscaleRequest.ts new file mode 100644 index 0000000..4dfafdc --- /dev/null +++ b/src/api/client/requests/UpscaleRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface UpscaleRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/WebSearchLlmRequest.ts b/src/api/client/requests/WebSearchLlmRequest.ts new file mode 100644 index 0000000..272d138 --- /dev/null +++ b/src/api/client/requests/WebSearchLlmRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface WebSearchLlmRequest { + exampleId?: string; +} diff --git a/src/api/client/requests/index.ts b/src/api/client/requests/index.ts index 03749f9..1278d59 100644 --- a/src/api/client/requests/index.ts +++ b/src/api/client/requests/index.ts @@ -1,26 +1,26 @@ -export { type DeforumSdPageRequest } from "./DeforumSdPageRequest"; -export { type QrCodeGeneratorPageRequest } from "./QrCodeGeneratorPageRequest"; -export { type RelatedQnAPageRequest } from "./RelatedQnAPageRequest"; -export { type SeoSummaryPageRequest } from "./SeoSummaryPageRequest"; -export { type GoogleGptPageRequest } from "./GoogleGptPageRequest"; -export { type SocialLookupEmailPageRequest } from "./SocialLookupEmailPageRequest"; -export { type BulkRunnerPageRequest } from "./BulkRunnerPageRequest"; -export { type DocExtractPageRequest } from "./DocExtractPageRequest"; -export { type CompareLlmPageRequest } from "./CompareLlmPageRequest"; -export { type DocSearchPageRequest } from "./DocSearchPageRequest"; -export { type DocSummaryPageRequest } from "./DocSummaryPageRequest"; -export { type LipsyncTtsPageRequest } from "./LipsyncTtsPageRequest"; -export { type TextToSpeechPageRequest } from "./TextToSpeechPageRequest"; -export { type AsrPageRequest } from "./AsrPageRequest"; -export { type Text2AudioPageRequest } from "./Text2AudioPageRequest"; -export { type TranslationPageRequest } from "./TranslationPageRequest"; -export { type Img2ImgPageRequest } from "./Img2ImgPageRequest"; -export { type CompareText2ImgPageRequest } from "./CompareText2ImgPageRequest"; -export { type ObjectInpaintingPageRequest } from "./ObjectInpaintingPageRequest"; -export { type FaceInpaintingPageRequest } from "./FaceInpaintingPageRequest"; -export { type EmailFaceInpaintingPageRequest } from "./EmailFaceInpaintingPageRequest"; -export { type GoogleImageGenPageRequest } from "./GoogleImageGenPageRequest"; -export { type ImageSegmentationPageRequest } from "./ImageSegmentationPageRequest"; -export { type CompareUpscalerPageRequest } from "./CompareUpscalerPageRequest"; -export { type EmbeddingsPageRequest } from "./EmbeddingsPageRequest"; -export { type RelatedQnADocPageRequest } from "./RelatedQnADocPageRequest"; +export { type AnimateRequest } from "./AnimateRequest"; +export { type QrCodeRequest } from "./QrCodeRequest"; +export { type SeoPeopleAlsoAskRequest } from "./SeoPeopleAlsoAskRequest"; +export { type SeoContentRequest } from "./SeoContentRequest"; +export { type WebSearchLlmRequest } from "./WebSearchLlmRequest"; +export { type PersonalizeEmailRequest } from "./PersonalizeEmailRequest"; +export { type BulkRunRequest } from "./BulkRunRequest"; +export { type SynthesizeDataRequest } from "./SynthesizeDataRequest"; +export { type LlmRequest } from "./LlmRequest"; +export { type RagRequest } from "./RagRequest"; +export { type DocSummaryRequest } from "./DocSummaryRequest"; +export { type LipsyncTtsRequest } from "./LipsyncTtsRequest"; +export { type TextToSpeechRequest } from "./TextToSpeechRequest"; +export { type SpeechRecognitionRequest } from "./SpeechRecognitionRequest"; +export { type TextToMusicRequest } from "./TextToMusicRequest"; +export { type TranslateRequest } from "./TranslateRequest"; +export { type RemixImageRequest } from "./RemixImageRequest"; +export { type TextToImageRequest } from "./TextToImageRequest"; +export { type ProductImageRequest } from "./ProductImageRequest"; +export { type PortraitRequest } from "./PortraitRequest"; +export { type ImageFromEmailRequest } from "./ImageFromEmailRequest"; +export { type ImageFromWebSearchRequest } from "./ImageFromWebSearchRequest"; +export { type RemoveBackgroundRequest } from "./RemoveBackgroundRequest"; +export { type UpscaleRequest } from "./UpscaleRequest"; +export { type EmbedRequest } from "./EmbedRequest"; +export { type SeoPeopleAlsoAskDocRequest } from "./SeoPeopleAlsoAskDocRequest"; diff --git a/src/api/resources/aiAnimationGenerator/client/Client.ts b/src/api/resources/aiAnimationGenerator/client/Client.ts index c4fcb43..f102db7 100644 --- a/src/api/resources/aiAnimationGenerator/client/Client.ts +++ b/src/api/resources/aiAnimationGenerator/client/Client.ts @@ -59,7 +59,7 @@ export class AiAnimationGenerator { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/aiArtQrCode/client/Client.ts b/src/api/resources/aiArtQrCode/client/Client.ts index e4a579f..5384500 100644 --- a/src/api/resources/aiArtQrCode/client/Client.ts +++ b/src/api/resources/aiArtQrCode/client/Client.ts @@ -59,7 +59,7 @@ export class AiArtQrCode { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/aiBackgroundChanger/client/Client.ts b/src/api/resources/aiBackgroundChanger/client/Client.ts index 7db5c36..251ace9 100644 --- a/src/api/resources/aiBackgroundChanger/client/Client.ts +++ b/src/api/resources/aiBackgroundChanger/client/Client.ts @@ -59,7 +59,7 @@ export class AiBackgroundChanger { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/aiGeneratedPhotoFromEmailProfileLookup/client/Client.ts b/src/api/resources/aiGeneratedPhotoFromEmailProfileLookup/client/Client.ts index ce58932..8b83a71 100644 --- a/src/api/resources/aiGeneratedPhotoFromEmailProfileLookup/client/Client.ts +++ b/src/api/resources/aiGeneratedPhotoFromEmailProfileLookup/client/Client.ts @@ -59,7 +59,7 @@ export class AiGeneratedPhotoFromEmailProfileLookup { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/aiImageWithAFace/client/Client.ts b/src/api/resources/aiImageWithAFace/client/Client.ts index 2ca13d9..2379ccb 100644 --- a/src/api/resources/aiImageWithAFace/client/Client.ts +++ b/src/api/resources/aiImageWithAFace/client/Client.ts @@ -59,7 +59,7 @@ export class AiImageWithAFace { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/bulkRunner/client/Client.ts b/src/api/resources/bulkRunner/client/Client.ts index e321da6..d17b12f 100644 --- a/src/api/resources/bulkRunner/client/Client.ts +++ b/src/api/resources/bulkRunner/client/Client.ts @@ -59,7 +59,7 @@ export class BulkRunner { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -144,7 +144,7 @@ export class BulkRunner { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/chyronPlantBot/client/Client.ts b/src/api/resources/chyronPlantBot/client/Client.ts index 4483baf..d72bed7 100644 --- a/src/api/resources/chyronPlantBot/client/Client.ts +++ b/src/api/resources/chyronPlantBot/client/Client.ts @@ -59,7 +59,7 @@ export class ChyronPlantBot { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/compareAiImageGenerators/client/Client.ts b/src/api/resources/compareAiImageGenerators/client/Client.ts index 685b736..e3732e6 100644 --- a/src/api/resources/compareAiImageGenerators/client/Client.ts +++ b/src/api/resources/compareAiImageGenerators/client/Client.ts @@ -59,7 +59,7 @@ export class CompareAiImageGenerators { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/compareAiImageUpscalers/client/Client.ts b/src/api/resources/compareAiImageUpscalers/client/Client.ts index 041bb6c..6a98bf2 100644 --- a/src/api/resources/compareAiImageUpscalers/client/Client.ts +++ b/src/api/resources/compareAiImageUpscalers/client/Client.ts @@ -59,7 +59,7 @@ export class CompareAiImageUpscalers { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/compareAiTranslations/client/Client.ts b/src/api/resources/compareAiTranslations/client/Client.ts index 3baf645..3db8bf0 100644 --- a/src/api/resources/compareAiTranslations/client/Client.ts +++ b/src/api/resources/compareAiTranslations/client/Client.ts @@ -59,7 +59,7 @@ export class CompareAiTranslations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/compareAiVoiceGenerators/client/Client.ts b/src/api/resources/compareAiVoiceGenerators/client/Client.ts index 0227881..f52cb7d 100644 --- a/src/api/resources/compareAiVoiceGenerators/client/Client.ts +++ b/src/api/resources/compareAiVoiceGenerators/client/Client.ts @@ -59,7 +59,7 @@ export class CompareAiVoiceGenerators { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/copilotForYourEnterprise/client/Client.ts b/src/api/resources/copilotForYourEnterprise/client/Client.ts index 0a49d73..968fac0 100644 --- a/src/api/resources/copilotForYourEnterprise/client/Client.ts +++ b/src/api/resources/copilotForYourEnterprise/client/Client.ts @@ -5,8 +5,8 @@ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as Gooey from "../../../index"; -import * as serializers from "../../../../serialization/index"; import urlJoin from "url-join"; +import * as serializers from "../../../../serialization/index"; import * as errors from "../../../../errors/index"; export declare namespace CopilotForYourEnterprise { @@ -30,7 +30,7 @@ export class CopilotForYourEnterprise { constructor(protected readonly _options: CopilotForYourEnterprise.Options = {}) {} /** - * @param {Gooey.VideoBotsPageRequest} request + * @param {Gooey.AsyncFormVideoBotsRequest} request * @param {CopilotForYourEnterprise.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -43,10 +43,10 @@ export class CopilotForYourEnterprise { * await client.copilotForYourEnterprise.asyncFormVideoBots() */ public async asyncFormVideoBots( - request: Gooey.VideoBotsPageRequest = {}, + request: Gooey.AsyncFormVideoBotsRequest = {}, requestOptions?: CopilotForYourEnterprise.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -62,14 +62,13 @@ export class CopilotForYourEnterprise { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.VideoBotsPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -181,7 +180,7 @@ export class CopilotForYourEnterprise { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/copilotForYourEnterprise/client/requests/AsyncFormVideoBotsRequest.ts b/src/api/resources/copilotForYourEnterprise/client/requests/AsyncFormVideoBotsRequest.ts new file mode 100644 index 0000000..511c59c --- /dev/null +++ b/src/api/resources/copilotForYourEnterprise/client/requests/AsyncFormVideoBotsRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface AsyncFormVideoBotsRequest { + exampleId?: string; +} diff --git a/src/api/resources/copilotForYourEnterprise/client/requests/index.ts b/src/api/resources/copilotForYourEnterprise/client/requests/index.ts index 3e0ebcf..7586726 100644 --- a/src/api/resources/copilotForYourEnterprise/client/requests/index.ts +++ b/src/api/resources/copilotForYourEnterprise/client/requests/index.ts @@ -1,2 +1,2 @@ -export { type VideoBotsPageRequest } from "./VideoBotsPageRequest"; +export { type AsyncFormVideoBotsRequest } from "./AsyncFormVideoBotsRequest"; export { type StatusVideoBotsRequest } from "./StatusVideoBotsRequest"; diff --git a/src/api/resources/copilotForYourEnterprise/index.ts b/src/api/resources/copilotForYourEnterprise/index.ts index c9240f8..5ec7692 100644 --- a/src/api/resources/copilotForYourEnterprise/index.ts +++ b/src/api/resources/copilotForYourEnterprise/index.ts @@ -1,2 +1 @@ -export * from "./types"; export * from "./client"; diff --git a/src/api/resources/copilotForYourEnterprise/types/index.ts b/src/api/resources/copilotForYourEnterprise/types/index.ts deleted file mode 100644 index 5270588..0000000 --- a/src/api/resources/copilotForYourEnterprise/types/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -export * from "./VideoBotsPageRequestSelectedModel"; -export * from "./VideoBotsPageRequestEmbeddingModel"; -export * from "./VideoBotsPageRequestCitationStyle"; -export * from "./VideoBotsPageRequestAsrModel"; -export * from "./VideoBotsPageRequestTranslationModel"; -export * from "./VideoBotsPageRequestLipsyncModel"; -export * from "./VideoBotsPageRequestResponseFormatType"; -export * from "./VideoBotsPageRequestTtsProvider"; -export * from "./VideoBotsPageRequestOpenaiVoiceName"; -export * from "./VideoBotsPageRequestOpenaiTtsModel"; diff --git a/src/api/resources/copilotIntegrations/client/Client.ts b/src/api/resources/copilotIntegrations/client/Client.ts index 17d657d..5d490c9 100644 --- a/src/api/resources/copilotIntegrations/client/Client.ts +++ b/src/api/resources/copilotIntegrations/client/Client.ts @@ -5,8 +5,8 @@ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as Gooey from "../../../index"; -import * as serializers from "../../../../serialization/index"; import urlJoin from "url-join"; +import * as serializers from "../../../../serialization/index"; import * as errors from "../../../../errors/index"; export declare namespace CopilotIntegrations { @@ -30,19 +30,15 @@ export class CopilotIntegrations { constructor(protected readonly _options: CopilotIntegrations.Options = {}) {} /** - * @param {Gooey.CreateStreamRequest} request * @param {CopilotIntegrations.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.PaymentRequiredError} * @throws {@link Gooey.UnprocessableEntityError} * * @example - * await client.copilotIntegrations.videoBotsStreamCreate({ - * integrationId: "integration_id" - * }) + * await client.copilotIntegrations.videoBotsStreamCreate() */ public async videoBotsStreamCreate( - request: Gooey.CreateStreamRequest, requestOptions?: CopilotIntegrations.RequestOptions ): Promise { const _response = await (this._options.fetcher ?? core.fetcher)({ @@ -55,13 +51,12 @@ export class CopilotIntegrations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", requestType: "json", - body: serializers.CreateStreamRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -137,7 +132,7 @@ export class CopilotIntegrations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/copilotIntegrations/client/index.ts b/src/api/resources/copilotIntegrations/client/index.ts index 415726b..cb0ff5c 100644 --- a/src/api/resources/copilotIntegrations/client/index.ts +++ b/src/api/resources/copilotIntegrations/client/index.ts @@ -1 +1 @@ -export * from "./requests"; +export {}; diff --git a/src/api/resources/copilotIntegrations/client/requests/index.ts b/src/api/resources/copilotIntegrations/client/requests/index.ts deleted file mode 100644 index 23ce184..0000000 --- a/src/api/resources/copilotIntegrations/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { type CreateStreamRequest } from "./CreateStreamRequest"; diff --git a/src/api/resources/copilotIntegrations/types/index.ts b/src/api/resources/copilotIntegrations/types/index.ts index 8b11dd6..4dfa795 100644 --- a/src/api/resources/copilotIntegrations/types/index.ts +++ b/src/api/resources/copilotIntegrations/types/index.ts @@ -1,11 +1 @@ -export * from "./CreateStreamRequestSelectedModel"; -export * from "./CreateStreamRequestEmbeddingModel"; -export * from "./CreateStreamRequestCitationStyle"; -export * from "./CreateStreamRequestAsrModel"; -export * from "./CreateStreamRequestTranslationModel"; -export * from "./CreateStreamRequestLipsyncModel"; -export * from "./CreateStreamRequestResponseFormatType"; -export * from "./CreateStreamRequestTtsProvider"; -export * from "./CreateStreamRequestOpenaiVoiceName"; -export * from "./CreateStreamRequestOpenaiTtsModel"; export * from "./VideoBotsStreamResponse"; diff --git a/src/api/resources/createAPerfectSeoOptimizedTitleParagraph/client/Client.ts b/src/api/resources/createAPerfectSeoOptimizedTitleParagraph/client/Client.ts index 815f74c..7534cc8 100644 --- a/src/api/resources/createAPerfectSeoOptimizedTitleParagraph/client/Client.ts +++ b/src/api/resources/createAPerfectSeoOptimizedTitleParagraph/client/Client.ts @@ -59,7 +59,7 @@ export class CreateAPerfectSeoOptimizedTitleParagraph { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/editAnImageWithAiPrompt/client/Client.ts b/src/api/resources/editAnImageWithAiPrompt/client/Client.ts index 1b4ef7a..76eb66b 100644 --- a/src/api/resources/editAnImageWithAiPrompt/client/Client.ts +++ b/src/api/resources/editAnImageWithAiPrompt/client/Client.ts @@ -59,7 +59,7 @@ export class EditAnImageWithAiPrompt { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/embeddings/client/Client.ts b/src/api/resources/embeddings/client/Client.ts index bf24d73..3e8e2d3 100644 --- a/src/api/resources/embeddings/client/Client.ts +++ b/src/api/resources/embeddings/client/Client.ts @@ -59,7 +59,7 @@ export class Embeddings { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -144,7 +144,7 @@ export class Embeddings { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/evaluator/client/Client.ts b/src/api/resources/evaluator/client/Client.ts index 84ad619..f75920a 100644 --- a/src/api/resources/evaluator/client/Client.ts +++ b/src/api/resources/evaluator/client/Client.ts @@ -5,8 +5,8 @@ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as Gooey from "../../../index"; -import * as serializers from "../../../../serialization/index"; import urlJoin from "url-join"; +import * as serializers from "../../../../serialization/index"; import * as errors from "../../../../errors/index"; export declare namespace Evaluator { @@ -30,7 +30,7 @@ export class Evaluator { constructor(protected readonly _options: Evaluator.Options = {}) {} /** - * @param {Gooey.BulkEvalPageRequest} request + * @param {Gooey.AsyncFormBulkEvalRequest} request * @param {Evaluator.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -40,15 +40,13 @@ export class Evaluator { * @throws {@link Gooey.InternalServerError} * * @example - * await client.evaluator.asyncFormBulkEval({ - * documents: ["documents"] - * }) + * await client.evaluator.asyncFormBulkEval() */ public async asyncFormBulkEval( - request: Gooey.BulkEvalPageRequest, + request: Gooey.AsyncFormBulkEvalRequest = {}, requestOptions?: Evaluator.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -64,14 +62,13 @@ export class Evaluator { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.BulkEvalPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -183,7 +180,7 @@ export class Evaluator { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/evaluator/client/requests/AsyncFormBulkEvalRequest.ts b/src/api/resources/evaluator/client/requests/AsyncFormBulkEvalRequest.ts new file mode 100644 index 0000000..684b6a7 --- /dev/null +++ b/src/api/resources/evaluator/client/requests/AsyncFormBulkEvalRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface AsyncFormBulkEvalRequest { + exampleId?: string; +} diff --git a/src/api/resources/evaluator/client/requests/index.ts b/src/api/resources/evaluator/client/requests/index.ts index 67f78b7..617239f 100644 --- a/src/api/resources/evaluator/client/requests/index.ts +++ b/src/api/resources/evaluator/client/requests/index.ts @@ -1,2 +1,2 @@ -export { type BulkEvalPageRequest } from "./BulkEvalPageRequest"; +export { type AsyncFormBulkEvalRequest } from "./AsyncFormBulkEvalRequest"; export { type StatusBulkEvalRequest } from "./StatusBulkEvalRequest"; diff --git a/src/api/resources/evaluator/index.ts b/src/api/resources/evaluator/index.ts index c9240f8..5ec7692 100644 --- a/src/api/resources/evaluator/index.ts +++ b/src/api/resources/evaluator/index.ts @@ -1,2 +1 @@ -export * from "./types"; export * from "./client"; diff --git a/src/api/resources/evaluator/types/index.ts b/src/api/resources/evaluator/types/index.ts deleted file mode 100644 index ec26d74..0000000 --- a/src/api/resources/evaluator/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./BulkEvalPageRequestSelectedModel"; -export * from "./BulkEvalPageRequestResponseFormatType"; diff --git a/src/api/resources/functions/client/Client.ts b/src/api/resources/functions/client/Client.ts index ad7c18b..fc8203c 100644 --- a/src/api/resources/functions/client/Client.ts +++ b/src/api/resources/functions/client/Client.ts @@ -5,8 +5,8 @@ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as Gooey from "../../../index"; -import * as serializers from "../../../../serialization/index"; import urlJoin from "url-join"; +import * as serializers from "../../../../serialization/index"; import * as errors from "../../../../errors/index"; export declare namespace Functions { @@ -30,7 +30,7 @@ export class Functions { constructor(protected readonly _options: Functions.Options = {}) {} /** - * @param {Gooey.FunctionsPageRequest} request + * @param {Gooey.AsyncFormFunctionsRequest} request * @param {Functions.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -43,10 +43,10 @@ export class Functions { * await client.functions.asyncFormFunctions() */ public async asyncFormFunctions( - request: Gooey.FunctionsPageRequest = {}, + request: Gooey.AsyncFormFunctionsRequest = {}, requestOptions?: Functions.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -62,14 +62,13 @@ export class Functions { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.FunctionsPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -181,7 +180,7 @@ export class Functions { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -266,7 +265,7 @@ export class Functions { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/functions/client/requests/AsyncFormFunctionsRequest.ts b/src/api/resources/functions/client/requests/AsyncFormFunctionsRequest.ts new file mode 100644 index 0000000..59f93ce --- /dev/null +++ b/src/api/resources/functions/client/requests/AsyncFormFunctionsRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface AsyncFormFunctionsRequest { + exampleId?: string; +} diff --git a/src/api/resources/functions/client/requests/index.ts b/src/api/resources/functions/client/requests/index.ts index 7b5769e..6eb4f54 100644 --- a/src/api/resources/functions/client/requests/index.ts +++ b/src/api/resources/functions/client/requests/index.ts @@ -1,2 +1,2 @@ -export { type FunctionsPageRequest } from "./FunctionsPageRequest"; +export { type AsyncFormFunctionsRequest } from "./AsyncFormFunctionsRequest"; export { type StatusFunctionsRequest } from "./StatusFunctionsRequest"; diff --git a/src/api/resources/generatePeopleAlsoAskSeoContent/client/Client.ts b/src/api/resources/generatePeopleAlsoAskSeoContent/client/Client.ts index 5ca5a93..c7f92ee 100644 --- a/src/api/resources/generatePeopleAlsoAskSeoContent/client/Client.ts +++ b/src/api/resources/generatePeopleAlsoAskSeoContent/client/Client.ts @@ -59,7 +59,7 @@ export class GeneratePeopleAlsoAskSeoContent { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/generateProductPhotoBackgrounds/client/Client.ts b/src/api/resources/generateProductPhotoBackgrounds/client/Client.ts index f137aa4..46dd3d4 100644 --- a/src/api/resources/generateProductPhotoBackgrounds/client/Client.ts +++ b/src/api/resources/generateProductPhotoBackgrounds/client/Client.ts @@ -59,7 +59,7 @@ export class GenerateProductPhotoBackgrounds { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/index.ts b/src/api/resources/index.ts index abeeb30..83634fa 100644 --- a/src/api/resources/index.ts +++ b/src/api/resources/index.ts @@ -1,13 +1,6 @@ export * as copilotIntegrations from "./copilotIntegrations"; export * from "./copilotIntegrations/types"; export * as copilotForYourEnterprise from "./copilotForYourEnterprise"; -export * from "./copilotForYourEnterprise/types"; -export * as evaluator from "./evaluator"; -export * from "./evaluator/types"; -export * as smartGpt from "./smartGpt"; -export * from "./smartGpt/types"; -export * as lipSyncing from "./lipSyncing"; -export * from "./lipSyncing/types"; export * as aiAnimationGenerator from "./aiAnimationGenerator"; export * as aiArtQrCode from "./aiArtQrCode"; export * as generatePeopleAlsoAskSeoContent from "./generatePeopleAlsoAskSeoContent"; @@ -15,11 +8,14 @@ export * as createAPerfectSeoOptimizedTitleParagraph from "./createAPerfectSeoOp export * as webSearchGpt3 from "./webSearchGpt3"; export * as profileLookupGpt3ForAiPersonalizedEmails from "./profileLookupGpt3ForAiPersonalizedEmails"; export * as bulkRunner from "./bulkRunner"; +export * as evaluator from "./evaluator"; export * as syntheticDataMakerForVideosPdFs from "./syntheticDataMakerForVideosPdFs"; export * as largeLanguageModelsGpt3 from "./largeLanguageModelsGpt3"; export * as searchYourDocsWithGpt from "./searchYourDocsWithGpt"; +export * as smartGpt from "./smartGpt"; export * as summarizeYourDocsWithGpt from "./summarizeYourDocsWithGpt"; export * as functions from "./functions"; +export * as lipSyncing from "./lipSyncing"; export * as lipsyncVideoWithAnyText from "./lipsyncVideoWithAnyText"; export * as compareAiVoiceGenerators from "./compareAiVoiceGenerators"; export * as speechRecognitionTranslation from "./speechRecognitionTranslation"; @@ -38,7 +34,6 @@ export * as letterWriter from "./letterWriter"; export * as embeddings from "./embeddings"; export * as peopleAlsoAskAnswersFromADoc from "./peopleAlsoAskAnswersFromADoc"; export * as misc from "./misc"; -export * from "./copilotIntegrations/client/requests"; export * from "./copilotForYourEnterprise/client/requests"; export * from "./aiAnimationGenerator/client/requests"; export * from "./aiArtQrCode/client/requests"; diff --git a/src/api/resources/largeLanguageModelsGpt3/client/Client.ts b/src/api/resources/largeLanguageModelsGpt3/client/Client.ts index 5b8e6ed..1db6576 100644 --- a/src/api/resources/largeLanguageModelsGpt3/client/Client.ts +++ b/src/api/resources/largeLanguageModelsGpt3/client/Client.ts @@ -59,7 +59,7 @@ export class LargeLanguageModelsGpt3 { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/letterWriter/client/Client.ts b/src/api/resources/letterWriter/client/Client.ts index c6d7826..5cfedea 100644 --- a/src/api/resources/letterWriter/client/Client.ts +++ b/src/api/resources/letterWriter/client/Client.ts @@ -59,7 +59,7 @@ export class LetterWriter { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/lipSyncing/client/Client.ts b/src/api/resources/lipSyncing/client/Client.ts index 3b5bde1..21698a0 100644 --- a/src/api/resources/lipSyncing/client/Client.ts +++ b/src/api/resources/lipSyncing/client/Client.ts @@ -5,8 +5,8 @@ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as Gooey from "../../../index"; -import * as serializers from "../../../../serialization/index"; import urlJoin from "url-join"; +import * as serializers from "../../../../serialization/index"; import * as errors from "../../../../errors/index"; export declare namespace LipSyncing { @@ -30,7 +30,7 @@ export class LipSyncing { constructor(protected readonly _options: LipSyncing.Options = {}) {} /** - * @param {Gooey.LipsyncPageRequest} request + * @param {Gooey.AsyncFormLipsyncRequest} request * @param {LipSyncing.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -43,10 +43,10 @@ export class LipSyncing { * await client.lipSyncing.asyncFormLipsync() */ public async asyncFormLipsync( - request: Gooey.LipsyncPageRequest = {}, + request: Gooey.AsyncFormLipsyncRequest = {}, requestOptions?: LipSyncing.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -62,14 +62,13 @@ export class LipSyncing { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.LipsyncPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -181,7 +180,7 @@ export class LipSyncing { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/lipSyncing/client/requests/AsyncFormLipsyncRequest.ts b/src/api/resources/lipSyncing/client/requests/AsyncFormLipsyncRequest.ts new file mode 100644 index 0000000..a297f2a --- /dev/null +++ b/src/api/resources/lipSyncing/client/requests/AsyncFormLipsyncRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface AsyncFormLipsyncRequest { + exampleId?: string; +} diff --git a/src/api/resources/lipSyncing/client/requests/index.ts b/src/api/resources/lipSyncing/client/requests/index.ts index 1e0c2fa..6d90c0b 100644 --- a/src/api/resources/lipSyncing/client/requests/index.ts +++ b/src/api/resources/lipSyncing/client/requests/index.ts @@ -1,2 +1,2 @@ -export { type LipsyncPageRequest } from "./LipsyncPageRequest"; +export { type AsyncFormLipsyncRequest } from "./AsyncFormLipsyncRequest"; export { type StatusLipsyncRequest } from "./StatusLipsyncRequest"; diff --git a/src/api/resources/lipSyncing/index.ts b/src/api/resources/lipSyncing/index.ts index c9240f8..5ec7692 100644 --- a/src/api/resources/lipSyncing/index.ts +++ b/src/api/resources/lipSyncing/index.ts @@ -1,2 +1 @@ -export * from "./types"; export * from "./client"; diff --git a/src/api/resources/lipSyncing/types/index.ts b/src/api/resources/lipSyncing/types/index.ts deleted file mode 100644 index 5c8618b..0000000 --- a/src/api/resources/lipSyncing/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./LipsyncPageRequestSelectedModel"; diff --git a/src/api/resources/lipsyncVideoWithAnyText/client/Client.ts b/src/api/resources/lipsyncVideoWithAnyText/client/Client.ts index 84d5127..69a9259 100644 --- a/src/api/resources/lipsyncVideoWithAnyText/client/Client.ts +++ b/src/api/resources/lipsyncVideoWithAnyText/client/Client.ts @@ -59,7 +59,7 @@ export class LipsyncVideoWithAnyText { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/misc/client/Client.ts b/src/api/resources/misc/client/Client.ts index 60277e3..37cc34d 100644 --- a/src/api/resources/misc/client/Client.ts +++ b/src/api/resources/misc/client/Client.ts @@ -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-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -89,21 +89,19 @@ export class Misc { } /** - * @param {Gooey.BotBroadcastRequestModel} request + * @param {Gooey.VideoBotsBroadcastRequest} request * @param {Misc.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.UnprocessableEntityError} * * @example - * await client.misc.videoBotsBroadcast({ - * text: "text" - * }) + * await client.misc.videoBotsBroadcast() */ public async videoBotsBroadcast( - request: Gooey.BotBroadcastRequestModel, + request: Gooey.VideoBotsBroadcastRequest = {}, requestOptions?: Misc.RequestOptions ): Promise { - const { exampleId, runId, ..._body } = request; + const { exampleId, runId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -123,14 +121,13 @@ export class Misc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.BotBroadcastRequestModel.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, diff --git a/src/api/resources/misc/client/requests/VideoBotsBroadcastRequest.ts b/src/api/resources/misc/client/requests/VideoBotsBroadcastRequest.ts new file mode 100644 index 0000000..60f12a0 --- /dev/null +++ b/src/api/resources/misc/client/requests/VideoBotsBroadcastRequest.ts @@ -0,0 +1,12 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface VideoBotsBroadcastRequest { + exampleId?: string; + runId?: string; +} diff --git a/src/api/resources/misc/client/requests/index.ts b/src/api/resources/misc/client/requests/index.ts index 24aff2a..e4f3d03 100644 --- a/src/api/resources/misc/client/requests/index.ts +++ b/src/api/resources/misc/client/requests/index.ts @@ -1 +1 @@ -export { type BotBroadcastRequestModel } from "./BotBroadcastRequestModel"; +export { type VideoBotsBroadcastRequest } from "./VideoBotsBroadcastRequest"; diff --git a/src/api/resources/peopleAlsoAskAnswersFromADoc/client/Client.ts b/src/api/resources/peopleAlsoAskAnswersFromADoc/client/Client.ts index 0b45d0d..d26f1a3 100644 --- a/src/api/resources/peopleAlsoAskAnswersFromADoc/client/Client.ts +++ b/src/api/resources/peopleAlsoAskAnswersFromADoc/client/Client.ts @@ -59,7 +59,7 @@ export class PeopleAlsoAskAnswersFromADoc { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/profileLookupGpt3ForAiPersonalizedEmails/client/Client.ts b/src/api/resources/profileLookupGpt3ForAiPersonalizedEmails/client/Client.ts index 7ec4d96..88e230f 100644 --- a/src/api/resources/profileLookupGpt3ForAiPersonalizedEmails/client/Client.ts +++ b/src/api/resources/profileLookupGpt3ForAiPersonalizedEmails/client/Client.ts @@ -59,7 +59,7 @@ export class ProfileLookupGpt3ForAiPersonalizedEmails { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/renderImageSearchResultsWithAi/client/Client.ts b/src/api/resources/renderImageSearchResultsWithAi/client/Client.ts index d5d1424..b7a8d21 100644 --- a/src/api/resources/renderImageSearchResultsWithAi/client/Client.ts +++ b/src/api/resources/renderImageSearchResultsWithAi/client/Client.ts @@ -59,7 +59,7 @@ export class RenderImageSearchResultsWithAi { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/searchYourDocsWithGpt/client/Client.ts b/src/api/resources/searchYourDocsWithGpt/client/Client.ts index 9f1f70b..a782fe6 100644 --- a/src/api/resources/searchYourDocsWithGpt/client/Client.ts +++ b/src/api/resources/searchYourDocsWithGpt/client/Client.ts @@ -59,7 +59,7 @@ export class SearchYourDocsWithGpt { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/smartGpt/client/Client.ts b/src/api/resources/smartGpt/client/Client.ts index 4ace7d1..a3f3d58 100644 --- a/src/api/resources/smartGpt/client/Client.ts +++ b/src/api/resources/smartGpt/client/Client.ts @@ -5,8 +5,8 @@ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as Gooey from "../../../index"; -import * as serializers from "../../../../serialization/index"; import urlJoin from "url-join"; +import * as serializers from "../../../../serialization/index"; import * as errors from "../../../../errors/index"; export declare namespace SmartGpt { @@ -30,7 +30,7 @@ export class SmartGpt { constructor(protected readonly _options: SmartGpt.Options = {}) {} /** - * @param {Gooey.SmartGptPageRequest} request + * @param {Gooey.AsyncFormSmartGptRequest} request * @param {SmartGpt.RequestOptions} requestOptions - Request-specific configuration. * * @throws {@link Gooey.BadRequestError} @@ -40,15 +40,13 @@ export class SmartGpt { * @throws {@link Gooey.InternalServerError} * * @example - * await client.smartGpt.asyncFormSmartGpt({ - * inputPrompt: "input_prompt" - * }) + * await client.smartGpt.asyncFormSmartGpt() */ public async asyncFormSmartGpt( - request: Gooey.SmartGptPageRequest, + request: Gooey.AsyncFormSmartGptRequest = {}, requestOptions?: SmartGpt.RequestOptions ): Promise { - const { exampleId, ..._body } = request; + const { exampleId } = request; const _queryParams: Record = {}; if (exampleId != null) { _queryParams["example_id"] = exampleId; @@ -64,14 +62,13 @@ export class SmartGpt { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, contentType: "application/json", queryParameters: _queryParams, requestType: "json", - body: serializers.SmartGptPageRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, maxRetries: requestOptions?.maxRetries, abortSignal: requestOptions?.abortSignal, @@ -183,7 +180,7 @@ export class SmartGpt { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -268,7 +265,7 @@ export class SmartGpt { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/smartGpt/client/requests/AsyncFormSmartGptRequest.ts b/src/api/resources/smartGpt/client/requests/AsyncFormSmartGptRequest.ts new file mode 100644 index 0000000..75977e3 --- /dev/null +++ b/src/api/resources/smartGpt/client/requests/AsyncFormSmartGptRequest.ts @@ -0,0 +1,11 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +/** + * @example + * {} + */ +export interface AsyncFormSmartGptRequest { + exampleId?: string; +} diff --git a/src/api/resources/smartGpt/client/requests/index.ts b/src/api/resources/smartGpt/client/requests/index.ts index bf453a3..915a8ab 100644 --- a/src/api/resources/smartGpt/client/requests/index.ts +++ b/src/api/resources/smartGpt/client/requests/index.ts @@ -1,2 +1,2 @@ -export { type SmartGptPageRequest } from "./SmartGptPageRequest"; +export { type AsyncFormSmartGptRequest } from "./AsyncFormSmartGptRequest"; export { type StatusSmartGptRequest } from "./StatusSmartGptRequest"; diff --git a/src/api/resources/smartGpt/index.ts b/src/api/resources/smartGpt/index.ts index c9240f8..5ec7692 100644 --- a/src/api/resources/smartGpt/index.ts +++ b/src/api/resources/smartGpt/index.ts @@ -1,2 +1 @@ -export * from "./types"; export * from "./client"; diff --git a/src/api/resources/smartGpt/types/index.ts b/src/api/resources/smartGpt/types/index.ts deleted file mode 100644 index ba40064..0000000 --- a/src/api/resources/smartGpt/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./SmartGptPageRequestSelectedModel"; -export * from "./SmartGptPageRequestResponseFormatType"; diff --git a/src/api/resources/speechRecognitionTranslation/client/Client.ts b/src/api/resources/speechRecognitionTranslation/client/Client.ts index 4b6895e..27435c2 100644 --- a/src/api/resources/speechRecognitionTranslation/client/Client.ts +++ b/src/api/resources/speechRecognitionTranslation/client/Client.ts @@ -59,7 +59,7 @@ export class SpeechRecognitionTranslation { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/summarizeYourDocsWithGpt/client/Client.ts b/src/api/resources/summarizeYourDocsWithGpt/client/Client.ts index f9f0b18..e472103 100644 --- a/src/api/resources/summarizeYourDocsWithGpt/client/Client.ts +++ b/src/api/resources/summarizeYourDocsWithGpt/client/Client.ts @@ -59,7 +59,7 @@ export class SummarizeYourDocsWithGpt { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/syntheticDataMakerForVideosPdFs/client/Client.ts b/src/api/resources/syntheticDataMakerForVideosPdFs/client/Client.ts index 6c665fc..d01800e 100644 --- a/src/api/resources/syntheticDataMakerForVideosPdFs/client/Client.ts +++ b/src/api/resources/syntheticDataMakerForVideosPdFs/client/Client.ts @@ -59,7 +59,7 @@ export class SyntheticDataMakerForVideosPdFs { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/textGuidedAudioGenerator/client/Client.ts b/src/api/resources/textGuidedAudioGenerator/client/Client.ts index 989f1b0..fef0e95 100644 --- a/src/api/resources/textGuidedAudioGenerator/client/Client.ts +++ b/src/api/resources/textGuidedAudioGenerator/client/Client.ts @@ -59,7 +59,7 @@ export class TextGuidedAudioGenerator { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/webSearchGpt3/client/Client.ts b/src/api/resources/webSearchGpt3/client/Client.ts index 79cbd6e..93419b5 100644 --- a/src/api/resources/webSearchGpt3/client/Client.ts +++ b/src/api/resources/webSearchGpt3/client/Client.ts @@ -59,7 +59,7 @@ export class WebSearchGpt3 { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "gooeyai", - "X-Fern-SDK-Version": "0.0.1-beta18", + "X-Fern-SDK-Version": "0.0.1-beta19", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/client/requests/AsrPageRequest.ts b/src/api/types/AsrPageRequest.ts similarity index 88% rename from src/api/client/requests/AsrPageRequest.ts rename to src/api/types/AsrPageRequest.ts index 862b398..cfdac8e 100644 --- a/src/api/client/requests/AsrPageRequest.ts +++ b/src/api/types/AsrPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * documents: ["documents"] - * } - */ export interface AsrPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/resources/misc/client/requests/BotBroadcastRequestModel.ts b/src/api/types/BotBroadcastRequestModel.ts similarity index 80% rename from src/api/resources/misc/client/requests/BotBroadcastRequestModel.ts rename to src/api/types/BotBroadcastRequestModel.ts index 267b83e..d9702a9 100644 --- a/src/api/resources/misc/client/requests/BotBroadcastRequestModel.ts +++ b/src/api/types/BotBroadcastRequestModel.ts @@ -2,17 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * text: "text" - * } - */ export interface BotBroadcastRequestModel { - exampleId?: string; - runId?: string; /** Message to broadcast to all users */ text: string; /** Audio URL to send to all users */ diff --git a/src/api/resources/evaluator/client/requests/BulkEvalPageRequest.ts b/src/api/types/BulkEvalPageRequest.ts similarity index 78% rename from src/api/resources/evaluator/client/requests/BulkEvalPageRequest.ts rename to src/api/types/BulkEvalPageRequest.ts index 8e70720..d8269d4 100644 --- a/src/api/resources/evaluator/client/requests/BulkEvalPageRequest.ts +++ b/src/api/types/BulkEvalPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * documents: ["documents"] - * } - */ export interface BulkEvalPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; @@ -19,7 +12,6 @@ export interface BulkEvalPageRequest { * Upload or link to a CSV or google sheet that contains your sample input data. * For example, for Copilot, this would sample questions or for Art QR Code, would would be pairs of image descriptions and URLs. * Remember to includes header names in your CSV too. - * */ documents: string[]; /** @@ -28,10 +20,7 @@ export interface BulkEvalPageRequest { * */ evalPrompts?: Gooey.EvalPrompt[]; - /** - * Aggregate using one or more operations. Uses [pandas](https://pandas.pydata.org/pandas-docs/stable/reference/groupby.html#dataframegroupby-computations-descriptive-stats). - * - */ + /** Aggregate using one or more operations. Uses [pandas](https://pandas.pydata.org/pandas-docs/stable/reference/groupby.html#dataframegroupby-computations-descriptive-stats). */ aggFunctions?: Gooey.AggFunction[]; selectedModel?: Gooey.BulkEvalPageRequestSelectedModel; avoidRepetition?: boolean; diff --git a/src/api/resources/evaluator/types/BulkEvalPageRequestResponseFormatType.ts b/src/api/types/BulkEvalPageRequestResponseFormatType.ts similarity index 100% rename from src/api/resources/evaluator/types/BulkEvalPageRequestResponseFormatType.ts rename to src/api/types/BulkEvalPageRequestResponseFormatType.ts diff --git a/src/api/resources/evaluator/types/BulkEvalPageRequestSelectedModel.ts b/src/api/types/BulkEvalPageRequestSelectedModel.ts similarity index 100% rename from src/api/resources/evaluator/types/BulkEvalPageRequestSelectedModel.ts rename to src/api/types/BulkEvalPageRequestSelectedModel.ts diff --git a/src/api/client/requests/BulkRunnerPageRequest.ts b/src/api/types/BulkRunnerPageRequest.ts similarity index 56% rename from src/api/client/requests/BulkRunnerPageRequest.ts rename to src/api/types/BulkRunnerPageRequest.ts index 3ff56d4..33da25b 100644 --- a/src/api/client/requests/BulkRunnerPageRequest.ts +++ b/src/api/types/BulkRunnerPageRequest.ts @@ -2,23 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * documents: ["documents"], - * runUrls: ["run_urls"], - * inputColumns: { - * "key": "value" - * }, - * outputColumns: { - * "key": "value" - * } - * } - */ export interface BulkRunnerPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; @@ -26,29 +12,18 @@ export interface BulkRunnerPageRequest { * Upload or link to a CSV or google sheet that contains your sample input data. * For example, for Copilot, this would sample questions or for Art QR Code, would would be pairs of image descriptions and URLs. * Remember to includes header names in your CSV too. - * */ documents: string[]; /** * Provide one or more Gooey.AI workflow runs. * You can add multiple runs from the same recipe (e.g. two versions of your copilot) and we'll run the inputs over both of them. - * */ runUrls: string[]; - /** - * For each input field in the Gooey.AI workflow, specify the column in your input data that corresponds to it. - * - */ + /** For each input field in the Gooey.AI workflow, specify the column in your input data that corresponds to it. */ inputColumns: Record; - /** - * For each output field in the Gooey.AI workflow, specify the column name that you'd like to use for it in the output data. - * - */ + /** For each output field in the Gooey.AI workflow, specify the column name that you'd like to use for it in the output data. */ outputColumns: Record; - /** - * _(optional)_ Add one or more Gooey.AI Evaluator Workflows to evaluate the results of your runs. - * - */ + /** _(optional)_ Add one or more Gooey.AI Evaluator Workflows to evaluate the results of your runs. */ evalUrls?: string[]; settings?: Gooey.RunSettings; } diff --git a/src/api/client/requests/CompareLlmPageRequest.ts b/src/api/types/CompareLlmPageRequest.ts similarity index 87% rename from src/api/client/requests/CompareLlmPageRequest.ts rename to src/api/types/CompareLlmPageRequest.ts index 93b5011..524ac8a 100644 --- a/src/api/client/requests/CompareLlmPageRequest.ts +++ b/src/api/types/CompareLlmPageRequest.ts @@ -2,14 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * {} - */ export interface CompareLlmPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/CompareText2ImgPageRequest.ts b/src/api/types/CompareText2ImgPageRequest.ts similarity index 85% rename from src/api/client/requests/CompareText2ImgPageRequest.ts rename to src/api/types/CompareText2ImgPageRequest.ts index b1cfead..bcd1a8c 100644 --- a/src/api/client/requests/CompareText2ImgPageRequest.ts +++ b/src/api/types/CompareText2ImgPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * textPrompt: "text_prompt" - * } - */ export interface CompareText2ImgPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/CompareUpscalerPageRequest.ts b/src/api/types/CompareUpscalerPageRequest.ts similarity index 83% rename from src/api/client/requests/CompareUpscalerPageRequest.ts rename to src/api/types/CompareUpscalerPageRequest.ts index 6fae132..0102421 100644 --- a/src/api/client/requests/CompareUpscalerPageRequest.ts +++ b/src/api/types/CompareUpscalerPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * scale: 1 - * } - */ export interface CompareUpscalerPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/resources/copilotIntegrations/client/requests/CreateStreamRequest.ts b/src/api/types/CreateStreamRequest.ts similarity index 93% rename from src/api/resources/copilotIntegrations/client/requests/CreateStreamRequest.ts rename to src/api/types/CreateStreamRequest.ts index 4a3afe1..7e0e3bb 100644 --- a/src/api/resources/copilotIntegrations/client/requests/CreateStreamRequest.ts +++ b/src/api/types/CreateStreamRequest.ts @@ -2,14 +2,8 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * integrationId: "integration_id" - * } - */ export interface CreateStreamRequest { /** Your Integration ID as shown in the Copilot Integrations tab */ integrationId: string; @@ -60,7 +54,6 @@ export interface CreateStreamRequest { /** * Weightage for dense vs sparse embeddings. `0` for sparse, `1` for dense, `0.5` for equal weight. * Generally speaking, dense embeddings excel at understanding the context of the query, whereas sparse vectors excel at keyword matches. - * */ denseWeight?: number; citationStyle?: Gooey.CreateStreamRequestCitationStyle; @@ -72,15 +65,9 @@ export interface CreateStreamRequest { translationModel?: Gooey.CreateStreamRequestTranslationModel; /** Choose a language to translate incoming text & audio messages to English and responses back to your selected language. Useful for low-resource languages. */ userLanguage?: string; - /** - * Translation Glossary for User Langauge -> LLM Language (English) - * - */ + /** Translation Glossary for User Langauge -> LLM Language (English) */ inputGlossaryDocument?: string; - /** - * Translation Glossary for LLM Language (English) -> User Langauge - * - */ + /** Translation Glossary for LLM Language (English) -> User Langauge */ outputGlossaryDocument?: string; lipsyncModel?: Gooey.CreateStreamRequestLipsyncModel; /** Give your copilot superpowers by giving it access to tools. Powered by [Function calling](https://platform.openai.com/docs/guides/function-calling). */ diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestAsrModel.ts b/src/api/types/CreateStreamRequestAsrModel.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestAsrModel.ts rename to src/api/types/CreateStreamRequestAsrModel.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestCitationStyle.ts b/src/api/types/CreateStreamRequestCitationStyle.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestCitationStyle.ts rename to src/api/types/CreateStreamRequestCitationStyle.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestEmbeddingModel.ts b/src/api/types/CreateStreamRequestEmbeddingModel.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestEmbeddingModel.ts rename to src/api/types/CreateStreamRequestEmbeddingModel.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestLipsyncModel.ts b/src/api/types/CreateStreamRequestLipsyncModel.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestLipsyncModel.ts rename to src/api/types/CreateStreamRequestLipsyncModel.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestOpenaiTtsModel.ts b/src/api/types/CreateStreamRequestOpenaiTtsModel.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestOpenaiTtsModel.ts rename to src/api/types/CreateStreamRequestOpenaiTtsModel.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestOpenaiVoiceName.ts b/src/api/types/CreateStreamRequestOpenaiVoiceName.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestOpenaiVoiceName.ts rename to src/api/types/CreateStreamRequestOpenaiVoiceName.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestResponseFormatType.ts b/src/api/types/CreateStreamRequestResponseFormatType.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestResponseFormatType.ts rename to src/api/types/CreateStreamRequestResponseFormatType.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestSelectedModel.ts b/src/api/types/CreateStreamRequestSelectedModel.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestSelectedModel.ts rename to src/api/types/CreateStreamRequestSelectedModel.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestTranslationModel.ts b/src/api/types/CreateStreamRequestTranslationModel.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestTranslationModel.ts rename to src/api/types/CreateStreamRequestTranslationModel.ts diff --git a/src/api/resources/copilotIntegrations/types/CreateStreamRequestTtsProvider.ts b/src/api/types/CreateStreamRequestTtsProvider.ts similarity index 100% rename from src/api/resources/copilotIntegrations/types/CreateStreamRequestTtsProvider.ts rename to src/api/types/CreateStreamRequestTtsProvider.ts diff --git a/src/api/client/requests/DeforumSdPageRequest.ts b/src/api/types/DeforumSdPageRequest.ts similarity index 75% rename from src/api/client/requests/DeforumSdPageRequest.ts rename to src/api/types/DeforumSdPageRequest.ts index 9f465dc..1be0f47 100644 --- a/src/api/client/requests/DeforumSdPageRequest.ts +++ b/src/api/types/DeforumSdPageRequest.ts @@ -2,19 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * animationPrompts: [{ - * frame: "frame", - * prompt: "prompt" - * }] - * } - */ export interface DeforumSdPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/DocExtractPageRequest.ts b/src/api/types/DocExtractPageRequest.ts similarity index 89% rename from src/api/client/requests/DocExtractPageRequest.ts rename to src/api/types/DocExtractPageRequest.ts index 34ebd2c..71d62f5 100644 --- a/src/api/client/requests/DocExtractPageRequest.ts +++ b/src/api/types/DocExtractPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * documents: ["documents"] - * } - */ export interface DocExtractPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/DocSearchPageRequest.ts b/src/api/types/DocSearchPageRequest.ts similarity index 89% rename from src/api/client/requests/DocSearchPageRequest.ts rename to src/api/types/DocSearchPageRequest.ts index 7d01d53..d397412 100644 --- a/src/api/client/requests/DocSearchPageRequest.ts +++ b/src/api/types/DocSearchPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * searchQuery: "search_query" - * } - */ export interface DocSearchPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; @@ -26,7 +19,6 @@ export interface DocSearchPageRequest { /** * Weightage for dense vs sparse embeddings. `0` for sparse, `1` for dense, `0.5` for equal weight. * Generally speaking, dense embeddings excel at understanding the context of the query, whereas sparse vectors excel at keyword matches. - * */ denseWeight?: number; taskInstructions?: string; diff --git a/src/api/client/requests/DocSummaryPageRequest.ts b/src/api/types/DocSummaryPageRequest.ts similarity index 85% rename from src/api/client/requests/DocSummaryPageRequest.ts rename to src/api/types/DocSummaryPageRequest.ts index c57a2f4..617f9a4 100644 --- a/src/api/client/requests/DocSummaryPageRequest.ts +++ b/src/api/types/DocSummaryPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * documents: ["documents"] - * } - */ export interface DocSummaryPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/EmailFaceInpaintingPageRequest.ts b/src/api/types/EmailFaceInpaintingPageRequest.ts similarity index 83% rename from src/api/client/requests/EmailFaceInpaintingPageRequest.ts rename to src/api/types/EmailFaceInpaintingPageRequest.ts index ba4ebf3..d2ddc9c 100644 --- a/src/api/client/requests/EmailFaceInpaintingPageRequest.ts +++ b/src/api/types/EmailFaceInpaintingPageRequest.ts @@ -2,17 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * emailAddress: "sean@dara.network", - * textPrompt: "winter's day in paris" - * } - */ export interface EmailFaceInpaintingPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/EmbeddingsPageRequest.ts b/src/api/types/EmbeddingsPageRequest.ts similarity index 75% rename from src/api/client/requests/EmbeddingsPageRequest.ts rename to src/api/types/EmbeddingsPageRequest.ts index 4f6f01a..4614380 100644 --- a/src/api/client/requests/EmbeddingsPageRequest.ts +++ b/src/api/types/EmbeddingsPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * texts: ["texts"] - * } - */ export interface EmbeddingsPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/FaceInpaintingPageRequest.ts b/src/api/types/FaceInpaintingPageRequest.ts similarity index 78% rename from src/api/client/requests/FaceInpaintingPageRequest.ts rename to src/api/types/FaceInpaintingPageRequest.ts index 61ca784..85aad75 100644 --- a/src/api/client/requests/FaceInpaintingPageRequest.ts +++ b/src/api/types/FaceInpaintingPageRequest.ts @@ -2,17 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * inputImage: "input_image", - * textPrompt: "tony stark from the iron man" - * } - */ export interface FaceInpaintingPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/resources/functions/client/requests/FunctionsPageRequest.ts b/src/api/types/FunctionsPageRequest.ts similarity index 75% rename from src/api/resources/functions/client/requests/FunctionsPageRequest.ts rename to src/api/types/FunctionsPageRequest.ts index c3f1b11..5fa2515 100644 --- a/src/api/resources/functions/client/requests/FunctionsPageRequest.ts +++ b/src/api/types/FunctionsPageRequest.ts @@ -2,14 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../../../index"; +import * as Gooey from "../index"; -/** - * @example - * {} - */ export interface FunctionsPageRequest { - exampleId?: string; /** The JS code to be executed. */ code?: string; /** Variables to be used in the code */ diff --git a/src/api/client/requests/GoogleGptPageRequest.ts b/src/api/types/GoogleGptPageRequest.ts similarity index 88% rename from src/api/client/requests/GoogleGptPageRequest.ts rename to src/api/types/GoogleGptPageRequest.ts index 4d84298..34cc55e 100644 --- a/src/api/client/requests/GoogleGptPageRequest.ts +++ b/src/api/types/GoogleGptPageRequest.ts @@ -2,17 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * searchQuery: "search_query", - * siteFilter: "site_filter" - * } - */ export interface GoogleGptPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; @@ -29,7 +21,6 @@ export interface GoogleGptPageRequest { /** * Weightage for dense vs sparse embeddings. `0` for sparse, `1` for dense, `0.5` for equal weight. * Generally speaking, dense embeddings excel at understanding the context of the query, whereas sparse vectors excel at keyword matches. - * */ denseWeight?: number; avoidRepetition?: boolean; diff --git a/src/api/client/requests/GoogleImageGenPageRequest.ts b/src/api/types/GoogleImageGenPageRequest.ts similarity index 81% rename from src/api/client/requests/GoogleImageGenPageRequest.ts rename to src/api/types/GoogleImageGenPageRequest.ts index 7456e77..4b027e3 100644 --- a/src/api/client/requests/GoogleImageGenPageRequest.ts +++ b/src/api/types/GoogleImageGenPageRequest.ts @@ -2,17 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * searchQuery: "search_query", - * textPrompt: "text_prompt" - * } - */ export interface GoogleImageGenPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/ImageSegmentationPageRequest.ts b/src/api/types/ImageSegmentationPageRequest.ts similarity index 81% rename from src/api/client/requests/ImageSegmentationPageRequest.ts rename to src/api/types/ImageSegmentationPageRequest.ts index 8ed0142..546b8d5 100644 --- a/src/api/client/requests/ImageSegmentationPageRequest.ts +++ b/src/api/types/ImageSegmentationPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * inputImage: "input_image" - * } - */ export interface ImageSegmentationPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/Img2ImgPageRequest.ts b/src/api/types/Img2ImgPageRequest.ts similarity index 85% rename from src/api/client/requests/Img2ImgPageRequest.ts rename to src/api/types/Img2ImgPageRequest.ts index cd40b2e..252bc47 100644 --- a/src/api/client/requests/Img2ImgPageRequest.ts +++ b/src/api/types/Img2ImgPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * inputImage: "input_image" - * } - */ export interface Img2ImgPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/resources/lipSyncing/client/requests/LipsyncPageRequest.ts b/src/api/types/LipsyncPageRequest.ts similarity index 85% rename from src/api/resources/lipSyncing/client/requests/LipsyncPageRequest.ts rename to src/api/types/LipsyncPageRequest.ts index 7d95ffe..8000477 100644 --- a/src/api/resources/lipSyncing/client/requests/LipsyncPageRequest.ts +++ b/src/api/types/LipsyncPageRequest.ts @@ -2,14 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../../../index"; +import * as Gooey from "../index"; -/** - * @example - * {} - */ export interface LipsyncPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/resources/lipSyncing/types/LipsyncPageRequestSelectedModel.ts b/src/api/types/LipsyncPageRequestSelectedModel.ts similarity index 100% rename from src/api/resources/lipSyncing/types/LipsyncPageRequestSelectedModel.ts rename to src/api/types/LipsyncPageRequestSelectedModel.ts diff --git a/src/api/client/requests/LipsyncTtsPageRequest.ts b/src/api/types/LipsyncTtsPageRequest.ts similarity index 90% rename from src/api/client/requests/LipsyncTtsPageRequest.ts rename to src/api/types/LipsyncTtsPageRequest.ts index a0c5aff..a0b93f4 100644 --- a/src/api/client/requests/LipsyncTtsPageRequest.ts +++ b/src/api/types/LipsyncTtsPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * textPrompt: "text_prompt" - * } - */ export interface LipsyncTtsPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/ObjectInpaintingPageRequest.ts b/src/api/types/ObjectInpaintingPageRequest.ts similarity index 80% rename from src/api/client/requests/ObjectInpaintingPageRequest.ts rename to src/api/types/ObjectInpaintingPageRequest.ts index 3991c2b..dfd8a58 100644 --- a/src/api/client/requests/ObjectInpaintingPageRequest.ts +++ b/src/api/types/ObjectInpaintingPageRequest.ts @@ -2,17 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * inputImage: "input_image", - * textPrompt: "text_prompt" - * } - */ export interface ObjectInpaintingPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/QrCodeGeneratorPageRequest.ts b/src/api/types/QrCodeGeneratorPageRequest.ts similarity index 90% rename from src/api/client/requests/QrCodeGeneratorPageRequest.ts rename to src/api/types/QrCodeGeneratorPageRequest.ts index b53ba1c..4e8bb10 100644 --- a/src/api/client/requests/QrCodeGeneratorPageRequest.ts +++ b/src/api/types/QrCodeGeneratorPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * textPrompt: "text_prompt" - * } - */ export interface QrCodeGeneratorPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/RelatedQnADocPageRequest.ts b/src/api/types/RelatedQnADocPageRequest.ts similarity index 91% rename from src/api/client/requests/RelatedQnADocPageRequest.ts rename to src/api/types/RelatedQnADocPageRequest.ts index 5616f59..2366033 100644 --- a/src/api/client/requests/RelatedQnADocPageRequest.ts +++ b/src/api/types/RelatedQnADocPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * searchQuery: "search_query" - * } - */ export interface RelatedQnADocPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; @@ -26,7 +19,6 @@ export interface RelatedQnADocPageRequest { /** * Weightage for dense vs sparse embeddings. `0` for sparse, `1` for dense, `0.5` for equal weight. * Generally speaking, dense embeddings excel at understanding the context of the query, whereas sparse vectors excel at keyword matches. - * */ denseWeight?: number; taskInstructions?: string; diff --git a/src/api/client/requests/RelatedQnAPageRequest.ts b/src/api/types/RelatedQnAPageRequest.ts similarity index 88% rename from src/api/client/requests/RelatedQnAPageRequest.ts rename to src/api/types/RelatedQnAPageRequest.ts index 57305f6..48d9372 100644 --- a/src/api/client/requests/RelatedQnAPageRequest.ts +++ b/src/api/types/RelatedQnAPageRequest.ts @@ -2,17 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * searchQuery: "search_query", - * siteFilter: "site_filter" - * } - */ export interface RelatedQnAPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; @@ -29,7 +21,6 @@ export interface RelatedQnAPageRequest { /** * Weightage for dense vs sparse embeddings. `0` for sparse, `1` for dense, `0.5` for equal weight. * Generally speaking, dense embeddings excel at understanding the context of the query, whereas sparse vectors excel at keyword matches. - * */ denseWeight?: number; avoidRepetition?: boolean; diff --git a/src/api/client/requests/SeoSummaryPageRequest.ts b/src/api/types/SeoSummaryPageRequest.ts similarity index 79% rename from src/api/client/requests/SeoSummaryPageRequest.ts rename to src/api/types/SeoSummaryPageRequest.ts index f700e99..0c75f58 100644 --- a/src/api/client/requests/SeoSummaryPageRequest.ts +++ b/src/api/types/SeoSummaryPageRequest.ts @@ -2,19 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * searchQuery: "search_query", - * keywords: "keywords", - * title: "title", - * companyUrl: "company_url" - * } - */ export interface SeoSummaryPageRequest { - exampleId?: string; searchQuery: string; keywords: string; title: string; diff --git a/src/api/resources/smartGpt/client/requests/SmartGptPageRequest.ts b/src/api/types/SmartGptPageRequest.ts similarity index 82% rename from src/api/resources/smartGpt/client/requests/SmartGptPageRequest.ts rename to src/api/types/SmartGptPageRequest.ts index 087a8e2..8515337 100644 --- a/src/api/resources/smartGpt/client/requests/SmartGptPageRequest.ts +++ b/src/api/types/SmartGptPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * inputPrompt: "input_prompt" - * } - */ export interface SmartGptPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/resources/smartGpt/types/SmartGptPageRequestResponseFormatType.ts b/src/api/types/SmartGptPageRequestResponseFormatType.ts similarity index 100% rename from src/api/resources/smartGpt/types/SmartGptPageRequestResponseFormatType.ts rename to src/api/types/SmartGptPageRequestResponseFormatType.ts diff --git a/src/api/resources/smartGpt/types/SmartGptPageRequestSelectedModel.ts b/src/api/types/SmartGptPageRequestSelectedModel.ts similarity index 100% rename from src/api/resources/smartGpt/types/SmartGptPageRequestSelectedModel.ts rename to src/api/types/SmartGptPageRequestSelectedModel.ts diff --git a/src/api/client/requests/SocialLookupEmailPageRequest.ts b/src/api/types/SocialLookupEmailPageRequest.ts similarity index 82% rename from src/api/client/requests/SocialLookupEmailPageRequest.ts rename to src/api/types/SocialLookupEmailPageRequest.ts index d7ac1fe..f6d53d7 100644 --- a/src/api/client/requests/SocialLookupEmailPageRequest.ts +++ b/src/api/types/SocialLookupEmailPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * emailAddress: "email_address" - * } - */ export interface SocialLookupEmailPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/Text2AudioPageRequest.ts b/src/api/types/Text2AudioPageRequest.ts similarity index 80% rename from src/api/client/requests/Text2AudioPageRequest.ts rename to src/api/types/Text2AudioPageRequest.ts index 0dd95d9..f7e1415 100644 --- a/src/api/client/requests/Text2AudioPageRequest.ts +++ b/src/api/types/Text2AudioPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * textPrompt: "text_prompt" - * } - */ export interface Text2AudioPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/TextToSpeechPageRequest.ts b/src/api/types/TextToSpeechPageRequest.ts similarity index 88% rename from src/api/client/requests/TextToSpeechPageRequest.ts rename to src/api/types/TextToSpeechPageRequest.ts index 7b8f582..d824937 100644 --- a/src/api/client/requests/TextToSpeechPageRequest.ts +++ b/src/api/types/TextToSpeechPageRequest.ts @@ -2,16 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * { - * textPrompt: "text_prompt" - * } - */ export interface TextToSpeechPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/client/requests/TranslationPageRequest.ts b/src/api/types/TranslationPageRequest.ts similarity index 89% rename from src/api/client/requests/TranslationPageRequest.ts rename to src/api/types/TranslationPageRequest.ts index 4c78740..a21002c 100644 --- a/src/api/client/requests/TranslationPageRequest.ts +++ b/src/api/types/TranslationPageRequest.ts @@ -2,14 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../index"; +import * as Gooey from "../index"; -/** - * @example - * {} - */ export interface TranslationPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; diff --git a/src/api/resources/copilotForYourEnterprise/client/requests/VideoBotsPageRequest.ts b/src/api/types/VideoBotsPageRequest.ts similarity index 92% rename from src/api/resources/copilotForYourEnterprise/client/requests/VideoBotsPageRequest.ts rename to src/api/types/VideoBotsPageRequest.ts index 7b5d814..a286787 100644 --- a/src/api/resources/copilotForYourEnterprise/client/requests/VideoBotsPageRequest.ts +++ b/src/api/types/VideoBotsPageRequest.ts @@ -2,14 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Gooey from "../../../../index"; +import * as Gooey from "../index"; -/** - * @example - * {} - */ export interface VideoBotsPageRequest { - exampleId?: string; functions?: Gooey.RecipeFunction[]; /** Variables to be used as Jinja prompt templates and in functions as arguments */ variables?: Record; @@ -35,7 +30,6 @@ export interface VideoBotsPageRequest { /** * Weightage for dense vs sparse embeddings. `0` for sparse, `1` for dense, `0.5` for equal weight. * Generally speaking, dense embeddings excel at understanding the context of the query, whereas sparse vectors excel at keyword matches. - * */ denseWeight?: number; citationStyle?: Gooey.VideoBotsPageRequestCitationStyle; @@ -47,15 +41,9 @@ export interface VideoBotsPageRequest { translationModel?: Gooey.VideoBotsPageRequestTranslationModel; /** Choose a language to translate incoming text & audio messages to English and responses back to your selected language. Useful for low-resource languages. */ userLanguage?: string; - /** - * Translation Glossary for User Langauge -> LLM Language (English) - * - */ + /** Translation Glossary for User Langauge -> LLM Language (English) */ inputGlossaryDocument?: string; - /** - * Translation Glossary for LLM Language (English) -> User Langauge - * - */ + /** Translation Glossary for LLM Language (English) -> User Langauge */ outputGlossaryDocument?: string; lipsyncModel?: Gooey.VideoBotsPageRequestLipsyncModel; /** Give your copilot superpowers by giving it access to tools. Powered by [Function calling](https://platform.openai.com/docs/guides/function-calling). */ diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestAsrModel.ts b/src/api/types/VideoBotsPageRequestAsrModel.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestAsrModel.ts rename to src/api/types/VideoBotsPageRequestAsrModel.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestCitationStyle.ts b/src/api/types/VideoBotsPageRequestCitationStyle.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestCitationStyle.ts rename to src/api/types/VideoBotsPageRequestCitationStyle.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestEmbeddingModel.ts b/src/api/types/VideoBotsPageRequestEmbeddingModel.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestEmbeddingModel.ts rename to src/api/types/VideoBotsPageRequestEmbeddingModel.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestLipsyncModel.ts b/src/api/types/VideoBotsPageRequestLipsyncModel.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestLipsyncModel.ts rename to src/api/types/VideoBotsPageRequestLipsyncModel.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiTtsModel.ts b/src/api/types/VideoBotsPageRequestOpenaiTtsModel.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiTtsModel.ts rename to src/api/types/VideoBotsPageRequestOpenaiTtsModel.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiVoiceName.ts b/src/api/types/VideoBotsPageRequestOpenaiVoiceName.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiVoiceName.ts rename to src/api/types/VideoBotsPageRequestOpenaiVoiceName.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestResponseFormatType.ts b/src/api/types/VideoBotsPageRequestResponseFormatType.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestResponseFormatType.ts rename to src/api/types/VideoBotsPageRequestResponseFormatType.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestSelectedModel.ts b/src/api/types/VideoBotsPageRequestSelectedModel.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestSelectedModel.ts rename to src/api/types/VideoBotsPageRequestSelectedModel.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTranslationModel.ts b/src/api/types/VideoBotsPageRequestTranslationModel.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTranslationModel.ts rename to src/api/types/VideoBotsPageRequestTranslationModel.ts diff --git a/src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTtsProvider.ts b/src/api/types/VideoBotsPageRequestTtsProvider.ts similarity index 100% rename from src/api/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTtsProvider.ts rename to src/api/types/VideoBotsPageRequestTtsProvider.ts diff --git a/src/api/types/index.ts b/src/api/types/index.ts index 0d58180..c1bdec5 100644 --- a/src/api/types/index.ts +++ b/src/api/types/index.ts @@ -1,59 +1,3 @@ -export * from "./DeforumSdPageRequestSelectedModel"; -export * from "./QrCodeGeneratorPageRequestImagePromptControlnetModelsItem"; -export * from "./QrCodeGeneratorPageRequestSelectedModel"; -export * from "./QrCodeGeneratorPageRequestSelectedControlnetModelItem"; -export * from "./QrCodeGeneratorPageRequestScheduler"; -export * from "./RelatedQnAPageRequestSelectedModel"; -export * from "./RelatedQnAPageRequestEmbeddingModel"; -export * from "./RelatedQnAPageRequestResponseFormatType"; -export * from "./SeoSummaryPageRequestSelectedModel"; -export * from "./SeoSummaryPageRequestResponseFormatType"; -export * from "./GoogleGptPageRequestSelectedModel"; -export * from "./GoogleGptPageRequestEmbeddingModel"; -export * from "./GoogleGptPageRequestResponseFormatType"; -export * from "./SocialLookupEmailPageRequestSelectedModel"; -export * from "./SocialLookupEmailPageRequestResponseFormatType"; -export * from "./DocExtractPageRequestSelectedAsrModel"; -export * from "./DocExtractPageRequestSelectedModel"; -export * from "./DocExtractPageRequestResponseFormatType"; -export * from "./CompareLlmPageRequestSelectedModelsItem"; -export * from "./CompareLlmPageRequestResponseFormatType"; -export * from "./DocSearchPageRequestKeywordQuery"; -export * from "./DocSearchPageRequestEmbeddingModel"; -export * from "./DocSearchPageRequestSelectedModel"; -export * from "./DocSearchPageRequestCitationStyle"; -export * from "./DocSearchPageRequestResponseFormatType"; -export * from "./DocSummaryPageRequestSelectedModel"; -export * from "./DocSummaryPageRequestSelectedAsrModel"; -export * from "./DocSummaryPageRequestResponseFormatType"; -export * from "./LipsyncTtsPageRequestTtsProvider"; -export * from "./LipsyncTtsPageRequestOpenaiVoiceName"; -export * from "./LipsyncTtsPageRequestOpenaiTtsModel"; -export * from "./LipsyncTtsPageRequestSelectedModel"; -export * from "./TextToSpeechPageRequestTtsProvider"; -export * from "./TextToSpeechPageRequestOpenaiVoiceName"; -export * from "./TextToSpeechPageRequestOpenaiTtsModel"; -export * from "./AsrPageRequestSelectedModel"; -export * from "./AsrPageRequestTranslationModel"; -export * from "./AsrPageRequestOutputFormat"; -export * from "./TranslationPageRequestSelectedModel"; -export * from "./Img2ImgPageRequestSelectedModel"; -export * from "./Img2ImgPageRequestSelectedControlnetModelItem"; -export * from "./Img2ImgPageRequestSelectedControlnetModel"; -export * from "./CompareText2ImgPageRequestSelectedModelsItem"; -export * from "./CompareText2ImgPageRequestScheduler"; -export * from "./ObjectInpaintingPageRequestSelectedModel"; -export * from "./FaceInpaintingPageRequestSelectedModel"; -export * from "./EmailFaceInpaintingPageRequestSelectedModel"; -export * from "./GoogleImageGenPageRequestSelectedModel"; -export * from "./ImageSegmentationPageRequestSelectedModel"; -export * from "./CompareUpscalerPageRequestSelectedModelsItem"; -export * from "./EmbeddingsPageRequestSelectedModel"; -export * from "./RelatedQnADocPageRequestKeywordQuery"; -export * from "./RelatedQnADocPageRequestEmbeddingModel"; -export * from "./RelatedQnADocPageRequestSelectedModel"; -export * from "./RelatedQnADocPageRequestCitationStyle"; -export * from "./RelatedQnADocPageRequestResponseFormatType"; export * from "./AggFunctionFunction"; export * from "./AggFunction"; export * from "./AggFunctionResultFunction"; @@ -62,13 +6,22 @@ export * from "./AsrChunk"; export * from "./AsrOutputJson"; export * from "./AsrPageOutputOutputTextItem"; export * from "./AsrPageOutput"; +export * from "./AsrPageRequestSelectedModel"; +export * from "./AsrPageRequestTranslationModel"; +export * from "./AsrPageRequestOutputFormat"; +export * from "./AsrPageRequest"; export * from "./AsrPageStatusResponse"; export * from "./AsyncApiResponseModelV3"; export * from "./BalanceResponse"; export * from "./BotBroadcastFilters"; +export * from "./BotBroadcastRequestModel"; export * from "./BulkEvalPageOutput"; +export * from "./BulkEvalPageRequestSelectedModel"; +export * from "./BulkEvalPageRequestResponseFormatType"; +export * from "./BulkEvalPageRequest"; export * from "./BulkEvalPageStatusResponse"; export * from "./BulkRunnerPageOutput"; +export * from "./BulkRunnerPageRequest"; export * from "./BulkRunnerPageStatusResponse"; export * from "./ButtonPressed"; export * from "./CalledFunctionResponseTrigger"; @@ -79,10 +32,18 @@ export * from "./ChyronPlantPageOutput"; export * from "./ChyronPlantPageRequest"; export * from "./ChyronPlantPageStatusResponse"; export * from "./CompareLlmPageOutput"; +export * from "./CompareLlmPageRequestSelectedModelsItem"; +export * from "./CompareLlmPageRequestResponseFormatType"; +export * from "./CompareLlmPageRequest"; export * from "./CompareLlmPageStatusResponse"; export * from "./CompareText2ImgPageOutput"; +export * from "./CompareText2ImgPageRequestSelectedModelsItem"; +export * from "./CompareText2ImgPageRequestScheduler"; +export * from "./CompareText2ImgPageRequest"; export * from "./CompareText2ImgPageStatusResponse"; export * from "./CompareUpscalerPageOutput"; +export * from "./CompareUpscalerPageRequestSelectedModelsItem"; +export * from "./CompareUpscalerPageRequest"; export * from "./CompareUpscalerPageStatusResponse"; export * from "./ConsoleLogsLevel"; export * from "./ConsoleLogs"; @@ -91,54 +52,114 @@ export * from "./ConversationEntryContentItem"; export * from "./ConversationEntryContent"; export * from "./ConversationEntry"; export * from "./ConversationStart"; +export * from "./CreateStreamRequestSelectedModel"; +export * from "./CreateStreamRequestEmbeddingModel"; +export * from "./CreateStreamRequestCitationStyle"; +export * from "./CreateStreamRequestAsrModel"; +export * from "./CreateStreamRequestTranslationModel"; +export * from "./CreateStreamRequestLipsyncModel"; +export * from "./CreateStreamRequestResponseFormatType"; +export * from "./CreateStreamRequestTtsProvider"; +export * from "./CreateStreamRequestOpenaiVoiceName"; +export * from "./CreateStreamRequestOpenaiTtsModel"; +export * from "./CreateStreamRequest"; export * from "./CreateStreamResponse"; export * from "./DeforumSdPageOutput"; +export * from "./DeforumSdPageRequestSelectedModel"; +export * from "./DeforumSdPageRequest"; export * from "./DeforumSdPageStatusResponse"; export * from "./DocExtractPageOutput"; +export * from "./DocExtractPageRequestSelectedAsrModel"; +export * from "./DocExtractPageRequestSelectedModel"; +export * from "./DocExtractPageRequestResponseFormatType"; +export * from "./DocExtractPageRequest"; export * from "./DocExtractPageStatusResponse"; export * from "./DocSearchPageOutput"; +export * from "./DocSearchPageRequestKeywordQuery"; +export * from "./DocSearchPageRequestEmbeddingModel"; +export * from "./DocSearchPageRequestSelectedModel"; +export * from "./DocSearchPageRequestCitationStyle"; +export * from "./DocSearchPageRequestResponseFormatType"; +export * from "./DocSearchPageRequest"; export * from "./DocSearchPageStatusResponse"; export * from "./DocSummaryPageOutput"; +export * from "./DocSummaryPageRequestSelectedModel"; +export * from "./DocSummaryPageRequestSelectedAsrModel"; +export * from "./DocSummaryPageRequestResponseFormatType"; +export * from "./DocSummaryPageRequest"; export * from "./DocSummaryPageStatusResponse"; export * from "./EmailFaceInpaintingPageOutput"; +export * from "./EmailFaceInpaintingPageRequestSelectedModel"; +export * from "./EmailFaceInpaintingPageRequest"; export * from "./EmailFaceInpaintingPageStatusResponse"; export * from "./EmbeddingsPageOutput"; +export * from "./EmbeddingsPageRequestSelectedModel"; +export * from "./EmbeddingsPageRequest"; export * from "./EmbeddingsPageStatusResponse"; export * from "./EvalPrompt"; export * from "./FaceInpaintingPageOutput"; +export * from "./FaceInpaintingPageRequestSelectedModel"; +export * from "./FaceInpaintingPageRequest"; export * from "./FaceInpaintingPageStatusResponse"; export * from "./FailedReponseModelV2"; export * from "./FailedResponseDetail"; export * from "./FinalResponse"; export * from "./FunctionsPageOutput"; +export * from "./FunctionsPageRequest"; export * from "./FunctionsPageStatusResponse"; export * from "./GenericErrorResponse"; export * from "./GenericErrorResponseDetail"; export * from "./GoogleGptPageOutput"; +export * from "./GoogleGptPageRequestSelectedModel"; +export * from "./GoogleGptPageRequestEmbeddingModel"; +export * from "./GoogleGptPageRequestResponseFormatType"; +export * from "./GoogleGptPageRequest"; export * from "./GoogleGptPageStatusResponse"; export * from "./GoogleImageGenPageOutput"; +export * from "./GoogleImageGenPageRequestSelectedModel"; +export * from "./GoogleImageGenPageRequest"; export * from "./GoogleImageGenPageStatusResponse"; export * from "./HttpValidationError"; export * from "./ImageSegmentationPageOutput"; +export * from "./ImageSegmentationPageRequestSelectedModel"; +export * from "./ImageSegmentationPageRequest"; export * from "./ImageSegmentationPageStatusResponse"; export * from "./ImageUrlDetail"; export * from "./ImageUrl"; export * from "./Img2ImgPageOutput"; +export * from "./Img2ImgPageRequestSelectedModel"; +export * from "./Img2ImgPageRequestSelectedControlnetModelItem"; +export * from "./Img2ImgPageRequestSelectedControlnetModel"; +export * from "./Img2ImgPageRequest"; export * from "./Img2ImgPageStatusResponse"; export * from "./LlmTools"; export * from "./LetterWriterPageOutput"; export * from "./LetterWriterPageRequest"; export * from "./LetterWriterPageStatusResponse"; export * from "./LipsyncPageOutput"; +export * from "./LipsyncPageRequestSelectedModel"; +export * from "./LipsyncPageRequest"; export * from "./LipsyncPageStatusResponse"; export * from "./LipsyncTtsPageOutput"; +export * from "./LipsyncTtsPageRequestTtsProvider"; +export * from "./LipsyncTtsPageRequestOpenaiVoiceName"; +export * from "./LipsyncTtsPageRequestOpenaiTtsModel"; +export * from "./LipsyncTtsPageRequestSelectedModel"; +export * from "./LipsyncTtsPageRequest"; export * from "./LipsyncTtsPageStatusResponse"; export * from "./MessagePart"; export * from "./ObjectInpaintingPageOutput"; +export * from "./ObjectInpaintingPageRequestSelectedModel"; +export * from "./ObjectInpaintingPageRequest"; export * from "./ObjectInpaintingPageStatusResponse"; export * from "./PromptTreeNodePrompt"; export * from "./PromptTreeNode"; export * from "./QrCodeGeneratorPageOutput"; +export * from "./QrCodeGeneratorPageRequestImagePromptControlnetModelsItem"; +export * from "./QrCodeGeneratorPageRequestSelectedModel"; +export * from "./QrCodeGeneratorPageRequestSelectedControlnetModelItem"; +export * from "./QrCodeGeneratorPageRequestScheduler"; +export * from "./QrCodeGeneratorPageRequest"; export * from "./QrCodeGeneratorPageStatusResponse"; export * from "./RecipeFunctionTrigger"; export * from "./RecipeFunction"; @@ -146,8 +167,18 @@ export * from "./RecipeRunState"; export * from "./RelatedDocSearchResponse"; export * from "./RelatedGoogleGptResponse"; export * from "./RelatedQnADocPageOutput"; +export * from "./RelatedQnADocPageRequestKeywordQuery"; +export * from "./RelatedQnADocPageRequestEmbeddingModel"; +export * from "./RelatedQnADocPageRequestSelectedModel"; +export * from "./RelatedQnADocPageRequestCitationStyle"; +export * from "./RelatedQnADocPageRequestResponseFormatType"; +export * from "./RelatedQnADocPageRequest"; export * from "./RelatedQnADocPageStatusResponse"; export * from "./RelatedQnAPageOutput"; +export * from "./RelatedQnAPageRequestSelectedModel"; +export * from "./RelatedQnAPageRequestEmbeddingModel"; +export * from "./RelatedQnAPageRequestResponseFormatType"; +export * from "./RelatedQnAPageRequest"; export * from "./RelatedQnAPageStatusResponse"; export * from "./ReplyButton"; export * from "./ResponseModelFinalPrompt"; @@ -157,6 +188,9 @@ export * from "./RunSettingsRetentionPolicy"; export * from "./RunSettings"; export * from "./RunStart"; export * from "./SeoSummaryPageOutput"; +export * from "./SeoSummaryPageRequestSelectedModel"; +export * from "./SeoSummaryPageRequestResponseFormatType"; +export * from "./SeoSummaryPageRequest"; export * from "./SeoSummaryPageStatusResponse"; export * from "./SadTalkerSettingsPreprocess"; export * from "./SadTalkerSettings"; @@ -164,16 +198,29 @@ export * from "./SearchReference"; export * from "./SerpSearchLocation"; export * from "./SerpSearchType"; export * from "./SmartGptPageOutput"; +export * from "./SmartGptPageRequestSelectedModel"; +export * from "./SmartGptPageRequestResponseFormatType"; +export * from "./SmartGptPageRequest"; export * from "./SmartGptPageStatusResponse"; export * from "./SocialLookupEmailPageOutput"; +export * from "./SocialLookupEmailPageRequestSelectedModel"; +export * from "./SocialLookupEmailPageRequestResponseFormatType"; +export * from "./SocialLookupEmailPageRequest"; export * from "./SocialLookupEmailPageStatusResponse"; export * from "./StreamError"; export * from "./Text2AudioPageOutput"; +export * from "./Text2AudioPageRequest"; export * from "./Text2AudioPageStatusResponse"; export * from "./TextToSpeechPageOutput"; +export * from "./TextToSpeechPageRequestTtsProvider"; +export * from "./TextToSpeechPageRequestOpenaiVoiceName"; +export * from "./TextToSpeechPageRequestOpenaiTtsModel"; +export * from "./TextToSpeechPageRequest"; export * from "./TextToSpeechPageStatusResponse"; export * from "./TrainingDataModel"; export * from "./TranslationPageOutput"; +export * from "./TranslationPageRequestSelectedModel"; +export * from "./TranslationPageRequest"; export * from "./TranslationPageStatusResponse"; export * from "./Vcard"; export * from "./ValidationErrorLocItem"; @@ -181,5 +228,16 @@ export * from "./ValidationError"; export * from "./VideoBotsPageOutputFinalPrompt"; export * from "./VideoBotsPageOutputFinalKeywordQuery"; export * from "./VideoBotsPageOutput"; +export * from "./VideoBotsPageRequestSelectedModel"; +export * from "./VideoBotsPageRequestEmbeddingModel"; +export * from "./VideoBotsPageRequestCitationStyle"; +export * from "./VideoBotsPageRequestAsrModel"; +export * from "./VideoBotsPageRequestTranslationModel"; +export * from "./VideoBotsPageRequestLipsyncModel"; +export * from "./VideoBotsPageRequestResponseFormatType"; +export * from "./VideoBotsPageRequestTtsProvider"; +export * from "./VideoBotsPageRequestOpenaiVoiceName"; +export * from "./VideoBotsPageRequestOpenaiTtsModel"; +export * from "./VideoBotsPageRequest"; export * from "./VideoBotsPageStatusResponse"; export * from "./AnimationPrompt"; diff --git a/src/serialization/client/index.ts b/src/serialization/client/index.ts deleted file mode 100644 index 415726b..0000000 --- a/src/serialization/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/client/requests/AsrPageRequest.ts b/src/serialization/client/requests/AsrPageRequest.ts deleted file mode 100644 index 452dc65..0000000 --- a/src/serialization/client/requests/AsrPageRequest.ts +++ /dev/null @@ -1,50 +0,0 @@ -/** - * This file was auto-generated by Fern from our API Definition. - */ - -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { AsrPageRequestSelectedModel } from "../../types/AsrPageRequestSelectedModel"; -import { AsrPageRequestTranslationModel } from "../../types/AsrPageRequestTranslationModel"; -import { AsrPageRequestOutputFormat } from "../../types/AsrPageRequestOutputFormat"; -import { RunSettings } from "../../types/RunSettings"; - -export const AsrPageRequest: core.serialization.Schema< - serializers.AsrPageRequest.Raw, - Omit -> = core.serialization.object({ - functions: core.serialization.list(RecipeFunction).optional(), - variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - documents: core.serialization.list(core.serialization.string()), - selectedModel: core.serialization.property("selected_model", AsrPageRequestSelectedModel.optional()), - language: core.serialization.string().optional(), - translationModel: core.serialization.property("translation_model", AsrPageRequestTranslationModel.optional()), - outputFormat: core.serialization.property("output_format", AsrPageRequestOutputFormat.optional()), - googleTranslateTarget: core.serialization.property( - "google_translate_target", - core.serialization.string().optional() - ), - translationSource: core.serialization.property("translation_source", core.serialization.string().optional()), - translationTarget: core.serialization.property("translation_target", core.serialization.string().optional()), - glossaryDocument: core.serialization.property("glossary_document", core.serialization.string().optional()), - settings: RunSettings.optional(), -}); - -export declare namespace AsrPageRequest { - interface Raw { - functions?: RecipeFunction.Raw[] | null; - variables?: Record | null; - documents: string[]; - selected_model?: AsrPageRequestSelectedModel.Raw | null; - language?: string | null; - translation_model?: AsrPageRequestTranslationModel.Raw | null; - output_format?: AsrPageRequestOutputFormat.Raw | null; - google_translate_target?: string | null; - translation_source?: string | null; - translation_target?: string | null; - glossary_document?: string | null; - settings?: RunSettings.Raw | null; - } -} diff --git a/src/serialization/client/requests/index.ts b/src/serialization/client/requests/index.ts deleted file mode 100644 index 4ffba2c..0000000 --- a/src/serialization/client/requests/index.ts +++ /dev/null @@ -1,26 +0,0 @@ -export { DeforumSdPageRequest } from "./DeforumSdPageRequest"; -export { QrCodeGeneratorPageRequest } from "./QrCodeGeneratorPageRequest"; -export { RelatedQnAPageRequest } from "./RelatedQnAPageRequest"; -export { SeoSummaryPageRequest } from "./SeoSummaryPageRequest"; -export { GoogleGptPageRequest } from "./GoogleGptPageRequest"; -export { SocialLookupEmailPageRequest } from "./SocialLookupEmailPageRequest"; -export { BulkRunnerPageRequest } from "./BulkRunnerPageRequest"; -export { DocExtractPageRequest } from "./DocExtractPageRequest"; -export { CompareLlmPageRequest } from "./CompareLlmPageRequest"; -export { DocSearchPageRequest } from "./DocSearchPageRequest"; -export { DocSummaryPageRequest } from "./DocSummaryPageRequest"; -export { LipsyncTtsPageRequest } from "./LipsyncTtsPageRequest"; -export { TextToSpeechPageRequest } from "./TextToSpeechPageRequest"; -export { AsrPageRequest } from "./AsrPageRequest"; -export { Text2AudioPageRequest } from "./Text2AudioPageRequest"; -export { TranslationPageRequest } from "./TranslationPageRequest"; -export { Img2ImgPageRequest } from "./Img2ImgPageRequest"; -export { CompareText2ImgPageRequest } from "./CompareText2ImgPageRequest"; -export { ObjectInpaintingPageRequest } from "./ObjectInpaintingPageRequest"; -export { FaceInpaintingPageRequest } from "./FaceInpaintingPageRequest"; -export { EmailFaceInpaintingPageRequest } from "./EmailFaceInpaintingPageRequest"; -export { GoogleImageGenPageRequest } from "./GoogleImageGenPageRequest"; -export { ImageSegmentationPageRequest } from "./ImageSegmentationPageRequest"; -export { CompareUpscalerPageRequest } from "./CompareUpscalerPageRequest"; -export { EmbeddingsPageRequest } from "./EmbeddingsPageRequest"; -export { RelatedQnADocPageRequest } from "./RelatedQnADocPageRequest"; diff --git a/src/serialization/index.ts b/src/serialization/index.ts index d3c5080..3e15e29 100644 --- a/src/serialization/index.ts +++ b/src/serialization/index.ts @@ -1,3 +1,2 @@ export * from "./resources"; export * from "./types"; -export * from "./client"; diff --git a/src/serialization/resources/copilotForYourEnterprise/client/index.ts b/src/serialization/resources/copilotForYourEnterprise/client/index.ts deleted file mode 100644 index 415726b..0000000 --- a/src/serialization/resources/copilotForYourEnterprise/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/copilotForYourEnterprise/client/requests/index.ts b/src/serialization/resources/copilotForYourEnterprise/client/requests/index.ts deleted file mode 100644 index 7f23af3..0000000 --- a/src/serialization/resources/copilotForYourEnterprise/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { VideoBotsPageRequest } from "./VideoBotsPageRequest"; diff --git a/src/serialization/resources/copilotForYourEnterprise/index.ts b/src/serialization/resources/copilotForYourEnterprise/index.ts deleted file mode 100644 index c9240f8..0000000 --- a/src/serialization/resources/copilotForYourEnterprise/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./types"; -export * from "./client"; diff --git a/src/serialization/resources/copilotForYourEnterprise/types/index.ts b/src/serialization/resources/copilotForYourEnterprise/types/index.ts deleted file mode 100644 index 5270588..0000000 --- a/src/serialization/resources/copilotForYourEnterprise/types/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -export * from "./VideoBotsPageRequestSelectedModel"; -export * from "./VideoBotsPageRequestEmbeddingModel"; -export * from "./VideoBotsPageRequestCitationStyle"; -export * from "./VideoBotsPageRequestAsrModel"; -export * from "./VideoBotsPageRequestTranslationModel"; -export * from "./VideoBotsPageRequestLipsyncModel"; -export * from "./VideoBotsPageRequestResponseFormatType"; -export * from "./VideoBotsPageRequestTtsProvider"; -export * from "./VideoBotsPageRequestOpenaiVoiceName"; -export * from "./VideoBotsPageRequestOpenaiTtsModel"; diff --git a/src/serialization/resources/copilotIntegrations/client/index.ts b/src/serialization/resources/copilotIntegrations/client/index.ts deleted file mode 100644 index 415726b..0000000 --- a/src/serialization/resources/copilotIntegrations/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/copilotIntegrations/client/requests/index.ts b/src/serialization/resources/copilotIntegrations/client/requests/index.ts deleted file mode 100644 index 6cf898f..0000000 --- a/src/serialization/resources/copilotIntegrations/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { CreateStreamRequest } from "./CreateStreamRequest"; diff --git a/src/serialization/resources/copilotIntegrations/index.ts b/src/serialization/resources/copilotIntegrations/index.ts index c9240f8..eea524d 100644 --- a/src/serialization/resources/copilotIntegrations/index.ts +++ b/src/serialization/resources/copilotIntegrations/index.ts @@ -1,2 +1 @@ export * from "./types"; -export * from "./client"; diff --git a/src/serialization/resources/copilotIntegrations/types/index.ts b/src/serialization/resources/copilotIntegrations/types/index.ts index 8b11dd6..4dfa795 100644 --- a/src/serialization/resources/copilotIntegrations/types/index.ts +++ b/src/serialization/resources/copilotIntegrations/types/index.ts @@ -1,11 +1 @@ -export * from "./CreateStreamRequestSelectedModel"; -export * from "./CreateStreamRequestEmbeddingModel"; -export * from "./CreateStreamRequestCitationStyle"; -export * from "./CreateStreamRequestAsrModel"; -export * from "./CreateStreamRequestTranslationModel"; -export * from "./CreateStreamRequestLipsyncModel"; -export * from "./CreateStreamRequestResponseFormatType"; -export * from "./CreateStreamRequestTtsProvider"; -export * from "./CreateStreamRequestOpenaiVoiceName"; -export * from "./CreateStreamRequestOpenaiTtsModel"; export * from "./VideoBotsStreamResponse"; diff --git a/src/serialization/resources/evaluator/client/index.ts b/src/serialization/resources/evaluator/client/index.ts deleted file mode 100644 index 415726b..0000000 --- a/src/serialization/resources/evaluator/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/evaluator/client/requests/index.ts b/src/serialization/resources/evaluator/client/requests/index.ts deleted file mode 100644 index 064970e..0000000 --- a/src/serialization/resources/evaluator/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { BulkEvalPageRequest } from "./BulkEvalPageRequest"; diff --git a/src/serialization/resources/evaluator/index.ts b/src/serialization/resources/evaluator/index.ts deleted file mode 100644 index c9240f8..0000000 --- a/src/serialization/resources/evaluator/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./types"; -export * from "./client"; diff --git a/src/serialization/resources/evaluator/types/index.ts b/src/serialization/resources/evaluator/types/index.ts deleted file mode 100644 index ec26d74..0000000 --- a/src/serialization/resources/evaluator/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./BulkEvalPageRequestSelectedModel"; -export * from "./BulkEvalPageRequestResponseFormatType"; diff --git a/src/serialization/resources/functions/client/index.ts b/src/serialization/resources/functions/client/index.ts deleted file mode 100644 index 415726b..0000000 --- a/src/serialization/resources/functions/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/functions/client/requests/index.ts b/src/serialization/resources/functions/client/requests/index.ts deleted file mode 100644 index fe50ef3..0000000 --- a/src/serialization/resources/functions/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { FunctionsPageRequest } from "./FunctionsPageRequest"; diff --git a/src/serialization/resources/functions/index.ts b/src/serialization/resources/functions/index.ts deleted file mode 100644 index 5ec7692..0000000 --- a/src/serialization/resources/functions/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/index.ts b/src/serialization/resources/index.ts index ad4ceda..3f4c9ec 100644 --- a/src/serialization/resources/index.ts +++ b/src/serialization/resources/index.ts @@ -1,19 +1,2 @@ export * as copilotIntegrations from "./copilotIntegrations"; export * from "./copilotIntegrations/types"; -export * as copilotForYourEnterprise from "./copilotForYourEnterprise"; -export * from "./copilotForYourEnterprise/types"; -export * as evaluator from "./evaluator"; -export * from "./evaluator/types"; -export * as smartGpt from "./smartGpt"; -export * from "./smartGpt/types"; -export * as lipSyncing from "./lipSyncing"; -export * from "./lipSyncing/types"; -export * from "./copilotIntegrations/client/requests"; -export * from "./copilotForYourEnterprise/client/requests"; -export * from "./evaluator/client/requests"; -export * from "./smartGpt/client/requests"; -export * as functions from "./functions"; -export * from "./functions/client/requests"; -export * from "./lipSyncing/client/requests"; -export * as misc from "./misc"; -export * from "./misc/client/requests"; diff --git a/src/serialization/resources/lipSyncing/client/index.ts b/src/serialization/resources/lipSyncing/client/index.ts deleted file mode 100644 index 415726b..0000000 --- a/src/serialization/resources/lipSyncing/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/lipSyncing/client/requests/index.ts b/src/serialization/resources/lipSyncing/client/requests/index.ts deleted file mode 100644 index 3018053..0000000 --- a/src/serialization/resources/lipSyncing/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { LipsyncPageRequest } from "./LipsyncPageRequest"; diff --git a/src/serialization/resources/lipSyncing/index.ts b/src/serialization/resources/lipSyncing/index.ts deleted file mode 100644 index c9240f8..0000000 --- a/src/serialization/resources/lipSyncing/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./types"; -export * from "./client"; diff --git a/src/serialization/resources/lipSyncing/types/index.ts b/src/serialization/resources/lipSyncing/types/index.ts deleted file mode 100644 index 5c8618b..0000000 --- a/src/serialization/resources/lipSyncing/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./LipsyncPageRequestSelectedModel"; diff --git a/src/serialization/resources/misc/client/index.ts b/src/serialization/resources/misc/client/index.ts deleted file mode 100644 index 415726b..0000000 --- a/src/serialization/resources/misc/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/misc/client/requests/index.ts b/src/serialization/resources/misc/client/requests/index.ts deleted file mode 100644 index db5730c..0000000 --- a/src/serialization/resources/misc/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { BotBroadcastRequestModel } from "./BotBroadcastRequestModel"; diff --git a/src/serialization/resources/misc/index.ts b/src/serialization/resources/misc/index.ts deleted file mode 100644 index 5ec7692..0000000 --- a/src/serialization/resources/misc/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/smartGpt/client/index.ts b/src/serialization/resources/smartGpt/client/index.ts deleted file mode 100644 index 415726b..0000000 --- a/src/serialization/resources/smartGpt/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/smartGpt/client/requests/index.ts b/src/serialization/resources/smartGpt/client/requests/index.ts deleted file mode 100644 index 818ce6c..0000000 --- a/src/serialization/resources/smartGpt/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { SmartGptPageRequest } from "./SmartGptPageRequest"; diff --git a/src/serialization/resources/smartGpt/index.ts b/src/serialization/resources/smartGpt/index.ts deleted file mode 100644 index c9240f8..0000000 --- a/src/serialization/resources/smartGpt/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./types"; -export * from "./client"; diff --git a/src/serialization/resources/smartGpt/types/index.ts b/src/serialization/resources/smartGpt/types/index.ts deleted file mode 100644 index ba40064..0000000 --- a/src/serialization/resources/smartGpt/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./SmartGptPageRequestSelectedModel"; -export * from "./SmartGptPageRequestResponseFormatType"; diff --git a/src/serialization/types/AsrPageRequest.ts b/src/serialization/types/AsrPageRequest.ts new file mode 100644 index 0000000..821416f --- /dev/null +++ b/src/serialization/types/AsrPageRequest.ts @@ -0,0 +1,48 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { AsrPageRequestSelectedModel } from "./AsrPageRequestSelectedModel"; +import { AsrPageRequestTranslationModel } from "./AsrPageRequestTranslationModel"; +import { AsrPageRequestOutputFormat } from "./AsrPageRequestOutputFormat"; +import { RunSettings } from "./RunSettings"; + +export const AsrPageRequest: core.serialization.ObjectSchema = + core.serialization.object({ + functions: core.serialization.list(RecipeFunction).optional(), + variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), + documents: core.serialization.list(core.serialization.string()), + selectedModel: core.serialization.property("selected_model", AsrPageRequestSelectedModel.optional()), + language: core.serialization.string().optional(), + translationModel: core.serialization.property("translation_model", AsrPageRequestTranslationModel.optional()), + outputFormat: core.serialization.property("output_format", AsrPageRequestOutputFormat.optional()), + googleTranslateTarget: core.serialization.property( + "google_translate_target", + core.serialization.string().optional() + ), + translationSource: core.serialization.property("translation_source", core.serialization.string().optional()), + translationTarget: core.serialization.property("translation_target", core.serialization.string().optional()), + glossaryDocument: core.serialization.property("glossary_document", core.serialization.string().optional()), + settings: RunSettings.optional(), + }); + +export declare namespace AsrPageRequest { + interface Raw { + functions?: RecipeFunction.Raw[] | null; + variables?: Record | null; + documents: string[]; + selected_model?: AsrPageRequestSelectedModel.Raw | null; + language?: string | null; + translation_model?: AsrPageRequestTranslationModel.Raw | null; + output_format?: AsrPageRequestOutputFormat.Raw | null; + google_translate_target?: string | null; + translation_source?: string | null; + translation_target?: string | null; + glossary_document?: string | null; + settings?: RunSettings.Raw | null; + } +} diff --git a/src/serialization/resources/misc/client/requests/BotBroadcastRequestModel.ts b/src/serialization/types/BotBroadcastRequestModel.ts similarity index 65% rename from src/serialization/resources/misc/client/requests/BotBroadcastRequestModel.ts rename to src/serialization/types/BotBroadcastRequestModel.ts index ac79261..efa1509 100644 --- a/src/serialization/resources/misc/client/requests/BotBroadcastRequestModel.ts +++ b/src/serialization/types/BotBroadcastRequestModel.ts @@ -2,15 +2,15 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../../index"; -import * as Gooey from "../../../../../api/index"; -import * as core from "../../../../../core"; -import { ReplyButton } from "../../../../types/ReplyButton"; -import { BotBroadcastFilters } from "../../../../types/BotBroadcastFilters"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { ReplyButton } from "./ReplyButton"; +import { BotBroadcastFilters } from "./BotBroadcastFilters"; -export const BotBroadcastRequestModel: core.serialization.Schema< +export const BotBroadcastRequestModel: core.serialization.ObjectSchema< serializers.BotBroadcastRequestModel.Raw, - Omit + Gooey.BotBroadcastRequestModel > = core.serialization.object({ text: core.serialization.string(), audio: core.serialization.string().optional(), diff --git a/src/serialization/resources/evaluator/client/requests/BulkEvalPageRequest.ts b/src/serialization/types/BulkEvalPageRequest.ts similarity index 74% rename from src/serialization/resources/evaluator/client/requests/BulkEvalPageRequest.ts rename to src/serialization/types/BulkEvalPageRequest.ts index 7b7e2f6..dbf7c91 100644 --- a/src/serialization/resources/evaluator/client/requests/BulkEvalPageRequest.ts +++ b/src/serialization/types/BulkEvalPageRequest.ts @@ -2,19 +2,19 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../../index"; -import * as Gooey from "../../../../../api/index"; -import * as core from "../../../../../core"; -import { RecipeFunction } from "../../../../types/RecipeFunction"; -import { EvalPrompt } from "../../../../types/EvalPrompt"; -import { AggFunction } from "../../../../types/AggFunction"; -import { BulkEvalPageRequestSelectedModel } from "../../types/BulkEvalPageRequestSelectedModel"; -import { BulkEvalPageRequestResponseFormatType } from "../../types/BulkEvalPageRequestResponseFormatType"; -import { RunSettings } from "../../../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { EvalPrompt } from "./EvalPrompt"; +import { AggFunction } from "./AggFunction"; +import { BulkEvalPageRequestSelectedModel } from "./BulkEvalPageRequestSelectedModel"; +import { BulkEvalPageRequestResponseFormatType } from "./BulkEvalPageRequestResponseFormatType"; +import { RunSettings } from "./RunSettings"; -export const BulkEvalPageRequest: core.serialization.Schema< +export const BulkEvalPageRequest: core.serialization.ObjectSchema< serializers.BulkEvalPageRequest.Raw, - Omit + Gooey.BulkEvalPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/resources/evaluator/types/BulkEvalPageRequestResponseFormatType.ts b/src/serialization/types/BulkEvalPageRequestResponseFormatType.ts similarity index 75% rename from src/serialization/resources/evaluator/types/BulkEvalPageRequestResponseFormatType.ts rename to src/serialization/types/BulkEvalPageRequestResponseFormatType.ts index 30cbd47..cf41629 100644 --- a/src/serialization/resources/evaluator/types/BulkEvalPageRequestResponseFormatType.ts +++ b/src/serialization/types/BulkEvalPageRequestResponseFormatType.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const BulkEvalPageRequestResponseFormatType: core.serialization.Schema< serializers.BulkEvalPageRequestResponseFormatType.Raw, diff --git a/src/serialization/resources/evaluator/types/BulkEvalPageRequestSelectedModel.ts b/src/serialization/types/BulkEvalPageRequestSelectedModel.ts similarity index 94% rename from src/serialization/resources/evaluator/types/BulkEvalPageRequestSelectedModel.ts rename to src/serialization/types/BulkEvalPageRequestSelectedModel.ts index 62d97ee..dc9b4d1 100644 --- a/src/serialization/resources/evaluator/types/BulkEvalPageRequestSelectedModel.ts +++ b/src/serialization/types/BulkEvalPageRequestSelectedModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const BulkEvalPageRequestSelectedModel: core.serialization.Schema< serializers.BulkEvalPageRequestSelectedModel.Raw, diff --git a/src/serialization/client/requests/BulkRunnerPageRequest.ts b/src/serialization/types/BulkRunnerPageRequest.ts similarity index 79% rename from src/serialization/client/requests/BulkRunnerPageRequest.ts rename to src/serialization/types/BulkRunnerPageRequest.ts index 044b5cb..269dd85 100644 --- a/src/serialization/client/requests/BulkRunnerPageRequest.ts +++ b/src/serialization/types/BulkRunnerPageRequest.ts @@ -2,15 +2,15 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { RunSettings } from "./RunSettings"; -export const BulkRunnerPageRequest: core.serialization.Schema< +export const BulkRunnerPageRequest: core.serialization.ObjectSchema< serializers.BulkRunnerPageRequest.Raw, - Omit + Gooey.BulkRunnerPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/CompareLlmPageRequest.ts b/src/serialization/types/CompareLlmPageRequest.ts similarity index 76% rename from src/serialization/client/requests/CompareLlmPageRequest.ts rename to src/serialization/types/CompareLlmPageRequest.ts index fe931eb..5a39a7f 100644 --- a/src/serialization/client/requests/CompareLlmPageRequest.ts +++ b/src/serialization/types/CompareLlmPageRequest.ts @@ -2,17 +2,17 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { CompareLlmPageRequestSelectedModelsItem } from "../../types/CompareLlmPageRequestSelectedModelsItem"; -import { CompareLlmPageRequestResponseFormatType } from "../../types/CompareLlmPageRequestResponseFormatType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { CompareLlmPageRequestSelectedModelsItem } from "./CompareLlmPageRequestSelectedModelsItem"; +import { CompareLlmPageRequestResponseFormatType } from "./CompareLlmPageRequestResponseFormatType"; +import { RunSettings } from "./RunSettings"; -export const CompareLlmPageRequest: core.serialization.Schema< +export const CompareLlmPageRequest: core.serialization.ObjectSchema< serializers.CompareLlmPageRequest.Raw, - Omit + Gooey.CompareLlmPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/CompareText2ImgPageRequest.ts b/src/serialization/types/CompareText2ImgPageRequest.ts similarity index 82% rename from src/serialization/client/requests/CompareText2ImgPageRequest.ts rename to src/serialization/types/CompareText2ImgPageRequest.ts index 1493079..80bad8b 100644 --- a/src/serialization/client/requests/CompareText2ImgPageRequest.ts +++ b/src/serialization/types/CompareText2ImgPageRequest.ts @@ -2,17 +2,17 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { CompareText2ImgPageRequestSelectedModelsItem } from "../../types/CompareText2ImgPageRequestSelectedModelsItem"; -import { CompareText2ImgPageRequestScheduler } from "../../types/CompareText2ImgPageRequestScheduler"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { CompareText2ImgPageRequestSelectedModelsItem } from "./CompareText2ImgPageRequestSelectedModelsItem"; +import { CompareText2ImgPageRequestScheduler } from "./CompareText2ImgPageRequestScheduler"; +import { RunSettings } from "./RunSettings"; -export const CompareText2ImgPageRequest: core.serialization.Schema< +export const CompareText2ImgPageRequest: core.serialization.ObjectSchema< serializers.CompareText2ImgPageRequest.Raw, - Omit + Gooey.CompareText2ImgPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/CompareUpscalerPageRequest.ts b/src/serialization/types/CompareUpscalerPageRequest.ts similarity index 74% rename from src/serialization/client/requests/CompareUpscalerPageRequest.ts rename to src/serialization/types/CompareUpscalerPageRequest.ts index 682626d..55a7d48 100644 --- a/src/serialization/client/requests/CompareUpscalerPageRequest.ts +++ b/src/serialization/types/CompareUpscalerPageRequest.ts @@ -2,16 +2,16 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { CompareUpscalerPageRequestSelectedModelsItem } from "../../types/CompareUpscalerPageRequestSelectedModelsItem"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { CompareUpscalerPageRequestSelectedModelsItem } from "./CompareUpscalerPageRequestSelectedModelsItem"; +import { RunSettings } from "./RunSettings"; -export const CompareUpscalerPageRequest: core.serialization.Schema< +export const CompareUpscalerPageRequest: core.serialization.ObjectSchema< serializers.CompareUpscalerPageRequest.Raw, - Omit + Gooey.CompareUpscalerPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/resources/copilotIntegrations/client/requests/CreateStreamRequest.ts b/src/serialization/types/CreateStreamRequest.ts similarity index 87% rename from src/serialization/resources/copilotIntegrations/client/requests/CreateStreamRequest.ts rename to src/serialization/types/CreateStreamRequest.ts index 5317b71..37dfb87 100644 --- a/src/serialization/resources/copilotIntegrations/client/requests/CreateStreamRequest.ts +++ b/src/serialization/types/CreateStreamRequest.ts @@ -2,26 +2,26 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../../index"; -import * as Gooey from "../../../../../api/index"; -import * as core from "../../../../../core"; -import { ButtonPressed } from "../../../../types/ButtonPressed"; -import { RecipeFunction } from "../../../../types/RecipeFunction"; -import { ConversationEntry } from "../../../../types/ConversationEntry"; -import { CreateStreamRequestSelectedModel } from "../../types/CreateStreamRequestSelectedModel"; -import { CreateStreamRequestEmbeddingModel } from "../../types/CreateStreamRequestEmbeddingModel"; -import { CreateStreamRequestCitationStyle } from "../../types/CreateStreamRequestCitationStyle"; -import { CreateStreamRequestAsrModel } from "../../types/CreateStreamRequestAsrModel"; -import { CreateStreamRequestTranslationModel } from "../../types/CreateStreamRequestTranslationModel"; -import { CreateStreamRequestLipsyncModel } from "../../types/CreateStreamRequestLipsyncModel"; -import { LlmTools } from "../../../../types/LlmTools"; -import { CreateStreamRequestResponseFormatType } from "../../types/CreateStreamRequestResponseFormatType"; -import { CreateStreamRequestTtsProvider } from "../../types/CreateStreamRequestTtsProvider"; -import { CreateStreamRequestOpenaiVoiceName } from "../../types/CreateStreamRequestOpenaiVoiceName"; -import { CreateStreamRequestOpenaiTtsModel } from "../../types/CreateStreamRequestOpenaiTtsModel"; -import { SadTalkerSettings } from "../../../../types/SadTalkerSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { ButtonPressed } from "./ButtonPressed"; +import { RecipeFunction } from "./RecipeFunction"; +import { ConversationEntry } from "./ConversationEntry"; +import { CreateStreamRequestSelectedModel } from "./CreateStreamRequestSelectedModel"; +import { CreateStreamRequestEmbeddingModel } from "./CreateStreamRequestEmbeddingModel"; +import { CreateStreamRequestCitationStyle } from "./CreateStreamRequestCitationStyle"; +import { CreateStreamRequestAsrModel } from "./CreateStreamRequestAsrModel"; +import { CreateStreamRequestTranslationModel } from "./CreateStreamRequestTranslationModel"; +import { CreateStreamRequestLipsyncModel } from "./CreateStreamRequestLipsyncModel"; +import { LlmTools } from "./LlmTools"; +import { CreateStreamRequestResponseFormatType } from "./CreateStreamRequestResponseFormatType"; +import { CreateStreamRequestTtsProvider } from "./CreateStreamRequestTtsProvider"; +import { CreateStreamRequestOpenaiVoiceName } from "./CreateStreamRequestOpenaiVoiceName"; +import { CreateStreamRequestOpenaiTtsModel } from "./CreateStreamRequestOpenaiTtsModel"; +import { SadTalkerSettings } from "./SadTalkerSettings"; -export const CreateStreamRequest: core.serialization.Schema< +export const CreateStreamRequest: core.serialization.ObjectSchema< serializers.CreateStreamRequest.Raw, Gooey.CreateStreamRequest > = core.serialization.object({ diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestAsrModel.ts b/src/serialization/types/CreateStreamRequestAsrModel.ts similarity index 87% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestAsrModel.ts rename to src/serialization/types/CreateStreamRequestAsrModel.ts index d37cfa6..c207d95 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestAsrModel.ts +++ b/src/serialization/types/CreateStreamRequestAsrModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestAsrModel: core.serialization.Schema< serializers.CreateStreamRequestAsrModel.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestCitationStyle.ts b/src/serialization/types/CreateStreamRequestCitationStyle.ts similarity index 88% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestCitationStyle.ts rename to src/serialization/types/CreateStreamRequestCitationStyle.ts index c9cc756..e1b3d66 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestCitationStyle.ts +++ b/src/serialization/types/CreateStreamRequestCitationStyle.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestCitationStyle: core.serialization.Schema< serializers.CreateStreamRequestCitationStyle.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestEmbeddingModel.ts b/src/serialization/types/CreateStreamRequestEmbeddingModel.ts similarity index 85% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestEmbeddingModel.ts rename to src/serialization/types/CreateStreamRequestEmbeddingModel.ts index 447b3bc..8ee62a1 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestEmbeddingModel.ts +++ b/src/serialization/types/CreateStreamRequestEmbeddingModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestEmbeddingModel: core.serialization.Schema< serializers.CreateStreamRequestEmbeddingModel.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestLipsyncModel.ts b/src/serialization/types/CreateStreamRequestLipsyncModel.ts similarity index 74% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestLipsyncModel.ts rename to src/serialization/types/CreateStreamRequestLipsyncModel.ts index 62a566f..c88bf8a 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestLipsyncModel.ts +++ b/src/serialization/types/CreateStreamRequestLipsyncModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestLipsyncModel: core.serialization.Schema< serializers.CreateStreamRequestLipsyncModel.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestOpenaiTtsModel.ts b/src/serialization/types/CreateStreamRequestOpenaiTtsModel.ts similarity index 74% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestOpenaiTtsModel.ts rename to src/serialization/types/CreateStreamRequestOpenaiTtsModel.ts index 4e825c7..693d3f4 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestOpenaiTtsModel.ts +++ b/src/serialization/types/CreateStreamRequestOpenaiTtsModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestOpenaiTtsModel: core.serialization.Schema< serializers.CreateStreamRequestOpenaiTtsModel.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestOpenaiVoiceName.ts b/src/serialization/types/CreateStreamRequestOpenaiVoiceName.ts similarity index 77% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestOpenaiVoiceName.ts rename to src/serialization/types/CreateStreamRequestOpenaiVoiceName.ts index 84cbb28..11739fb 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestOpenaiVoiceName.ts +++ b/src/serialization/types/CreateStreamRequestOpenaiVoiceName.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestOpenaiVoiceName: core.serialization.Schema< serializers.CreateStreamRequestOpenaiVoiceName.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestResponseFormatType.ts b/src/serialization/types/CreateStreamRequestResponseFormatType.ts similarity index 75% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestResponseFormatType.ts rename to src/serialization/types/CreateStreamRequestResponseFormatType.ts index a7a3da2..0dd3237 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestResponseFormatType.ts +++ b/src/serialization/types/CreateStreamRequestResponseFormatType.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestResponseFormatType: core.serialization.Schema< serializers.CreateStreamRequestResponseFormatType.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestSelectedModel.ts b/src/serialization/types/CreateStreamRequestSelectedModel.ts similarity index 94% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestSelectedModel.ts rename to src/serialization/types/CreateStreamRequestSelectedModel.ts index 3e88f50..254ad40 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestSelectedModel.ts +++ b/src/serialization/types/CreateStreamRequestSelectedModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestSelectedModel: core.serialization.Schema< serializers.CreateStreamRequestSelectedModel.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestTranslationModel.ts b/src/serialization/types/CreateStreamRequestTranslationModel.ts similarity index 75% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestTranslationModel.ts rename to src/serialization/types/CreateStreamRequestTranslationModel.ts index 27010bf..41b0c8f 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestTranslationModel.ts +++ b/src/serialization/types/CreateStreamRequestTranslationModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestTranslationModel: core.serialization.Schema< serializers.CreateStreamRequestTranslationModel.Raw, diff --git a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestTtsProvider.ts b/src/serialization/types/CreateStreamRequestTtsProvider.ts similarity index 78% rename from src/serialization/resources/copilotIntegrations/types/CreateStreamRequestTtsProvider.ts rename to src/serialization/types/CreateStreamRequestTtsProvider.ts index 8f4a2f1..9a8d042 100644 --- a/src/serialization/resources/copilotIntegrations/types/CreateStreamRequestTtsProvider.ts +++ b/src/serialization/types/CreateStreamRequestTtsProvider.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const CreateStreamRequestTtsProvider: core.serialization.Schema< serializers.CreateStreamRequestTtsProvider.Raw, diff --git a/src/serialization/client/requests/DeforumSdPageRequest.ts b/src/serialization/types/DeforumSdPageRequest.ts similarity index 80% rename from src/serialization/client/requests/DeforumSdPageRequest.ts rename to src/serialization/types/DeforumSdPageRequest.ts index c28698a..1f939b0 100644 --- a/src/serialization/client/requests/DeforumSdPageRequest.ts +++ b/src/serialization/types/DeforumSdPageRequest.ts @@ -2,17 +2,17 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { AnimationPrompt } from "../../types/AnimationPrompt"; -import { DeforumSdPageRequestSelectedModel } from "../../types/DeforumSdPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { AnimationPrompt } from "./AnimationPrompt"; +import { DeforumSdPageRequestSelectedModel } from "./DeforumSdPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const DeforumSdPageRequest: core.serialization.Schema< +export const DeforumSdPageRequest: core.serialization.ObjectSchema< serializers.DeforumSdPageRequest.Raw, - Omit + Gooey.DeforumSdPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/DocExtractPageRequest.ts b/src/serialization/types/DocExtractPageRequest.ts similarity index 79% rename from src/serialization/client/requests/DocExtractPageRequest.ts rename to src/serialization/types/DocExtractPageRequest.ts index bdb5fa9..15a4bef 100644 --- a/src/serialization/client/requests/DocExtractPageRequest.ts +++ b/src/serialization/types/DocExtractPageRequest.ts @@ -2,18 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { DocExtractPageRequestSelectedAsrModel } from "../../types/DocExtractPageRequestSelectedAsrModel"; -import { DocExtractPageRequestSelectedModel } from "../../types/DocExtractPageRequestSelectedModel"; -import { DocExtractPageRequestResponseFormatType } from "../../types/DocExtractPageRequestResponseFormatType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { DocExtractPageRequestSelectedAsrModel } from "./DocExtractPageRequestSelectedAsrModel"; +import { DocExtractPageRequestSelectedModel } from "./DocExtractPageRequestSelectedModel"; +import { DocExtractPageRequestResponseFormatType } from "./DocExtractPageRequestResponseFormatType"; +import { RunSettings } from "./RunSettings"; -export const DocExtractPageRequest: core.serialization.Schema< +export const DocExtractPageRequest: core.serialization.ObjectSchema< serializers.DocExtractPageRequest.Raw, - Omit + Gooey.DocExtractPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/DocSearchPageRequest.ts b/src/serialization/types/DocSearchPageRequest.ts similarity index 80% rename from src/serialization/client/requests/DocSearchPageRequest.ts rename to src/serialization/types/DocSearchPageRequest.ts index bd4a568..3785b00 100644 --- a/src/serialization/client/requests/DocSearchPageRequest.ts +++ b/src/serialization/types/DocSearchPageRequest.ts @@ -2,20 +2,20 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { DocSearchPageRequestKeywordQuery } from "../../types/DocSearchPageRequestKeywordQuery"; -import { DocSearchPageRequestEmbeddingModel } from "../../types/DocSearchPageRequestEmbeddingModel"; -import { DocSearchPageRequestSelectedModel } from "../../types/DocSearchPageRequestSelectedModel"; -import { DocSearchPageRequestCitationStyle } from "../../types/DocSearchPageRequestCitationStyle"; -import { DocSearchPageRequestResponseFormatType } from "../../types/DocSearchPageRequestResponseFormatType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { DocSearchPageRequestKeywordQuery } from "./DocSearchPageRequestKeywordQuery"; +import { DocSearchPageRequestEmbeddingModel } from "./DocSearchPageRequestEmbeddingModel"; +import { DocSearchPageRequestSelectedModel } from "./DocSearchPageRequestSelectedModel"; +import { DocSearchPageRequestCitationStyle } from "./DocSearchPageRequestCitationStyle"; +import { DocSearchPageRequestResponseFormatType } from "./DocSearchPageRequestResponseFormatType"; +import { RunSettings } from "./RunSettings"; -export const DocSearchPageRequest: core.serialization.Schema< +export const DocSearchPageRequest: core.serialization.ObjectSchema< serializers.DocSearchPageRequest.Raw, - Omit + Gooey.DocSearchPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/DocSummaryPageRequest.ts b/src/serialization/types/DocSummaryPageRequest.ts similarity index 79% rename from src/serialization/client/requests/DocSummaryPageRequest.ts rename to src/serialization/types/DocSummaryPageRequest.ts index 967080e..f0e8b62 100644 --- a/src/serialization/client/requests/DocSummaryPageRequest.ts +++ b/src/serialization/types/DocSummaryPageRequest.ts @@ -2,18 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { DocSummaryPageRequestSelectedModel } from "../../types/DocSummaryPageRequestSelectedModel"; -import { DocSummaryPageRequestSelectedAsrModel } from "../../types/DocSummaryPageRequestSelectedAsrModel"; -import { DocSummaryPageRequestResponseFormatType } from "../../types/DocSummaryPageRequestResponseFormatType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { DocSummaryPageRequestSelectedModel } from "./DocSummaryPageRequestSelectedModel"; +import { DocSummaryPageRequestSelectedAsrModel } from "./DocSummaryPageRequestSelectedAsrModel"; +import { DocSummaryPageRequestResponseFormatType } from "./DocSummaryPageRequestResponseFormatType"; +import { RunSettings } from "./RunSettings"; -export const DocSummaryPageRequest: core.serialization.Schema< +export const DocSummaryPageRequest: core.serialization.ObjectSchema< serializers.DocSummaryPageRequest.Raw, - Omit + Gooey.DocSummaryPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/EmailFaceInpaintingPageRequest.ts b/src/serialization/types/EmailFaceInpaintingPageRequest.ts similarity index 90% rename from src/serialization/client/requests/EmailFaceInpaintingPageRequest.ts rename to src/serialization/types/EmailFaceInpaintingPageRequest.ts index faaa9fe..ba4cb4c 100644 --- a/src/serialization/client/requests/EmailFaceInpaintingPageRequest.ts +++ b/src/serialization/types/EmailFaceInpaintingPageRequest.ts @@ -2,16 +2,16 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { EmailFaceInpaintingPageRequestSelectedModel } from "../../types/EmailFaceInpaintingPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { EmailFaceInpaintingPageRequestSelectedModel } from "./EmailFaceInpaintingPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const EmailFaceInpaintingPageRequest: core.serialization.Schema< +export const EmailFaceInpaintingPageRequest: core.serialization.ObjectSchema< serializers.EmailFaceInpaintingPageRequest.Raw, - Omit + Gooey.EmailFaceInpaintingPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/EmbeddingsPageRequest.ts b/src/serialization/types/EmbeddingsPageRequest.ts similarity index 65% rename from src/serialization/client/requests/EmbeddingsPageRequest.ts rename to src/serialization/types/EmbeddingsPageRequest.ts index 8cfb559..042dba9 100644 --- a/src/serialization/client/requests/EmbeddingsPageRequest.ts +++ b/src/serialization/types/EmbeddingsPageRequest.ts @@ -2,16 +2,16 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { EmbeddingsPageRequestSelectedModel } from "../../types/EmbeddingsPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { EmbeddingsPageRequestSelectedModel } from "./EmbeddingsPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const EmbeddingsPageRequest: core.serialization.Schema< +export const EmbeddingsPageRequest: core.serialization.ObjectSchema< serializers.EmbeddingsPageRequest.Raw, - Omit + Gooey.EmbeddingsPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/FaceInpaintingPageRequest.ts b/src/serialization/types/FaceInpaintingPageRequest.ts similarity index 83% rename from src/serialization/client/requests/FaceInpaintingPageRequest.ts rename to src/serialization/types/FaceInpaintingPageRequest.ts index 4f73aca..ce02ddd 100644 --- a/src/serialization/client/requests/FaceInpaintingPageRequest.ts +++ b/src/serialization/types/FaceInpaintingPageRequest.ts @@ -2,16 +2,16 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { FaceInpaintingPageRequestSelectedModel } from "../../types/FaceInpaintingPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { FaceInpaintingPageRequestSelectedModel } from "./FaceInpaintingPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const FaceInpaintingPageRequest: core.serialization.Schema< +export const FaceInpaintingPageRequest: core.serialization.ObjectSchema< serializers.FaceInpaintingPageRequest.Raw, - Omit + Gooey.FaceInpaintingPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/resources/functions/client/requests/FunctionsPageRequest.ts b/src/serialization/types/FunctionsPageRequest.ts similarity index 63% rename from src/serialization/resources/functions/client/requests/FunctionsPageRequest.ts rename to src/serialization/types/FunctionsPageRequest.ts index 922029f..7bd38b2 100644 --- a/src/serialization/resources/functions/client/requests/FunctionsPageRequest.ts +++ b/src/serialization/types/FunctionsPageRequest.ts @@ -2,14 +2,14 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../../index"; -import * as Gooey from "../../../../../api/index"; -import * as core from "../../../../../core"; -import { RunSettings } from "../../../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RunSettings } from "./RunSettings"; -export const FunctionsPageRequest: core.serialization.Schema< +export const FunctionsPageRequest: core.serialization.ObjectSchema< serializers.FunctionsPageRequest.Raw, - Omit + Gooey.FunctionsPageRequest > = core.serialization.object({ code: core.serialization.string().optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/GoogleGptPageRequest.ts b/src/serialization/types/GoogleGptPageRequest.ts similarity index 82% rename from src/serialization/client/requests/GoogleGptPageRequest.ts rename to src/serialization/types/GoogleGptPageRequest.ts index 464fa98..7da8d82 100644 --- a/src/serialization/client/requests/GoogleGptPageRequest.ts +++ b/src/serialization/types/GoogleGptPageRequest.ts @@ -2,20 +2,20 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { GoogleGptPageRequestSelectedModel } from "../../types/GoogleGptPageRequestSelectedModel"; -import { GoogleGptPageRequestEmbeddingModel } from "../../types/GoogleGptPageRequestEmbeddingModel"; -import { GoogleGptPageRequestResponseFormatType } from "../../types/GoogleGptPageRequestResponseFormatType"; -import { SerpSearchLocation } from "../../types/SerpSearchLocation"; -import { SerpSearchType } from "../../types/SerpSearchType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { GoogleGptPageRequestSelectedModel } from "./GoogleGptPageRequestSelectedModel"; +import { GoogleGptPageRequestEmbeddingModel } from "./GoogleGptPageRequestEmbeddingModel"; +import { GoogleGptPageRequestResponseFormatType } from "./GoogleGptPageRequestResponseFormatType"; +import { SerpSearchLocation } from "./SerpSearchLocation"; +import { SerpSearchType } from "./SerpSearchType"; +import { RunSettings } from "./RunSettings"; -export const GoogleGptPageRequest: core.serialization.Schema< +export const GoogleGptPageRequest: core.serialization.ObjectSchema< serializers.GoogleGptPageRequest.Raw, - Omit + Gooey.GoogleGptPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/GoogleImageGenPageRequest.ts b/src/serialization/types/GoogleImageGenPageRequest.ts similarity index 81% rename from src/serialization/client/requests/GoogleImageGenPageRequest.ts rename to src/serialization/types/GoogleImageGenPageRequest.ts index aad2f69..2b7e8a5 100644 --- a/src/serialization/client/requests/GoogleImageGenPageRequest.ts +++ b/src/serialization/types/GoogleImageGenPageRequest.ts @@ -2,17 +2,17 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { SerpSearchLocation } from "../../types/SerpSearchLocation"; -import { GoogleImageGenPageRequestSelectedModel } from "../../types/GoogleImageGenPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { SerpSearchLocation } from "./SerpSearchLocation"; +import { GoogleImageGenPageRequestSelectedModel } from "./GoogleImageGenPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const GoogleImageGenPageRequest: core.serialization.Schema< +export const GoogleImageGenPageRequest: core.serialization.ObjectSchema< serializers.GoogleImageGenPageRequest.Raw, - Omit + Gooey.GoogleImageGenPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/ImageSegmentationPageRequest.ts b/src/serialization/types/ImageSegmentationPageRequest.ts similarity index 78% rename from src/serialization/client/requests/ImageSegmentationPageRequest.ts rename to src/serialization/types/ImageSegmentationPageRequest.ts index 0c0dd9a..6444306 100644 --- a/src/serialization/client/requests/ImageSegmentationPageRequest.ts +++ b/src/serialization/types/ImageSegmentationPageRequest.ts @@ -2,16 +2,16 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { ImageSegmentationPageRequestSelectedModel } from "../../types/ImageSegmentationPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { ImageSegmentationPageRequestSelectedModel } from "./ImageSegmentationPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const ImageSegmentationPageRequest: core.serialization.Schema< +export const ImageSegmentationPageRequest: core.serialization.ObjectSchema< serializers.ImageSegmentationPageRequest.Raw, - Omit + Gooey.ImageSegmentationPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/Img2ImgPageRequest.ts b/src/serialization/types/Img2ImgPageRequest.ts similarity index 82% rename from src/serialization/client/requests/Img2ImgPageRequest.ts rename to src/serialization/types/Img2ImgPageRequest.ts index 615030c..0a1f18f 100644 --- a/src/serialization/client/requests/Img2ImgPageRequest.ts +++ b/src/serialization/types/Img2ImgPageRequest.ts @@ -2,17 +2,17 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { Img2ImgPageRequestSelectedModel } from "../../types/Img2ImgPageRequestSelectedModel"; -import { Img2ImgPageRequestSelectedControlnetModel } from "../../types/Img2ImgPageRequestSelectedControlnetModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { Img2ImgPageRequestSelectedModel } from "./Img2ImgPageRequestSelectedModel"; +import { Img2ImgPageRequestSelectedControlnetModel } from "./Img2ImgPageRequestSelectedControlnetModel"; +import { RunSettings } from "./RunSettings"; -export const Img2ImgPageRequest: core.serialization.Schema< +export const Img2ImgPageRequest: core.serialization.ObjectSchema< serializers.Img2ImgPageRequest.Raw, - Omit + Gooey.Img2ImgPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/resources/lipSyncing/client/requests/LipsyncPageRequest.ts b/src/serialization/types/LipsyncPageRequest.ts similarity index 76% rename from src/serialization/resources/lipSyncing/client/requests/LipsyncPageRequest.ts rename to src/serialization/types/LipsyncPageRequest.ts index e95bc8d..9ece446 100644 --- a/src/serialization/resources/lipSyncing/client/requests/LipsyncPageRequest.ts +++ b/src/serialization/types/LipsyncPageRequest.ts @@ -2,17 +2,17 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../../index"; -import * as Gooey from "../../../../../api/index"; -import * as core from "../../../../../core"; -import { RecipeFunction } from "../../../../types/RecipeFunction"; -import { SadTalkerSettings } from "../../../../types/SadTalkerSettings"; -import { LipsyncPageRequestSelectedModel } from "../../types/LipsyncPageRequestSelectedModel"; -import { RunSettings } from "../../../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { SadTalkerSettings } from "./SadTalkerSettings"; +import { LipsyncPageRequestSelectedModel } from "./LipsyncPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const LipsyncPageRequest: core.serialization.Schema< +export const LipsyncPageRequest: core.serialization.ObjectSchema< serializers.LipsyncPageRequest.Raw, - Omit + Gooey.LipsyncPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/resources/lipSyncing/types/LipsyncPageRequestSelectedModel.ts b/src/serialization/types/LipsyncPageRequestSelectedModel.ts similarity index 74% rename from src/serialization/resources/lipSyncing/types/LipsyncPageRequestSelectedModel.ts rename to src/serialization/types/LipsyncPageRequestSelectedModel.ts index 68e9bbc..038c418 100644 --- a/src/serialization/resources/lipSyncing/types/LipsyncPageRequestSelectedModel.ts +++ b/src/serialization/types/LipsyncPageRequestSelectedModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const LipsyncPageRequestSelectedModel: core.serialization.Schema< serializers.LipsyncPageRequestSelectedModel.Raw, diff --git a/src/serialization/client/requests/LipsyncTtsPageRequest.ts b/src/serialization/types/LipsyncTtsPageRequest.ts similarity index 85% rename from src/serialization/client/requests/LipsyncTtsPageRequest.ts rename to src/serialization/types/LipsyncTtsPageRequest.ts index a39a477..32dedb9 100644 --- a/src/serialization/client/requests/LipsyncTtsPageRequest.ts +++ b/src/serialization/types/LipsyncTtsPageRequest.ts @@ -2,20 +2,20 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { LipsyncTtsPageRequestTtsProvider } from "../../types/LipsyncTtsPageRequestTtsProvider"; -import { LipsyncTtsPageRequestOpenaiVoiceName } from "../../types/LipsyncTtsPageRequestOpenaiVoiceName"; -import { LipsyncTtsPageRequestOpenaiTtsModel } from "../../types/LipsyncTtsPageRequestOpenaiTtsModel"; -import { SadTalkerSettings } from "../../types/SadTalkerSettings"; -import { LipsyncTtsPageRequestSelectedModel } from "../../types/LipsyncTtsPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { LipsyncTtsPageRequestTtsProvider } from "./LipsyncTtsPageRequestTtsProvider"; +import { LipsyncTtsPageRequestOpenaiVoiceName } from "./LipsyncTtsPageRequestOpenaiVoiceName"; +import { LipsyncTtsPageRequestOpenaiTtsModel } from "./LipsyncTtsPageRequestOpenaiTtsModel"; +import { SadTalkerSettings } from "./SadTalkerSettings"; +import { LipsyncTtsPageRequestSelectedModel } from "./LipsyncTtsPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const LipsyncTtsPageRequest: core.serialization.Schema< +export const LipsyncTtsPageRequest: core.serialization.ObjectSchema< serializers.LipsyncTtsPageRequest.Raw, - Omit + Gooey.LipsyncTtsPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/ObjectInpaintingPageRequest.ts b/src/serialization/types/ObjectInpaintingPageRequest.ts similarity index 84% rename from src/serialization/client/requests/ObjectInpaintingPageRequest.ts rename to src/serialization/types/ObjectInpaintingPageRequest.ts index 2050888..fbc26fc 100644 --- a/src/serialization/client/requests/ObjectInpaintingPageRequest.ts +++ b/src/serialization/types/ObjectInpaintingPageRequest.ts @@ -2,16 +2,16 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { ObjectInpaintingPageRequestSelectedModel } from "../../types/ObjectInpaintingPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { ObjectInpaintingPageRequestSelectedModel } from "./ObjectInpaintingPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const ObjectInpaintingPageRequest: core.serialization.Schema< +export const ObjectInpaintingPageRequest: core.serialization.ObjectSchema< serializers.ObjectInpaintingPageRequest.Raw, - Omit + Gooey.ObjectInpaintingPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/QrCodeGeneratorPageRequest.ts b/src/serialization/types/QrCodeGeneratorPageRequest.ts similarity index 85% rename from src/serialization/client/requests/QrCodeGeneratorPageRequest.ts rename to src/serialization/types/QrCodeGeneratorPageRequest.ts index 293cffc..4953ca3 100644 --- a/src/serialization/client/requests/QrCodeGeneratorPageRequest.ts +++ b/src/serialization/types/QrCodeGeneratorPageRequest.ts @@ -2,20 +2,20 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { Vcard } from "../../types/Vcard"; -import { QrCodeGeneratorPageRequestImagePromptControlnetModelsItem } from "../../types/QrCodeGeneratorPageRequestImagePromptControlnetModelsItem"; -import { QrCodeGeneratorPageRequestSelectedModel } from "../../types/QrCodeGeneratorPageRequestSelectedModel"; -import { QrCodeGeneratorPageRequestSelectedControlnetModelItem } from "../../types/QrCodeGeneratorPageRequestSelectedControlnetModelItem"; -import { QrCodeGeneratorPageRequestScheduler } from "../../types/QrCodeGeneratorPageRequestScheduler"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { Vcard } from "./Vcard"; +import { QrCodeGeneratorPageRequestImagePromptControlnetModelsItem } from "./QrCodeGeneratorPageRequestImagePromptControlnetModelsItem"; +import { QrCodeGeneratorPageRequestSelectedModel } from "./QrCodeGeneratorPageRequestSelectedModel"; +import { QrCodeGeneratorPageRequestSelectedControlnetModelItem } from "./QrCodeGeneratorPageRequestSelectedControlnetModelItem"; +import { QrCodeGeneratorPageRequestScheduler } from "./QrCodeGeneratorPageRequestScheduler"; +import { RunSettings } from "./RunSettings"; -export const QrCodeGeneratorPageRequest: core.serialization.Schema< +export const QrCodeGeneratorPageRequest: core.serialization.ObjectSchema< serializers.QrCodeGeneratorPageRequest.Raw, - Omit + Gooey.QrCodeGeneratorPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/RelatedQnADocPageRequest.ts b/src/serialization/types/RelatedQnADocPageRequest.ts similarity index 80% rename from src/serialization/client/requests/RelatedQnADocPageRequest.ts rename to src/serialization/types/RelatedQnADocPageRequest.ts index 7432e9d..f1a3384 100644 --- a/src/serialization/client/requests/RelatedQnADocPageRequest.ts +++ b/src/serialization/types/RelatedQnADocPageRequest.ts @@ -2,22 +2,22 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { RelatedQnADocPageRequestKeywordQuery } from "../../types/RelatedQnADocPageRequestKeywordQuery"; -import { RelatedQnADocPageRequestEmbeddingModel } from "../../types/RelatedQnADocPageRequestEmbeddingModel"; -import { RelatedQnADocPageRequestSelectedModel } from "../../types/RelatedQnADocPageRequestSelectedModel"; -import { RelatedQnADocPageRequestCitationStyle } from "../../types/RelatedQnADocPageRequestCitationStyle"; -import { RelatedQnADocPageRequestResponseFormatType } from "../../types/RelatedQnADocPageRequestResponseFormatType"; -import { SerpSearchLocation } from "../../types/SerpSearchLocation"; -import { SerpSearchType } from "../../types/SerpSearchType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { RelatedQnADocPageRequestKeywordQuery } from "./RelatedQnADocPageRequestKeywordQuery"; +import { RelatedQnADocPageRequestEmbeddingModel } from "./RelatedQnADocPageRequestEmbeddingModel"; +import { RelatedQnADocPageRequestSelectedModel } from "./RelatedQnADocPageRequestSelectedModel"; +import { RelatedQnADocPageRequestCitationStyle } from "./RelatedQnADocPageRequestCitationStyle"; +import { RelatedQnADocPageRequestResponseFormatType } from "./RelatedQnADocPageRequestResponseFormatType"; +import { SerpSearchLocation } from "./SerpSearchLocation"; +import { SerpSearchType } from "./SerpSearchType"; +import { RunSettings } from "./RunSettings"; -export const RelatedQnADocPageRequest: core.serialization.Schema< +export const RelatedQnADocPageRequest: core.serialization.ObjectSchema< serializers.RelatedQnADocPageRequest.Raw, - Omit + Gooey.RelatedQnADocPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/RelatedQnAPageRequest.ts b/src/serialization/types/RelatedQnAPageRequest.ts similarity index 82% rename from src/serialization/client/requests/RelatedQnAPageRequest.ts rename to src/serialization/types/RelatedQnAPageRequest.ts index 9e9453a..9bb6526 100644 --- a/src/serialization/client/requests/RelatedQnAPageRequest.ts +++ b/src/serialization/types/RelatedQnAPageRequest.ts @@ -2,20 +2,20 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { RelatedQnAPageRequestSelectedModel } from "../../types/RelatedQnAPageRequestSelectedModel"; -import { RelatedQnAPageRequestEmbeddingModel } from "../../types/RelatedQnAPageRequestEmbeddingModel"; -import { RelatedQnAPageRequestResponseFormatType } from "../../types/RelatedQnAPageRequestResponseFormatType"; -import { SerpSearchLocation } from "../../types/SerpSearchLocation"; -import { SerpSearchType } from "../../types/SerpSearchType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { RelatedQnAPageRequestSelectedModel } from "./RelatedQnAPageRequestSelectedModel"; +import { RelatedQnAPageRequestEmbeddingModel } from "./RelatedQnAPageRequestEmbeddingModel"; +import { RelatedQnAPageRequestResponseFormatType } from "./RelatedQnAPageRequestResponseFormatType"; +import { SerpSearchLocation } from "./SerpSearchLocation"; +import { SerpSearchType } from "./SerpSearchType"; +import { RunSettings } from "./RunSettings"; -export const RelatedQnAPageRequest: core.serialization.Schema< +export const RelatedQnAPageRequest: core.serialization.ObjectSchema< serializers.RelatedQnAPageRequest.Raw, - Omit + Gooey.RelatedQnAPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/SeoSummaryPageRequest.ts b/src/serialization/types/SeoSummaryPageRequest.ts similarity index 83% rename from src/serialization/client/requests/SeoSummaryPageRequest.ts rename to src/serialization/types/SeoSummaryPageRequest.ts index da638b7..66ce96b 100644 --- a/src/serialization/client/requests/SeoSummaryPageRequest.ts +++ b/src/serialization/types/SeoSummaryPageRequest.ts @@ -2,18 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { SeoSummaryPageRequestSelectedModel } from "../../types/SeoSummaryPageRequestSelectedModel"; -import { SeoSummaryPageRequestResponseFormatType } from "../../types/SeoSummaryPageRequestResponseFormatType"; -import { SerpSearchLocation } from "../../types/SerpSearchLocation"; -import { SerpSearchType } from "../../types/SerpSearchType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { SeoSummaryPageRequestSelectedModel } from "./SeoSummaryPageRequestSelectedModel"; +import { SeoSummaryPageRequestResponseFormatType } from "./SeoSummaryPageRequestResponseFormatType"; +import { SerpSearchLocation } from "./SerpSearchLocation"; +import { SerpSearchType } from "./SerpSearchType"; +import { RunSettings } from "./RunSettings"; -export const SeoSummaryPageRequest: core.serialization.Schema< +export const SeoSummaryPageRequest: core.serialization.ObjectSchema< serializers.SeoSummaryPageRequest.Raw, - Omit + Gooey.SeoSummaryPageRequest > = core.serialization.object({ searchQuery: core.serialization.property("search_query", core.serialization.string()), keywords: core.serialization.string(), diff --git a/src/serialization/resources/smartGpt/client/requests/SmartGptPageRequest.ts b/src/serialization/types/SmartGptPageRequest.ts similarity index 79% rename from src/serialization/resources/smartGpt/client/requests/SmartGptPageRequest.ts rename to src/serialization/types/SmartGptPageRequest.ts index b5e5d3d..b6a1139 100644 --- a/src/serialization/resources/smartGpt/client/requests/SmartGptPageRequest.ts +++ b/src/serialization/types/SmartGptPageRequest.ts @@ -2,17 +2,17 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../../index"; -import * as Gooey from "../../../../../api/index"; -import * as core from "../../../../../core"; -import { RecipeFunction } from "../../../../types/RecipeFunction"; -import { SmartGptPageRequestSelectedModel } from "../../types/SmartGptPageRequestSelectedModel"; -import { SmartGptPageRequestResponseFormatType } from "../../types/SmartGptPageRequestResponseFormatType"; -import { RunSettings } from "../../../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { SmartGptPageRequestSelectedModel } from "./SmartGptPageRequestSelectedModel"; +import { SmartGptPageRequestResponseFormatType } from "./SmartGptPageRequestResponseFormatType"; +import { RunSettings } from "./RunSettings"; -export const SmartGptPageRequest: core.serialization.Schema< +export const SmartGptPageRequest: core.serialization.ObjectSchema< serializers.SmartGptPageRequest.Raw, - Omit + Gooey.SmartGptPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/resources/smartGpt/types/SmartGptPageRequestResponseFormatType.ts b/src/serialization/types/SmartGptPageRequestResponseFormatType.ts similarity index 75% rename from src/serialization/resources/smartGpt/types/SmartGptPageRequestResponseFormatType.ts rename to src/serialization/types/SmartGptPageRequestResponseFormatType.ts index b1ad919..f4e1cf5 100644 --- a/src/serialization/resources/smartGpt/types/SmartGptPageRequestResponseFormatType.ts +++ b/src/serialization/types/SmartGptPageRequestResponseFormatType.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const SmartGptPageRequestResponseFormatType: core.serialization.Schema< serializers.SmartGptPageRequestResponseFormatType.Raw, diff --git a/src/serialization/resources/smartGpt/types/SmartGptPageRequestSelectedModel.ts b/src/serialization/types/SmartGptPageRequestSelectedModel.ts similarity index 94% rename from src/serialization/resources/smartGpt/types/SmartGptPageRequestSelectedModel.ts rename to src/serialization/types/SmartGptPageRequestSelectedModel.ts index 9ea20c5..0589523 100644 --- a/src/serialization/resources/smartGpt/types/SmartGptPageRequestSelectedModel.ts +++ b/src/serialization/types/SmartGptPageRequestSelectedModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const SmartGptPageRequestSelectedModel: core.serialization.Schema< serializers.SmartGptPageRequestSelectedModel.Raw, diff --git a/src/serialization/client/requests/SocialLookupEmailPageRequest.ts b/src/serialization/types/SocialLookupEmailPageRequest.ts similarity index 78% rename from src/serialization/client/requests/SocialLookupEmailPageRequest.ts rename to src/serialization/types/SocialLookupEmailPageRequest.ts index 5e3850f..a0860df 100644 --- a/src/serialization/client/requests/SocialLookupEmailPageRequest.ts +++ b/src/serialization/types/SocialLookupEmailPageRequest.ts @@ -2,17 +2,17 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { SocialLookupEmailPageRequestSelectedModel } from "../../types/SocialLookupEmailPageRequestSelectedModel"; -import { SocialLookupEmailPageRequestResponseFormatType } from "../../types/SocialLookupEmailPageRequestResponseFormatType"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { SocialLookupEmailPageRequestSelectedModel } from "./SocialLookupEmailPageRequestSelectedModel"; +import { SocialLookupEmailPageRequestResponseFormatType } from "./SocialLookupEmailPageRequestResponseFormatType"; +import { RunSettings } from "./RunSettings"; -export const SocialLookupEmailPageRequest: core.serialization.Schema< +export const SocialLookupEmailPageRequest: core.serialization.ObjectSchema< serializers.SocialLookupEmailPageRequest.Raw, - Omit + Gooey.SocialLookupEmailPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/Text2AudioPageRequest.ts b/src/serialization/types/Text2AudioPageRequest.ts similarity index 83% rename from src/serialization/client/requests/Text2AudioPageRequest.ts rename to src/serialization/types/Text2AudioPageRequest.ts index 119e3de..9ee6612 100644 --- a/src/serialization/client/requests/Text2AudioPageRequest.ts +++ b/src/serialization/types/Text2AudioPageRequest.ts @@ -2,15 +2,15 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { RunSettings } from "./RunSettings"; -export const Text2AudioPageRequest: core.serialization.Schema< +export const Text2AudioPageRequest: core.serialization.ObjectSchema< serializers.Text2AudioPageRequest.Raw, - Omit + Gooey.Text2AudioPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/TextToSpeechPageRequest.ts b/src/serialization/types/TextToSpeechPageRequest.ts similarity index 84% rename from src/serialization/client/requests/TextToSpeechPageRequest.ts rename to src/serialization/types/TextToSpeechPageRequest.ts index 50f33ab..4918a2c 100644 --- a/src/serialization/client/requests/TextToSpeechPageRequest.ts +++ b/src/serialization/types/TextToSpeechPageRequest.ts @@ -2,18 +2,18 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { TextToSpeechPageRequestTtsProvider } from "../../types/TextToSpeechPageRequestTtsProvider"; -import { TextToSpeechPageRequestOpenaiVoiceName } from "../../types/TextToSpeechPageRequestOpenaiVoiceName"; -import { TextToSpeechPageRequestOpenaiTtsModel } from "../../types/TextToSpeechPageRequestOpenaiTtsModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { TextToSpeechPageRequestTtsProvider } from "./TextToSpeechPageRequestTtsProvider"; +import { TextToSpeechPageRequestOpenaiVoiceName } from "./TextToSpeechPageRequestOpenaiVoiceName"; +import { TextToSpeechPageRequestOpenaiTtsModel } from "./TextToSpeechPageRequestOpenaiTtsModel"; +import { RunSettings } from "./RunSettings"; -export const TextToSpeechPageRequest: core.serialization.Schema< +export const TextToSpeechPageRequest: core.serialization.ObjectSchema< serializers.TextToSpeechPageRequest.Raw, - Omit + Gooey.TextToSpeechPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/client/requests/TranslationPageRequest.ts b/src/serialization/types/TranslationPageRequest.ts similarity index 74% rename from src/serialization/client/requests/TranslationPageRequest.ts rename to src/serialization/types/TranslationPageRequest.ts index 0868b0e..4bd4ce4 100644 --- a/src/serialization/client/requests/TranslationPageRequest.ts +++ b/src/serialization/types/TranslationPageRequest.ts @@ -2,16 +2,16 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../index"; -import * as Gooey from "../../../api/index"; -import * as core from "../../../core"; -import { RecipeFunction } from "../../types/RecipeFunction"; -import { TranslationPageRequestSelectedModel } from "../../types/TranslationPageRequestSelectedModel"; -import { RunSettings } from "../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { TranslationPageRequestSelectedModel } from "./TranslationPageRequestSelectedModel"; +import { RunSettings } from "./RunSettings"; -export const TranslationPageRequest: core.serialization.Schema< +export const TranslationPageRequest: core.serialization.ObjectSchema< serializers.TranslationPageRequest.Raw, - Omit + Gooey.TranslationPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/resources/copilotForYourEnterprise/client/requests/VideoBotsPageRequest.ts b/src/serialization/types/VideoBotsPageRequest.ts similarity index 86% rename from src/serialization/resources/copilotForYourEnterprise/client/requests/VideoBotsPageRequest.ts rename to src/serialization/types/VideoBotsPageRequest.ts index 55a4087..53fb697 100644 --- a/src/serialization/resources/copilotForYourEnterprise/client/requests/VideoBotsPageRequest.ts +++ b/src/serialization/types/VideoBotsPageRequest.ts @@ -2,28 +2,28 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../../index"; -import * as Gooey from "../../../../../api/index"; -import * as core from "../../../../../core"; -import { RecipeFunction } from "../../../../types/RecipeFunction"; -import { ConversationEntry } from "../../../../types/ConversationEntry"; -import { VideoBotsPageRequestSelectedModel } from "../../types/VideoBotsPageRequestSelectedModel"; -import { VideoBotsPageRequestEmbeddingModel } from "../../types/VideoBotsPageRequestEmbeddingModel"; -import { VideoBotsPageRequestCitationStyle } from "../../types/VideoBotsPageRequestCitationStyle"; -import { VideoBotsPageRequestAsrModel } from "../../types/VideoBotsPageRequestAsrModel"; -import { VideoBotsPageRequestTranslationModel } from "../../types/VideoBotsPageRequestTranslationModel"; -import { VideoBotsPageRequestLipsyncModel } from "../../types/VideoBotsPageRequestLipsyncModel"; -import { LlmTools } from "../../../../types/LlmTools"; -import { VideoBotsPageRequestResponseFormatType } from "../../types/VideoBotsPageRequestResponseFormatType"; -import { VideoBotsPageRequestTtsProvider } from "../../types/VideoBotsPageRequestTtsProvider"; -import { VideoBotsPageRequestOpenaiVoiceName } from "../../types/VideoBotsPageRequestOpenaiVoiceName"; -import { VideoBotsPageRequestOpenaiTtsModel } from "../../types/VideoBotsPageRequestOpenaiTtsModel"; -import { SadTalkerSettings } from "../../../../types/SadTalkerSettings"; -import { RunSettings } from "../../../../types/RunSettings"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; +import { RecipeFunction } from "./RecipeFunction"; +import { ConversationEntry } from "./ConversationEntry"; +import { VideoBotsPageRequestSelectedModel } from "./VideoBotsPageRequestSelectedModel"; +import { VideoBotsPageRequestEmbeddingModel } from "./VideoBotsPageRequestEmbeddingModel"; +import { VideoBotsPageRequestCitationStyle } from "./VideoBotsPageRequestCitationStyle"; +import { VideoBotsPageRequestAsrModel } from "./VideoBotsPageRequestAsrModel"; +import { VideoBotsPageRequestTranslationModel } from "./VideoBotsPageRequestTranslationModel"; +import { VideoBotsPageRequestLipsyncModel } from "./VideoBotsPageRequestLipsyncModel"; +import { LlmTools } from "./LlmTools"; +import { VideoBotsPageRequestResponseFormatType } from "./VideoBotsPageRequestResponseFormatType"; +import { VideoBotsPageRequestTtsProvider } from "./VideoBotsPageRequestTtsProvider"; +import { VideoBotsPageRequestOpenaiVoiceName } from "./VideoBotsPageRequestOpenaiVoiceName"; +import { VideoBotsPageRequestOpenaiTtsModel } from "./VideoBotsPageRequestOpenaiTtsModel"; +import { SadTalkerSettings } from "./SadTalkerSettings"; +import { RunSettings } from "./RunSettings"; -export const VideoBotsPageRequest: core.serialization.Schema< +export const VideoBotsPageRequest: core.serialization.ObjectSchema< serializers.VideoBotsPageRequest.Raw, - Omit + Gooey.VideoBotsPageRequest > = core.serialization.object({ functions: core.serialization.list(RecipeFunction).optional(), variables: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestAsrModel.ts b/src/serialization/types/VideoBotsPageRequestAsrModel.ts similarity index 87% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestAsrModel.ts rename to src/serialization/types/VideoBotsPageRequestAsrModel.ts index a86f6ce..3b71834 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestAsrModel.ts +++ b/src/serialization/types/VideoBotsPageRequestAsrModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestAsrModel: core.serialization.Schema< serializers.VideoBotsPageRequestAsrModel.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestCitationStyle.ts b/src/serialization/types/VideoBotsPageRequestCitationStyle.ts similarity index 88% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestCitationStyle.ts rename to src/serialization/types/VideoBotsPageRequestCitationStyle.ts index f247422..ab5e826 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestCitationStyle.ts +++ b/src/serialization/types/VideoBotsPageRequestCitationStyle.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestCitationStyle: core.serialization.Schema< serializers.VideoBotsPageRequestCitationStyle.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestEmbeddingModel.ts b/src/serialization/types/VideoBotsPageRequestEmbeddingModel.ts similarity index 85% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestEmbeddingModel.ts rename to src/serialization/types/VideoBotsPageRequestEmbeddingModel.ts index d839517..93f8b5e 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestEmbeddingModel.ts +++ b/src/serialization/types/VideoBotsPageRequestEmbeddingModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestEmbeddingModel: core.serialization.Schema< serializers.VideoBotsPageRequestEmbeddingModel.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestLipsyncModel.ts b/src/serialization/types/VideoBotsPageRequestLipsyncModel.ts similarity index 74% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestLipsyncModel.ts rename to src/serialization/types/VideoBotsPageRequestLipsyncModel.ts index b694d55..52be8bd 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestLipsyncModel.ts +++ b/src/serialization/types/VideoBotsPageRequestLipsyncModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestLipsyncModel: core.serialization.Schema< serializers.VideoBotsPageRequestLipsyncModel.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiTtsModel.ts b/src/serialization/types/VideoBotsPageRequestOpenaiTtsModel.ts similarity index 74% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiTtsModel.ts rename to src/serialization/types/VideoBotsPageRequestOpenaiTtsModel.ts index dd21bfb..94cf72f 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiTtsModel.ts +++ b/src/serialization/types/VideoBotsPageRequestOpenaiTtsModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestOpenaiTtsModel: core.serialization.Schema< serializers.VideoBotsPageRequestOpenaiTtsModel.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiVoiceName.ts b/src/serialization/types/VideoBotsPageRequestOpenaiVoiceName.ts similarity index 77% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiVoiceName.ts rename to src/serialization/types/VideoBotsPageRequestOpenaiVoiceName.ts index f40e7ae..52c13e8 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestOpenaiVoiceName.ts +++ b/src/serialization/types/VideoBotsPageRequestOpenaiVoiceName.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestOpenaiVoiceName: core.serialization.Schema< serializers.VideoBotsPageRequestOpenaiVoiceName.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestResponseFormatType.ts b/src/serialization/types/VideoBotsPageRequestResponseFormatType.ts similarity index 75% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestResponseFormatType.ts rename to src/serialization/types/VideoBotsPageRequestResponseFormatType.ts index b4dc9f9..99774b1 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestResponseFormatType.ts +++ b/src/serialization/types/VideoBotsPageRequestResponseFormatType.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestResponseFormatType: core.serialization.Schema< serializers.VideoBotsPageRequestResponseFormatType.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestSelectedModel.ts b/src/serialization/types/VideoBotsPageRequestSelectedModel.ts similarity index 94% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestSelectedModel.ts rename to src/serialization/types/VideoBotsPageRequestSelectedModel.ts index 4ecf05e..fce0378 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestSelectedModel.ts +++ b/src/serialization/types/VideoBotsPageRequestSelectedModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestSelectedModel: core.serialization.Schema< serializers.VideoBotsPageRequestSelectedModel.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTranslationModel.ts b/src/serialization/types/VideoBotsPageRequestTranslationModel.ts similarity index 75% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTranslationModel.ts rename to src/serialization/types/VideoBotsPageRequestTranslationModel.ts index 2961e65..8d6c631 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTranslationModel.ts +++ b/src/serialization/types/VideoBotsPageRequestTranslationModel.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestTranslationModel: core.serialization.Schema< serializers.VideoBotsPageRequestTranslationModel.Raw, diff --git a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTtsProvider.ts b/src/serialization/types/VideoBotsPageRequestTtsProvider.ts similarity index 78% rename from src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTtsProvider.ts rename to src/serialization/types/VideoBotsPageRequestTtsProvider.ts index f487f86..e90183a 100644 --- a/src/serialization/resources/copilotForYourEnterprise/types/VideoBotsPageRequestTtsProvider.ts +++ b/src/serialization/types/VideoBotsPageRequestTtsProvider.ts @@ -2,9 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as serializers from "../../../index"; -import * as Gooey from "../../../../api/index"; -import * as core from "../../../../core"; +import * as serializers from "../index"; +import * as Gooey from "../../api/index"; +import * as core from "../../core"; export const VideoBotsPageRequestTtsProvider: core.serialization.Schema< serializers.VideoBotsPageRequestTtsProvider.Raw, diff --git a/src/serialization/types/index.ts b/src/serialization/types/index.ts index 0d58180..c1bdec5 100644 --- a/src/serialization/types/index.ts +++ b/src/serialization/types/index.ts @@ -1,59 +1,3 @@ -export * from "./DeforumSdPageRequestSelectedModel"; -export * from "./QrCodeGeneratorPageRequestImagePromptControlnetModelsItem"; -export * from "./QrCodeGeneratorPageRequestSelectedModel"; -export * from "./QrCodeGeneratorPageRequestSelectedControlnetModelItem"; -export * from "./QrCodeGeneratorPageRequestScheduler"; -export * from "./RelatedQnAPageRequestSelectedModel"; -export * from "./RelatedQnAPageRequestEmbeddingModel"; -export * from "./RelatedQnAPageRequestResponseFormatType"; -export * from "./SeoSummaryPageRequestSelectedModel"; -export * from "./SeoSummaryPageRequestResponseFormatType"; -export * from "./GoogleGptPageRequestSelectedModel"; -export * from "./GoogleGptPageRequestEmbeddingModel"; -export * from "./GoogleGptPageRequestResponseFormatType"; -export * from "./SocialLookupEmailPageRequestSelectedModel"; -export * from "./SocialLookupEmailPageRequestResponseFormatType"; -export * from "./DocExtractPageRequestSelectedAsrModel"; -export * from "./DocExtractPageRequestSelectedModel"; -export * from "./DocExtractPageRequestResponseFormatType"; -export * from "./CompareLlmPageRequestSelectedModelsItem"; -export * from "./CompareLlmPageRequestResponseFormatType"; -export * from "./DocSearchPageRequestKeywordQuery"; -export * from "./DocSearchPageRequestEmbeddingModel"; -export * from "./DocSearchPageRequestSelectedModel"; -export * from "./DocSearchPageRequestCitationStyle"; -export * from "./DocSearchPageRequestResponseFormatType"; -export * from "./DocSummaryPageRequestSelectedModel"; -export * from "./DocSummaryPageRequestSelectedAsrModel"; -export * from "./DocSummaryPageRequestResponseFormatType"; -export * from "./LipsyncTtsPageRequestTtsProvider"; -export * from "./LipsyncTtsPageRequestOpenaiVoiceName"; -export * from "./LipsyncTtsPageRequestOpenaiTtsModel"; -export * from "./LipsyncTtsPageRequestSelectedModel"; -export * from "./TextToSpeechPageRequestTtsProvider"; -export * from "./TextToSpeechPageRequestOpenaiVoiceName"; -export * from "./TextToSpeechPageRequestOpenaiTtsModel"; -export * from "./AsrPageRequestSelectedModel"; -export * from "./AsrPageRequestTranslationModel"; -export * from "./AsrPageRequestOutputFormat"; -export * from "./TranslationPageRequestSelectedModel"; -export * from "./Img2ImgPageRequestSelectedModel"; -export * from "./Img2ImgPageRequestSelectedControlnetModelItem"; -export * from "./Img2ImgPageRequestSelectedControlnetModel"; -export * from "./CompareText2ImgPageRequestSelectedModelsItem"; -export * from "./CompareText2ImgPageRequestScheduler"; -export * from "./ObjectInpaintingPageRequestSelectedModel"; -export * from "./FaceInpaintingPageRequestSelectedModel"; -export * from "./EmailFaceInpaintingPageRequestSelectedModel"; -export * from "./GoogleImageGenPageRequestSelectedModel"; -export * from "./ImageSegmentationPageRequestSelectedModel"; -export * from "./CompareUpscalerPageRequestSelectedModelsItem"; -export * from "./EmbeddingsPageRequestSelectedModel"; -export * from "./RelatedQnADocPageRequestKeywordQuery"; -export * from "./RelatedQnADocPageRequestEmbeddingModel"; -export * from "./RelatedQnADocPageRequestSelectedModel"; -export * from "./RelatedQnADocPageRequestCitationStyle"; -export * from "./RelatedQnADocPageRequestResponseFormatType"; export * from "./AggFunctionFunction"; export * from "./AggFunction"; export * from "./AggFunctionResultFunction"; @@ -62,13 +6,22 @@ export * from "./AsrChunk"; export * from "./AsrOutputJson"; export * from "./AsrPageOutputOutputTextItem"; export * from "./AsrPageOutput"; +export * from "./AsrPageRequestSelectedModel"; +export * from "./AsrPageRequestTranslationModel"; +export * from "./AsrPageRequestOutputFormat"; +export * from "./AsrPageRequest"; export * from "./AsrPageStatusResponse"; export * from "./AsyncApiResponseModelV3"; export * from "./BalanceResponse"; export * from "./BotBroadcastFilters"; +export * from "./BotBroadcastRequestModel"; export * from "./BulkEvalPageOutput"; +export * from "./BulkEvalPageRequestSelectedModel"; +export * from "./BulkEvalPageRequestResponseFormatType"; +export * from "./BulkEvalPageRequest"; export * from "./BulkEvalPageStatusResponse"; export * from "./BulkRunnerPageOutput"; +export * from "./BulkRunnerPageRequest"; export * from "./BulkRunnerPageStatusResponse"; export * from "./ButtonPressed"; export * from "./CalledFunctionResponseTrigger"; @@ -79,10 +32,18 @@ export * from "./ChyronPlantPageOutput"; export * from "./ChyronPlantPageRequest"; export * from "./ChyronPlantPageStatusResponse"; export * from "./CompareLlmPageOutput"; +export * from "./CompareLlmPageRequestSelectedModelsItem"; +export * from "./CompareLlmPageRequestResponseFormatType"; +export * from "./CompareLlmPageRequest"; export * from "./CompareLlmPageStatusResponse"; export * from "./CompareText2ImgPageOutput"; +export * from "./CompareText2ImgPageRequestSelectedModelsItem"; +export * from "./CompareText2ImgPageRequestScheduler"; +export * from "./CompareText2ImgPageRequest"; export * from "./CompareText2ImgPageStatusResponse"; export * from "./CompareUpscalerPageOutput"; +export * from "./CompareUpscalerPageRequestSelectedModelsItem"; +export * from "./CompareUpscalerPageRequest"; export * from "./CompareUpscalerPageStatusResponse"; export * from "./ConsoleLogsLevel"; export * from "./ConsoleLogs"; @@ -91,54 +52,114 @@ export * from "./ConversationEntryContentItem"; export * from "./ConversationEntryContent"; export * from "./ConversationEntry"; export * from "./ConversationStart"; +export * from "./CreateStreamRequestSelectedModel"; +export * from "./CreateStreamRequestEmbeddingModel"; +export * from "./CreateStreamRequestCitationStyle"; +export * from "./CreateStreamRequestAsrModel"; +export * from "./CreateStreamRequestTranslationModel"; +export * from "./CreateStreamRequestLipsyncModel"; +export * from "./CreateStreamRequestResponseFormatType"; +export * from "./CreateStreamRequestTtsProvider"; +export * from "./CreateStreamRequestOpenaiVoiceName"; +export * from "./CreateStreamRequestOpenaiTtsModel"; +export * from "./CreateStreamRequest"; export * from "./CreateStreamResponse"; export * from "./DeforumSdPageOutput"; +export * from "./DeforumSdPageRequestSelectedModel"; +export * from "./DeforumSdPageRequest"; export * from "./DeforumSdPageStatusResponse"; export * from "./DocExtractPageOutput"; +export * from "./DocExtractPageRequestSelectedAsrModel"; +export * from "./DocExtractPageRequestSelectedModel"; +export * from "./DocExtractPageRequestResponseFormatType"; +export * from "./DocExtractPageRequest"; export * from "./DocExtractPageStatusResponse"; export * from "./DocSearchPageOutput"; +export * from "./DocSearchPageRequestKeywordQuery"; +export * from "./DocSearchPageRequestEmbeddingModel"; +export * from "./DocSearchPageRequestSelectedModel"; +export * from "./DocSearchPageRequestCitationStyle"; +export * from "./DocSearchPageRequestResponseFormatType"; +export * from "./DocSearchPageRequest"; export * from "./DocSearchPageStatusResponse"; export * from "./DocSummaryPageOutput"; +export * from "./DocSummaryPageRequestSelectedModel"; +export * from "./DocSummaryPageRequestSelectedAsrModel"; +export * from "./DocSummaryPageRequestResponseFormatType"; +export * from "./DocSummaryPageRequest"; export * from "./DocSummaryPageStatusResponse"; export * from "./EmailFaceInpaintingPageOutput"; +export * from "./EmailFaceInpaintingPageRequestSelectedModel"; +export * from "./EmailFaceInpaintingPageRequest"; export * from "./EmailFaceInpaintingPageStatusResponse"; export * from "./EmbeddingsPageOutput"; +export * from "./EmbeddingsPageRequestSelectedModel"; +export * from "./EmbeddingsPageRequest"; export * from "./EmbeddingsPageStatusResponse"; export * from "./EvalPrompt"; export * from "./FaceInpaintingPageOutput"; +export * from "./FaceInpaintingPageRequestSelectedModel"; +export * from "./FaceInpaintingPageRequest"; export * from "./FaceInpaintingPageStatusResponse"; export * from "./FailedReponseModelV2"; export * from "./FailedResponseDetail"; export * from "./FinalResponse"; export * from "./FunctionsPageOutput"; +export * from "./FunctionsPageRequest"; export * from "./FunctionsPageStatusResponse"; export * from "./GenericErrorResponse"; export * from "./GenericErrorResponseDetail"; export * from "./GoogleGptPageOutput"; +export * from "./GoogleGptPageRequestSelectedModel"; +export * from "./GoogleGptPageRequestEmbeddingModel"; +export * from "./GoogleGptPageRequestResponseFormatType"; +export * from "./GoogleGptPageRequest"; export * from "./GoogleGptPageStatusResponse"; export * from "./GoogleImageGenPageOutput"; +export * from "./GoogleImageGenPageRequestSelectedModel"; +export * from "./GoogleImageGenPageRequest"; export * from "./GoogleImageGenPageStatusResponse"; export * from "./HttpValidationError"; export * from "./ImageSegmentationPageOutput"; +export * from "./ImageSegmentationPageRequestSelectedModel"; +export * from "./ImageSegmentationPageRequest"; export * from "./ImageSegmentationPageStatusResponse"; export * from "./ImageUrlDetail"; export * from "./ImageUrl"; export * from "./Img2ImgPageOutput"; +export * from "./Img2ImgPageRequestSelectedModel"; +export * from "./Img2ImgPageRequestSelectedControlnetModelItem"; +export * from "./Img2ImgPageRequestSelectedControlnetModel"; +export * from "./Img2ImgPageRequest"; export * from "./Img2ImgPageStatusResponse"; export * from "./LlmTools"; export * from "./LetterWriterPageOutput"; export * from "./LetterWriterPageRequest"; export * from "./LetterWriterPageStatusResponse"; export * from "./LipsyncPageOutput"; +export * from "./LipsyncPageRequestSelectedModel"; +export * from "./LipsyncPageRequest"; export * from "./LipsyncPageStatusResponse"; export * from "./LipsyncTtsPageOutput"; +export * from "./LipsyncTtsPageRequestTtsProvider"; +export * from "./LipsyncTtsPageRequestOpenaiVoiceName"; +export * from "./LipsyncTtsPageRequestOpenaiTtsModel"; +export * from "./LipsyncTtsPageRequestSelectedModel"; +export * from "./LipsyncTtsPageRequest"; export * from "./LipsyncTtsPageStatusResponse"; export * from "./MessagePart"; export * from "./ObjectInpaintingPageOutput"; +export * from "./ObjectInpaintingPageRequestSelectedModel"; +export * from "./ObjectInpaintingPageRequest"; export * from "./ObjectInpaintingPageStatusResponse"; export * from "./PromptTreeNodePrompt"; export * from "./PromptTreeNode"; export * from "./QrCodeGeneratorPageOutput"; +export * from "./QrCodeGeneratorPageRequestImagePromptControlnetModelsItem"; +export * from "./QrCodeGeneratorPageRequestSelectedModel"; +export * from "./QrCodeGeneratorPageRequestSelectedControlnetModelItem"; +export * from "./QrCodeGeneratorPageRequestScheduler"; +export * from "./QrCodeGeneratorPageRequest"; export * from "./QrCodeGeneratorPageStatusResponse"; export * from "./RecipeFunctionTrigger"; export * from "./RecipeFunction"; @@ -146,8 +167,18 @@ export * from "./RecipeRunState"; export * from "./RelatedDocSearchResponse"; export * from "./RelatedGoogleGptResponse"; export * from "./RelatedQnADocPageOutput"; +export * from "./RelatedQnADocPageRequestKeywordQuery"; +export * from "./RelatedQnADocPageRequestEmbeddingModel"; +export * from "./RelatedQnADocPageRequestSelectedModel"; +export * from "./RelatedQnADocPageRequestCitationStyle"; +export * from "./RelatedQnADocPageRequestResponseFormatType"; +export * from "./RelatedQnADocPageRequest"; export * from "./RelatedQnADocPageStatusResponse"; export * from "./RelatedQnAPageOutput"; +export * from "./RelatedQnAPageRequestSelectedModel"; +export * from "./RelatedQnAPageRequestEmbeddingModel"; +export * from "./RelatedQnAPageRequestResponseFormatType"; +export * from "./RelatedQnAPageRequest"; export * from "./RelatedQnAPageStatusResponse"; export * from "./ReplyButton"; export * from "./ResponseModelFinalPrompt"; @@ -157,6 +188,9 @@ export * from "./RunSettingsRetentionPolicy"; export * from "./RunSettings"; export * from "./RunStart"; export * from "./SeoSummaryPageOutput"; +export * from "./SeoSummaryPageRequestSelectedModel"; +export * from "./SeoSummaryPageRequestResponseFormatType"; +export * from "./SeoSummaryPageRequest"; export * from "./SeoSummaryPageStatusResponse"; export * from "./SadTalkerSettingsPreprocess"; export * from "./SadTalkerSettings"; @@ -164,16 +198,29 @@ export * from "./SearchReference"; export * from "./SerpSearchLocation"; export * from "./SerpSearchType"; export * from "./SmartGptPageOutput"; +export * from "./SmartGptPageRequestSelectedModel"; +export * from "./SmartGptPageRequestResponseFormatType"; +export * from "./SmartGptPageRequest"; export * from "./SmartGptPageStatusResponse"; export * from "./SocialLookupEmailPageOutput"; +export * from "./SocialLookupEmailPageRequestSelectedModel"; +export * from "./SocialLookupEmailPageRequestResponseFormatType"; +export * from "./SocialLookupEmailPageRequest"; export * from "./SocialLookupEmailPageStatusResponse"; export * from "./StreamError"; export * from "./Text2AudioPageOutput"; +export * from "./Text2AudioPageRequest"; export * from "./Text2AudioPageStatusResponse"; export * from "./TextToSpeechPageOutput"; +export * from "./TextToSpeechPageRequestTtsProvider"; +export * from "./TextToSpeechPageRequestOpenaiVoiceName"; +export * from "./TextToSpeechPageRequestOpenaiTtsModel"; +export * from "./TextToSpeechPageRequest"; export * from "./TextToSpeechPageStatusResponse"; export * from "./TrainingDataModel"; export * from "./TranslationPageOutput"; +export * from "./TranslationPageRequestSelectedModel"; +export * from "./TranslationPageRequest"; export * from "./TranslationPageStatusResponse"; export * from "./Vcard"; export * from "./ValidationErrorLocItem"; @@ -181,5 +228,16 @@ export * from "./ValidationError"; export * from "./VideoBotsPageOutputFinalPrompt"; export * from "./VideoBotsPageOutputFinalKeywordQuery"; export * from "./VideoBotsPageOutput"; +export * from "./VideoBotsPageRequestSelectedModel"; +export * from "./VideoBotsPageRequestEmbeddingModel"; +export * from "./VideoBotsPageRequestCitationStyle"; +export * from "./VideoBotsPageRequestAsrModel"; +export * from "./VideoBotsPageRequestTranslationModel"; +export * from "./VideoBotsPageRequestLipsyncModel"; +export * from "./VideoBotsPageRequestResponseFormatType"; +export * from "./VideoBotsPageRequestTtsProvider"; +export * from "./VideoBotsPageRequestOpenaiVoiceName"; +export * from "./VideoBotsPageRequestOpenaiTtsModel"; +export * from "./VideoBotsPageRequest"; export * from "./VideoBotsPageStatusResponse"; export * from "./AnimationPrompt";