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