@wix/auto_sdk_ai-gateway_generators 1.0.123 → 1.0.125
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +11 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +11 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +11 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +11 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +11 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +11 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +11 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +11 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -14367,8 +14367,10 @@ interface GetContentTaskRequest {
|
|
|
14367
14367
|
}
|
|
14368
14368
|
interface FalGetQueueResultRequest {
|
|
14369
14369
|
/**
|
|
14370
|
-
* FAL queue model
|
|
14371
|
-
*
|
|
14370
|
+
* FAL queue model id. Pass either the owner/app vendor id ("fal-ai/flux") or the full submit
|
|
14371
|
+
* model ("fal-ai/flux/schnell"). Passing the full model lets the proxy price the poll; the proxy
|
|
14372
|
+
* truncates it to owner/app for the fal results URL (/{owner}/{app}/requests/{request_id}). The
|
|
14373
|
+
* 2-segment form still works but is priced only when it is itself the fal pricing-catalog key.
|
|
14372
14374
|
* @maxLength 1000
|
|
14373
14375
|
*/
|
|
14374
14376
|
modelVendorId?: string;
|
|
@@ -14477,6 +14479,8 @@ interface GetTaskResultResponseResponseOneOf {
|
|
|
14477
14479
|
}
|
|
14478
14480
|
interface GetVideoResultResponse {
|
|
14479
14481
|
videoJob?: VideoJob;
|
|
14482
|
+
/** Cost of the request in micro cents. Only set once the video job has completed. */
|
|
14483
|
+
microcentsSpent?: string | null;
|
|
14480
14484
|
}
|
|
14481
14485
|
interface GetContentTaskResponse {
|
|
14482
14486
|
/** The queried video generation task, including its status and result. */
|
|
@@ -14485,6 +14489,11 @@ interface GetContentTaskResponse {
|
|
|
14485
14489
|
interface FalGetQueueResultResponse {
|
|
14486
14490
|
/** Raw FAL queue result JSON body. */
|
|
14487
14491
|
body?: Record<string, any> | null;
|
|
14492
|
+
/**
|
|
14493
|
+
* Cost of the poll in microcents. Set only for Gateway-key requests when fal pricing resolved
|
|
14494
|
+
* (i.e. the caller passed a full model id that matches the fal pricing catalog).
|
|
14495
|
+
*/
|
|
14496
|
+
microcentsSpent?: string | null;
|
|
14488
14497
|
}
|
|
14489
14498
|
interface DomainEvent extends DomainEventBodyOneOf {
|
|
14490
14499
|
createdEvent?: EntityCreatedEvent;
|