6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
85 lines
3.3 KiB
JavaScript
85 lines
3.3 KiB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
import { APIResource } from "../core/resource.mjs";
|
|
import { ConversationCursorPage } from "../core/pagination.mjs";
|
|
import { buildHeaders } from "../internal/headers.mjs";
|
|
import { maybeMultipartFormRequestOptions, multipartFormRequestOptions } from "../internal/uploads.mjs";
|
|
import { path } from "../internal/utils/path.mjs";
|
|
export class Videos extends APIResource {
|
|
/**
|
|
* Create a new video generation job from a prompt and optional reference assets.
|
|
*/
|
|
create(body, options) {
|
|
return this._client.post('/videos', multipartFormRequestOptions({ body, ...options, __security: { bearerAuth: true } }, this._client));
|
|
}
|
|
/**
|
|
* Fetch the latest metadata for a generated video.
|
|
*/
|
|
retrieve(videoID, options) {
|
|
return this._client.get(path `/videos/${videoID}`, { ...options, __security: { bearerAuth: true } });
|
|
}
|
|
/**
|
|
* List recently generated videos for the current project.
|
|
*/
|
|
list(query = {}, options) {
|
|
return this._client.getAPIList('/videos', (ConversationCursorPage), {
|
|
query,
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
/**
|
|
* Permanently delete a completed or failed video and its stored assets.
|
|
*/
|
|
delete(videoID, options) {
|
|
return this._client.delete(path `/videos/${videoID}`, { ...options, __security: { bearerAuth: true } });
|
|
}
|
|
/**
|
|
* Create a character from an uploaded video.
|
|
*/
|
|
createCharacter(body, options) {
|
|
return this._client.post('/videos/characters', multipartFormRequestOptions({ body, ...options, __security: { bearerAuth: true } }, this._client));
|
|
}
|
|
/**
|
|
* Download the generated video bytes or a derived preview asset.
|
|
*
|
|
* Streams the rendered video content for the specified video job.
|
|
*/
|
|
downloadContent(videoID, query = {}, options) {
|
|
return this._client.get(path `/videos/${videoID}/content`, {
|
|
query,
|
|
...options,
|
|
headers: buildHeaders([{ Accept: 'application/binary' }, options?.headers]),
|
|
__security: { bearerAuth: true },
|
|
__binaryResponse: true,
|
|
});
|
|
}
|
|
/**
|
|
* Create a new video generation job by editing a source video or existing
|
|
* generated video.
|
|
*/
|
|
edit(body, options) {
|
|
return this._client.post('/videos/edits', multipartFormRequestOptions({ body, ...options, __security: { bearerAuth: true } }, this._client));
|
|
}
|
|
/**
|
|
* Create an extension of a completed video.
|
|
*/
|
|
extend(body, options) {
|
|
return this._client.post('/videos/extensions', multipartFormRequestOptions({ body, ...options, __security: { bearerAuth: true } }, this._client));
|
|
}
|
|
/**
|
|
* Fetch a character.
|
|
*/
|
|
getCharacter(characterID, options) {
|
|
return this._client.get(path `/videos/characters/${characterID}`, {
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
/**
|
|
* Create a remix of a completed video using a refreshed prompt.
|
|
*/
|
|
remix(videoID, body, options) {
|
|
return this._client.post(path `/videos/${videoID}/remix`, maybeMultipartFormRequestOptions({ body, ...options, __security: { bearerAuth: true } }, this._client));
|
|
}
|
|
}
|
|
//# sourceMappingURL=videos.mjs.map
|