@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.
@@ -14369,8 +14369,10 @@ interface GetContentTaskRequest {
14369
14369
  }
14370
14370
  interface FalGetQueueResultRequest {
14371
14371
  /**
14372
- * FAL queue model vendor id (owner/app, e.g. "fal-ai/flux") NOT the full submit model (e.g. "fal-ai/flux/schnell").
14373
- * FAL polls results at /{model_vendor_id}/requests/{request_id}, so the trailing model segment must be dropped here.
14372
+ * FAL queue model id. Pass either the owner/app vendor id ("fal-ai/flux") or the full submit
14373
+ * model ("fal-ai/flux/schnell"). Passing the full model lets the proxy price the poll; the proxy
14374
+ * truncates it to owner/app for the fal results URL (/{owner}/{app}/requests/{request_id}). The
14375
+ * 2-segment form still works but is priced only when it is itself the fal pricing-catalog key.
14374
14376
  * @maxLength 1000
14375
14377
  */
14376
14378
  modelVendorId?: string;
@@ -14479,6 +14481,8 @@ interface GetTaskResultResponseResponseOneOf {
14479
14481
  }
14480
14482
  interface GetVideoResultResponse {
14481
14483
  videoJob?: VideoJob;
14484
+ /** Cost of the request in micro cents. Only set once the video job has completed. */
14485
+ microcentsSpent?: string | null;
14482
14486
  }
14483
14487
  interface GetContentTaskResponse {
14484
14488
  /** The queried video generation task, including its status and result. */
@@ -14487,6 +14491,11 @@ interface GetContentTaskResponse {
14487
14491
  interface FalGetQueueResultResponse {
14488
14492
  /** Raw FAL queue result JSON body. */
14489
14493
  body?: Record<string, any> | null;
14494
+ /**
14495
+ * Cost of the poll in microcents. Set only for Gateway-key requests when fal pricing resolved
14496
+ * (i.e. the caller passed a full model id that matches the fal pricing catalog).
14497
+ */
14498
+ microcentsSpent?: string | null;
14490
14499
  }
14491
14500
  interface DomainEvent extends DomainEventBodyOneOf {
14492
14501
  createdEvent?: EntityCreatedEvent;