@wix/auto_sdk_ai-gateway_generators 1.0.122 → 1.0.124
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 +6 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +6 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +6 -0
- 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 +6 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +6 -0
- 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 +6 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +6 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.d.mts
CHANGED
|
@@ -14442,6 +14442,10 @@ interface V1GetResultResponse {
|
|
|
14442
14442
|
* @maxLength 100
|
|
14443
14443
|
*/
|
|
14444
14444
|
status?: string | null;
|
|
14445
|
+
/** Cost of the request in microcents. Only set once the prediction has succeeded. */
|
|
14446
|
+
microcentsSpent?: string | null;
|
|
14447
|
+
/** Token counts */
|
|
14448
|
+
tokenUsage?: CreatePredictionResponseTokenUsage;
|
|
14445
14449
|
}
|
|
14446
14450
|
interface GetResultResponse {
|
|
14447
14451
|
/**
|
|
@@ -14473,6 +14477,8 @@ interface GetTaskResultResponseResponseOneOf {
|
|
|
14473
14477
|
}
|
|
14474
14478
|
interface GetVideoResultResponse {
|
|
14475
14479
|
videoJob?: VideoJob;
|
|
14480
|
+
/** Cost of the request in micro cents. Only set once the video job has completed. */
|
|
14481
|
+
microcentsSpent?: string | null;
|
|
14476
14482
|
}
|
|
14477
14483
|
interface GetContentTaskResponse {
|
|
14478
14484
|
/** The queried video generation task, including its status and result. */
|