@hedra/sdk 1.0.0
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/LICENSE +201 -0
- package/README.md +406 -0
- package/dist/cjs/BaseClient.d.ts +58 -0
- package/dist/cjs/BaseClient.js +79 -0
- package/dist/cjs/Client.d.ts +47 -0
- package/dist/cjs/Client.js +118 -0
- package/dist/cjs/api/errors/BadRequestError.d.ts +7 -0
- package/dist/cjs/api/errors/BadRequestError.js +54 -0
- package/dist/cjs/api/errors/ForbiddenError.d.ts +7 -0
- package/dist/cjs/api/errors/ForbiddenError.js +54 -0
- package/dist/cjs/api/errors/InternalServerError.d.ts +7 -0
- package/dist/cjs/api/errors/InternalServerError.js +54 -0
- package/dist/cjs/api/errors/NotFoundError.d.ts +7 -0
- package/dist/cjs/api/errors/NotFoundError.js +54 -0
- package/dist/cjs/api/errors/PaymentRequiredError.d.ts +7 -0
- package/dist/cjs/api/errors/PaymentRequiredError.js +54 -0
- package/dist/cjs/api/errors/TooManyRequestsError.d.ts +7 -0
- package/dist/cjs/api/errors/TooManyRequestsError.js +54 -0
- package/dist/cjs/api/errors/UnauthorizedError.d.ts +7 -0
- package/dist/cjs/api/errors/UnauthorizedError.js +54 -0
- package/dist/cjs/api/errors/UnprocessableEntityError.d.ts +7 -0
- package/dist/cjs/api/errors/UnprocessableEntityError.js +54 -0
- package/dist/cjs/api/errors/index.d.ts +8 -0
- package/dist/cjs/api/errors/index.js +24 -0
- package/dist/cjs/api/index.d.ts +3 -0
- package/dist/cjs/api/index.js +19 -0
- package/dist/cjs/api/resources/billing/client/Client.d.ts +51 -0
- package/dist/cjs/api/resources/billing/client/Client.js +197 -0
- package/dist/cjs/api/resources/billing/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/billing/client/index.js +17 -0
- package/dist/cjs/api/resources/billing/client/requests/BillingGetUsageRequest.d.ts +13 -0
- package/dist/cjs/api/resources/billing/client/requests/BillingGetUsageRequest.js +3 -0
- package/dist/cjs/api/resources/billing/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/billing/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/billing/exports.d.ts +2 -0
- package/dist/cjs/api/resources/billing/exports.js +21 -0
- package/dist/cjs/api/resources/billing/index.d.ts +1 -0
- package/dist/cjs/api/resources/billing/index.js +17 -0
- package/dist/cjs/api/resources/files/client/Client.d.ts +40 -0
- package/dist/cjs/api/resources/files/client/Client.js +137 -0
- package/dist/cjs/api/resources/files/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/files/client/index.js +17 -0
- package/dist/cjs/api/resources/files/client/requests/FilesUploadRequest.d.ts +11 -0
- package/dist/cjs/api/resources/files/client/requests/FilesUploadRequest.js +3 -0
- package/dist/cjs/api/resources/files/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/files/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/files/exports.d.ts +2 -0
- package/dist/cjs/api/resources/files/exports.js +21 -0
- package/dist/cjs/api/resources/files/index.d.ts +1 -0
- package/dist/cjs/api/resources/files/index.js +17 -0
- package/dist/cjs/api/resources/index.d.ts +18 -0
- package/dist/cjs/api/resources/index.js +57 -0
- package/dist/cjs/api/resources/jobs/client/Client.d.ts +2425 -0
- package/dist/cjs/api/resources/jobs/client/Client.js +6739 -0
- package/dist/cjs/api/resources/jobs/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/jobs/client/index.js +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsGetRequest.d.ts +5 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsGetRequest.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsGetStatusRequest.d.ts +8 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsGetStatusRequest.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsListJobLogsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsListJobLogsRequest.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsListRequest.d.ts +10 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsListRequest.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsStreamRequest.d.ts +8 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsStreamRequest.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBody.d.ts +16 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBody.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyDreamina31.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyDreamina31.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyElevenlabsFlashMultilingualV2.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyElevenlabsFlashMultilingualV2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyElevenlabsFlashV2.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyElevenlabsFlashV2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyElevenlabsMultilingualV2.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyElevenlabsMultilingualV2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyElevenlabsV3.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyElevenlabsV3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux11Pro.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux11Pro.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux11Ultra.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux11Ultra.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux2Flex.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux2Flex.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux2Klein9B.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux2Klein9B.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux2Max.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux2Max.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux2Pro.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux2Pro.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux3.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFlux3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFluxDev.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFluxDev.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFluxKontextMax.d.ts +16 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFluxKontextMax.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFluxKontextPro.d.ts +16 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyFluxKontextPro.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGeminiOmniFlash.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGeminiOmniFlash.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGptImage15.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGptImage15.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGptImage2.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGptImage2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGrokImagine.d.ts +16 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGrokImagine.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGrokVideo.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyGrokVideo.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyHappyHorse.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyHappyHorse.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyHedraAvatar.d.ts +26 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyHedraAvatar.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyHedraCharacter3.d.ts +26 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyHedraCharacter3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyHidreamO1Image.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyHidreamO1Image.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyIdeogramV2.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyIdeogramV2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyIdeogramV4.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyIdeogramV4.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyImagen3.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyImagen3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyImagen4.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyImagen4.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling16.d.ts +16 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling16.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling21Master.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling21Master.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling25Turbo.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling25Turbo.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling26MotionControl.d.ts +24 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling26MotionControl.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling26Pro.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKling26Pro.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingAiAvatarV2.d.ts +25 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingAiAvatarV2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingO1.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingO1.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingO3.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingO3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingO3Edit.d.ts +21 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingO3Edit.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingO3Reference.d.ts +21 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingO3Reference.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingV3.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingV3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingV3MotionControl.d.ts +24 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyKlingV3MotionControl.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyLtx23.d.ts +20 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyLtx23.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyLumaRay32.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyLumaRay32.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMaiImage25.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMaiImage25.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxH3.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxH3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxHailuo02.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxHailuo02.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxHailuo23.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxHailuo23.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxSpeech25HdPreview.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxSpeech25HdPreview.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxSpeech25TurboPreview.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyMinimaxSpeech25TurboPreview.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyNanoBanana.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyNanoBanana.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyNanoBanana2.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyNanoBanana2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyNanoBananaPro.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyNanoBananaPro.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyOmnihuman15.d.ts +24 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyOmnihuman15.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyPixverseV6.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyPixverseV6.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyQwenImage2.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyQwenImage2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyRecraftV3.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyRecraftV3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyReve21.d.ts +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyReve21.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyReve21Edit.d.ts +21 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyReve21Edit.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyReve21Remix.d.ts +21 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyReve21Remix.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySana.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySana.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedance15Pro.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedance15Pro.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedance20.d.ts +20 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedance20.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedance20Mini.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedance20Mini.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedance25.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedance25.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedream40.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedream40.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedream45.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedream45.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedream50Lite.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedream50Lite.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedream50Pro.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySeedream50Pro.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySora2Pro.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodySora2Pro.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyVeedFabric10.d.ts +26 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyVeedFabric10.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyVeo2.d.ts +16 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyVeo2.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyVeo3.d.ts +20 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyVeo3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyVeo31.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyVeo31.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyViduQ3.d.ts +19 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyViduQ3.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyViduQ3Reference.d.ts +23 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyViduQ3Reference.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyWan27.d.ts +18 -0
- package/dist/cjs/api/resources/jobs/client/requests/SubmitBodyWan27.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/index.d.ts +81 -0
- package/dist/cjs/api/resources/jobs/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/jobs/exports.d.ts +2 -0
- package/dist/cjs/api/resources/jobs/exports.js +21 -0
- package/dist/cjs/api/resources/jobs/index.d.ts +2 -0
- package/dist/cjs/api/resources/jobs/index.js +18 -0
- package/dist/cjs/api/resources/jobs/types/JobsStreamResponse.d.ts +5 -0
- package/dist/cjs/api/resources/jobs/types/JobsStreamResponse.js +3 -0
- package/dist/cjs/api/resources/jobs/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/jobs/types/index.js +17 -0
- package/dist/cjs/api/resources/keys/client/Client.d.ts +87 -0
- package/dist/cjs/api/resources/keys/client/Client.js +328 -0
- package/dist/cjs/api/resources/keys/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/keys/client/index.js +17 -0
- package/dist/cjs/api/resources/keys/client/requests/KeyCreateRequest.d.ts +17 -0
- package/dist/cjs/api/resources/keys/client/requests/KeyCreateRequest.js +3 -0
- package/dist/cjs/api/resources/keys/client/requests/KeyRotateRequest.d.ts +8 -0
- package/dist/cjs/api/resources/keys/client/requests/KeyRotateRequest.js +3 -0
- package/dist/cjs/api/resources/keys/client/requests/KeysListRequest.d.ts +8 -0
- package/dist/cjs/api/resources/keys/client/requests/KeysListRequest.js +3 -0
- package/dist/cjs/api/resources/keys/client/requests/KeysRevokeRequest.d.ts +5 -0
- package/dist/cjs/api/resources/keys/client/requests/KeysRevokeRequest.js +3 -0
- package/dist/cjs/api/resources/keys/client/requests/index.d.ts +4 -0
- package/dist/cjs/api/resources/keys/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/keys/exports.d.ts +2 -0
- package/dist/cjs/api/resources/keys/exports.js +21 -0
- package/dist/cjs/api/resources/keys/index.d.ts +1 -0
- package/dist/cjs/api/resources/keys/index.js +17 -0
- package/dist/cjs/api/resources/logDrains/client/Client.d.ts +149 -0
- package/dist/cjs/api/resources/logDrains/client/Client.js +472 -0
- package/dist/cjs/api/resources/logDrains/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/logDrains/client/index.js +17 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainCreate.d.ts +23 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainCreate.js +3 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainUpdate.d.ts +21 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainUpdate.js +3 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainsDeleteLogDrainRequest.d.ts +5 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainsDeleteLogDrainRequest.js +3 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainsGetLogDrainRequest.d.ts +5 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainsGetLogDrainRequest.js +3 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainsTestLogDrainRequest.d.ts +5 -0
- package/dist/cjs/api/resources/logDrains/client/requests/LogDrainsTestLogDrainRequest.js +3 -0
- package/dist/cjs/api/resources/logDrains/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/logDrains/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/logDrains/exports.d.ts +2 -0
- package/dist/cjs/api/resources/logDrains/exports.js +21 -0
- package/dist/cjs/api/resources/logDrains/index.d.ts +1 -0
- package/dist/cjs/api/resources/logDrains/index.js +17 -0
- package/dist/cjs/api/resources/models/client/Client.d.ts +128 -0
- package/dist/cjs/api/resources/models/client/Client.js +464 -0
- package/dist/cjs/api/resources/models/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/models/client/index.js +17 -0
- package/dist/cjs/api/resources/models/client/requests/EstimateRequest.d.ts +8 -0
- package/dist/cjs/api/resources/models/client/requests/EstimateRequest.js +3 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsGetOpenapiRequest.d.ts +5 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsGetOpenapiRequest.js +3 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsGetRequest.d.ts +5 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsGetRequest.js +3 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsListModelJobsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsListModelJobsRequest.js +3 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsListRequest.d.ts +9 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsListRequest.js +3 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsListVoicesRequest.d.ts +5 -0
- package/dist/cjs/api/resources/models/client/requests/ModelsListVoicesRequest.js +3 -0
- package/dist/cjs/api/resources/models/client/requests/index.d.ts +6 -0
- package/dist/cjs/api/resources/models/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/models/exports.d.ts +2 -0
- package/dist/cjs/api/resources/models/exports.js +21 -0
- package/dist/cjs/api/resources/models/index.d.ts +1 -0
- package/dist/cjs/api/resources/models/index.js +17 -0
- package/dist/cjs/api/resources/tokens/client/Client.d.ts +31 -0
- package/dist/cjs/api/resources/tokens/client/Client.js +126 -0
- package/dist/cjs/api/resources/tokens/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/tokens/client/index.js +17 -0
- package/dist/cjs/api/resources/tokens/client/requests/TokenCreateRequest.d.ts +11 -0
- package/dist/cjs/api/resources/tokens/client/requests/TokenCreateRequest.js +3 -0
- package/dist/cjs/api/resources/tokens/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/tokens/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/tokens/exports.d.ts +2 -0
- package/dist/cjs/api/resources/tokens/exports.js +21 -0
- package/dist/cjs/api/resources/tokens/index.d.ts +1 -0
- package/dist/cjs/api/resources/tokens/index.js +17 -0
- package/dist/cjs/api/resources/webhooks/client/Client.d.ts +193 -0
- package/dist/cjs/api/resources/webhooks/client/Client.js +578 -0
- package/dist/cjs/api/resources/webhooks/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/webhooks/client/index.js +17 -0
- package/dist/cjs/api/resources/webhooks/client/requests/WebhookDefaultUpdate.d.ts +12 -0
- package/dist/cjs/api/resources/webhooks/client/requests/WebhookDefaultUpdate.js +3 -0
- package/dist/cjs/api/resources/webhooks/client/requests/WebhooksListDeliveriesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/webhooks/client/requests/WebhooksListDeliveriesRequest.js +3 -0
- package/dist/cjs/api/resources/webhooks/client/requests/WebhooksRedeliverRequest.d.ts +5 -0
- package/dist/cjs/api/resources/webhooks/client/requests/WebhooksRedeliverRequest.js +3 -0
- package/dist/cjs/api/resources/webhooks/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/resources/webhooks/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/webhooks/exports.d.ts +2 -0
- package/dist/cjs/api/resources/webhooks/exports.js +21 -0
- package/dist/cjs/api/resources/webhooks/index.d.ts +2 -0
- package/dist/cjs/api/resources/webhooks/index.js +18 -0
- package/dist/cjs/api/resources/webhooks/types/WebhookJobCompletedPayloadXHedraWebhookEvent.d.ts +4 -0
- package/dist/cjs/api/resources/webhooks/types/WebhookJobCompletedPayloadXHedraWebhookEvent.js +7 -0
- package/dist/cjs/api/resources/webhooks/types/WebhookJobCompletedPayloadXHedraWebhookRedelivery.d.ts +5 -0
- package/dist/cjs/api/resources/webhooks/types/WebhookJobCompletedPayloadXHedraWebhookRedelivery.js +8 -0
- package/dist/cjs/api/resources/webhooks/types/WebhookJobFailedPayloadXHedraWebhookEvent.d.ts +4 -0
- package/dist/cjs/api/resources/webhooks/types/WebhookJobFailedPayloadXHedraWebhookEvent.js +7 -0
- package/dist/cjs/api/resources/webhooks/types/WebhookJobFailedPayloadXHedraWebhookRedelivery.d.ts +5 -0
- package/dist/cjs/api/resources/webhooks/types/WebhookJobFailedPayloadXHedraWebhookRedelivery.js +8 -0
- package/dist/cjs/api/resources/webhooks/types/index.d.ts +4 -0
- package/dist/cjs/api/resources/webhooks/types/index.js +20 -0
- package/dist/cjs/api/types/ApiKeyKind.d.ts +6 -0
- package/dist/cjs/api/types/ApiKeyKind.js +9 -0
- package/dist/cjs/api/types/ApiKeyScope.d.ts +18 -0
- package/dist/cjs/api/types/ApiKeyScope.js +21 -0
- package/dist/cjs/api/types/BalanceResponse.d.ts +18 -0
- package/dist/cjs/api/types/BalanceResponse.js +3 -0
- package/dist/cjs/api/types/BillingError.d.ts +19 -0
- package/dist/cjs/api/types/BillingError.js +3 -0
- package/dist/cjs/api/types/ErrorCode.d.ts +29 -0
- package/dist/cjs/api/types/ErrorCode.js +32 -0
- package/dist/cjs/api/types/ErrorEnvelope.d.ts +18 -0
- package/dist/cjs/api/types/ErrorEnvelope.js +3 -0
- package/dist/cjs/api/types/ErrorResponse.d.ts +9 -0
- package/dist/cjs/api/types/ErrorResponse.js +3 -0
- package/dist/cjs/api/types/EstimateResponse.d.ts +11 -0
- package/dist/cjs/api/types/EstimateResponse.js +3 -0
- package/dist/cjs/api/types/FieldError.d.ts +17 -0
- package/dist/cjs/api/types/FieldError.js +3 -0
- package/dist/cjs/api/types/FileUploadResponse.d.ts +14 -0
- package/dist/cjs/api/types/FileUploadResponse.js +3 -0
- package/dist/cjs/api/types/InputDreamina31.d.ts +39 -0
- package/dist/cjs/api/types/InputDreamina31.js +25 -0
- package/dist/cjs/api/types/InputElevenlabsFlashMultilingualV2.d.ts +15 -0
- package/dist/cjs/api/types/InputElevenlabsFlashMultilingualV2.js +3 -0
- package/dist/cjs/api/types/InputElevenlabsFlashV2.d.ts +15 -0
- package/dist/cjs/api/types/InputElevenlabsFlashV2.js +3 -0
- package/dist/cjs/api/types/InputElevenlabsMultilingualV2.d.ts +15 -0
- package/dist/cjs/api/types/InputElevenlabsMultilingualV2.js +3 -0
- package/dist/cjs/api/types/InputElevenlabsV3.d.ts +15 -0
- package/dist/cjs/api/types/InputElevenlabsV3.js +3 -0
- package/dist/cjs/api/types/InputFlux11Pro.d.ts +51 -0
- package/dist/cjs/api/types/InputFlux11Pro.js +34 -0
- package/dist/cjs/api/types/InputFlux11Ultra.d.ts +45 -0
- package/dist/cjs/api/types/InputFlux11Ultra.js +28 -0
- package/dist/cjs/api/types/InputFlux2Flex.d.ts +45 -0
- package/dist/cjs/api/types/InputFlux2Flex.js +20 -0
- package/dist/cjs/api/types/InputFlux2FlexImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputFlux2FlexImagesItem.js +3 -0
- package/dist/cjs/api/types/InputFlux2Klein9B.d.ts +48 -0
- package/dist/cjs/api/types/InputFlux2Klein9B.js +21 -0
- package/dist/cjs/api/types/InputFlux2Klein9BImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputFlux2Klein9BImagesItem.js +3 -0
- package/dist/cjs/api/types/InputFlux2Max.d.ts +41 -0
- package/dist/cjs/api/types/InputFlux2Max.js +20 -0
- package/dist/cjs/api/types/InputFlux2MaxImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputFlux2MaxImagesItem.js +3 -0
- package/dist/cjs/api/types/InputFlux2Pro.d.ts +41 -0
- package/dist/cjs/api/types/InputFlux2Pro.js +20 -0
- package/dist/cjs/api/types/InputFlux2ProImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputFlux2ProImagesItem.js +3 -0
- package/dist/cjs/api/types/InputFlux3.d.ts +47 -0
- package/dist/cjs/api/types/InputFlux3.js +23 -0
- package/dist/cjs/api/types/InputFlux3EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputFlux3EndImage.js +3 -0
- package/dist/cjs/api/types/InputFlux3StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputFlux3StartImage.js +3 -0
- package/dist/cjs/api/types/InputFluxDev.d.ts +55 -0
- package/dist/cjs/api/types/InputFluxDev.js +34 -0
- package/dist/cjs/api/types/InputFluxKontextMax.d.ts +52 -0
- package/dist/cjs/api/types/InputFluxKontextMax.js +28 -0
- package/dist/cjs/api/types/InputFluxKontextMaxImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputFluxKontextMaxImagesItem.js +3 -0
- package/dist/cjs/api/types/InputFluxKontextPro.d.ts +52 -0
- package/dist/cjs/api/types/InputFluxKontextPro.js +28 -0
- package/dist/cjs/api/types/InputFluxKontextProImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputFluxKontextProImagesItem.js +3 -0
- package/dist/cjs/api/types/InputGeminiOmniFlash.d.ts +37 -0
- package/dist/cjs/api/types/InputGeminiOmniFlash.js +16 -0
- package/dist/cjs/api/types/InputGeminiOmniFlashImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputGeminiOmniFlashImagesItem.js +3 -0
- package/dist/cjs/api/types/InputGeminiOmniFlashSourceVideo.d.ts +23 -0
- package/dist/cjs/api/types/InputGeminiOmniFlashSourceVideo.js +3 -0
- package/dist/cjs/api/types/InputGeminiOmniFlashStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputGeminiOmniFlashStartImage.js +3 -0
- package/dist/cjs/api/types/InputGeminiOmniFlashVideosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputGeminiOmniFlashVideosItem.js +3 -0
- package/dist/cjs/api/types/InputGptImage15.d.ts +45 -0
- package/dist/cjs/api/types/InputGptImage15.js +23 -0
- package/dist/cjs/api/types/InputGptImage15ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputGptImage15ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputGptImage2.d.ts +58 -0
- package/dist/cjs/api/types/InputGptImage2.js +33 -0
- package/dist/cjs/api/types/InputGptImage2ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputGptImage2ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputGrokImagine.d.ts +38 -0
- package/dist/cjs/api/types/InputGrokImagine.js +19 -0
- package/dist/cjs/api/types/InputGrokImagineImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputGrokImagineImagesItem.js +3 -0
- package/dist/cjs/api/types/InputGrokVideo.d.ts +42 -0
- package/dist/cjs/api/types/InputGrokVideo.js +23 -0
- package/dist/cjs/api/types/InputGrokVideoStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputGrokVideoStartImage.js +3 -0
- package/dist/cjs/api/types/InputHappyHorse.d.ts +49 -0
- package/dist/cjs/api/types/InputHappyHorse.js +26 -0
- package/dist/cjs/api/types/InputHappyHorseImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputHappyHorseImagesItem.js +3 -0
- package/dist/cjs/api/types/InputHappyHorseStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputHappyHorseStartImage.js +3 -0
- package/dist/cjs/api/types/InputHedraAvatar.d.ts +50 -0
- package/dist/cjs/api/types/InputHedraAvatar.js +23 -0
- package/dist/cjs/api/types/InputHedraAvatarAudioOneItem.d.ts +20 -0
- package/dist/cjs/api/types/InputHedraAvatarAudioOneItem.js +3 -0
- package/dist/cjs/api/types/InputHedraAvatarAudioZero.d.ts +20 -0
- package/dist/cjs/api/types/InputHedraAvatarAudioZero.js +3 -0
- package/dist/cjs/api/types/InputHedraAvatarStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputHedraAvatarStartImage.js +3 -0
- package/dist/cjs/api/types/InputHedraCharacter3.d.ts +50 -0
- package/dist/cjs/api/types/InputHedraCharacter3.js +23 -0
- package/dist/cjs/api/types/InputHedraCharacter3AudioOneItem.d.ts +20 -0
- package/dist/cjs/api/types/InputHedraCharacter3AudioOneItem.js +3 -0
- package/dist/cjs/api/types/InputHedraCharacter3AudioZero.d.ts +20 -0
- package/dist/cjs/api/types/InputHedraCharacter3AudioZero.js +3 -0
- package/dist/cjs/api/types/InputHedraCharacter3StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputHedraCharacter3StartImage.js +3 -0
- package/dist/cjs/api/types/InputHidreamO1Image.d.ts +63 -0
- package/dist/cjs/api/types/InputHidreamO1Image.js +32 -0
- package/dist/cjs/api/types/InputHidreamO1ImageImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputHidreamO1ImageImagesItem.js +3 -0
- package/dist/cjs/api/types/InputIdeogramV2.d.ts +41 -0
- package/dist/cjs/api/types/InputIdeogramV2.js +25 -0
- package/dist/cjs/api/types/InputIdeogramV4.d.ts +52 -0
- package/dist/cjs/api/types/InputIdeogramV4.js +32 -0
- package/dist/cjs/api/types/InputImagen3.d.ts +31 -0
- package/dist/cjs/api/types/InputImagen3.js +19 -0
- package/dist/cjs/api/types/InputImagen4.d.ts +32 -0
- package/dist/cjs/api/types/InputImagen4.js +20 -0
- package/dist/cjs/api/types/InputKling16.d.ts +39 -0
- package/dist/cjs/api/types/InputKling16.js +16 -0
- package/dist/cjs/api/types/InputKling16StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKling16StartImage.js +3 -0
- package/dist/cjs/api/types/InputKling21Master.d.ts +40 -0
- package/dist/cjs/api/types/InputKling21Master.js +17 -0
- package/dist/cjs/api/types/InputKling21MasterStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKling21MasterStartImage.js +3 -0
- package/dist/cjs/api/types/InputKling25Turbo.d.ts +40 -0
- package/dist/cjs/api/types/InputKling25Turbo.js +17 -0
- package/dist/cjs/api/types/InputKling25TurboStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKling25TurboStartImage.js +3 -0
- package/dist/cjs/api/types/InputKling26MotionControl.d.ts +32 -0
- package/dist/cjs/api/types/InputKling26MotionControl.js +17 -0
- package/dist/cjs/api/types/InputKling26MotionControlSourceVideo.d.ts +23 -0
- package/dist/cjs/api/types/InputKling26MotionControlSourceVideo.js +3 -0
- package/dist/cjs/api/types/InputKling26MotionControlStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKling26MotionControlStartImage.js +3 -0
- package/dist/cjs/api/types/InputKling26Pro.d.ts +42 -0
- package/dist/cjs/api/types/InputKling26Pro.js +17 -0
- package/dist/cjs/api/types/InputKling26ProStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKling26ProStartImage.js +3 -0
- package/dist/cjs/api/types/InputKlingAiAvatarV2.d.ts +40 -0
- package/dist/cjs/api/types/InputKlingAiAvatarV2.js +22 -0
- package/dist/cjs/api/types/InputKlingAiAvatarV2Audio.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingAiAvatarV2Audio.js +3 -0
- package/dist/cjs/api/types/InputKlingAiAvatarV2StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingAiAvatarV2StartImage.js +3 -0
- package/dist/cjs/api/types/InputKlingO1.d.ts +40 -0
- package/dist/cjs/api/types/InputKlingO1.js +17 -0
- package/dist/cjs/api/types/InputKlingO1EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingO1EndImage.js +3 -0
- package/dist/cjs/api/types/InputKlingO1ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputKlingO1ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputKlingO1StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingO1StartImage.js +3 -0
- package/dist/cjs/api/types/InputKlingO3.d.ts +56 -0
- package/dist/cjs/api/types/InputKlingO3.js +24 -0
- package/dist/cjs/api/types/InputKlingO3Edit.d.ts +24 -0
- package/dist/cjs/api/types/InputKlingO3Edit.js +12 -0
- package/dist/cjs/api/types/InputKlingO3EditImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputKlingO3EditImagesItem.js +3 -0
- package/dist/cjs/api/types/InputKlingO3EditSourceVideo.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingO3EditSourceVideo.js +3 -0
- package/dist/cjs/api/types/InputKlingO3EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingO3EndImage.js +3 -0
- package/dist/cjs/api/types/InputKlingO3ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputKlingO3ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputKlingO3Reference.d.ts +24 -0
- package/dist/cjs/api/types/InputKlingO3Reference.js +12 -0
- package/dist/cjs/api/types/InputKlingO3ReferenceImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputKlingO3ReferenceImagesItem.js +3 -0
- package/dist/cjs/api/types/InputKlingO3ReferenceSourceVideo.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingO3ReferenceSourceVideo.js +3 -0
- package/dist/cjs/api/types/InputKlingO3StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingO3StartImage.js +3 -0
- package/dist/cjs/api/types/InputKlingV3.d.ts +58 -0
- package/dist/cjs/api/types/InputKlingV3.js +24 -0
- package/dist/cjs/api/types/InputKlingV3EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingV3EndImage.js +3 -0
- package/dist/cjs/api/types/InputKlingV3MotionControl.d.ts +32 -0
- package/dist/cjs/api/types/InputKlingV3MotionControl.js +17 -0
- package/dist/cjs/api/types/InputKlingV3MotionControlSourceVideo.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingV3MotionControlSourceVideo.js +3 -0
- package/dist/cjs/api/types/InputKlingV3MotionControlStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingV3MotionControlStartImage.js +3 -0
- package/dist/cjs/api/types/InputKlingV3StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputKlingV3StartImage.js +3 -0
- package/dist/cjs/api/types/InputLtx23.d.ts +52 -0
- package/dist/cjs/api/types/InputLtx23.js +24 -0
- package/dist/cjs/api/types/InputLtx23EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputLtx23EndImage.js +3 -0
- package/dist/cjs/api/types/InputLtx23StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputLtx23StartImage.js +3 -0
- package/dist/cjs/api/types/InputLumaRay32.d.ts +34 -0
- package/dist/cjs/api/types/InputLumaRay32.js +22 -0
- package/dist/cjs/api/types/InputMaiImage25.d.ts +50 -0
- package/dist/cjs/api/types/InputMaiImage25.js +28 -0
- package/dist/cjs/api/types/InputMaiImage25ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputMaiImage25ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputMinimaxH3.d.ts +52 -0
- package/dist/cjs/api/types/InputMinimaxH3.js +23 -0
- package/dist/cjs/api/types/InputMinimaxH3AudiosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputMinimaxH3AudiosItem.js +3 -0
- package/dist/cjs/api/types/InputMinimaxH3EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputMinimaxH3EndImage.js +3 -0
- package/dist/cjs/api/types/InputMinimaxH3ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputMinimaxH3ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputMinimaxH3StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputMinimaxH3StartImage.js +3 -0
- package/dist/cjs/api/types/InputMinimaxH3VideosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputMinimaxH3VideosItem.js +3 -0
- package/dist/cjs/api/types/InputMinimaxHailuo02.d.ts +49 -0
- package/dist/cjs/api/types/InputMinimaxHailuo02.js +21 -0
- package/dist/cjs/api/types/InputMinimaxHailuo02EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputMinimaxHailuo02EndImage.js +3 -0
- package/dist/cjs/api/types/InputMinimaxHailuo02StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputMinimaxHailuo02StartImage.js +3 -0
- package/dist/cjs/api/types/InputMinimaxHailuo23.d.ts +47 -0
- package/dist/cjs/api/types/InputMinimaxHailuo23.js +23 -0
- package/dist/cjs/api/types/InputMinimaxHailuo23StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputMinimaxHailuo23StartImage.js +3 -0
- package/dist/cjs/api/types/InputMinimaxSpeech25HdPreview.d.ts +15 -0
- package/dist/cjs/api/types/InputMinimaxSpeech25HdPreview.js +3 -0
- package/dist/cjs/api/types/InputMinimaxSpeech25TurboPreview.d.ts +15 -0
- package/dist/cjs/api/types/InputMinimaxSpeech25TurboPreview.js +3 -0
- package/dist/cjs/api/types/InputNanoBanana.d.ts +36 -0
- package/dist/cjs/api/types/InputNanoBanana.js +19 -0
- package/dist/cjs/api/types/InputNanoBanana2.d.ts +43 -0
- package/dist/cjs/api/types/InputNanoBanana2.js +26 -0
- package/dist/cjs/api/types/InputNanoBanana2ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputNanoBanana2ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputNanoBananaImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputNanoBananaImagesItem.js +3 -0
- package/dist/cjs/api/types/InputNanoBananaPro.d.ts +43 -0
- package/dist/cjs/api/types/InputNanoBananaPro.js +26 -0
- package/dist/cjs/api/types/InputNanoBananaProImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputNanoBananaProImagesItem.js +3 -0
- package/dist/cjs/api/types/InputOmnihuman15.d.ts +31 -0
- package/dist/cjs/api/types/InputOmnihuman15.js +16 -0
- package/dist/cjs/api/types/InputOmnihuman15Audio.d.ts +23 -0
- package/dist/cjs/api/types/InputOmnihuman15Audio.js +3 -0
- package/dist/cjs/api/types/InputOmnihuman15StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputOmnihuman15StartImage.js +3 -0
- package/dist/cjs/api/types/InputPixverseV6.d.ts +50 -0
- package/dist/cjs/api/types/InputPixverseV6.js +25 -0
- package/dist/cjs/api/types/InputPixverseV6StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputPixverseV6StartImage.js +3 -0
- package/dist/cjs/api/types/InputQwenImage2.d.ts +62 -0
- package/dist/cjs/api/types/InputQwenImage2.js +33 -0
- package/dist/cjs/api/types/InputQwenImage2ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputQwenImage2ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputRecraftV3.d.ts +41 -0
- package/dist/cjs/api/types/InputRecraftV3.js +29 -0
- package/dist/cjs/api/types/InputReve21.d.ts +45 -0
- package/dist/cjs/api/types/InputReve21.js +33 -0
- package/dist/cjs/api/types/InputReve21Edit.d.ts +48 -0
- package/dist/cjs/api/types/InputReve21Edit.js +33 -0
- package/dist/cjs/api/types/InputReve21EditImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputReve21EditImagesItem.js +3 -0
- package/dist/cjs/api/types/InputReve21Remix.d.ts +48 -0
- package/dist/cjs/api/types/InputReve21Remix.js +33 -0
- package/dist/cjs/api/types/InputReve21RemixImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputReve21RemixImagesItem.js +3 -0
- package/dist/cjs/api/types/InputSana.d.ts +57 -0
- package/dist/cjs/api/types/InputSana.js +34 -0
- package/dist/cjs/api/types/InputSeedance15Pro.d.ts +43 -0
- package/dist/cjs/api/types/InputSeedance15Pro.js +22 -0
- package/dist/cjs/api/types/InputSeedance15ProEndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSeedance15ProEndImage.js +3 -0
- package/dist/cjs/api/types/InputSeedance15ProStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSeedance15ProStartImage.js +3 -0
- package/dist/cjs/api/types/InputSeedance20.d.ts +60 -0
- package/dist/cjs/api/types/InputSeedance20.js +28 -0
- package/dist/cjs/api/types/InputSeedance20AudiosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance20AudiosItem.js +3 -0
- package/dist/cjs/api/types/InputSeedance20EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSeedance20EndImage.js +3 -0
- package/dist/cjs/api/types/InputSeedance20ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance20ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputSeedance20Mini.d.ts +44 -0
- package/dist/cjs/api/types/InputSeedance20Mini.js +21 -0
- package/dist/cjs/api/types/InputSeedance20MiniAudiosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance20MiniAudiosItem.js +3 -0
- package/dist/cjs/api/types/InputSeedance20MiniEndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSeedance20MiniEndImage.js +3 -0
- package/dist/cjs/api/types/InputSeedance20MiniImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance20MiniImagesItem.js +3 -0
- package/dist/cjs/api/types/InputSeedance20MiniStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSeedance20MiniStartImage.js +3 -0
- package/dist/cjs/api/types/InputSeedance20MiniVideosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance20MiniVideosItem.js +3 -0
- package/dist/cjs/api/types/InputSeedance20StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSeedance20StartImage.js +3 -0
- package/dist/cjs/api/types/InputSeedance20VideosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance20VideosItem.js +3 -0
- package/dist/cjs/api/types/InputSeedance25.d.ts +47 -0
- package/dist/cjs/api/types/InputSeedance25.js +22 -0
- package/dist/cjs/api/types/InputSeedance25AudiosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance25AudiosItem.js +3 -0
- package/dist/cjs/api/types/InputSeedance25EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSeedance25EndImage.js +3 -0
- package/dist/cjs/api/types/InputSeedance25ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance25ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputSeedance25StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSeedance25StartImage.js +3 -0
- package/dist/cjs/api/types/InputSeedance25VideosItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedance25VideosItem.js +3 -0
- package/dist/cjs/api/types/InputSeedream40.d.ts +46 -0
- package/dist/cjs/api/types/InputSeedream40.js +27 -0
- package/dist/cjs/api/types/InputSeedream40ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedream40ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputSeedream45.d.ts +45 -0
- package/dist/cjs/api/types/InputSeedream45.js +26 -0
- package/dist/cjs/api/types/InputSeedream45ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedream45ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputSeedream50Lite.d.ts +45 -0
- package/dist/cjs/api/types/InputSeedream50Lite.js +26 -0
- package/dist/cjs/api/types/InputSeedream50LiteImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedream50LiteImagesItem.js +3 -0
- package/dist/cjs/api/types/InputSeedream50Pro.d.ts +45 -0
- package/dist/cjs/api/types/InputSeedream50Pro.js +26 -0
- package/dist/cjs/api/types/InputSeedream50ProImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputSeedream50ProImagesItem.js +3 -0
- package/dist/cjs/api/types/InputSora2Pro.d.ts +36 -0
- package/dist/cjs/api/types/InputSora2Pro.js +17 -0
- package/dist/cjs/api/types/InputSora2ProStartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputSora2ProStartImage.js +3 -0
- package/dist/cjs/api/types/InputVeedFabric10.d.ts +35 -0
- package/dist/cjs/api/types/InputVeedFabric10.js +20 -0
- package/dist/cjs/api/types/InputVeedFabric10Audio.d.ts +23 -0
- package/dist/cjs/api/types/InputVeedFabric10Audio.js +3 -0
- package/dist/cjs/api/types/InputVeedFabric10StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputVeedFabric10StartImage.js +3 -0
- package/dist/cjs/api/types/InputVeo2.d.ts +38 -0
- package/dist/cjs/api/types/InputVeo2.js +15 -0
- package/dist/cjs/api/types/InputVeo2StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputVeo2StartImage.js +3 -0
- package/dist/cjs/api/types/InputVeo3.d.ts +50 -0
- package/dist/cjs/api/types/InputVeo3.js +22 -0
- package/dist/cjs/api/types/InputVeo31.d.ts +52 -0
- package/dist/cjs/api/types/InputVeo31.js +22 -0
- package/dist/cjs/api/types/InputVeo31EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputVeo31EndImage.js +3 -0
- package/dist/cjs/api/types/InputVeo31ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputVeo31ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputVeo31SourceVideo.d.ts +23 -0
- package/dist/cjs/api/types/InputVeo31SourceVideo.js +3 -0
- package/dist/cjs/api/types/InputVeo31StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputVeo31StartImage.js +3 -0
- package/dist/cjs/api/types/InputVeo3StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputVeo3StartImage.js +3 -0
- package/dist/cjs/api/types/InputViduQ3.d.ts +53 -0
- package/dist/cjs/api/types/InputViduQ3.js +26 -0
- package/dist/cjs/api/types/InputViduQ3EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputViduQ3EndImage.js +3 -0
- package/dist/cjs/api/types/InputViduQ3Reference.d.ts +38 -0
- package/dist/cjs/api/types/InputViduQ3Reference.js +21 -0
- package/dist/cjs/api/types/InputViduQ3ReferenceImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputViduQ3ReferenceImagesItem.js +3 -0
- package/dist/cjs/api/types/InputViduQ3StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputViduQ3StartImage.js +3 -0
- package/dist/cjs/api/types/InputWan27.d.ts +48 -0
- package/dist/cjs/api/types/InputWan27.js +20 -0
- package/dist/cjs/api/types/InputWan27EndImage.d.ts +23 -0
- package/dist/cjs/api/types/InputWan27EndImage.js +3 -0
- package/dist/cjs/api/types/InputWan27ImagesItem.d.ts +20 -0
- package/dist/cjs/api/types/InputWan27ImagesItem.js +3 -0
- package/dist/cjs/api/types/InputWan27StartImage.d.ts +23 -0
- package/dist/cjs/api/types/InputWan27StartImage.js +3 -0
- package/dist/cjs/api/types/JobListResponse.d.ts +7 -0
- package/dist/cjs/api/types/JobListResponse.js +3 -0
- package/dist/cjs/api/types/JobLogEvent.d.ts +15 -0
- package/dist/cjs/api/types/JobLogEvent.js +18 -0
- package/dist/cjs/api/types/JobLogItem.d.ts +17 -0
- package/dist/cjs/api/types/JobLogItem.js +3 -0
- package/dist/cjs/api/types/JobLogLevel.d.ts +6 -0
- package/dist/cjs/api/types/JobLogLevel.js +9 -0
- package/dist/cjs/api/types/JobLogListResponse.d.ts +7 -0
- package/dist/cjs/api/types/JobLogListResponse.js +3 -0
- package/dist/cjs/api/types/JobLogSource.d.ts +7 -0
- package/dist/cjs/api/types/JobLogSource.js +10 -0
- package/dist/cjs/api/types/JobStatus.d.ts +8 -0
- package/dist/cjs/api/types/JobStatus.js +11 -0
- package/dist/cjs/api/types/JobSummary.d.ts +12 -0
- package/dist/cjs/api/types/JobSummary.js +3 -0
- package/dist/cjs/api/types/KeyCreateResponse.d.ts +18 -0
- package/dist/cjs/api/types/KeyCreateResponse.js +3 -0
- package/dist/cjs/api/types/KeyListResponse.d.ts +7 -0
- package/dist/cjs/api/types/KeyListResponse.js +3 -0
- package/dist/cjs/api/types/KeyRotateResponse.d.ts +18 -0
- package/dist/cjs/api/types/KeyRotateResponse.js +3 -0
- package/dist/cjs/api/types/KeyStatus.d.ts +6 -0
- package/dist/cjs/api/types/KeyStatus.js +9 -0
- package/dist/cjs/api/types/KeySummary.d.ts +21 -0
- package/dist/cjs/api/types/KeySummary.js +3 -0
- package/dist/cjs/api/types/LogDrainConfig.d.ts +34 -0
- package/dist/cjs/api/types/LogDrainConfig.js +3 -0
- package/dist/cjs/api/types/LogDrainFormat.d.ts +6 -0
- package/dist/cjs/api/types/LogDrainFormat.js +9 -0
- package/dist/cjs/api/types/LogDrainListResponse.d.ts +7 -0
- package/dist/cjs/api/types/LogDrainListResponse.js +3 -0
- package/dist/cjs/api/types/LogDrainTestResponse.d.ts +8 -0
- package/dist/cjs/api/types/LogDrainTestResponse.js +3 -0
- package/dist/cjs/api/types/Metrics.d.ts +7 -0
- package/dist/cjs/api/types/Metrics.js +3 -0
- package/dist/cjs/api/types/Modality.d.ts +7 -0
- package/dist/cjs/api/types/Modality.js +10 -0
- package/dist/cjs/api/types/ModelDetail.d.ts +16 -0
- package/dist/cjs/api/types/ModelDetail.js +3 -0
- package/dist/cjs/api/types/ModelListResponse.d.ts +7 -0
- package/dist/cjs/api/types/ModelListResponse.js +3 -0
- package/dist/cjs/api/types/ModelSummary.d.ts +12 -0
- package/dist/cjs/api/types/ModelSummary.js +3 -0
- package/dist/cjs/api/types/OutputItem.d.ts +30 -0
- package/dist/cjs/api/types/OutputItem.js +3 -0
- package/dist/cjs/api/types/OutputStatus.d.ts +7 -0
- package/dist/cjs/api/types/OutputStatus.js +10 -0
- package/dist/cjs/api/types/ResultResponse.d.ts +24 -0
- package/dist/cjs/api/types/ResultResponse.js +3 -0
- package/dist/cjs/api/types/StatusResponse.d.ts +27 -0
- package/dist/cjs/api/types/StatusResponse.js +3 -0
- package/dist/cjs/api/types/SubmitResponse.d.ts +14 -0
- package/dist/cjs/api/types/SubmitResponse.js +3 -0
- package/dist/cjs/api/types/TokenCreateResponse.d.ts +6 -0
- package/dist/cjs/api/types/TokenCreateResponse.js +3 -0
- package/dist/cjs/api/types/UsageBucket.d.ts +13 -0
- package/dist/cjs/api/types/UsageBucket.js +3 -0
- package/dist/cjs/api/types/UsageGroupBy.d.ts +6 -0
- package/dist/cjs/api/types/UsageGroupBy.js +9 -0
- package/dist/cjs/api/types/UsageResponse.d.ts +16 -0
- package/dist/cjs/api/types/UsageResponse.js +3 -0
- package/dist/cjs/api/types/VoiceListResponse.d.ts +7 -0
- package/dist/cjs/api/types/VoiceListResponse.js +3 -0
- package/dist/cjs/api/types/VoiceSummary.d.ts +13 -0
- package/dist/cjs/api/types/VoiceSummary.js +3 -0
- package/dist/cjs/api/types/WebhookDefaultConfig.d.ts +10 -0
- package/dist/cjs/api/types/WebhookDefaultConfig.js +3 -0
- package/dist/cjs/api/types/WebhookDeliveryListResponse.d.ts +7 -0
- package/dist/cjs/api/types/WebhookDeliveryListResponse.js +3 -0
- package/dist/cjs/api/types/WebhookDeliverySource.d.ts +6 -0
- package/dist/cjs/api/types/WebhookDeliverySource.js +9 -0
- package/dist/cjs/api/types/WebhookDeliveryStatus.d.ts +8 -0
- package/dist/cjs/api/types/WebhookDeliveryStatus.js +11 -0
- package/dist/cjs/api/types/WebhookDeliverySummary.d.ts +29 -0
- package/dist/cjs/api/types/WebhookDeliverySummary.js +3 -0
- package/dist/cjs/api/types/WebhookEventType.d.ts +11 -0
- package/dist/cjs/api/types/WebhookEventType.js +14 -0
- package/dist/cjs/api/types/WebhookPayload.d.ts +21 -0
- package/dist/cjs/api/types/WebhookPayload.js +3 -0
- package/dist/cjs/api/types/WebhookPublicKey.d.ts +9 -0
- package/dist/cjs/api/types/WebhookPublicKey.js +3 -0
- package/dist/cjs/api/types/WebhookRedelivery.d.ts +19 -0
- package/dist/cjs/api/types/WebhookRedelivery.js +3 -0
- package/dist/cjs/api/types/WebhookTestResponse.d.ts +8 -0
- package/dist/cjs/api/types/WebhookTestResponse.js +3 -0
- package/dist/cjs/api/types/index.d.ts +231 -0
- package/dist/cjs/api/types/index.js +247 -0
- package/dist/cjs/auth/BearerAuthProvider.d.ts +20 -0
- package/dist/cjs/auth/BearerAuthProvider.js +82 -0
- package/dist/cjs/auth/index.d.ts +1 -0
- package/dist/cjs/auth/index.js +5 -0
- package/dist/cjs/core/auth/AuthProvider.d.ts +8 -0
- package/dist/cjs/core/auth/AuthProvider.js +9 -0
- package/dist/cjs/core/auth/AuthRequest.d.ts +9 -0
- package/dist/cjs/core/auth/AuthRequest.js +2 -0
- package/dist/cjs/core/auth/BasicAuth.d.ts +8 -0
- package/dist/cjs/core/auth/BasicAuth.js +33 -0
- package/dist/cjs/core/auth/BearerToken.d.ts +7 -0
- package/dist/cjs/core/auth/BearerToken.js +16 -0
- package/dist/cjs/core/auth/NoOpAuthProvider.d.ts +5 -0
- package/dist/cjs/core/auth/NoOpAuthProvider.js +9 -0
- package/dist/cjs/core/auth/index.d.ts +5 -0
- package/dist/cjs/core/auth/index.js +11 -0
- package/dist/cjs/core/base64.d.ts +2 -0
- package/dist/cjs/core/base64.js +26 -0
- package/dist/cjs/core/exports.d.ts +3 -0
- package/dist/cjs/core/exports.js +19 -0
- package/dist/cjs/core/fetcher/APIResponse.d.ts +20 -0
- package/dist/cjs/core/fetcher/APIResponse.js +2 -0
- package/dist/cjs/core/fetcher/BinaryResponse.d.ts +19 -0
- package/dist/cjs/core/fetcher/BinaryResponse.js +17 -0
- package/dist/cjs/core/fetcher/EndpointMetadata.d.ts +13 -0
- package/dist/cjs/core/fetcher/EndpointMetadata.js +2 -0
- package/dist/cjs/core/fetcher/EndpointSupplier.d.ts +12 -0
- package/dist/cjs/core/fetcher/EndpointSupplier.js +22 -0
- package/dist/cjs/core/fetcher/Fetcher.d.ts +56 -0
- package/dist/cjs/core/fetcher/Fetcher.js +244 -0
- package/dist/cjs/core/fetcher/Headers.d.ts +2 -0
- package/dist/cjs/core/fetcher/Headers.js +84 -0
- package/dist/cjs/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/cjs/core/fetcher/HttpResponsePromise.js +103 -0
- package/dist/cjs/core/fetcher/RawResponse.d.ts +29 -0
- package/dist/cjs/core/fetcher/RawResponse.js +44 -0
- package/dist/cjs/core/fetcher/Supplier.d.ts +4 -0
- package/dist/cjs/core/fetcher/Supplier.js +22 -0
- package/dist/cjs/core/fetcher/createRequestUrl.d.ts +1 -0
- package/dist/cjs/core/fetcher/createRequestUrl.js +8 -0
- package/dist/cjs/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/dist/cjs/core/fetcher/getErrorResponseBody.js +45 -0
- package/dist/cjs/core/fetcher/getFetchFn.d.ts +1 -0
- package/dist/cjs/core/fetcher/getFetchFn.js +17 -0
- package/dist/cjs/core/fetcher/getHeader.d.ts +1 -0
- package/dist/cjs/core/fetcher/getHeader.js +11 -0
- package/dist/cjs/core/fetcher/getRequestBody.d.ts +7 -0
- package/dist/cjs/core/fetcher/getRequestBody.js +27 -0
- package/dist/cjs/core/fetcher/getResponseBody.d.ts +1 -0
- package/dist/cjs/core/fetcher/getResponseBody.js +80 -0
- package/dist/cjs/core/fetcher/index.d.ts +13 -0
- package/dist/cjs/core/fetcher/index.js +19 -0
- package/dist/cjs/core/fetcher/makePassthroughRequest.d.ts +49 -0
- package/dist/cjs/core/fetcher/makePassthroughRequest.js +157 -0
- package/dist/cjs/core/fetcher/makeRequest.d.ts +6 -0
- package/dist/cjs/core/fetcher/makeRequest.js +61 -0
- package/dist/cjs/core/fetcher/redactUrl.d.ts +2 -0
- package/dist/cjs/core/fetcher/redactUrl.js +88 -0
- package/dist/cjs/core/fetcher/requestWithRetries.d.ts +1 -0
- package/dist/cjs/core/fetcher/requestWithRetries.js +70 -0
- package/dist/cjs/core/fetcher/signals.d.ts +5 -0
- package/dist/cjs/core/fetcher/signals.js +32 -0
- package/dist/cjs/core/file/exports.d.ts +1 -0
- package/dist/cjs/core/file/exports.js +2 -0
- package/dist/cjs/core/file/file.d.ts +10 -0
- package/dist/cjs/core/file/file.js +225 -0
- package/dist/cjs/core/file/index.d.ts +2 -0
- package/dist/cjs/core/file/index.js +18 -0
- package/dist/cjs/core/file/types.d.ts +66 -0
- package/dist/cjs/core/file/types.js +2 -0
- package/dist/cjs/core/form-data-utils/FormDataWrapper.d.ts +15 -0
- package/dist/cjs/core/form-data-utils/FormDataWrapper.js +188 -0
- package/dist/cjs/core/form-data-utils/encodeAsFormParameter.d.ts +1 -0
- package/dist/cjs/core/form-data-utils/encodeAsFormParameter.js +12 -0
- package/dist/cjs/core/form-data-utils/index.d.ts +2 -0
- package/dist/cjs/core/form-data-utils/index.js +20 -0
- package/dist/cjs/core/headers.d.ts +2 -0
- package/dist/cjs/core/headers.js +31 -0
- package/dist/cjs/core/index.d.ts +11 -0
- package/dist/cjs/core/index.js +50 -0
- package/dist/cjs/core/json.d.ts +15 -0
- package/dist/cjs/core/json.js +24 -0
- package/dist/cjs/core/logging/exports.d.ts +18 -0
- package/dist/cjs/core/logging/exports.js +45 -0
- package/dist/cjs/core/logging/index.d.ts +1 -0
- package/dist/cjs/core/logging/index.js +17 -0
- package/dist/cjs/core/logging/logger.d.ts +126 -0
- package/dist/cjs/core/logging/logger.js +144 -0
- package/dist/cjs/core/pagination/Page.d.ts +33 -0
- package/dist/cjs/core/pagination/Page.js +101 -0
- package/dist/cjs/core/pagination/exports.d.ts +1 -0
- package/dist/cjs/core/pagination/exports.js +2 -0
- package/dist/cjs/core/pagination/index.d.ts +1 -0
- package/dist/cjs/core/pagination/index.js +5 -0
- package/dist/cjs/core/requestBody.d.ts +12 -0
- package/dist/cjs/core/requestBody.js +26 -0
- package/dist/cjs/core/runtime/index.d.ts +1 -0
- package/dist/cjs/core/runtime/index.js +6 -0
- package/dist/cjs/core/runtime/runtime.d.ts +28 -0
- package/dist/cjs/core/runtime/runtime.js +176 -0
- package/dist/cjs/core/stream/Stream.d.ts +100 -0
- package/dist/cjs/core/stream/Stream.js +506 -0
- package/dist/cjs/core/stream/index.d.ts +2 -0
- package/dist/cjs/core/stream/index.js +5 -0
- package/dist/cjs/core/url/QueryStringBuilder.d.ts +47 -0
- package/dist/cjs/core/url/QueryStringBuilder.js +83 -0
- package/dist/cjs/core/url/encodePathParam.d.ts +1 -0
- package/dist/cjs/core/url/encodePathParam.js +21 -0
- package/dist/cjs/core/url/index.d.ts +4 -0
- package/dist/cjs/core/url/index.js +11 -0
- package/dist/cjs/core/url/join.d.ts +1 -0
- package/dist/cjs/core/url/join.js +68 -0
- package/dist/cjs/core/url/qs.d.ts +7 -0
- package/dist/cjs/core/url/qs.js +76 -0
- package/dist/cjs/core/utils/index.d.ts +1 -0
- package/dist/cjs/core/utils/index.js +5 -0
- package/dist/cjs/core/utils/setObjectProperty.d.ts +11 -0
- package/dist/cjs/core/utils/setObjectProperty.js +42 -0
- package/dist/cjs/environments.d.ts +4 -0
- package/dist/cjs/environments.js +7 -0
- package/dist/cjs/errors/HedraError.d.ts +15 -0
- package/dist/cjs/errors/HedraError.js +39 -0
- package/dist/cjs/errors/HedraTimeoutError.d.ts +6 -0
- package/dist/cjs/errors/HedraTimeoutError.js +52 -0
- package/dist/cjs/errors/handleNonStatusCodeError.d.ts +2 -0
- package/dist/cjs/errors/handleNonStatusCodeError.js +68 -0
- package/dist/cjs/errors/index.d.ts +2 -0
- package/dist/cjs/errors/index.js +7 -0
- package/dist/cjs/exports.d.ts +1 -0
- package/dist/cjs/exports.js +17 -0
- package/dist/cjs/index.d.ts +6 -0
- package/dist/cjs/index.js +48 -0
- package/dist/cjs/version.d.ts +1 -0
- package/dist/cjs/version.js +4 -0
- package/dist/esm/BaseClient.d.mts +58 -0
- package/dist/esm/BaseClient.mjs +42 -0
- package/dist/esm/Client.d.mts +47 -0
- package/dist/esm/Client.mjs +81 -0
- package/dist/esm/api/errors/BadRequestError.d.mts +7 -0
- package/dist/esm/api/errors/BadRequestError.mjs +17 -0
- package/dist/esm/api/errors/ForbiddenError.d.mts +7 -0
- package/dist/esm/api/errors/ForbiddenError.mjs +17 -0
- package/dist/esm/api/errors/InternalServerError.d.mts +7 -0
- package/dist/esm/api/errors/InternalServerError.mjs +17 -0
- package/dist/esm/api/errors/NotFoundError.d.mts +7 -0
- package/dist/esm/api/errors/NotFoundError.mjs +17 -0
- package/dist/esm/api/errors/PaymentRequiredError.d.mts +7 -0
- package/dist/esm/api/errors/PaymentRequiredError.mjs +17 -0
- package/dist/esm/api/errors/TooManyRequestsError.d.mts +7 -0
- package/dist/esm/api/errors/TooManyRequestsError.mjs +17 -0
- package/dist/esm/api/errors/UnauthorizedError.d.mts +7 -0
- package/dist/esm/api/errors/UnauthorizedError.mjs +17 -0
- package/dist/esm/api/errors/UnprocessableEntityError.d.mts +7 -0
- package/dist/esm/api/errors/UnprocessableEntityError.mjs +17 -0
- package/dist/esm/api/errors/index.d.mts +8 -0
- package/dist/esm/api/errors/index.mjs +8 -0
- package/dist/esm/api/index.d.mts +3 -0
- package/dist/esm/api/index.mjs +3 -0
- package/dist/esm/api/resources/billing/client/Client.d.mts +51 -0
- package/dist/esm/api/resources/billing/client/Client.mjs +160 -0
- package/dist/esm/api/resources/billing/client/index.d.mts +1 -0
- package/dist/esm/api/resources/billing/client/index.mjs +1 -0
- package/dist/esm/api/resources/billing/client/requests/BillingGetUsageRequest.d.mts +13 -0
- package/dist/esm/api/resources/billing/client/requests/BillingGetUsageRequest.mjs +2 -0
- package/dist/esm/api/resources/billing/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/billing/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/billing/exports.d.mts +2 -0
- package/dist/esm/api/resources/billing/exports.mjs +3 -0
- package/dist/esm/api/resources/billing/index.d.mts +1 -0
- package/dist/esm/api/resources/billing/index.mjs +1 -0
- package/dist/esm/api/resources/files/client/Client.d.mts +40 -0
- package/dist/esm/api/resources/files/client/Client.mjs +100 -0
- package/dist/esm/api/resources/files/client/index.d.mts +1 -0
- package/dist/esm/api/resources/files/client/index.mjs +1 -0
- package/dist/esm/api/resources/files/client/requests/FilesUploadRequest.d.mts +11 -0
- package/dist/esm/api/resources/files/client/requests/FilesUploadRequest.mjs +2 -0
- package/dist/esm/api/resources/files/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/files/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/files/exports.d.mts +2 -0
- package/dist/esm/api/resources/files/exports.mjs +3 -0
- package/dist/esm/api/resources/files/index.d.mts +1 -0
- package/dist/esm/api/resources/files/index.mjs +1 -0
- package/dist/esm/api/resources/index.d.mts +18 -0
- package/dist/esm/api/resources/index.mjs +18 -0
- package/dist/esm/api/resources/jobs/client/Client.d.mts +2425 -0
- package/dist/esm/api/resources/jobs/client/Client.mjs +6702 -0
- package/dist/esm/api/resources/jobs/client/index.d.mts +1 -0
- package/dist/esm/api/resources/jobs/client/index.mjs +1 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsGetRequest.d.mts +5 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsGetRequest.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsGetStatusRequest.d.mts +8 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsGetStatusRequest.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsListJobLogsRequest.d.mts +10 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsListJobLogsRequest.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsListRequest.d.mts +10 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsListRequest.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsStreamRequest.d.mts +8 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsStreamRequest.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBody.d.mts +16 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBody.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyDreamina31.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyDreamina31.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyElevenlabsFlashMultilingualV2.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyElevenlabsFlashMultilingualV2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyElevenlabsFlashV2.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyElevenlabsFlashV2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyElevenlabsMultilingualV2.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyElevenlabsMultilingualV2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyElevenlabsV3.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyElevenlabsV3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux11Pro.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux11Pro.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux11Ultra.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux11Ultra.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux2Flex.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux2Flex.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux2Klein9B.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux2Klein9B.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux2Max.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux2Max.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux2Pro.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux2Pro.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux3.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFlux3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFluxDev.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFluxDev.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFluxKontextMax.d.mts +16 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFluxKontextMax.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFluxKontextPro.d.mts +16 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyFluxKontextPro.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGeminiOmniFlash.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGeminiOmniFlash.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGptImage15.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGptImage15.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGptImage2.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGptImage2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGrokImagine.d.mts +16 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGrokImagine.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGrokVideo.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyGrokVideo.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyHappyHorse.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyHappyHorse.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyHedraAvatar.d.mts +26 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyHedraAvatar.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyHedraCharacter3.d.mts +26 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyHedraCharacter3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyHidreamO1Image.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyHidreamO1Image.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyIdeogramV2.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyIdeogramV2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyIdeogramV4.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyIdeogramV4.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyImagen3.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyImagen3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyImagen4.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyImagen4.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling16.d.mts +16 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling16.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling21Master.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling21Master.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling25Turbo.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling25Turbo.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling26MotionControl.d.mts +24 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling26MotionControl.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling26Pro.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKling26Pro.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingAiAvatarV2.d.mts +25 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingAiAvatarV2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingO1.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingO1.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingO3.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingO3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingO3Edit.d.mts +21 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingO3Edit.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingO3Reference.d.mts +21 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingO3Reference.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingV3.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingV3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingV3MotionControl.d.mts +24 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyKlingV3MotionControl.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyLtx23.d.mts +20 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyLtx23.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyLumaRay32.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyLumaRay32.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMaiImage25.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMaiImage25.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxH3.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxH3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxHailuo02.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxHailuo02.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxHailuo23.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxHailuo23.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxSpeech25HdPreview.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxSpeech25HdPreview.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxSpeech25TurboPreview.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyMinimaxSpeech25TurboPreview.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyNanoBanana.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyNanoBanana.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyNanoBanana2.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyNanoBanana2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyNanoBananaPro.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyNanoBananaPro.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyOmnihuman15.d.mts +24 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyOmnihuman15.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyPixverseV6.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyPixverseV6.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyQwenImage2.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyQwenImage2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyRecraftV3.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyRecraftV3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyReve21.d.mts +17 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyReve21.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyReve21Edit.d.mts +21 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyReve21Edit.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyReve21Remix.d.mts +21 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyReve21Remix.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySana.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySana.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedance15Pro.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedance15Pro.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedance20.d.mts +20 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedance20.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedance20Mini.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedance20Mini.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedance25.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedance25.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedream40.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedream40.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedream45.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedream45.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedream50Lite.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedream50Lite.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedream50Pro.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySeedream50Pro.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySora2Pro.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodySora2Pro.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyVeedFabric10.d.mts +26 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyVeedFabric10.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyVeo2.d.mts +16 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyVeo2.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyVeo3.d.mts +20 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyVeo3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyVeo31.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyVeo31.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyViduQ3.d.mts +19 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyViduQ3.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyViduQ3Reference.d.mts +23 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyViduQ3Reference.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyWan27.d.mts +18 -0
- package/dist/esm/api/resources/jobs/client/requests/SubmitBodyWan27.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/index.d.mts +81 -0
- package/dist/esm/api/resources/jobs/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/jobs/exports.d.mts +2 -0
- package/dist/esm/api/resources/jobs/exports.mjs +3 -0
- package/dist/esm/api/resources/jobs/index.d.mts +2 -0
- package/dist/esm/api/resources/jobs/index.mjs +2 -0
- package/dist/esm/api/resources/jobs/types/JobsStreamResponse.d.mts +5 -0
- package/dist/esm/api/resources/jobs/types/JobsStreamResponse.mjs +2 -0
- package/dist/esm/api/resources/jobs/types/index.d.mts +1 -0
- package/dist/esm/api/resources/jobs/types/index.mjs +1 -0
- package/dist/esm/api/resources/keys/client/Client.d.mts +87 -0
- package/dist/esm/api/resources/keys/client/Client.mjs +291 -0
- package/dist/esm/api/resources/keys/client/index.d.mts +1 -0
- package/dist/esm/api/resources/keys/client/index.mjs +1 -0
- package/dist/esm/api/resources/keys/client/requests/KeyCreateRequest.d.mts +17 -0
- package/dist/esm/api/resources/keys/client/requests/KeyCreateRequest.mjs +2 -0
- package/dist/esm/api/resources/keys/client/requests/KeyRotateRequest.d.mts +8 -0
- package/dist/esm/api/resources/keys/client/requests/KeyRotateRequest.mjs +2 -0
- package/dist/esm/api/resources/keys/client/requests/KeysListRequest.d.mts +8 -0
- package/dist/esm/api/resources/keys/client/requests/KeysListRequest.mjs +2 -0
- package/dist/esm/api/resources/keys/client/requests/KeysRevokeRequest.d.mts +5 -0
- package/dist/esm/api/resources/keys/client/requests/KeysRevokeRequest.mjs +2 -0
- package/dist/esm/api/resources/keys/client/requests/index.d.mts +4 -0
- package/dist/esm/api/resources/keys/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/keys/exports.d.mts +2 -0
- package/dist/esm/api/resources/keys/exports.mjs +3 -0
- package/dist/esm/api/resources/keys/index.d.mts +1 -0
- package/dist/esm/api/resources/keys/index.mjs +1 -0
- package/dist/esm/api/resources/logDrains/client/Client.d.mts +149 -0
- package/dist/esm/api/resources/logDrains/client/Client.mjs +435 -0
- package/dist/esm/api/resources/logDrains/client/index.d.mts +1 -0
- package/dist/esm/api/resources/logDrains/client/index.mjs +1 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainCreate.d.mts +23 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainCreate.mjs +2 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainUpdate.d.mts +21 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainUpdate.mjs +2 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainsDeleteLogDrainRequest.d.mts +5 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainsDeleteLogDrainRequest.mjs +2 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainsGetLogDrainRequest.d.mts +5 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainsGetLogDrainRequest.mjs +2 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainsTestLogDrainRequest.d.mts +5 -0
- package/dist/esm/api/resources/logDrains/client/requests/LogDrainsTestLogDrainRequest.mjs +2 -0
- package/dist/esm/api/resources/logDrains/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/logDrains/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/logDrains/exports.d.mts +2 -0
- package/dist/esm/api/resources/logDrains/exports.mjs +3 -0
- package/dist/esm/api/resources/logDrains/index.d.mts +1 -0
- package/dist/esm/api/resources/logDrains/index.mjs +1 -0
- package/dist/esm/api/resources/models/client/Client.d.mts +128 -0
- package/dist/esm/api/resources/models/client/Client.mjs +427 -0
- package/dist/esm/api/resources/models/client/index.d.mts +1 -0
- package/dist/esm/api/resources/models/client/index.mjs +1 -0
- package/dist/esm/api/resources/models/client/requests/EstimateRequest.d.mts +8 -0
- package/dist/esm/api/resources/models/client/requests/EstimateRequest.mjs +2 -0
- package/dist/esm/api/resources/models/client/requests/ModelsGetOpenapiRequest.d.mts +5 -0
- package/dist/esm/api/resources/models/client/requests/ModelsGetOpenapiRequest.mjs +2 -0
- package/dist/esm/api/resources/models/client/requests/ModelsGetRequest.d.mts +5 -0
- package/dist/esm/api/resources/models/client/requests/ModelsGetRequest.mjs +2 -0
- package/dist/esm/api/resources/models/client/requests/ModelsListModelJobsRequest.d.mts +10 -0
- package/dist/esm/api/resources/models/client/requests/ModelsListModelJobsRequest.mjs +2 -0
- package/dist/esm/api/resources/models/client/requests/ModelsListRequest.d.mts +9 -0
- package/dist/esm/api/resources/models/client/requests/ModelsListRequest.mjs +2 -0
- package/dist/esm/api/resources/models/client/requests/ModelsListVoicesRequest.d.mts +5 -0
- package/dist/esm/api/resources/models/client/requests/ModelsListVoicesRequest.mjs +2 -0
- package/dist/esm/api/resources/models/client/requests/index.d.mts +6 -0
- package/dist/esm/api/resources/models/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/models/exports.d.mts +2 -0
- package/dist/esm/api/resources/models/exports.mjs +3 -0
- package/dist/esm/api/resources/models/index.d.mts +1 -0
- package/dist/esm/api/resources/models/index.mjs +1 -0
- package/dist/esm/api/resources/tokens/client/Client.d.mts +31 -0
- package/dist/esm/api/resources/tokens/client/Client.mjs +89 -0
- package/dist/esm/api/resources/tokens/client/index.d.mts +1 -0
- package/dist/esm/api/resources/tokens/client/index.mjs +1 -0
- package/dist/esm/api/resources/tokens/client/requests/TokenCreateRequest.d.mts +11 -0
- package/dist/esm/api/resources/tokens/client/requests/TokenCreateRequest.mjs +2 -0
- package/dist/esm/api/resources/tokens/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/tokens/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/tokens/exports.d.mts +2 -0
- package/dist/esm/api/resources/tokens/exports.mjs +3 -0
- package/dist/esm/api/resources/tokens/index.d.mts +1 -0
- package/dist/esm/api/resources/tokens/index.mjs +1 -0
- package/dist/esm/api/resources/webhooks/client/Client.d.mts +193 -0
- package/dist/esm/api/resources/webhooks/client/Client.mjs +541 -0
- package/dist/esm/api/resources/webhooks/client/index.d.mts +1 -0
- package/dist/esm/api/resources/webhooks/client/index.mjs +1 -0
- package/dist/esm/api/resources/webhooks/client/requests/WebhookDefaultUpdate.d.mts +12 -0
- package/dist/esm/api/resources/webhooks/client/requests/WebhookDefaultUpdate.mjs +2 -0
- package/dist/esm/api/resources/webhooks/client/requests/WebhooksListDeliveriesRequest.d.mts +10 -0
- package/dist/esm/api/resources/webhooks/client/requests/WebhooksListDeliveriesRequest.mjs +2 -0
- package/dist/esm/api/resources/webhooks/client/requests/WebhooksRedeliverRequest.d.mts +5 -0
- package/dist/esm/api/resources/webhooks/client/requests/WebhooksRedeliverRequest.mjs +2 -0
- package/dist/esm/api/resources/webhooks/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/webhooks/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/webhooks/exports.d.mts +2 -0
- package/dist/esm/api/resources/webhooks/exports.mjs +3 -0
- package/dist/esm/api/resources/webhooks/index.d.mts +2 -0
- package/dist/esm/api/resources/webhooks/index.mjs +2 -0
- package/dist/esm/api/resources/webhooks/types/WebhookJobCompletedPayloadXHedraWebhookEvent.d.mts +4 -0
- package/dist/esm/api/resources/webhooks/types/WebhookJobCompletedPayloadXHedraWebhookEvent.mjs +4 -0
- package/dist/esm/api/resources/webhooks/types/WebhookJobCompletedPayloadXHedraWebhookRedelivery.d.mts +5 -0
- package/dist/esm/api/resources/webhooks/types/WebhookJobCompletedPayloadXHedraWebhookRedelivery.mjs +5 -0
- package/dist/esm/api/resources/webhooks/types/WebhookJobFailedPayloadXHedraWebhookEvent.d.mts +4 -0
- package/dist/esm/api/resources/webhooks/types/WebhookJobFailedPayloadXHedraWebhookEvent.mjs +4 -0
- package/dist/esm/api/resources/webhooks/types/WebhookJobFailedPayloadXHedraWebhookRedelivery.d.mts +5 -0
- package/dist/esm/api/resources/webhooks/types/WebhookJobFailedPayloadXHedraWebhookRedelivery.mjs +5 -0
- package/dist/esm/api/resources/webhooks/types/index.d.mts +4 -0
- package/dist/esm/api/resources/webhooks/types/index.mjs +4 -0
- package/dist/esm/api/types/ApiKeyKind.d.mts +6 -0
- package/dist/esm/api/types/ApiKeyKind.mjs +6 -0
- package/dist/esm/api/types/ApiKeyScope.d.mts +18 -0
- package/dist/esm/api/types/ApiKeyScope.mjs +18 -0
- package/dist/esm/api/types/BalanceResponse.d.mts +18 -0
- package/dist/esm/api/types/BalanceResponse.mjs +2 -0
- package/dist/esm/api/types/BillingError.d.mts +19 -0
- package/dist/esm/api/types/BillingError.mjs +2 -0
- package/dist/esm/api/types/ErrorCode.d.mts +29 -0
- package/dist/esm/api/types/ErrorCode.mjs +29 -0
- package/dist/esm/api/types/ErrorEnvelope.d.mts +18 -0
- package/dist/esm/api/types/ErrorEnvelope.mjs +2 -0
- package/dist/esm/api/types/ErrorResponse.d.mts +9 -0
- package/dist/esm/api/types/ErrorResponse.mjs +2 -0
- package/dist/esm/api/types/EstimateResponse.d.mts +11 -0
- package/dist/esm/api/types/EstimateResponse.mjs +2 -0
- package/dist/esm/api/types/FieldError.d.mts +17 -0
- package/dist/esm/api/types/FieldError.mjs +2 -0
- package/dist/esm/api/types/FileUploadResponse.d.mts +14 -0
- package/dist/esm/api/types/FileUploadResponse.mjs +2 -0
- package/dist/esm/api/types/InputDreamina31.d.mts +39 -0
- package/dist/esm/api/types/InputDreamina31.mjs +22 -0
- package/dist/esm/api/types/InputElevenlabsFlashMultilingualV2.d.mts +15 -0
- package/dist/esm/api/types/InputElevenlabsFlashMultilingualV2.mjs +2 -0
- package/dist/esm/api/types/InputElevenlabsFlashV2.d.mts +15 -0
- package/dist/esm/api/types/InputElevenlabsFlashV2.mjs +2 -0
- package/dist/esm/api/types/InputElevenlabsMultilingualV2.d.mts +15 -0
- package/dist/esm/api/types/InputElevenlabsMultilingualV2.mjs +2 -0
- package/dist/esm/api/types/InputElevenlabsV3.d.mts +15 -0
- package/dist/esm/api/types/InputElevenlabsV3.mjs +2 -0
- package/dist/esm/api/types/InputFlux11Pro.d.mts +51 -0
- package/dist/esm/api/types/InputFlux11Pro.mjs +31 -0
- package/dist/esm/api/types/InputFlux11Ultra.d.mts +45 -0
- package/dist/esm/api/types/InputFlux11Ultra.mjs +25 -0
- package/dist/esm/api/types/InputFlux2Flex.d.mts +45 -0
- package/dist/esm/api/types/InputFlux2Flex.mjs +17 -0
- package/dist/esm/api/types/InputFlux2FlexImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputFlux2FlexImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputFlux2Klein9B.d.mts +48 -0
- package/dist/esm/api/types/InputFlux2Klein9B.mjs +18 -0
- package/dist/esm/api/types/InputFlux2Klein9BImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputFlux2Klein9BImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputFlux2Max.d.mts +41 -0
- package/dist/esm/api/types/InputFlux2Max.mjs +17 -0
- package/dist/esm/api/types/InputFlux2MaxImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputFlux2MaxImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputFlux2Pro.d.mts +41 -0
- package/dist/esm/api/types/InputFlux2Pro.mjs +17 -0
- package/dist/esm/api/types/InputFlux2ProImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputFlux2ProImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputFlux3.d.mts +47 -0
- package/dist/esm/api/types/InputFlux3.mjs +20 -0
- package/dist/esm/api/types/InputFlux3EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputFlux3EndImage.mjs +2 -0
- package/dist/esm/api/types/InputFlux3StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputFlux3StartImage.mjs +2 -0
- package/dist/esm/api/types/InputFluxDev.d.mts +55 -0
- package/dist/esm/api/types/InputFluxDev.mjs +31 -0
- package/dist/esm/api/types/InputFluxKontextMax.d.mts +52 -0
- package/dist/esm/api/types/InputFluxKontextMax.mjs +25 -0
- package/dist/esm/api/types/InputFluxKontextMaxImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputFluxKontextMaxImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputFluxKontextPro.d.mts +52 -0
- package/dist/esm/api/types/InputFluxKontextPro.mjs +25 -0
- package/dist/esm/api/types/InputFluxKontextProImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputFluxKontextProImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputGeminiOmniFlash.d.mts +37 -0
- package/dist/esm/api/types/InputGeminiOmniFlash.mjs +13 -0
- package/dist/esm/api/types/InputGeminiOmniFlashImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputGeminiOmniFlashImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputGeminiOmniFlashSourceVideo.d.mts +23 -0
- package/dist/esm/api/types/InputGeminiOmniFlashSourceVideo.mjs +2 -0
- package/dist/esm/api/types/InputGeminiOmniFlashStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputGeminiOmniFlashStartImage.mjs +2 -0
- package/dist/esm/api/types/InputGeminiOmniFlashVideosItem.d.mts +20 -0
- package/dist/esm/api/types/InputGeminiOmniFlashVideosItem.mjs +2 -0
- package/dist/esm/api/types/InputGptImage15.d.mts +45 -0
- package/dist/esm/api/types/InputGptImage15.mjs +20 -0
- package/dist/esm/api/types/InputGptImage15ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputGptImage15ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputGptImage2.d.mts +58 -0
- package/dist/esm/api/types/InputGptImage2.mjs +30 -0
- package/dist/esm/api/types/InputGptImage2ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputGptImage2ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputGrokImagine.d.mts +38 -0
- package/dist/esm/api/types/InputGrokImagine.mjs +16 -0
- package/dist/esm/api/types/InputGrokImagineImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputGrokImagineImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputGrokVideo.d.mts +42 -0
- package/dist/esm/api/types/InputGrokVideo.mjs +20 -0
- package/dist/esm/api/types/InputGrokVideoStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputGrokVideoStartImage.mjs +2 -0
- package/dist/esm/api/types/InputHappyHorse.d.mts +49 -0
- package/dist/esm/api/types/InputHappyHorse.mjs +23 -0
- package/dist/esm/api/types/InputHappyHorseImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputHappyHorseImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputHappyHorseStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputHappyHorseStartImage.mjs +2 -0
- package/dist/esm/api/types/InputHedraAvatar.d.mts +50 -0
- package/dist/esm/api/types/InputHedraAvatar.mjs +20 -0
- package/dist/esm/api/types/InputHedraAvatarAudioOneItem.d.mts +20 -0
- package/dist/esm/api/types/InputHedraAvatarAudioOneItem.mjs +2 -0
- package/dist/esm/api/types/InputHedraAvatarAudioZero.d.mts +20 -0
- package/dist/esm/api/types/InputHedraAvatarAudioZero.mjs +2 -0
- package/dist/esm/api/types/InputHedraAvatarStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputHedraAvatarStartImage.mjs +2 -0
- package/dist/esm/api/types/InputHedraCharacter3.d.mts +50 -0
- package/dist/esm/api/types/InputHedraCharacter3.mjs +20 -0
- package/dist/esm/api/types/InputHedraCharacter3AudioOneItem.d.mts +20 -0
- package/dist/esm/api/types/InputHedraCharacter3AudioOneItem.mjs +2 -0
- package/dist/esm/api/types/InputHedraCharacter3AudioZero.d.mts +20 -0
- package/dist/esm/api/types/InputHedraCharacter3AudioZero.mjs +2 -0
- package/dist/esm/api/types/InputHedraCharacter3StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputHedraCharacter3StartImage.mjs +2 -0
- package/dist/esm/api/types/InputHidreamO1Image.d.mts +63 -0
- package/dist/esm/api/types/InputHidreamO1Image.mjs +29 -0
- package/dist/esm/api/types/InputHidreamO1ImageImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputHidreamO1ImageImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputIdeogramV2.d.mts +41 -0
- package/dist/esm/api/types/InputIdeogramV2.mjs +22 -0
- package/dist/esm/api/types/InputIdeogramV4.d.mts +52 -0
- package/dist/esm/api/types/InputIdeogramV4.mjs +29 -0
- package/dist/esm/api/types/InputImagen3.d.mts +31 -0
- package/dist/esm/api/types/InputImagen3.mjs +16 -0
- package/dist/esm/api/types/InputImagen4.d.mts +32 -0
- package/dist/esm/api/types/InputImagen4.mjs +17 -0
- package/dist/esm/api/types/InputKling16.d.mts +39 -0
- package/dist/esm/api/types/InputKling16.mjs +13 -0
- package/dist/esm/api/types/InputKling16StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKling16StartImage.mjs +2 -0
- package/dist/esm/api/types/InputKling21Master.d.mts +40 -0
- package/dist/esm/api/types/InputKling21Master.mjs +14 -0
- package/dist/esm/api/types/InputKling21MasterStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKling21MasterStartImage.mjs +2 -0
- package/dist/esm/api/types/InputKling25Turbo.d.mts +40 -0
- package/dist/esm/api/types/InputKling25Turbo.mjs +14 -0
- package/dist/esm/api/types/InputKling25TurboStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKling25TurboStartImage.mjs +2 -0
- package/dist/esm/api/types/InputKling26MotionControl.d.mts +32 -0
- package/dist/esm/api/types/InputKling26MotionControl.mjs +14 -0
- package/dist/esm/api/types/InputKling26MotionControlSourceVideo.d.mts +23 -0
- package/dist/esm/api/types/InputKling26MotionControlSourceVideo.mjs +2 -0
- package/dist/esm/api/types/InputKling26MotionControlStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKling26MotionControlStartImage.mjs +2 -0
- package/dist/esm/api/types/InputKling26Pro.d.mts +42 -0
- package/dist/esm/api/types/InputKling26Pro.mjs +14 -0
- package/dist/esm/api/types/InputKling26ProStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKling26ProStartImage.mjs +2 -0
- package/dist/esm/api/types/InputKlingAiAvatarV2.d.mts +40 -0
- package/dist/esm/api/types/InputKlingAiAvatarV2.mjs +19 -0
- package/dist/esm/api/types/InputKlingAiAvatarV2Audio.d.mts +23 -0
- package/dist/esm/api/types/InputKlingAiAvatarV2Audio.mjs +2 -0
- package/dist/esm/api/types/InputKlingAiAvatarV2StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKlingAiAvatarV2StartImage.mjs +2 -0
- package/dist/esm/api/types/InputKlingO1.d.mts +40 -0
- package/dist/esm/api/types/InputKlingO1.mjs +14 -0
- package/dist/esm/api/types/InputKlingO1EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputKlingO1EndImage.mjs +2 -0
- package/dist/esm/api/types/InputKlingO1ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputKlingO1ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputKlingO1StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKlingO1StartImage.mjs +2 -0
- package/dist/esm/api/types/InputKlingO3.d.mts +56 -0
- package/dist/esm/api/types/InputKlingO3.mjs +21 -0
- package/dist/esm/api/types/InputKlingO3Edit.d.mts +24 -0
- package/dist/esm/api/types/InputKlingO3Edit.mjs +9 -0
- package/dist/esm/api/types/InputKlingO3EditImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputKlingO3EditImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputKlingO3EditSourceVideo.d.mts +23 -0
- package/dist/esm/api/types/InputKlingO3EditSourceVideo.mjs +2 -0
- package/dist/esm/api/types/InputKlingO3EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputKlingO3EndImage.mjs +2 -0
- package/dist/esm/api/types/InputKlingO3ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputKlingO3ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputKlingO3Reference.d.mts +24 -0
- package/dist/esm/api/types/InputKlingO3Reference.mjs +9 -0
- package/dist/esm/api/types/InputKlingO3ReferenceImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputKlingO3ReferenceImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputKlingO3ReferenceSourceVideo.d.mts +23 -0
- package/dist/esm/api/types/InputKlingO3ReferenceSourceVideo.mjs +2 -0
- package/dist/esm/api/types/InputKlingO3StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKlingO3StartImage.mjs +2 -0
- package/dist/esm/api/types/InputKlingV3.d.mts +58 -0
- package/dist/esm/api/types/InputKlingV3.mjs +21 -0
- package/dist/esm/api/types/InputKlingV3EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputKlingV3EndImage.mjs +2 -0
- package/dist/esm/api/types/InputKlingV3MotionControl.d.mts +32 -0
- package/dist/esm/api/types/InputKlingV3MotionControl.mjs +14 -0
- package/dist/esm/api/types/InputKlingV3MotionControlSourceVideo.d.mts +23 -0
- package/dist/esm/api/types/InputKlingV3MotionControlSourceVideo.mjs +2 -0
- package/dist/esm/api/types/InputKlingV3MotionControlStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKlingV3MotionControlStartImage.mjs +2 -0
- package/dist/esm/api/types/InputKlingV3StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputKlingV3StartImage.mjs +2 -0
- package/dist/esm/api/types/InputLtx23.d.mts +52 -0
- package/dist/esm/api/types/InputLtx23.mjs +21 -0
- package/dist/esm/api/types/InputLtx23EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputLtx23EndImage.mjs +2 -0
- package/dist/esm/api/types/InputLtx23StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputLtx23StartImage.mjs +2 -0
- package/dist/esm/api/types/InputLumaRay32.d.mts +34 -0
- package/dist/esm/api/types/InputLumaRay32.mjs +19 -0
- package/dist/esm/api/types/InputMaiImage25.d.mts +50 -0
- package/dist/esm/api/types/InputMaiImage25.mjs +25 -0
- package/dist/esm/api/types/InputMaiImage25ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputMaiImage25ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxH3.d.mts +52 -0
- package/dist/esm/api/types/InputMinimaxH3.mjs +20 -0
- package/dist/esm/api/types/InputMinimaxH3AudiosItem.d.mts +20 -0
- package/dist/esm/api/types/InputMinimaxH3AudiosItem.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxH3EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputMinimaxH3EndImage.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxH3ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputMinimaxH3ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxH3StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputMinimaxH3StartImage.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxH3VideosItem.d.mts +20 -0
- package/dist/esm/api/types/InputMinimaxH3VideosItem.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxHailuo02.d.mts +49 -0
- package/dist/esm/api/types/InputMinimaxHailuo02.mjs +18 -0
- package/dist/esm/api/types/InputMinimaxHailuo02EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputMinimaxHailuo02EndImage.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxHailuo02StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputMinimaxHailuo02StartImage.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxHailuo23.d.mts +47 -0
- package/dist/esm/api/types/InputMinimaxHailuo23.mjs +20 -0
- package/dist/esm/api/types/InputMinimaxHailuo23StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputMinimaxHailuo23StartImage.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxSpeech25HdPreview.d.mts +15 -0
- package/dist/esm/api/types/InputMinimaxSpeech25HdPreview.mjs +2 -0
- package/dist/esm/api/types/InputMinimaxSpeech25TurboPreview.d.mts +15 -0
- package/dist/esm/api/types/InputMinimaxSpeech25TurboPreview.mjs +2 -0
- package/dist/esm/api/types/InputNanoBanana.d.mts +36 -0
- package/dist/esm/api/types/InputNanoBanana.mjs +16 -0
- package/dist/esm/api/types/InputNanoBanana2.d.mts +43 -0
- package/dist/esm/api/types/InputNanoBanana2.mjs +23 -0
- package/dist/esm/api/types/InputNanoBanana2ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputNanoBanana2ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputNanoBananaImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputNanoBananaImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputNanoBananaPro.d.mts +43 -0
- package/dist/esm/api/types/InputNanoBananaPro.mjs +23 -0
- package/dist/esm/api/types/InputNanoBananaProImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputNanoBananaProImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputOmnihuman15.d.mts +31 -0
- package/dist/esm/api/types/InputOmnihuman15.mjs +13 -0
- package/dist/esm/api/types/InputOmnihuman15Audio.d.mts +23 -0
- package/dist/esm/api/types/InputOmnihuman15Audio.mjs +2 -0
- package/dist/esm/api/types/InputOmnihuman15StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputOmnihuman15StartImage.mjs +2 -0
- package/dist/esm/api/types/InputPixverseV6.d.mts +50 -0
- package/dist/esm/api/types/InputPixverseV6.mjs +22 -0
- package/dist/esm/api/types/InputPixverseV6StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputPixverseV6StartImage.mjs +2 -0
- package/dist/esm/api/types/InputQwenImage2.d.mts +62 -0
- package/dist/esm/api/types/InputQwenImage2.mjs +30 -0
- package/dist/esm/api/types/InputQwenImage2ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputQwenImage2ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputRecraftV3.d.mts +41 -0
- package/dist/esm/api/types/InputRecraftV3.mjs +26 -0
- package/dist/esm/api/types/InputReve21.d.mts +45 -0
- package/dist/esm/api/types/InputReve21.mjs +30 -0
- package/dist/esm/api/types/InputReve21Edit.d.mts +48 -0
- package/dist/esm/api/types/InputReve21Edit.mjs +30 -0
- package/dist/esm/api/types/InputReve21EditImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputReve21EditImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputReve21Remix.d.mts +48 -0
- package/dist/esm/api/types/InputReve21Remix.mjs +30 -0
- package/dist/esm/api/types/InputReve21RemixImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputReve21RemixImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputSana.d.mts +57 -0
- package/dist/esm/api/types/InputSana.mjs +31 -0
- package/dist/esm/api/types/InputSeedance15Pro.d.mts +43 -0
- package/dist/esm/api/types/InputSeedance15Pro.mjs +19 -0
- package/dist/esm/api/types/InputSeedance15ProEndImage.d.mts +23 -0
- package/dist/esm/api/types/InputSeedance15ProEndImage.mjs +2 -0
- package/dist/esm/api/types/InputSeedance15ProStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputSeedance15ProStartImage.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20.d.mts +60 -0
- package/dist/esm/api/types/InputSeedance20.mjs +25 -0
- package/dist/esm/api/types/InputSeedance20AudiosItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance20AudiosItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputSeedance20EndImage.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance20ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20Mini.d.mts +44 -0
- package/dist/esm/api/types/InputSeedance20Mini.mjs +18 -0
- package/dist/esm/api/types/InputSeedance20MiniAudiosItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance20MiniAudiosItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20MiniEndImage.d.mts +23 -0
- package/dist/esm/api/types/InputSeedance20MiniEndImage.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20MiniImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance20MiniImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20MiniStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputSeedance20MiniStartImage.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20MiniVideosItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance20MiniVideosItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputSeedance20StartImage.mjs +2 -0
- package/dist/esm/api/types/InputSeedance20VideosItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance20VideosItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedance25.d.mts +47 -0
- package/dist/esm/api/types/InputSeedance25.mjs +19 -0
- package/dist/esm/api/types/InputSeedance25AudiosItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance25AudiosItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedance25EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputSeedance25EndImage.mjs +2 -0
- package/dist/esm/api/types/InputSeedance25ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance25ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedance25StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputSeedance25StartImage.mjs +2 -0
- package/dist/esm/api/types/InputSeedance25VideosItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedance25VideosItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedream40.d.mts +46 -0
- package/dist/esm/api/types/InputSeedream40.mjs +24 -0
- package/dist/esm/api/types/InputSeedream40ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedream40ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedream45.d.mts +45 -0
- package/dist/esm/api/types/InputSeedream45.mjs +23 -0
- package/dist/esm/api/types/InputSeedream45ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedream45ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedream50Lite.d.mts +45 -0
- package/dist/esm/api/types/InputSeedream50Lite.mjs +23 -0
- package/dist/esm/api/types/InputSeedream50LiteImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedream50LiteImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputSeedream50Pro.d.mts +45 -0
- package/dist/esm/api/types/InputSeedream50Pro.mjs +23 -0
- package/dist/esm/api/types/InputSeedream50ProImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputSeedream50ProImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputSora2Pro.d.mts +36 -0
- package/dist/esm/api/types/InputSora2Pro.mjs +14 -0
- package/dist/esm/api/types/InputSora2ProStartImage.d.mts +23 -0
- package/dist/esm/api/types/InputSora2ProStartImage.mjs +2 -0
- package/dist/esm/api/types/InputVeedFabric10.d.mts +35 -0
- package/dist/esm/api/types/InputVeedFabric10.mjs +17 -0
- package/dist/esm/api/types/InputVeedFabric10Audio.d.mts +23 -0
- package/dist/esm/api/types/InputVeedFabric10Audio.mjs +2 -0
- package/dist/esm/api/types/InputVeedFabric10StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputVeedFabric10StartImage.mjs +2 -0
- package/dist/esm/api/types/InputVeo2.d.mts +38 -0
- package/dist/esm/api/types/InputVeo2.mjs +12 -0
- package/dist/esm/api/types/InputVeo2StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputVeo2StartImage.mjs +2 -0
- package/dist/esm/api/types/InputVeo3.d.mts +50 -0
- package/dist/esm/api/types/InputVeo3.mjs +19 -0
- package/dist/esm/api/types/InputVeo31.d.mts +52 -0
- package/dist/esm/api/types/InputVeo31.mjs +19 -0
- package/dist/esm/api/types/InputVeo31EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputVeo31EndImage.mjs +2 -0
- package/dist/esm/api/types/InputVeo31ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputVeo31ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputVeo31SourceVideo.d.mts +23 -0
- package/dist/esm/api/types/InputVeo31SourceVideo.mjs +2 -0
- package/dist/esm/api/types/InputVeo31StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputVeo31StartImage.mjs +2 -0
- package/dist/esm/api/types/InputVeo3StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputVeo3StartImage.mjs +2 -0
- package/dist/esm/api/types/InputViduQ3.d.mts +53 -0
- package/dist/esm/api/types/InputViduQ3.mjs +23 -0
- package/dist/esm/api/types/InputViduQ3EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputViduQ3EndImage.mjs +2 -0
- package/dist/esm/api/types/InputViduQ3Reference.d.mts +38 -0
- package/dist/esm/api/types/InputViduQ3Reference.mjs +18 -0
- package/dist/esm/api/types/InputViduQ3ReferenceImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputViduQ3ReferenceImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputViduQ3StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputViduQ3StartImage.mjs +2 -0
- package/dist/esm/api/types/InputWan27.d.mts +48 -0
- package/dist/esm/api/types/InputWan27.mjs +17 -0
- package/dist/esm/api/types/InputWan27EndImage.d.mts +23 -0
- package/dist/esm/api/types/InputWan27EndImage.mjs +2 -0
- package/dist/esm/api/types/InputWan27ImagesItem.d.mts +20 -0
- package/dist/esm/api/types/InputWan27ImagesItem.mjs +2 -0
- package/dist/esm/api/types/InputWan27StartImage.d.mts +23 -0
- package/dist/esm/api/types/InputWan27StartImage.mjs +2 -0
- package/dist/esm/api/types/JobListResponse.d.mts +7 -0
- package/dist/esm/api/types/JobListResponse.mjs +2 -0
- package/dist/esm/api/types/JobLogEvent.d.mts +15 -0
- package/dist/esm/api/types/JobLogEvent.mjs +15 -0
- package/dist/esm/api/types/JobLogItem.d.mts +17 -0
- package/dist/esm/api/types/JobLogItem.mjs +2 -0
- package/dist/esm/api/types/JobLogLevel.d.mts +6 -0
- package/dist/esm/api/types/JobLogLevel.mjs +6 -0
- package/dist/esm/api/types/JobLogListResponse.d.mts +7 -0
- package/dist/esm/api/types/JobLogListResponse.mjs +2 -0
- package/dist/esm/api/types/JobLogSource.d.mts +7 -0
- package/dist/esm/api/types/JobLogSource.mjs +7 -0
- package/dist/esm/api/types/JobStatus.d.mts +8 -0
- package/dist/esm/api/types/JobStatus.mjs +8 -0
- package/dist/esm/api/types/JobSummary.d.mts +12 -0
- package/dist/esm/api/types/JobSummary.mjs +2 -0
- package/dist/esm/api/types/KeyCreateResponse.d.mts +18 -0
- package/dist/esm/api/types/KeyCreateResponse.mjs +2 -0
- package/dist/esm/api/types/KeyListResponse.d.mts +7 -0
- package/dist/esm/api/types/KeyListResponse.mjs +2 -0
- package/dist/esm/api/types/KeyRotateResponse.d.mts +18 -0
- package/dist/esm/api/types/KeyRotateResponse.mjs +2 -0
- package/dist/esm/api/types/KeyStatus.d.mts +6 -0
- package/dist/esm/api/types/KeyStatus.mjs +6 -0
- package/dist/esm/api/types/KeySummary.d.mts +21 -0
- package/dist/esm/api/types/KeySummary.mjs +2 -0
- package/dist/esm/api/types/LogDrainConfig.d.mts +34 -0
- package/dist/esm/api/types/LogDrainConfig.mjs +2 -0
- package/dist/esm/api/types/LogDrainFormat.d.mts +6 -0
- package/dist/esm/api/types/LogDrainFormat.mjs +6 -0
- package/dist/esm/api/types/LogDrainListResponse.d.mts +7 -0
- package/dist/esm/api/types/LogDrainListResponse.mjs +2 -0
- package/dist/esm/api/types/LogDrainTestResponse.d.mts +8 -0
- package/dist/esm/api/types/LogDrainTestResponse.mjs +2 -0
- package/dist/esm/api/types/Metrics.d.mts +7 -0
- package/dist/esm/api/types/Metrics.mjs +2 -0
- package/dist/esm/api/types/Modality.d.mts +7 -0
- package/dist/esm/api/types/Modality.mjs +7 -0
- package/dist/esm/api/types/ModelDetail.d.mts +16 -0
- package/dist/esm/api/types/ModelDetail.mjs +2 -0
- package/dist/esm/api/types/ModelListResponse.d.mts +7 -0
- package/dist/esm/api/types/ModelListResponse.mjs +2 -0
- package/dist/esm/api/types/ModelSummary.d.mts +12 -0
- package/dist/esm/api/types/ModelSummary.mjs +2 -0
- package/dist/esm/api/types/OutputItem.d.mts +30 -0
- package/dist/esm/api/types/OutputItem.mjs +2 -0
- package/dist/esm/api/types/OutputStatus.d.mts +7 -0
- package/dist/esm/api/types/OutputStatus.mjs +7 -0
- package/dist/esm/api/types/ResultResponse.d.mts +24 -0
- package/dist/esm/api/types/ResultResponse.mjs +2 -0
- package/dist/esm/api/types/StatusResponse.d.mts +27 -0
- package/dist/esm/api/types/StatusResponse.mjs +2 -0
- package/dist/esm/api/types/SubmitResponse.d.mts +14 -0
- package/dist/esm/api/types/SubmitResponse.mjs +2 -0
- package/dist/esm/api/types/TokenCreateResponse.d.mts +6 -0
- package/dist/esm/api/types/TokenCreateResponse.mjs +2 -0
- package/dist/esm/api/types/UsageBucket.d.mts +13 -0
- package/dist/esm/api/types/UsageBucket.mjs +2 -0
- package/dist/esm/api/types/UsageGroupBy.d.mts +6 -0
- package/dist/esm/api/types/UsageGroupBy.mjs +6 -0
- package/dist/esm/api/types/UsageResponse.d.mts +16 -0
- package/dist/esm/api/types/UsageResponse.mjs +2 -0
- package/dist/esm/api/types/VoiceListResponse.d.mts +7 -0
- package/dist/esm/api/types/VoiceListResponse.mjs +2 -0
- package/dist/esm/api/types/VoiceSummary.d.mts +13 -0
- package/dist/esm/api/types/VoiceSummary.mjs +2 -0
- package/dist/esm/api/types/WebhookDefaultConfig.d.mts +10 -0
- package/dist/esm/api/types/WebhookDefaultConfig.mjs +2 -0
- package/dist/esm/api/types/WebhookDeliveryListResponse.d.mts +7 -0
- package/dist/esm/api/types/WebhookDeliveryListResponse.mjs +2 -0
- package/dist/esm/api/types/WebhookDeliverySource.d.mts +6 -0
- package/dist/esm/api/types/WebhookDeliverySource.mjs +6 -0
- package/dist/esm/api/types/WebhookDeliveryStatus.d.mts +8 -0
- package/dist/esm/api/types/WebhookDeliveryStatus.mjs +8 -0
- package/dist/esm/api/types/WebhookDeliverySummary.d.mts +29 -0
- package/dist/esm/api/types/WebhookDeliverySummary.mjs +2 -0
- package/dist/esm/api/types/WebhookEventType.d.mts +11 -0
- package/dist/esm/api/types/WebhookEventType.mjs +11 -0
- package/dist/esm/api/types/WebhookPayload.d.mts +21 -0
- package/dist/esm/api/types/WebhookPayload.mjs +2 -0
- package/dist/esm/api/types/WebhookPublicKey.d.mts +9 -0
- package/dist/esm/api/types/WebhookPublicKey.mjs +2 -0
- package/dist/esm/api/types/WebhookRedelivery.d.mts +19 -0
- package/dist/esm/api/types/WebhookRedelivery.mjs +2 -0
- package/dist/esm/api/types/WebhookTestResponse.d.mts +8 -0
- package/dist/esm/api/types/WebhookTestResponse.mjs +2 -0
- package/dist/esm/api/types/index.d.mts +231 -0
- package/dist/esm/api/types/index.mjs +231 -0
- package/dist/esm/auth/BearerAuthProvider.d.mts +20 -0
- package/dist/esm/auth/BearerAuthProvider.mjs +45 -0
- package/dist/esm/auth/index.d.mts +1 -0
- package/dist/esm/auth/index.mjs +1 -0
- package/dist/esm/core/auth/AuthProvider.d.mts +8 -0
- package/dist/esm/core/auth/AuthProvider.mjs +6 -0
- package/dist/esm/core/auth/AuthRequest.d.mts +9 -0
- package/dist/esm/core/auth/AuthRequest.mjs +1 -0
- package/dist/esm/core/auth/BasicAuth.d.mts +8 -0
- package/dist/esm/core/auth/BasicAuth.mjs +30 -0
- package/dist/esm/core/auth/BearerToken.d.mts +7 -0
- package/dist/esm/core/auth/BearerToken.mjs +13 -0
- package/dist/esm/core/auth/NoOpAuthProvider.d.mts +5 -0
- package/dist/esm/core/auth/NoOpAuthProvider.mjs +5 -0
- package/dist/esm/core/auth/index.d.mts +5 -0
- package/dist/esm/core/auth/index.mjs +4 -0
- package/dist/esm/core/base64.d.mts +2 -0
- package/dist/esm/core/base64.mjs +22 -0
- package/dist/esm/core/exports.d.mts +3 -0
- package/dist/esm/core/exports.mjs +3 -0
- package/dist/esm/core/fetcher/APIResponse.d.mts +20 -0
- package/dist/esm/core/fetcher/APIResponse.mjs +1 -0
- package/dist/esm/core/fetcher/BinaryResponse.d.mts +19 -0
- package/dist/esm/core/fetcher/BinaryResponse.mjs +14 -0
- package/dist/esm/core/fetcher/EndpointMetadata.d.mts +13 -0
- package/dist/esm/core/fetcher/EndpointMetadata.mjs +1 -0
- package/dist/esm/core/fetcher/EndpointSupplier.d.mts +12 -0
- package/dist/esm/core/fetcher/EndpointSupplier.mjs +19 -0
- package/dist/esm/core/fetcher/Fetcher.d.mts +56 -0
- package/dist/esm/core/fetcher/Fetcher.mjs +240 -0
- package/dist/esm/core/fetcher/Headers.d.mts +2 -0
- package/dist/esm/core/fetcher/Headers.mjs +82 -0
- package/dist/esm/core/fetcher/HttpResponsePromise.d.mts +58 -0
- package/dist/esm/core/fetcher/HttpResponsePromise.mjs +99 -0
- package/dist/esm/core/fetcher/RawResponse.d.mts +29 -0
- package/dist/esm/core/fetcher/RawResponse.mjs +40 -0
- package/dist/esm/core/fetcher/Supplier.d.mts +4 -0
- package/dist/esm/core/fetcher/Supplier.mjs +19 -0
- package/dist/esm/core/fetcher/createRequestUrl.d.mts +1 -0
- package/dist/esm/core/fetcher/createRequestUrl.mjs +5 -0
- package/dist/esm/core/fetcher/getErrorResponseBody.d.mts +1 -0
- package/dist/esm/core/fetcher/getErrorResponseBody.mjs +42 -0
- package/dist/esm/core/fetcher/getFetchFn.d.mts +1 -0
- package/dist/esm/core/fetcher/getFetchFn.mjs +14 -0
- package/dist/esm/core/fetcher/getHeader.d.mts +1 -0
- package/dist/esm/core/fetcher/getHeader.mjs +8 -0
- package/dist/esm/core/fetcher/getRequestBody.d.mts +7 -0
- package/dist/esm/core/fetcher/getRequestBody.mjs +24 -0
- package/dist/esm/core/fetcher/getResponseBody.d.mts +1 -0
- package/dist/esm/core/fetcher/getResponseBody.mjs +77 -0
- package/dist/esm/core/fetcher/index.d.mts +13 -0
- package/dist/esm/core/fetcher/index.mjs +7 -0
- package/dist/esm/core/fetcher/makePassthroughRequest.d.mts +49 -0
- package/dist/esm/core/fetcher/makePassthroughRequest.mjs +154 -0
- package/dist/esm/core/fetcher/makeRequest.d.mts +6 -0
- package/dist/esm/core/fetcher/makeRequest.mjs +55 -0
- package/dist/esm/core/fetcher/redactUrl.d.mts +2 -0
- package/dist/esm/core/fetcher/redactUrl.mjs +84 -0
- package/dist/esm/core/fetcher/requestWithRetries.d.mts +1 -0
- package/dist/esm/core/fetcher/requestWithRetries.mjs +67 -0
- package/dist/esm/core/fetcher/signals.d.mts +5 -0
- package/dist/esm/core/fetcher/signals.mjs +28 -0
- package/dist/esm/core/file/exports.d.mts +1 -0
- package/dist/esm/core/file/exports.mjs +1 -0
- package/dist/esm/core/file/file.d.mts +10 -0
- package/dist/esm/core/file/file.mjs +188 -0
- package/dist/esm/core/file/index.d.mts +2 -0
- package/dist/esm/core/file/index.mjs +2 -0
- package/dist/esm/core/file/types.d.mts +66 -0
- package/dist/esm/core/file/types.mjs +1 -0
- package/dist/esm/core/form-data-utils/FormDataWrapper.d.mts +15 -0
- package/dist/esm/core/form-data-utils/FormDataWrapper.mjs +150 -0
- package/dist/esm/core/form-data-utils/encodeAsFormParameter.d.mts +1 -0
- package/dist/esm/core/form-data-utils/encodeAsFormParameter.mjs +9 -0
- package/dist/esm/core/form-data-utils/index.d.mts +2 -0
- package/dist/esm/core/form-data-utils/index.mjs +2 -0
- package/dist/esm/core/headers.d.mts +2 -0
- package/dist/esm/core/headers.mjs +27 -0
- package/dist/esm/core/index.d.mts +11 -0
- package/dist/esm/core/index.mjs +11 -0
- package/dist/esm/core/json.d.mts +15 -0
- package/dist/esm/core/json.mjs +19 -0
- package/dist/esm/core/logging/exports.d.mts +18 -0
- package/dist/esm/core/logging/exports.mjs +9 -0
- package/dist/esm/core/logging/index.d.mts +1 -0
- package/dist/esm/core/logging/index.mjs +1 -0
- package/dist/esm/core/logging/logger.d.mts +126 -0
- package/dist/esm/core/logging/logger.mjs +138 -0
- package/dist/esm/core/pagination/Page.d.mts +33 -0
- package/dist/esm/core/pagination/Page.mjs +97 -0
- package/dist/esm/core/pagination/exports.d.mts +1 -0
- package/dist/esm/core/pagination/exports.mjs +1 -0
- package/dist/esm/core/pagination/index.d.mts +1 -0
- package/dist/esm/core/pagination/index.mjs +1 -0
- package/dist/esm/core/requestBody.d.mts +12 -0
- package/dist/esm/core/requestBody.mjs +23 -0
- package/dist/esm/core/runtime/index.d.mts +1 -0
- package/dist/esm/core/runtime/index.mjs +1 -0
- package/dist/esm/core/runtime/runtime.d.mts +28 -0
- package/dist/esm/core/runtime/runtime.mjs +172 -0
- package/dist/esm/core/stream/Stream.d.mts +100 -0
- package/dist/esm/core/stream/Stream.mjs +501 -0
- package/dist/esm/core/stream/index.d.mts +2 -0
- package/dist/esm/core/stream/index.mjs +1 -0
- package/dist/esm/core/url/QueryStringBuilder.d.mts +47 -0
- package/dist/esm/core/url/QueryStringBuilder.mjs +80 -0
- package/dist/esm/core/url/encodePathParam.d.mts +1 -0
- package/dist/esm/core/url/encodePathParam.mjs +18 -0
- package/dist/esm/core/url/index.d.mts +4 -0
- package/dist/esm/core/url/index.mjs +4 -0
- package/dist/esm/core/url/join.d.mts +1 -0
- package/dist/esm/core/url/join.mjs +65 -0
- package/dist/esm/core/url/qs.d.mts +7 -0
- package/dist/esm/core/url/qs.mjs +73 -0
- package/dist/esm/core/utils/index.d.mts +1 -0
- package/dist/esm/core/utils/index.mjs +1 -0
- package/dist/esm/core/utils/setObjectProperty.d.mts +11 -0
- package/dist/esm/core/utils/setObjectProperty.mjs +39 -0
- package/dist/esm/environments.d.mts +4 -0
- package/dist/esm/environments.mjs +4 -0
- package/dist/esm/errors/HedraError.d.mts +15 -0
- package/dist/esm/errors/HedraError.mjs +35 -0
- package/dist/esm/errors/HedraTimeoutError.d.mts +6 -0
- package/dist/esm/errors/HedraTimeoutError.mjs +15 -0
- package/dist/esm/errors/handleNonStatusCodeError.d.mts +2 -0
- package/dist/esm/errors/handleNonStatusCodeError.mjs +32 -0
- package/dist/esm/errors/index.d.mts +2 -0
- package/dist/esm/errors/index.mjs +2 -0
- package/dist/esm/exports.d.mts +1 -0
- package/dist/esm/exports.mjs +1 -0
- package/dist/esm/index.d.mts +6 -0
- package/dist/esm/index.mjs +5 -0
- package/dist/esm/version.d.mts +1 -0
- package/dist/esm/version.mjs +1 -0
- package/package.json +160 -0
- package/reference.md +7243 -0
|
@@ -0,0 +1,2425 @@
|
|
|
1
|
+
import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.mjs";
|
|
2
|
+
import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.mjs";
|
|
3
|
+
import * as core from "../../../../core/index.mjs";
|
|
4
|
+
import * as Hedra from "../../../index.mjs";
|
|
5
|
+
export declare namespace JobsClient {
|
|
6
|
+
type Options = BaseClientOptions;
|
|
7
|
+
interface RequestOptions extends BaseRequestOptions {
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Poll, stream, and list submitted jobs.
|
|
12
|
+
*/
|
|
13
|
+
export declare class JobsClient {
|
|
14
|
+
protected readonly _options: NormalizedClientOptionsWithAuth<JobsClient.Options>;
|
|
15
|
+
constructor(options?: JobsClient.Options);
|
|
16
|
+
/**
|
|
17
|
+
* @param {Hedra.JobsListRequest} request
|
|
18
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
19
|
+
*
|
|
20
|
+
* @throws {@link Hedra.BadRequestError}
|
|
21
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
22
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
23
|
+
* @throws {@link Hedra.NotFoundError}
|
|
24
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
25
|
+
* @throws {@link Hedra.InternalServerError}
|
|
26
|
+
* @throws {@link errors.HedraError}
|
|
27
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* await client.jobs.list()
|
|
31
|
+
*/
|
|
32
|
+
list(request?: Hedra.JobsListRequest, requestOptions?: JobsClient.RequestOptions): Promise<core.Page<Hedra.JobSummary, Hedra.JobListResponse>>;
|
|
33
|
+
/**
|
|
34
|
+
* @param {string} job_id - The job's id (`job_<uuid>`).
|
|
35
|
+
* @param {Hedra.JobsGetRequest} request
|
|
36
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link Hedra.BadRequestError}
|
|
39
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
40
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
41
|
+
* @throws {@link Hedra.NotFoundError}
|
|
42
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
43
|
+
* @throws {@link Hedra.InternalServerError}
|
|
44
|
+
* @throws {@link errors.HedraError}
|
|
45
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* await client.jobs.get("job_id")
|
|
49
|
+
*/
|
|
50
|
+
get(job_id: string, request?: Hedra.JobsGetRequest, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.ResultResponse>;
|
|
51
|
+
private __get;
|
|
52
|
+
/**
|
|
53
|
+
* @param {string} job_id - The job's id (`job_<uuid>`).
|
|
54
|
+
* @param {Hedra.JobsGetStatusRequest} request
|
|
55
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link Hedra.BadRequestError}
|
|
58
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
59
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
60
|
+
* @throws {@link Hedra.NotFoundError}
|
|
61
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
62
|
+
* @throws {@link Hedra.InternalServerError}
|
|
63
|
+
* @throws {@link errors.HedraError}
|
|
64
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
65
|
+
*
|
|
66
|
+
* @example
|
|
67
|
+
* await client.jobs.getStatus("job_id")
|
|
68
|
+
*/
|
|
69
|
+
getStatus(job_id: string, request?: Hedra.JobsGetStatusRequest, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.StatusResponse>;
|
|
70
|
+
private __getStatus;
|
|
71
|
+
/**
|
|
72
|
+
* @param {string} job_id - The job's id (`job_<uuid>`).
|
|
73
|
+
* @param {Hedra.JobsListJobLogsRequest} request
|
|
74
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link Hedra.BadRequestError}
|
|
77
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
78
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
79
|
+
* @throws {@link Hedra.NotFoundError}
|
|
80
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
81
|
+
* @throws {@link Hedra.InternalServerError}
|
|
82
|
+
* @throws {@link errors.HedraError}
|
|
83
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
84
|
+
*
|
|
85
|
+
* @example
|
|
86
|
+
* await client.jobs.listJobLogs("job_id")
|
|
87
|
+
*/
|
|
88
|
+
listJobLogs(job_id: string, request?: Hedra.JobsListJobLogsRequest, requestOptions?: JobsClient.RequestOptions): Promise<core.Page<Hedra.JobLogItem, Hedra.JobLogListResponse>>;
|
|
89
|
+
stream(job_id: string, request?: Hedra.JobsStreamRequest, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<core.Stream<Hedra.JobsStreamResponse>>;
|
|
90
|
+
private __stream;
|
|
91
|
+
/**
|
|
92
|
+
* Ultra high quality generations for professional grade images.
|
|
93
|
+
*
|
|
94
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
95
|
+
*
|
|
96
|
+
* @param {Hedra.SubmitBodyDreamina31} request
|
|
97
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link Hedra.BadRequestError}
|
|
100
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
101
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
102
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
103
|
+
* @throws {@link Hedra.NotFoundError}
|
|
104
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
105
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
106
|
+
* @throws {@link Hedra.InternalServerError}
|
|
107
|
+
* @throws {@link errors.HedraError}
|
|
108
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
109
|
+
*
|
|
110
|
+
* @example
|
|
111
|
+
* await client.jobs.submitDreamina31({
|
|
112
|
+
* input: {
|
|
113
|
+
* prompt: "prompt",
|
|
114
|
+
* aspect_ratio: "16:9",
|
|
115
|
+
* resolution: "540p"
|
|
116
|
+
* }
|
|
117
|
+
* })
|
|
118
|
+
*/
|
|
119
|
+
submitDreamina31(request: Hedra.SubmitBodyDreamina31, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
120
|
+
private __submitDreamina31;
|
|
121
|
+
/**
|
|
122
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
123
|
+
*
|
|
124
|
+
* @param {Hedra.SubmitBodyElevenlabsFlashMultilingualV2} request
|
|
125
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
126
|
+
*
|
|
127
|
+
* @throws {@link Hedra.BadRequestError}
|
|
128
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
129
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
130
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
131
|
+
* @throws {@link Hedra.NotFoundError}
|
|
132
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
133
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
134
|
+
* @throws {@link Hedra.InternalServerError}
|
|
135
|
+
* @throws {@link errors.HedraError}
|
|
136
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
137
|
+
*
|
|
138
|
+
* @example
|
|
139
|
+
* await client.jobs.submitElevenlabsFlashMultilingualV2({
|
|
140
|
+
* input: {
|
|
141
|
+
* text: "text",
|
|
142
|
+
* voice_id: "voice_id"
|
|
143
|
+
* }
|
|
144
|
+
* })
|
|
145
|
+
*/
|
|
146
|
+
submitElevenlabsFlashMultilingualV2(request: Hedra.SubmitBodyElevenlabsFlashMultilingualV2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
147
|
+
private __submitElevenlabsFlashMultilingualV2;
|
|
148
|
+
/**
|
|
149
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
150
|
+
*
|
|
151
|
+
* @param {Hedra.SubmitBodyElevenlabsFlashV2} request
|
|
152
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
153
|
+
*
|
|
154
|
+
* @throws {@link Hedra.BadRequestError}
|
|
155
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
156
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
157
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
158
|
+
* @throws {@link Hedra.NotFoundError}
|
|
159
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
160
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
161
|
+
* @throws {@link Hedra.InternalServerError}
|
|
162
|
+
* @throws {@link errors.HedraError}
|
|
163
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
164
|
+
*
|
|
165
|
+
* @example
|
|
166
|
+
* await client.jobs.submitElevenlabsFlashV2({
|
|
167
|
+
* input: {
|
|
168
|
+
* text: "text",
|
|
169
|
+
* voice_id: "voice_id"
|
|
170
|
+
* }
|
|
171
|
+
* })
|
|
172
|
+
*/
|
|
173
|
+
submitElevenlabsFlashV2(request: Hedra.SubmitBodyElevenlabsFlashV2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
174
|
+
private __submitElevenlabsFlashV2;
|
|
175
|
+
/**
|
|
176
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
177
|
+
*
|
|
178
|
+
* @param {Hedra.SubmitBodyElevenlabsMultilingualV2} request
|
|
179
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
180
|
+
*
|
|
181
|
+
* @throws {@link Hedra.BadRequestError}
|
|
182
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
183
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
184
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
185
|
+
* @throws {@link Hedra.NotFoundError}
|
|
186
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
187
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
188
|
+
* @throws {@link Hedra.InternalServerError}
|
|
189
|
+
* @throws {@link errors.HedraError}
|
|
190
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
191
|
+
*
|
|
192
|
+
* @example
|
|
193
|
+
* await client.jobs.submitElevenlabsMultilingualV2({
|
|
194
|
+
* input: {
|
|
195
|
+
* text: "text",
|
|
196
|
+
* voice_id: "voice_id"
|
|
197
|
+
* }
|
|
198
|
+
* })
|
|
199
|
+
*/
|
|
200
|
+
submitElevenlabsMultilingualV2(request: Hedra.SubmitBodyElevenlabsMultilingualV2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
201
|
+
private __submitElevenlabsMultilingualV2;
|
|
202
|
+
/**
|
|
203
|
+
* ElevenLabs V3
|
|
204
|
+
*
|
|
205
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
206
|
+
*
|
|
207
|
+
* @param {Hedra.SubmitBodyElevenlabsV3} request
|
|
208
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
209
|
+
*
|
|
210
|
+
* @throws {@link Hedra.BadRequestError}
|
|
211
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
212
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
213
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
214
|
+
* @throws {@link Hedra.NotFoundError}
|
|
215
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
216
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
217
|
+
* @throws {@link Hedra.InternalServerError}
|
|
218
|
+
* @throws {@link errors.HedraError}
|
|
219
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
220
|
+
*
|
|
221
|
+
* @example
|
|
222
|
+
* await client.jobs.submitElevenlabsV3({
|
|
223
|
+
* input: {
|
|
224
|
+
* text: "text",
|
|
225
|
+
* voice_id: "voice_id"
|
|
226
|
+
* }
|
|
227
|
+
* })
|
|
228
|
+
*/
|
|
229
|
+
submitElevenlabsV3(request: Hedra.SubmitBodyElevenlabsV3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
230
|
+
private __submitElevenlabsV3;
|
|
231
|
+
/**
|
|
232
|
+
* Premium color depth and clarity when you want campaign-ready art that feels handcrafted.
|
|
233
|
+
*
|
|
234
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
235
|
+
*
|
|
236
|
+
* @param {Hedra.SubmitBodyFlux11Pro} request
|
|
237
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
238
|
+
*
|
|
239
|
+
* @throws {@link Hedra.BadRequestError}
|
|
240
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
241
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
242
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
243
|
+
* @throws {@link Hedra.NotFoundError}
|
|
244
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
245
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
246
|
+
* @throws {@link Hedra.InternalServerError}
|
|
247
|
+
* @throws {@link errors.HedraError}
|
|
248
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
249
|
+
*
|
|
250
|
+
* @example
|
|
251
|
+
* await client.jobs.submitFlux11Pro({
|
|
252
|
+
* input: {
|
|
253
|
+
* prompt: "prompt",
|
|
254
|
+
* aspect_ratio: "1:1",
|
|
255
|
+
* resolution: "540p"
|
|
256
|
+
* }
|
|
257
|
+
* })
|
|
258
|
+
*/
|
|
259
|
+
submitFlux11Pro(request: Hedra.SubmitBodyFlux11Pro, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
260
|
+
private __submitFlux11Pro;
|
|
261
|
+
/**
|
|
262
|
+
* The big-canvas choice for ultra-high-res images and flagship visuals.
|
|
263
|
+
*
|
|
264
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
265
|
+
*
|
|
266
|
+
* @param {Hedra.SubmitBodyFlux11Ultra} request
|
|
267
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
268
|
+
*
|
|
269
|
+
* @throws {@link Hedra.BadRequestError}
|
|
270
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
271
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
272
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
273
|
+
* @throws {@link Hedra.NotFoundError}
|
|
274
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
275
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
276
|
+
* @throws {@link Hedra.InternalServerError}
|
|
277
|
+
* @throws {@link errors.HedraError}
|
|
278
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
279
|
+
*
|
|
280
|
+
* @example
|
|
281
|
+
* await client.jobs.submitFlux11Ultra({
|
|
282
|
+
* input: {
|
|
283
|
+
* prompt: "prompt",
|
|
284
|
+
* aspect_ratio: "16:9"
|
|
285
|
+
* }
|
|
286
|
+
* })
|
|
287
|
+
*/
|
|
288
|
+
submitFlux11Ultra(request: Hedra.SubmitBodyFlux11Ultra, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
289
|
+
private __submitFlux11Ultra;
|
|
290
|
+
/**
|
|
291
|
+
* Black Forest Labs FLUX.3 text-to-video with native audio.
|
|
292
|
+
*
|
|
293
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
294
|
+
*
|
|
295
|
+
* @param {Hedra.SubmitBodyFlux3} request
|
|
296
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
297
|
+
*
|
|
298
|
+
* @throws {@link Hedra.BadRequestError}
|
|
299
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
300
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
301
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
302
|
+
* @throws {@link Hedra.NotFoundError}
|
|
303
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
304
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
305
|
+
* @throws {@link Hedra.InternalServerError}
|
|
306
|
+
* @throws {@link errors.HedraError}
|
|
307
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
308
|
+
*
|
|
309
|
+
* @example
|
|
310
|
+
* await client.jobs.submitFlux3({
|
|
311
|
+
* input: {
|
|
312
|
+
* prompt: "prompt",
|
|
313
|
+
* aspect_ratio: "auto",
|
|
314
|
+
* resolution: "720p",
|
|
315
|
+
* duration_ms: 1
|
|
316
|
+
* }
|
|
317
|
+
* })
|
|
318
|
+
*/
|
|
319
|
+
submitFlux3(request: Hedra.SubmitBodyFlux3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
320
|
+
private __submitFlux3;
|
|
321
|
+
/**
|
|
322
|
+
* Fast and light for quick concepts or high-volume social posts on a budget.
|
|
323
|
+
*
|
|
324
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
325
|
+
*
|
|
326
|
+
* @param {Hedra.SubmitBodyFluxDev} request
|
|
327
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
328
|
+
*
|
|
329
|
+
* @throws {@link Hedra.BadRequestError}
|
|
330
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
331
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
332
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
333
|
+
* @throws {@link Hedra.NotFoundError}
|
|
334
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
335
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
336
|
+
* @throws {@link Hedra.InternalServerError}
|
|
337
|
+
* @throws {@link errors.HedraError}
|
|
338
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
339
|
+
*
|
|
340
|
+
* @example
|
|
341
|
+
* await client.jobs.submitFluxDev({
|
|
342
|
+
* input: {
|
|
343
|
+
* prompt: "prompt",
|
|
344
|
+
* aspect_ratio: "1:1",
|
|
345
|
+
* resolution: "540p"
|
|
346
|
+
* }
|
|
347
|
+
* })
|
|
348
|
+
*/
|
|
349
|
+
submitFluxDev(request: Hedra.SubmitBodyFluxDev, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
350
|
+
private __submitFluxDev;
|
|
351
|
+
/**
|
|
352
|
+
* Highest-fidelity reference-image support for complex, multi-element scenes and perfectly matched branded visuals.
|
|
353
|
+
*
|
|
354
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
355
|
+
*
|
|
356
|
+
* @param {Hedra.SubmitBodyFluxKontextMax} request
|
|
357
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
358
|
+
*
|
|
359
|
+
* @throws {@link Hedra.BadRequestError}
|
|
360
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
361
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
362
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
363
|
+
* @throws {@link Hedra.NotFoundError}
|
|
364
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
365
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
366
|
+
* @throws {@link Hedra.InternalServerError}
|
|
367
|
+
* @throws {@link errors.HedraError}
|
|
368
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
369
|
+
*
|
|
370
|
+
* @example
|
|
371
|
+
* await client.jobs.submitFluxKontextMax({
|
|
372
|
+
* input: {
|
|
373
|
+
* prompt: "prompt"
|
|
374
|
+
* }
|
|
375
|
+
* })
|
|
376
|
+
*/
|
|
377
|
+
submitFluxKontextMax(request: Hedra.SubmitBodyFluxKontextMax, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
378
|
+
private __submitFluxKontextMax;
|
|
379
|
+
/**
|
|
380
|
+
* Reference-image support for character, brand, or style consistency.
|
|
381
|
+
*
|
|
382
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
383
|
+
*
|
|
384
|
+
* @param {Hedra.SubmitBodyFluxKontextPro} request
|
|
385
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
386
|
+
*
|
|
387
|
+
* @throws {@link Hedra.BadRequestError}
|
|
388
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
389
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
390
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
391
|
+
* @throws {@link Hedra.NotFoundError}
|
|
392
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
393
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
394
|
+
* @throws {@link Hedra.InternalServerError}
|
|
395
|
+
* @throws {@link errors.HedraError}
|
|
396
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
397
|
+
*
|
|
398
|
+
* @example
|
|
399
|
+
* await client.jobs.submitFluxKontextPro({
|
|
400
|
+
* input: {
|
|
401
|
+
* prompt: "prompt"
|
|
402
|
+
* }
|
|
403
|
+
* })
|
|
404
|
+
*/
|
|
405
|
+
submitFluxKontextPro(request: Hedra.SubmitBodyFluxKontextPro, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
406
|
+
private __submitFluxKontextPro;
|
|
407
|
+
/**
|
|
408
|
+
* Image creation and editing with FLUX.2 [flex] from Black Forest Labs.
|
|
409
|
+
*
|
|
410
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
411
|
+
*
|
|
412
|
+
* @param {Hedra.SubmitBodyFlux2Flex} request
|
|
413
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
414
|
+
*
|
|
415
|
+
* @throws {@link Hedra.BadRequestError}
|
|
416
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
417
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
418
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
419
|
+
* @throws {@link Hedra.NotFoundError}
|
|
420
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
421
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
422
|
+
* @throws {@link Hedra.InternalServerError}
|
|
423
|
+
* @throws {@link errors.HedraError}
|
|
424
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
425
|
+
*
|
|
426
|
+
* @example
|
|
427
|
+
* await client.jobs.submitFlux2Flex({
|
|
428
|
+
* input: {
|
|
429
|
+
* prompt: "prompt",
|
|
430
|
+
* aspect_ratio: "16:9"
|
|
431
|
+
* }
|
|
432
|
+
* })
|
|
433
|
+
*/
|
|
434
|
+
submitFlux2Flex(request: Hedra.SubmitBodyFlux2Flex, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
435
|
+
private __submitFlux2Flex;
|
|
436
|
+
/**
|
|
437
|
+
* Flux.2 [klein] 9B model from Black Forest Labs.
|
|
438
|
+
*
|
|
439
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
440
|
+
*
|
|
441
|
+
* @param {Hedra.SubmitBodyFlux2Klein9B} request
|
|
442
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
443
|
+
*
|
|
444
|
+
* @throws {@link Hedra.BadRequestError}
|
|
445
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
446
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
447
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
448
|
+
* @throws {@link Hedra.NotFoundError}
|
|
449
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
450
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
451
|
+
* @throws {@link Hedra.InternalServerError}
|
|
452
|
+
* @throws {@link errors.HedraError}
|
|
453
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
454
|
+
*
|
|
455
|
+
* @example
|
|
456
|
+
* await client.jobs.submitFlux2Klein9B({
|
|
457
|
+
* input: {
|
|
458
|
+
* prompt: "prompt",
|
|
459
|
+
* aspect_ratio: "16:9"
|
|
460
|
+
* }
|
|
461
|
+
* })
|
|
462
|
+
*/
|
|
463
|
+
submitFlux2Klein9B(request: Hedra.SubmitBodyFlux2Klein9B, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
464
|
+
private __submitFlux2Klein9B;
|
|
465
|
+
/**
|
|
466
|
+
* FLUX.2 [max] delivers state-of-the-art image generation and advanced image editing with exceptional realism, precision, and consistency.
|
|
467
|
+
*
|
|
468
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
469
|
+
*
|
|
470
|
+
* @param {Hedra.SubmitBodyFlux2Max} request
|
|
471
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
472
|
+
*
|
|
473
|
+
* @throws {@link Hedra.BadRequestError}
|
|
474
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
475
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
476
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
477
|
+
* @throws {@link Hedra.NotFoundError}
|
|
478
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
479
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
480
|
+
* @throws {@link Hedra.InternalServerError}
|
|
481
|
+
* @throws {@link errors.HedraError}
|
|
482
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
483
|
+
*
|
|
484
|
+
* @example
|
|
485
|
+
* await client.jobs.submitFlux2Max({
|
|
486
|
+
* input: {
|
|
487
|
+
* prompt: "prompt",
|
|
488
|
+
* aspect_ratio: "16:9"
|
|
489
|
+
* }
|
|
490
|
+
* })
|
|
491
|
+
*/
|
|
492
|
+
submitFlux2Max(request: Hedra.SubmitBodyFlux2Max, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
493
|
+
private __submitFlux2Max;
|
|
494
|
+
/**
|
|
495
|
+
* Image creation and editing with FLUX.2 [pro] from Black Forest Labs. Ideal for high-quality image manipulation, style transfer, and sequential editing workflows
|
|
496
|
+
*
|
|
497
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
498
|
+
*
|
|
499
|
+
* @param {Hedra.SubmitBodyFlux2Pro} request
|
|
500
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
501
|
+
*
|
|
502
|
+
* @throws {@link Hedra.BadRequestError}
|
|
503
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
504
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
505
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
506
|
+
* @throws {@link Hedra.NotFoundError}
|
|
507
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
508
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
509
|
+
* @throws {@link Hedra.InternalServerError}
|
|
510
|
+
* @throws {@link errors.HedraError}
|
|
511
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
512
|
+
*
|
|
513
|
+
* @example
|
|
514
|
+
* await client.jobs.submitFlux2Pro({
|
|
515
|
+
* input: {
|
|
516
|
+
* prompt: "prompt",
|
|
517
|
+
* aspect_ratio: "16:9"
|
|
518
|
+
* }
|
|
519
|
+
* })
|
|
520
|
+
*/
|
|
521
|
+
submitFlux2Pro(request: Hedra.SubmitBodyFlux2Pro, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
522
|
+
private __submitFlux2Pro;
|
|
523
|
+
/**
|
|
524
|
+
* Gemini's fast multimodal video model — cinematic clips with native audio from a prompt, a keyframe, or reference images.
|
|
525
|
+
*
|
|
526
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
527
|
+
*
|
|
528
|
+
* @param {Hedra.SubmitBodyGeminiOmniFlash} request
|
|
529
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
530
|
+
*
|
|
531
|
+
* @throws {@link Hedra.BadRequestError}
|
|
532
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
533
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
534
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
535
|
+
* @throws {@link Hedra.NotFoundError}
|
|
536
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
537
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
538
|
+
* @throws {@link Hedra.InternalServerError}
|
|
539
|
+
* @throws {@link errors.HedraError}
|
|
540
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
541
|
+
*
|
|
542
|
+
* @example
|
|
543
|
+
* await client.jobs.submitGeminiOmniFlash({
|
|
544
|
+
* input: {
|
|
545
|
+
* prompt: "prompt",
|
|
546
|
+
* aspect_ratio: "16:9"
|
|
547
|
+
* }
|
|
548
|
+
* })
|
|
549
|
+
*/
|
|
550
|
+
submitGeminiOmniFlash(request: Hedra.SubmitBodyGeminiOmniFlash, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
551
|
+
private __submitGeminiOmniFlash;
|
|
552
|
+
/**
|
|
553
|
+
* OpenAI-powered image generation with exceptional prompt understanding and versatile editing capabilities.
|
|
554
|
+
*
|
|
555
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
556
|
+
*
|
|
557
|
+
* @param {Hedra.SubmitBodyGptImage15} request
|
|
558
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
559
|
+
*
|
|
560
|
+
* @throws {@link Hedra.BadRequestError}
|
|
561
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
562
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
563
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
564
|
+
* @throws {@link Hedra.NotFoundError}
|
|
565
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
566
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
567
|
+
* @throws {@link Hedra.InternalServerError}
|
|
568
|
+
* @throws {@link errors.HedraError}
|
|
569
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
570
|
+
*
|
|
571
|
+
* @example
|
|
572
|
+
* await client.jobs.submitGptImage15({
|
|
573
|
+
* input: {
|
|
574
|
+
* prompt: "prompt",
|
|
575
|
+
* aspect_ratio: "1:1"
|
|
576
|
+
* }
|
|
577
|
+
* })
|
|
578
|
+
*/
|
|
579
|
+
submitGptImage15(request: Hedra.SubmitBodyGptImage15, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
580
|
+
private __submitGptImage15;
|
|
581
|
+
/**
|
|
582
|
+
* OpenAI's balanced tier; moderate cost and fidelity, ideal for iterative refinement and everyday generation.
|
|
583
|
+
*
|
|
584
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
585
|
+
*
|
|
586
|
+
* @param {Hedra.SubmitBodyGptImage2} request
|
|
587
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
588
|
+
*
|
|
589
|
+
* @throws {@link Hedra.BadRequestError}
|
|
590
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
591
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
592
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
593
|
+
* @throws {@link Hedra.NotFoundError}
|
|
594
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
595
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
596
|
+
* @throws {@link Hedra.InternalServerError}
|
|
597
|
+
* @throws {@link errors.HedraError}
|
|
598
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
599
|
+
*
|
|
600
|
+
* @example
|
|
601
|
+
* await client.jobs.submitGptImage2({
|
|
602
|
+
* input: {
|
|
603
|
+
* prompt: "prompt",
|
|
604
|
+
* aspect_ratio: "16:9",
|
|
605
|
+
* resolution: "1K",
|
|
606
|
+
* quality: "low"
|
|
607
|
+
* }
|
|
608
|
+
* })
|
|
609
|
+
*/
|
|
610
|
+
submitGptImage2(request: Hedra.SubmitBodyGptImage2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
611
|
+
private __submitGptImage2;
|
|
612
|
+
/**
|
|
613
|
+
* xAI's Grok Imagine image generation model
|
|
614
|
+
*
|
|
615
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
616
|
+
*
|
|
617
|
+
* @param {Hedra.SubmitBodyGrokImagine} request
|
|
618
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
619
|
+
*
|
|
620
|
+
* @throws {@link Hedra.BadRequestError}
|
|
621
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
622
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
623
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
624
|
+
* @throws {@link Hedra.NotFoundError}
|
|
625
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
626
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
627
|
+
* @throws {@link Hedra.InternalServerError}
|
|
628
|
+
* @throws {@link errors.HedraError}
|
|
629
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
630
|
+
*
|
|
631
|
+
* @example
|
|
632
|
+
* await client.jobs.submitGrokImagine({
|
|
633
|
+
* input: {
|
|
634
|
+
* prompt: "prompt"
|
|
635
|
+
* }
|
|
636
|
+
* })
|
|
637
|
+
*/
|
|
638
|
+
submitGrokImagine(request: Hedra.SubmitBodyGrokImagine, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
639
|
+
private __submitGrokImagine;
|
|
640
|
+
/**
|
|
641
|
+
* xAI's text-to-video generation model.
|
|
642
|
+
*
|
|
643
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
644
|
+
*
|
|
645
|
+
* @param {Hedra.SubmitBodyGrokVideo} request
|
|
646
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
647
|
+
*
|
|
648
|
+
* @throws {@link Hedra.BadRequestError}
|
|
649
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
650
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
651
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
652
|
+
* @throws {@link Hedra.NotFoundError}
|
|
653
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
654
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
655
|
+
* @throws {@link Hedra.InternalServerError}
|
|
656
|
+
* @throws {@link errors.HedraError}
|
|
657
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
658
|
+
*
|
|
659
|
+
* @example
|
|
660
|
+
* await client.jobs.submitGrokVideo({
|
|
661
|
+
* input: {
|
|
662
|
+
* prompt: "prompt",
|
|
663
|
+
* aspect_ratio: "auto",
|
|
664
|
+
* resolution: "480p",
|
|
665
|
+
* duration_ms: 1
|
|
666
|
+
* }
|
|
667
|
+
* })
|
|
668
|
+
*/
|
|
669
|
+
submitGrokVideo(request: Hedra.SubmitBodyGrokVideo, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
670
|
+
private __submitGrokVideo;
|
|
671
|
+
/**
|
|
672
|
+
* Generate video from text with Alibaba Happy Horse 1.0.
|
|
673
|
+
*
|
|
674
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
675
|
+
*
|
|
676
|
+
* @param {Hedra.SubmitBodyHappyHorse} request
|
|
677
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
678
|
+
*
|
|
679
|
+
* @throws {@link Hedra.BadRequestError}
|
|
680
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
681
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
682
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
683
|
+
* @throws {@link Hedra.NotFoundError}
|
|
684
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
685
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
686
|
+
* @throws {@link Hedra.InternalServerError}
|
|
687
|
+
* @throws {@link errors.HedraError}
|
|
688
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
689
|
+
*
|
|
690
|
+
* @example
|
|
691
|
+
* await client.jobs.submitHappyHorse({
|
|
692
|
+
* input: {
|
|
693
|
+
* prompt: "prompt",
|
|
694
|
+
* aspect_ratio: "21:9",
|
|
695
|
+
* resolution: "720p",
|
|
696
|
+
* duration_ms: 1
|
|
697
|
+
* }
|
|
698
|
+
* })
|
|
699
|
+
*/
|
|
700
|
+
submitHappyHorse(request: Hedra.SubmitBodyHappyHorse, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
701
|
+
private __submitHappyHorse;
|
|
702
|
+
/**
|
|
703
|
+
* Hedra's latest longform avatar model, audio to video will full multi-language support. Perfect for talking and singing video with speaker selection up to 10 minutes long.
|
|
704
|
+
*
|
|
705
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
706
|
+
*
|
|
707
|
+
* @param {Hedra.SubmitBodyHedraAvatar} request
|
|
708
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
709
|
+
*
|
|
710
|
+
* @throws {@link Hedra.BadRequestError}
|
|
711
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
712
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
713
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
714
|
+
* @throws {@link Hedra.NotFoundError}
|
|
715
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
716
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
717
|
+
* @throws {@link Hedra.InternalServerError}
|
|
718
|
+
* @throws {@link errors.HedraError}
|
|
719
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
720
|
+
*
|
|
721
|
+
* @example
|
|
722
|
+
* await client.jobs.submitHedraAvatar({
|
|
723
|
+
* input: {
|
|
724
|
+
* prompt: "prompt",
|
|
725
|
+
* aspect_ratio: "1:1",
|
|
726
|
+
* resolution: "540p",
|
|
727
|
+
* start_image: {
|
|
728
|
+
* source: "url",
|
|
729
|
+
* url: "url"
|
|
730
|
+
* },
|
|
731
|
+
* audio: {
|
|
732
|
+
* source: "url",
|
|
733
|
+
* url: "url"
|
|
734
|
+
* }
|
|
735
|
+
* }
|
|
736
|
+
* })
|
|
737
|
+
*/
|
|
738
|
+
submitHedraAvatar(request: Hedra.SubmitBodyHedraAvatar, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
739
|
+
private __submitHedraAvatar;
|
|
740
|
+
/**
|
|
741
|
+
* Hedra's latest longform avatar model, audio to video will full multi-language support. Perfect for talking and singing video with speaker selection up to 10 minutes long.
|
|
742
|
+
*
|
|
743
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
744
|
+
*
|
|
745
|
+
* @param {Hedra.SubmitBodyHedraCharacter3} request
|
|
746
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
747
|
+
*
|
|
748
|
+
* @throws {@link Hedra.BadRequestError}
|
|
749
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
750
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
751
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
752
|
+
* @throws {@link Hedra.NotFoundError}
|
|
753
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
754
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
755
|
+
* @throws {@link Hedra.InternalServerError}
|
|
756
|
+
* @throws {@link errors.HedraError}
|
|
757
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
758
|
+
*
|
|
759
|
+
* @example
|
|
760
|
+
* await client.jobs.submitHedraCharacter3({
|
|
761
|
+
* input: {
|
|
762
|
+
* prompt: "prompt",
|
|
763
|
+
* aspect_ratio: "1:1",
|
|
764
|
+
* resolution: "540p",
|
|
765
|
+
* start_image: {
|
|
766
|
+
* source: "url",
|
|
767
|
+
* url: "url"
|
|
768
|
+
* },
|
|
769
|
+
* audio: {
|
|
770
|
+
* source: "url",
|
|
771
|
+
* url: "url"
|
|
772
|
+
* }
|
|
773
|
+
* }
|
|
774
|
+
* })
|
|
775
|
+
*/
|
|
776
|
+
submitHedraCharacter3(request: Hedra.SubmitBodyHedraCharacter3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
777
|
+
private __submitHedraCharacter3;
|
|
778
|
+
/**
|
|
779
|
+
* HiDream.ai's open-weights HiDream-O1-Image (8B): one pixel-native model that generates, edits, and personalizes without a VAE or a separate text encoder.
|
|
780
|
+
*
|
|
781
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
782
|
+
*
|
|
783
|
+
* @param {Hedra.SubmitBodyHidreamO1Image} request
|
|
784
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
785
|
+
*
|
|
786
|
+
* @throws {@link Hedra.BadRequestError}
|
|
787
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
788
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
789
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
790
|
+
* @throws {@link Hedra.NotFoundError}
|
|
791
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
792
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
793
|
+
* @throws {@link Hedra.InternalServerError}
|
|
794
|
+
* @throws {@link errors.HedraError}
|
|
795
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
796
|
+
*
|
|
797
|
+
* @example
|
|
798
|
+
* await client.jobs.submitHidreamO1Image({
|
|
799
|
+
* input: {
|
|
800
|
+
* prompt: "prompt",
|
|
801
|
+
* aspect_ratio: "16:9",
|
|
802
|
+
* quality: "standard"
|
|
803
|
+
* }
|
|
804
|
+
* })
|
|
805
|
+
*/
|
|
806
|
+
submitHidreamO1Image(request: Hedra.SubmitBodyHidreamO1Image, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
807
|
+
private __submitHidreamO1Image;
|
|
808
|
+
/**
|
|
809
|
+
* Best in class for poster-ready images and spot-on text rendering in social graphics.
|
|
810
|
+
*
|
|
811
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
812
|
+
*
|
|
813
|
+
* @param {Hedra.SubmitBodyIdeogramV2} request
|
|
814
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
815
|
+
*
|
|
816
|
+
* @throws {@link Hedra.BadRequestError}
|
|
817
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
818
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
819
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
820
|
+
* @throws {@link Hedra.NotFoundError}
|
|
821
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
822
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
823
|
+
* @throws {@link Hedra.InternalServerError}
|
|
824
|
+
* @throws {@link errors.HedraError}
|
|
825
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
826
|
+
*
|
|
827
|
+
* @example
|
|
828
|
+
* await client.jobs.submitIdeogramV2({
|
|
829
|
+
* input: {
|
|
830
|
+
* prompt: "prompt",
|
|
831
|
+
* aspect_ratio: "1:1"
|
|
832
|
+
* }
|
|
833
|
+
* })
|
|
834
|
+
*/
|
|
835
|
+
submitIdeogramV2(request: Hedra.SubmitBodyIdeogramV2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
836
|
+
private __submitIdeogramV2;
|
|
837
|
+
/**
|
|
838
|
+
* Ideogram V4 renders poster-ready text and layout; the required quality parameter picks turbo, balanced or quality, which sets both the render effort and the price.
|
|
839
|
+
*
|
|
840
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
841
|
+
*
|
|
842
|
+
* @param {Hedra.SubmitBodyIdeogramV4} request
|
|
843
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
844
|
+
*
|
|
845
|
+
* @throws {@link Hedra.BadRequestError}
|
|
846
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
847
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
848
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
849
|
+
* @throws {@link Hedra.NotFoundError}
|
|
850
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
851
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
852
|
+
* @throws {@link Hedra.InternalServerError}
|
|
853
|
+
* @throws {@link errors.HedraError}
|
|
854
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
855
|
+
*
|
|
856
|
+
* @example
|
|
857
|
+
* await client.jobs.submitIdeogramV4({
|
|
858
|
+
* input: {
|
|
859
|
+
* prompt: "prompt",
|
|
860
|
+
* aspect_ratio: "16:9",
|
|
861
|
+
* resolution: "720p",
|
|
862
|
+
* quality: "turbo"
|
|
863
|
+
* }
|
|
864
|
+
* })
|
|
865
|
+
*/
|
|
866
|
+
submitIdeogramV4(request: Hedra.SubmitBodyIdeogramV4, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
867
|
+
private __submitIdeogramV4;
|
|
868
|
+
/**
|
|
869
|
+
* The latest text to image model from Google
|
|
870
|
+
*
|
|
871
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
872
|
+
*
|
|
873
|
+
* @param {Hedra.SubmitBodyImagen3} request
|
|
874
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
875
|
+
*
|
|
876
|
+
* @throws {@link Hedra.BadRequestError}
|
|
877
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
878
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
879
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
880
|
+
* @throws {@link Hedra.NotFoundError}
|
|
881
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
882
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
883
|
+
* @throws {@link Hedra.InternalServerError}
|
|
884
|
+
* @throws {@link errors.HedraError}
|
|
885
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
886
|
+
*
|
|
887
|
+
* @example
|
|
888
|
+
* await client.jobs.submitImagen3({
|
|
889
|
+
* input: {
|
|
890
|
+
* prompt: "prompt",
|
|
891
|
+
* aspect_ratio: "16:9"
|
|
892
|
+
* }
|
|
893
|
+
* })
|
|
894
|
+
*/
|
|
895
|
+
submitImagen3(request: Hedra.SubmitBodyImagen3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
896
|
+
private __submitImagen3;
|
|
897
|
+
/**
|
|
898
|
+
* Google's photoreal model—natural lighting, lifelike skin, and pro-grade sharpness in every shot.
|
|
899
|
+
*
|
|
900
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
901
|
+
*
|
|
902
|
+
* @param {Hedra.SubmitBodyImagen4} request
|
|
903
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
904
|
+
*
|
|
905
|
+
* @throws {@link Hedra.BadRequestError}
|
|
906
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
907
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
908
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
909
|
+
* @throws {@link Hedra.NotFoundError}
|
|
910
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
911
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
912
|
+
* @throws {@link Hedra.InternalServerError}
|
|
913
|
+
* @throws {@link errors.HedraError}
|
|
914
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
915
|
+
*
|
|
916
|
+
* @example
|
|
917
|
+
* await client.jobs.submitImagen4({
|
|
918
|
+
* input: {
|
|
919
|
+
* prompt: "prompt",
|
|
920
|
+
* aspect_ratio: "16:9",
|
|
921
|
+
* resolution: "1K"
|
|
922
|
+
* }
|
|
923
|
+
* })
|
|
924
|
+
*/
|
|
925
|
+
submitImagen4(request: Hedra.SubmitBodyImagen4, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
926
|
+
private __submitImagen4;
|
|
927
|
+
/**
|
|
928
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
929
|
+
*
|
|
930
|
+
* @param {Hedra.SubmitBodyKling16} request
|
|
931
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
932
|
+
*
|
|
933
|
+
* @throws {@link Hedra.BadRequestError}
|
|
934
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
935
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
936
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
937
|
+
* @throws {@link Hedra.NotFoundError}
|
|
938
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
939
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
940
|
+
* @throws {@link Hedra.InternalServerError}
|
|
941
|
+
* @throws {@link errors.HedraError}
|
|
942
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
943
|
+
*
|
|
944
|
+
* @example
|
|
945
|
+
* await client.jobs.submitKling16({
|
|
946
|
+
* input: {
|
|
947
|
+
* prompt: "prompt"
|
|
948
|
+
* }
|
|
949
|
+
* })
|
|
950
|
+
*/
|
|
951
|
+
submitKling16(request: Hedra.SubmitBodyKling16, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
952
|
+
private __submitKling16;
|
|
953
|
+
/**
|
|
954
|
+
* Cinema-grade video with striking textures and rich depth.
|
|
955
|
+
*
|
|
956
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
957
|
+
*
|
|
958
|
+
* @param {Hedra.SubmitBodyKling21Master} request
|
|
959
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
960
|
+
*
|
|
961
|
+
* @throws {@link Hedra.BadRequestError}
|
|
962
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
963
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
964
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
965
|
+
* @throws {@link Hedra.NotFoundError}
|
|
966
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
967
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
968
|
+
* @throws {@link Hedra.InternalServerError}
|
|
969
|
+
* @throws {@link errors.HedraError}
|
|
970
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
971
|
+
*
|
|
972
|
+
* @example
|
|
973
|
+
* await client.jobs.submitKling21Master({
|
|
974
|
+
* input: {
|
|
975
|
+
* prompt: "prompt",
|
|
976
|
+
* aspect_ratio: "16:9",
|
|
977
|
+
* duration_ms: 1
|
|
978
|
+
* }
|
|
979
|
+
* })
|
|
980
|
+
*/
|
|
981
|
+
submitKling21Master(request: Hedra.SubmitBodyKling21Master, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
982
|
+
private __submitKling21Master;
|
|
983
|
+
/**
|
|
984
|
+
* Fast, high-quality video generation.
|
|
985
|
+
*
|
|
986
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
987
|
+
*
|
|
988
|
+
* @param {Hedra.SubmitBodyKling25Turbo} request
|
|
989
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
990
|
+
*
|
|
991
|
+
* @throws {@link Hedra.BadRequestError}
|
|
992
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
993
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
994
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
995
|
+
* @throws {@link Hedra.NotFoundError}
|
|
996
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
997
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
998
|
+
* @throws {@link Hedra.InternalServerError}
|
|
999
|
+
* @throws {@link errors.HedraError}
|
|
1000
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1001
|
+
*
|
|
1002
|
+
* @example
|
|
1003
|
+
* await client.jobs.submitKling25Turbo({
|
|
1004
|
+
* input: {
|
|
1005
|
+
* prompt: "prompt",
|
|
1006
|
+
* aspect_ratio: "16:9",
|
|
1007
|
+
* duration_ms: 1
|
|
1008
|
+
* }
|
|
1009
|
+
* })
|
|
1010
|
+
*/
|
|
1011
|
+
submitKling25Turbo(request: Hedra.SubmitBodyKling25Turbo, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1012
|
+
private __submitKling25Turbo;
|
|
1013
|
+
/**
|
|
1014
|
+
* Transfer movements from a reference video to any character image. Cost-effective mode for motion transfer, perfect for portraits and simple animations.
|
|
1015
|
+
*
|
|
1016
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1017
|
+
*
|
|
1018
|
+
* @param {Hedra.SubmitBodyKling26MotionControl} request
|
|
1019
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1020
|
+
*
|
|
1021
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1022
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1023
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1024
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1025
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1026
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1027
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1028
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1029
|
+
* @throws {@link errors.HedraError}
|
|
1030
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1031
|
+
*
|
|
1032
|
+
* @example
|
|
1033
|
+
* await client.jobs.submitKling26MotionControl({
|
|
1034
|
+
* input: {
|
|
1035
|
+
* start_image: {
|
|
1036
|
+
* source: "url",
|
|
1037
|
+
* url: "url"
|
|
1038
|
+
* },
|
|
1039
|
+
* source_video: {
|
|
1040
|
+
* source: "url",
|
|
1041
|
+
* url: "url"
|
|
1042
|
+
* },
|
|
1043
|
+
* resolution: "720p"
|
|
1044
|
+
* }
|
|
1045
|
+
* })
|
|
1046
|
+
*/
|
|
1047
|
+
submitKling26MotionControl(request: Hedra.SubmitBodyKling26MotionControl, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1048
|
+
private __submitKling26MotionControl;
|
|
1049
|
+
/**
|
|
1050
|
+
* Cinematic visuals, fluid motion, and native audio generation.
|
|
1051
|
+
*
|
|
1052
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1053
|
+
*
|
|
1054
|
+
* @param {Hedra.SubmitBodyKling26Pro} request
|
|
1055
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1056
|
+
*
|
|
1057
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1058
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1059
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1060
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1061
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1062
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1063
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1064
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1065
|
+
* @throws {@link errors.HedraError}
|
|
1066
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1067
|
+
*
|
|
1068
|
+
* @example
|
|
1069
|
+
* await client.jobs.submitKling26Pro({
|
|
1070
|
+
* input: {
|
|
1071
|
+
* prompt: "prompt",
|
|
1072
|
+
* aspect_ratio: "16:9",
|
|
1073
|
+
* duration_ms: 1
|
|
1074
|
+
* }
|
|
1075
|
+
* })
|
|
1076
|
+
*/
|
|
1077
|
+
submitKling26Pro(request: Hedra.SubmitBodyKling26Pro, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1078
|
+
private __submitKling26Pro;
|
|
1079
|
+
/**
|
|
1080
|
+
* Create avatar videos with realistic humans, animals, cartoons, or stylized characters from an image and audio input.
|
|
1081
|
+
*
|
|
1082
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1083
|
+
*
|
|
1084
|
+
* @param {Hedra.SubmitBodyKlingAiAvatarV2} request
|
|
1085
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1086
|
+
*
|
|
1087
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1088
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1089
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1090
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1091
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1092
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1093
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1094
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1095
|
+
* @throws {@link errors.HedraError}
|
|
1096
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1097
|
+
*
|
|
1098
|
+
* @example
|
|
1099
|
+
* await client.jobs.submitKlingAiAvatarV2({
|
|
1100
|
+
* input: {
|
|
1101
|
+
* aspect_ratio: "16:9",
|
|
1102
|
+
* start_image: {
|
|
1103
|
+
* source: "url",
|
|
1104
|
+
* url: "url"
|
|
1105
|
+
* },
|
|
1106
|
+
* audio: {
|
|
1107
|
+
* source: "url",
|
|
1108
|
+
* url: "url"
|
|
1109
|
+
* },
|
|
1110
|
+
* quality: "standard"
|
|
1111
|
+
* }
|
|
1112
|
+
* })
|
|
1113
|
+
*/
|
|
1114
|
+
submitKlingAiAvatarV2(request: Hedra.SubmitBodyKlingAiAvatarV2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1115
|
+
private __submitKlingAiAvatarV2;
|
|
1116
|
+
/**
|
|
1117
|
+
* Generate from a single image with text-driven style and scene guidance.
|
|
1118
|
+
*
|
|
1119
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1120
|
+
*
|
|
1121
|
+
* @param {Hedra.SubmitBodyKlingO1} request
|
|
1122
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1123
|
+
*
|
|
1124
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1125
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1126
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1127
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1128
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1129
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1130
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1131
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1132
|
+
* @throws {@link errors.HedraError}
|
|
1133
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1134
|
+
*
|
|
1135
|
+
* @example
|
|
1136
|
+
* await client.jobs.submitKlingO1({
|
|
1137
|
+
* input: {
|
|
1138
|
+
* prompt: "prompt",
|
|
1139
|
+
* aspect_ratio: "16:9",
|
|
1140
|
+
* duration_ms: 1
|
|
1141
|
+
* }
|
|
1142
|
+
* })
|
|
1143
|
+
*/
|
|
1144
|
+
submitKlingO1(request: Hedra.SubmitBodyKlingO1, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1145
|
+
private __submitKlingO1;
|
|
1146
|
+
/**
|
|
1147
|
+
* Text-to-video model with up to 15-second generations and native audio.
|
|
1148
|
+
*
|
|
1149
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1150
|
+
*
|
|
1151
|
+
* @param {Hedra.SubmitBodyKlingO3} request
|
|
1152
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1153
|
+
*
|
|
1154
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1155
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1156
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1157
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1158
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1159
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1160
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1161
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1162
|
+
* @throws {@link errors.HedraError}
|
|
1163
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1164
|
+
*
|
|
1165
|
+
* @example
|
|
1166
|
+
* await client.jobs.submitKlingO3({
|
|
1167
|
+
* input: {
|
|
1168
|
+
* prompt: "prompt",
|
|
1169
|
+
* aspect_ratio: "16:9",
|
|
1170
|
+
* duration_ms: 1,
|
|
1171
|
+
* quality: "standard"
|
|
1172
|
+
* }
|
|
1173
|
+
* })
|
|
1174
|
+
*/
|
|
1175
|
+
submitKlingO3(request: Hedra.SubmitBodyKlingO3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1176
|
+
private __submitKlingO3;
|
|
1177
|
+
/**
|
|
1178
|
+
* Edit videos using natural language.
|
|
1179
|
+
*
|
|
1180
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1181
|
+
*
|
|
1182
|
+
* @param {Hedra.SubmitBodyKlingO3Edit} request
|
|
1183
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1184
|
+
*
|
|
1185
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1186
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1187
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1188
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1189
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1190
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1191
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1192
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1193
|
+
* @throws {@link errors.HedraError}
|
|
1194
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1195
|
+
*
|
|
1196
|
+
* @example
|
|
1197
|
+
* await client.jobs.submitKlingO3Edit({
|
|
1198
|
+
* input: {
|
|
1199
|
+
* prompt: "prompt",
|
|
1200
|
+
* source_video: {
|
|
1201
|
+
* source: "url",
|
|
1202
|
+
* url: "url"
|
|
1203
|
+
* },
|
|
1204
|
+
* resolution: "720p"
|
|
1205
|
+
* }
|
|
1206
|
+
* })
|
|
1207
|
+
*/
|
|
1208
|
+
submitKlingO3Edit(request: Hedra.SubmitBodyKlingO3Edit, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1209
|
+
private __submitKlingO3Edit;
|
|
1210
|
+
/**
|
|
1211
|
+
* Input a reference video and preserve motion and camera style.
|
|
1212
|
+
*
|
|
1213
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1214
|
+
*
|
|
1215
|
+
* @param {Hedra.SubmitBodyKlingO3Reference} request
|
|
1216
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1217
|
+
*
|
|
1218
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1219
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1220
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1221
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1222
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1223
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1224
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1225
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1226
|
+
* @throws {@link errors.HedraError}
|
|
1227
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1228
|
+
*
|
|
1229
|
+
* @example
|
|
1230
|
+
* await client.jobs.submitKlingO3Reference({
|
|
1231
|
+
* input: {
|
|
1232
|
+
* prompt: "prompt",
|
|
1233
|
+
* source_video: {
|
|
1234
|
+
* source: "url",
|
|
1235
|
+
* url: "url"
|
|
1236
|
+
* },
|
|
1237
|
+
* resolution: "720p"
|
|
1238
|
+
* }
|
|
1239
|
+
* })
|
|
1240
|
+
*/
|
|
1241
|
+
submitKlingO3Reference(request: Hedra.SubmitBodyKlingO3Reference, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1242
|
+
private __submitKlingO3Reference;
|
|
1243
|
+
/**
|
|
1244
|
+
* Text-to-video with ultra-high-definition storyboards and native audio.
|
|
1245
|
+
*
|
|
1246
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1247
|
+
*
|
|
1248
|
+
* @param {Hedra.SubmitBodyKlingV3} request
|
|
1249
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1250
|
+
*
|
|
1251
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1252
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1253
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1254
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1255
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1256
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1257
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1258
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1259
|
+
* @throws {@link errors.HedraError}
|
|
1260
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1261
|
+
*
|
|
1262
|
+
* @example
|
|
1263
|
+
* await client.jobs.submitKlingV3({
|
|
1264
|
+
* input: {
|
|
1265
|
+
* prompt: "prompt",
|
|
1266
|
+
* aspect_ratio: "16:9",
|
|
1267
|
+
* duration_ms: 1,
|
|
1268
|
+
* quality: "standard"
|
|
1269
|
+
* }
|
|
1270
|
+
* })
|
|
1271
|
+
*/
|
|
1272
|
+
submitKlingV3(request: Hedra.SubmitBodyKlingV3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1273
|
+
private __submitKlingV3;
|
|
1274
|
+
/**
|
|
1275
|
+
* Animate a character image to match the motion of a reference video. Standard tier for cost-effective generation.
|
|
1276
|
+
*
|
|
1277
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1278
|
+
*
|
|
1279
|
+
* @param {Hedra.SubmitBodyKlingV3MotionControl} request
|
|
1280
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1281
|
+
*
|
|
1282
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1283
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1284
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1285
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1286
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1287
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1288
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1289
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1290
|
+
* @throws {@link errors.HedraError}
|
|
1291
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1292
|
+
*
|
|
1293
|
+
* @example
|
|
1294
|
+
* await client.jobs.submitKlingV3MotionControl({
|
|
1295
|
+
* input: {
|
|
1296
|
+
* start_image: {
|
|
1297
|
+
* source: "url",
|
|
1298
|
+
* url: "url"
|
|
1299
|
+
* },
|
|
1300
|
+
* source_video: {
|
|
1301
|
+
* source: "url",
|
|
1302
|
+
* url: "url"
|
|
1303
|
+
* },
|
|
1304
|
+
* resolution: "720p"
|
|
1305
|
+
* }
|
|
1306
|
+
* })
|
|
1307
|
+
*/
|
|
1308
|
+
submitKlingV3MotionControl(request: Hedra.SubmitBodyKlingV3MotionControl, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1309
|
+
private __submitKlingV3MotionControl;
|
|
1310
|
+
/**
|
|
1311
|
+
* Lightricks LTX-2.3 text-to-video at up to 4K, with synchronized native audio
|
|
1312
|
+
*
|
|
1313
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1314
|
+
*
|
|
1315
|
+
* @param {Hedra.SubmitBodyLtx23} request
|
|
1316
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1317
|
+
*
|
|
1318
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1319
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1320
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1321
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1322
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1323
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1324
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1325
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1326
|
+
* @throws {@link errors.HedraError}
|
|
1327
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1328
|
+
*
|
|
1329
|
+
* @example
|
|
1330
|
+
* await client.jobs.submitLtx23({
|
|
1331
|
+
* input: {
|
|
1332
|
+
* prompt: "prompt",
|
|
1333
|
+
* resolution: "1080p",
|
|
1334
|
+
* duration_ms: 1,
|
|
1335
|
+
* aspect_ratio: "auto",
|
|
1336
|
+
* quality: "fast"
|
|
1337
|
+
* }
|
|
1338
|
+
* })
|
|
1339
|
+
*/
|
|
1340
|
+
submitLtx23(request: Hedra.SubmitBodyLtx23, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1341
|
+
private __submitLtx23;
|
|
1342
|
+
/**
|
|
1343
|
+
* Luma Ray 3.2 text-to-video with cinematic motion and camera control
|
|
1344
|
+
*
|
|
1345
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1346
|
+
*
|
|
1347
|
+
* @param {Hedra.SubmitBodyLumaRay32} request
|
|
1348
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1349
|
+
*
|
|
1350
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1351
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1352
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1353
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1354
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1355
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1356
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1357
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1358
|
+
* @throws {@link errors.HedraError}
|
|
1359
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1360
|
+
*
|
|
1361
|
+
* @example
|
|
1362
|
+
* await client.jobs.submitLumaRay32({
|
|
1363
|
+
* input: {
|
|
1364
|
+
* prompt: "prompt",
|
|
1365
|
+
* aspect_ratio: "1:1",
|
|
1366
|
+
* resolution: "540p",
|
|
1367
|
+
* duration_ms: 1
|
|
1368
|
+
* }
|
|
1369
|
+
* })
|
|
1370
|
+
*/
|
|
1371
|
+
submitLumaRay32(request: Hedra.SubmitBodyLumaRay32, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1372
|
+
private __submitLumaRay32;
|
|
1373
|
+
/**
|
|
1374
|
+
* Microsoft AI's MAI-Image-2.5: photorealistic generation and editing with strong in-image typography and design-ready output.
|
|
1375
|
+
*
|
|
1376
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1377
|
+
*
|
|
1378
|
+
* @param {Hedra.SubmitBodyMaiImage25} request
|
|
1379
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1380
|
+
*
|
|
1381
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1382
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1383
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1384
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1385
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1386
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1387
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1388
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1389
|
+
* @throws {@link errors.HedraError}
|
|
1390
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1391
|
+
*
|
|
1392
|
+
* @example
|
|
1393
|
+
* await client.jobs.submitMaiImage25({
|
|
1394
|
+
* input: {
|
|
1395
|
+
* prompt: "prompt",
|
|
1396
|
+
* aspect_ratio: "1:1",
|
|
1397
|
+
* quality: "standard"
|
|
1398
|
+
* }
|
|
1399
|
+
* })
|
|
1400
|
+
*/
|
|
1401
|
+
submitMaiImage25(request: Hedra.SubmitBodyMaiImage25, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1402
|
+
private __submitMaiImage25;
|
|
1403
|
+
/**
|
|
1404
|
+
* MiniMax H3 video generation from text, frames, or references.
|
|
1405
|
+
*
|
|
1406
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1407
|
+
*
|
|
1408
|
+
* @param {Hedra.SubmitBodyMinimaxH3} request
|
|
1409
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1410
|
+
*
|
|
1411
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1412
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1413
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1414
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1415
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1416
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1417
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1418
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1419
|
+
* @throws {@link errors.HedraError}
|
|
1420
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1421
|
+
*
|
|
1422
|
+
* @example
|
|
1423
|
+
* await client.jobs.submitMinimaxH3({
|
|
1424
|
+
* input: {
|
|
1425
|
+
* prompt: "prompt",
|
|
1426
|
+
* resolution: "768p",
|
|
1427
|
+
* duration_ms: 1
|
|
1428
|
+
* }
|
|
1429
|
+
* })
|
|
1430
|
+
*/
|
|
1431
|
+
submitMinimaxH3(request: Hedra.SubmitBodyMinimaxH3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1432
|
+
private __submitMinimaxH3;
|
|
1433
|
+
/**
|
|
1434
|
+
* Everyday 1080p video with natural movement.
|
|
1435
|
+
*
|
|
1436
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1437
|
+
*
|
|
1438
|
+
* @param {Hedra.SubmitBodyMinimaxHailuo02} request
|
|
1439
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1440
|
+
*
|
|
1441
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1442
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1443
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1444
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1445
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1446
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1447
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1448
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1449
|
+
* @throws {@link errors.HedraError}
|
|
1450
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1451
|
+
*
|
|
1452
|
+
* @example
|
|
1453
|
+
* await client.jobs.submitMinimaxHailuo02({
|
|
1454
|
+
* input: {
|
|
1455
|
+
* prompt: "prompt",
|
|
1456
|
+
* duration_ms: 1,
|
|
1457
|
+
* quality: "standard"
|
|
1458
|
+
* }
|
|
1459
|
+
* })
|
|
1460
|
+
*/
|
|
1461
|
+
submitMinimaxHailuo02(request: Hedra.SubmitBodyMinimaxHailuo02, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1462
|
+
private __submitMinimaxHailuo02;
|
|
1463
|
+
/**
|
|
1464
|
+
* Everyday 1080p video with natural movement.
|
|
1465
|
+
*
|
|
1466
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1467
|
+
*
|
|
1468
|
+
* @param {Hedra.SubmitBodyMinimaxHailuo23} request
|
|
1469
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1470
|
+
*
|
|
1471
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1472
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1473
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1474
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1475
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1476
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1477
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1478
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1479
|
+
* @throws {@link errors.HedraError}
|
|
1480
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1481
|
+
*
|
|
1482
|
+
* @example
|
|
1483
|
+
* await client.jobs.submitMinimaxHailuo23({
|
|
1484
|
+
* input: {
|
|
1485
|
+
* prompt: "prompt",
|
|
1486
|
+
* duration_ms: 1,
|
|
1487
|
+
* quality: "standard"
|
|
1488
|
+
* }
|
|
1489
|
+
* })
|
|
1490
|
+
*/
|
|
1491
|
+
submitMinimaxHailuo23(request: Hedra.SubmitBodyMinimaxHailuo23, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1492
|
+
private __submitMinimaxHailuo23;
|
|
1493
|
+
/**
|
|
1494
|
+
* The brand new HD model. Ultimate Similarity, Ultra-High Quality. Supports 40+ languages including Tamil, Hebrew, Swedish, etc.
|
|
1495
|
+
*
|
|
1496
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1497
|
+
*
|
|
1498
|
+
* @param {Hedra.SubmitBodyMinimaxSpeech25HdPreview} request
|
|
1499
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1500
|
+
*
|
|
1501
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1502
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1503
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1504
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1505
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1506
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1507
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1508
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1509
|
+
* @throws {@link errors.HedraError}
|
|
1510
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1511
|
+
*
|
|
1512
|
+
* @example
|
|
1513
|
+
* await client.jobs.submitMinimaxSpeech25HdPreview({
|
|
1514
|
+
* input: {
|
|
1515
|
+
* text: "text",
|
|
1516
|
+
* voice_id: "voice_id"
|
|
1517
|
+
* }
|
|
1518
|
+
* })
|
|
1519
|
+
*/
|
|
1520
|
+
submitMinimaxSpeech25HdPreview(request: Hedra.SubmitBodyMinimaxSpeech25HdPreview, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1521
|
+
private __submitMinimaxSpeech25HdPreview;
|
|
1522
|
+
/**
|
|
1523
|
+
* The brand new Turbo model. Ultimate Value, 40 Languages. Major improvements to natural English expression.
|
|
1524
|
+
*
|
|
1525
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1526
|
+
*
|
|
1527
|
+
* @param {Hedra.SubmitBodyMinimaxSpeech25TurboPreview} request
|
|
1528
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1529
|
+
*
|
|
1530
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1531
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1532
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1533
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1534
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1535
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1536
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1537
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1538
|
+
* @throws {@link errors.HedraError}
|
|
1539
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1540
|
+
*
|
|
1541
|
+
* @example
|
|
1542
|
+
* await client.jobs.submitMinimaxSpeech25TurboPreview({
|
|
1543
|
+
* input: {
|
|
1544
|
+
* text: "text",
|
|
1545
|
+
* voice_id: "voice_id"
|
|
1546
|
+
* }
|
|
1547
|
+
* })
|
|
1548
|
+
*/
|
|
1549
|
+
submitMinimaxSpeech25TurboPreview(request: Hedra.SubmitBodyMinimaxSpeech25TurboPreview, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1550
|
+
private __submitMinimaxSpeech25TurboPreview;
|
|
1551
|
+
/**
|
|
1552
|
+
* Best in class image model with reference image support and ultra high quality generations for professional grade images.
|
|
1553
|
+
*
|
|
1554
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1555
|
+
*
|
|
1556
|
+
* @param {Hedra.SubmitBodyNanoBanana} request
|
|
1557
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1558
|
+
*
|
|
1559
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1560
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1561
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1562
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1563
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1564
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1565
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1566
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1567
|
+
* @throws {@link errors.HedraError}
|
|
1568
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1569
|
+
*
|
|
1570
|
+
* @example
|
|
1571
|
+
* await client.jobs.submitNanoBanana({
|
|
1572
|
+
* input: {
|
|
1573
|
+
* prompt: "prompt",
|
|
1574
|
+
* aspect_ratio: "16:9",
|
|
1575
|
+
* resolution: "1K"
|
|
1576
|
+
* }
|
|
1577
|
+
* })
|
|
1578
|
+
*/
|
|
1579
|
+
submitNanoBanana(request: Hedra.SubmitBodyNanoBanana, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1580
|
+
private __submitNanoBanana;
|
|
1581
|
+
/**
|
|
1582
|
+
* Gemini 3.1 Flash native image generation with improved quality and advanced features including multi-subject reference and high-fidelity style transfer
|
|
1583
|
+
*
|
|
1584
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1585
|
+
*
|
|
1586
|
+
* @param {Hedra.SubmitBodyNanoBanana2} request
|
|
1587
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1588
|
+
*
|
|
1589
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1590
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1591
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1592
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1593
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1594
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1595
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1596
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1597
|
+
* @throws {@link errors.HedraError}
|
|
1598
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1599
|
+
*
|
|
1600
|
+
* @example
|
|
1601
|
+
* await client.jobs.submitNanoBanana2({
|
|
1602
|
+
* input: {
|
|
1603
|
+
* prompt: "prompt",
|
|
1604
|
+
* aspect_ratio: "16:9",
|
|
1605
|
+
* resolution: "1K"
|
|
1606
|
+
* }
|
|
1607
|
+
* })
|
|
1608
|
+
*/
|
|
1609
|
+
submitNanoBanana2(request: Hedra.SubmitBodyNanoBanana2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1610
|
+
private __submitNanoBanana2;
|
|
1611
|
+
/**
|
|
1612
|
+
* Gemini 3 Pro native image generation with advanced multimodal understanding and richer visuals
|
|
1613
|
+
*
|
|
1614
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1615
|
+
*
|
|
1616
|
+
* @param {Hedra.SubmitBodyNanoBananaPro} request
|
|
1617
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1618
|
+
*
|
|
1619
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1620
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1621
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1622
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1623
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1624
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1625
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1626
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1627
|
+
* @throws {@link errors.HedraError}
|
|
1628
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1629
|
+
*
|
|
1630
|
+
* @example
|
|
1631
|
+
* await client.jobs.submitNanoBananaPro({
|
|
1632
|
+
* input: {
|
|
1633
|
+
* prompt: "prompt",
|
|
1634
|
+
* aspect_ratio: "16:9",
|
|
1635
|
+
* resolution: "1K"
|
|
1636
|
+
* }
|
|
1637
|
+
* })
|
|
1638
|
+
*/
|
|
1639
|
+
submitNanoBananaPro(request: Hedra.SubmitBodyNanoBananaPro, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1640
|
+
private __submitNanoBananaPro;
|
|
1641
|
+
/**
|
|
1642
|
+
* Creates vivid, emotional character videos driven entirely by your audio.
|
|
1643
|
+
*
|
|
1644
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1645
|
+
*
|
|
1646
|
+
* @param {Hedra.SubmitBodyOmnihuman15} request
|
|
1647
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1648
|
+
*
|
|
1649
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1650
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1651
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1652
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1653
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1654
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1655
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1656
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1657
|
+
* @throws {@link errors.HedraError}
|
|
1658
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1659
|
+
*
|
|
1660
|
+
* @example
|
|
1661
|
+
* await client.jobs.submitOmnihuman15({
|
|
1662
|
+
* input: {
|
|
1663
|
+
* resolution: "720p",
|
|
1664
|
+
* start_image: {
|
|
1665
|
+
* source: "url",
|
|
1666
|
+
* url: "url"
|
|
1667
|
+
* },
|
|
1668
|
+
* audio: {
|
|
1669
|
+
* source: "url",
|
|
1670
|
+
* url: "url"
|
|
1671
|
+
* }
|
|
1672
|
+
* }
|
|
1673
|
+
* })
|
|
1674
|
+
*/
|
|
1675
|
+
submitOmnihuman15(request: Hedra.SubmitBodyOmnihuman15, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1676
|
+
private __submitOmnihuman15;
|
|
1677
|
+
/**
|
|
1678
|
+
* PixVerse V6 text-to-video with native audio and 1080p output up to 15 seconds
|
|
1679
|
+
*
|
|
1680
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1681
|
+
*
|
|
1682
|
+
* @param {Hedra.SubmitBodyPixverseV6} request
|
|
1683
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1684
|
+
*
|
|
1685
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1686
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1687
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1688
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1689
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1690
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1691
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1692
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1693
|
+
* @throws {@link errors.HedraError}
|
|
1694
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1695
|
+
*
|
|
1696
|
+
* @example
|
|
1697
|
+
* await client.jobs.submitPixverseV6({
|
|
1698
|
+
* input: {
|
|
1699
|
+
* prompt: "prompt",
|
|
1700
|
+
* resolution: "360p",
|
|
1701
|
+
* duration_ms: 1
|
|
1702
|
+
* }
|
|
1703
|
+
* })
|
|
1704
|
+
*/
|
|
1705
|
+
submitPixverseV6(request: Hedra.SubmitBodyPixverseV6, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1706
|
+
private __submitPixverseV6;
|
|
1707
|
+
/**
|
|
1708
|
+
* Alibaba's Qwen-Image-2.0, tuned for speed. Native 2K output with professional in-image text rendering, for rapid iteration.
|
|
1709
|
+
*
|
|
1710
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1711
|
+
*
|
|
1712
|
+
* @param {Hedra.SubmitBodyQwenImage2} request
|
|
1713
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1714
|
+
*
|
|
1715
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1716
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1717
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1718
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1719
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1720
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1721
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1722
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1723
|
+
* @throws {@link errors.HedraError}
|
|
1724
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1725
|
+
*
|
|
1726
|
+
* @example
|
|
1727
|
+
* await client.jobs.submitQwenImage2({
|
|
1728
|
+
* input: {
|
|
1729
|
+
* prompt: "prompt",
|
|
1730
|
+
* aspect_ratio: "16:9",
|
|
1731
|
+
* resolution: "540p",
|
|
1732
|
+
* quality: "standard"
|
|
1733
|
+
* }
|
|
1734
|
+
* })
|
|
1735
|
+
*/
|
|
1736
|
+
submitQwenImage2(request: Hedra.SubmitBodyQwenImage2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1737
|
+
private __submitQwenImage2;
|
|
1738
|
+
/**
|
|
1739
|
+
* Vector-clean graphics and crisp logos on demand.
|
|
1740
|
+
*
|
|
1741
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1742
|
+
*
|
|
1743
|
+
* @param {Hedra.SubmitBodyRecraftV3} request
|
|
1744
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1745
|
+
*
|
|
1746
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1747
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1748
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1749
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1750
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1751
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1752
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1753
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1754
|
+
* @throws {@link errors.HedraError}
|
|
1755
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1756
|
+
*
|
|
1757
|
+
* @example
|
|
1758
|
+
* await client.jobs.submitRecraftV3({
|
|
1759
|
+
* input: {
|
|
1760
|
+
* prompt: "prompt",
|
|
1761
|
+
* aspect_ratio: "1:1",
|
|
1762
|
+
* resolution: "540p"
|
|
1763
|
+
* }
|
|
1764
|
+
* })
|
|
1765
|
+
*/
|
|
1766
|
+
submitRecraftV3(request: Hedra.SubmitBodyRecraftV3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1767
|
+
private __submitRecraftV3;
|
|
1768
|
+
/**
|
|
1769
|
+
* Generate images from a text prompt with strong prompt adherence, layout intelligence, and accurate text rendering
|
|
1770
|
+
*
|
|
1771
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1772
|
+
*
|
|
1773
|
+
* @param {Hedra.SubmitBodyReve21} request
|
|
1774
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1775
|
+
*
|
|
1776
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1777
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1778
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1779
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1780
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1781
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1782
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1783
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1784
|
+
* @throws {@link errors.HedraError}
|
|
1785
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1786
|
+
*
|
|
1787
|
+
* @example
|
|
1788
|
+
* await client.jobs.submitReve21({
|
|
1789
|
+
* input: {
|
|
1790
|
+
* prompt: "prompt",
|
|
1791
|
+
* aspect_ratio: "4:1"
|
|
1792
|
+
* }
|
|
1793
|
+
* })
|
|
1794
|
+
*/
|
|
1795
|
+
submitReve21(request: Hedra.SubmitBodyReve21, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1796
|
+
private __submitReve21;
|
|
1797
|
+
/**
|
|
1798
|
+
* Edit one source image from a natural-language instruction, keeping the rest of the image intact
|
|
1799
|
+
*
|
|
1800
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1801
|
+
*
|
|
1802
|
+
* @param {Hedra.SubmitBodyReve21Edit} request
|
|
1803
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1804
|
+
*
|
|
1805
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1806
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1807
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1808
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1809
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1810
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1811
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1812
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1813
|
+
* @throws {@link errors.HedraError}
|
|
1814
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1815
|
+
*
|
|
1816
|
+
* @example
|
|
1817
|
+
* await client.jobs.submitReve21Edit({
|
|
1818
|
+
* input: {
|
|
1819
|
+
* prompt: "prompt",
|
|
1820
|
+
* aspect_ratio: "4:1",
|
|
1821
|
+
* images: [{
|
|
1822
|
+
* source: "url",
|
|
1823
|
+
* url: "url"
|
|
1824
|
+
* }]
|
|
1825
|
+
* }
|
|
1826
|
+
* })
|
|
1827
|
+
*/
|
|
1828
|
+
submitReve21Edit(request: Hedra.SubmitBodyReve21Edit, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1829
|
+
private __submitReve21Edit;
|
|
1830
|
+
/**
|
|
1831
|
+
* Compose up to eight reference images into a new image from a text prompt
|
|
1832
|
+
*
|
|
1833
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1834
|
+
*
|
|
1835
|
+
* @param {Hedra.SubmitBodyReve21Remix} request
|
|
1836
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1837
|
+
*
|
|
1838
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1839
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1840
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1841
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1842
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1843
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1844
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1845
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1846
|
+
* @throws {@link errors.HedraError}
|
|
1847
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1848
|
+
*
|
|
1849
|
+
* @example
|
|
1850
|
+
* await client.jobs.submitReve21Remix({
|
|
1851
|
+
* input: {
|
|
1852
|
+
* prompt: "prompt",
|
|
1853
|
+
* aspect_ratio: "4:1",
|
|
1854
|
+
* images: [{
|
|
1855
|
+
* source: "url",
|
|
1856
|
+
* url: "url"
|
|
1857
|
+
* }]
|
|
1858
|
+
* }
|
|
1859
|
+
* })
|
|
1860
|
+
*/
|
|
1861
|
+
submitReve21Remix(request: Hedra.SubmitBodyReve21Remix, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1862
|
+
private __submitReve21Remix;
|
|
1863
|
+
/**
|
|
1864
|
+
* Lightning-fast and cheap for simple product shots or everyday content.
|
|
1865
|
+
*
|
|
1866
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1867
|
+
*
|
|
1868
|
+
* @param {Hedra.SubmitBodySana} request
|
|
1869
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1870
|
+
*
|
|
1871
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1872
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1873
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1874
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1875
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1876
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1877
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1878
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1879
|
+
* @throws {@link errors.HedraError}
|
|
1880
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1881
|
+
*
|
|
1882
|
+
* @example
|
|
1883
|
+
* await client.jobs.submitSana({
|
|
1884
|
+
* input: {
|
|
1885
|
+
* prompt: "prompt",
|
|
1886
|
+
* aspect_ratio: "1:1",
|
|
1887
|
+
* resolution: "540p"
|
|
1888
|
+
* }
|
|
1889
|
+
* })
|
|
1890
|
+
*/
|
|
1891
|
+
submitSana(request: Hedra.SubmitBodySana, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1892
|
+
private __submitSana;
|
|
1893
|
+
/**
|
|
1894
|
+
* ByteDance Seedance 1.5 Pro video generation model
|
|
1895
|
+
*
|
|
1896
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1897
|
+
*
|
|
1898
|
+
* @param {Hedra.SubmitBodySeedance15Pro} request
|
|
1899
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1900
|
+
*
|
|
1901
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1902
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1903
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1904
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1905
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1906
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1907
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1908
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1909
|
+
* @throws {@link errors.HedraError}
|
|
1910
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1911
|
+
*
|
|
1912
|
+
* @example
|
|
1913
|
+
* await client.jobs.submitSeedance15Pro({
|
|
1914
|
+
* input: {
|
|
1915
|
+
* prompt: "prompt",
|
|
1916
|
+
* aspect_ratio: "1:1",
|
|
1917
|
+
* resolution: "480p",
|
|
1918
|
+
* duration_ms: 1
|
|
1919
|
+
* }
|
|
1920
|
+
* })
|
|
1921
|
+
*/
|
|
1922
|
+
submitSeedance15Pro(request: Hedra.SubmitBodySeedance15Pro, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1923
|
+
private __submitSeedance15Pro;
|
|
1924
|
+
/**
|
|
1925
|
+
* ByteDance Seedance 2.0 video generation model
|
|
1926
|
+
*
|
|
1927
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1928
|
+
*
|
|
1929
|
+
* @param {Hedra.SubmitBodySeedance20} request
|
|
1930
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1931
|
+
*
|
|
1932
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1933
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1934
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1935
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1936
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1937
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1938
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1939
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1940
|
+
* @throws {@link errors.HedraError}
|
|
1941
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1942
|
+
*
|
|
1943
|
+
* @example
|
|
1944
|
+
* await client.jobs.submitSeedance20({
|
|
1945
|
+
* input: {
|
|
1946
|
+
* prompt: "prompt",
|
|
1947
|
+
* aspect_ratio: "1:1",
|
|
1948
|
+
* resolution: "4K",
|
|
1949
|
+
* duration_ms: 1,
|
|
1950
|
+
* quality: "standard"
|
|
1951
|
+
* }
|
|
1952
|
+
* })
|
|
1953
|
+
*/
|
|
1954
|
+
submitSeedance20(request: Hedra.SubmitBodySeedance20, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1955
|
+
private __submitSeedance20;
|
|
1956
|
+
/**
|
|
1957
|
+
* ByteDance Seedance 2.0 Mini video generation model
|
|
1958
|
+
*
|
|
1959
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1960
|
+
*
|
|
1961
|
+
* @param {Hedra.SubmitBodySeedance20Mini} request
|
|
1962
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1963
|
+
*
|
|
1964
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1965
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1966
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1967
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1968
|
+
* @throws {@link Hedra.NotFoundError}
|
|
1969
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
1970
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
1971
|
+
* @throws {@link Hedra.InternalServerError}
|
|
1972
|
+
* @throws {@link errors.HedraError}
|
|
1973
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
1974
|
+
*
|
|
1975
|
+
* @example
|
|
1976
|
+
* await client.jobs.submitSeedance20Mini({
|
|
1977
|
+
* input: {
|
|
1978
|
+
* prompt: "prompt",
|
|
1979
|
+
* aspect_ratio: "1:1",
|
|
1980
|
+
* resolution: "480p",
|
|
1981
|
+
* duration_ms: 1
|
|
1982
|
+
* }
|
|
1983
|
+
* })
|
|
1984
|
+
*/
|
|
1985
|
+
submitSeedance20Mini(request: Hedra.SubmitBodySeedance20Mini, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
1986
|
+
private __submitSeedance20Mini;
|
|
1987
|
+
/**
|
|
1988
|
+
* ByteDance Seedance 2.5 video generation model
|
|
1989
|
+
*
|
|
1990
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
1991
|
+
*
|
|
1992
|
+
* @param {Hedra.SubmitBodySeedance25} request
|
|
1993
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1994
|
+
*
|
|
1995
|
+
* @throws {@link Hedra.BadRequestError}
|
|
1996
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
1997
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
1998
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
1999
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2000
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2001
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2002
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2003
|
+
* @throws {@link errors.HedraError}
|
|
2004
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2005
|
+
*
|
|
2006
|
+
* @example
|
|
2007
|
+
* await client.jobs.submitSeedance25({
|
|
2008
|
+
* input: {
|
|
2009
|
+
* prompt: "prompt",
|
|
2010
|
+
* aspect_ratio: "1:1",
|
|
2011
|
+
* resolution: "480p",
|
|
2012
|
+
* duration_ms: 1
|
|
2013
|
+
* }
|
|
2014
|
+
* })
|
|
2015
|
+
*/
|
|
2016
|
+
submitSeedance25(request: Hedra.SubmitBodySeedance25, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2017
|
+
private __submitSeedance25;
|
|
2018
|
+
/**
|
|
2019
|
+
* Ultra-fast pro grade image model, pairing reference image support with high quality output for professional visuals
|
|
2020
|
+
*
|
|
2021
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2022
|
+
*
|
|
2023
|
+
* @param {Hedra.SubmitBodySeedream40} request
|
|
2024
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2025
|
+
*
|
|
2026
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2027
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2028
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2029
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2030
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2031
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2032
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2033
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2034
|
+
* @throws {@link errors.HedraError}
|
|
2035
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2036
|
+
*
|
|
2037
|
+
* @example
|
|
2038
|
+
* await client.jobs.submitSeedream40({
|
|
2039
|
+
* input: {
|
|
2040
|
+
* prompt: "prompt",
|
|
2041
|
+
* aspect_ratio: "1:1",
|
|
2042
|
+
* resolution: "1080p"
|
|
2043
|
+
* }
|
|
2044
|
+
* })
|
|
2045
|
+
*/
|
|
2046
|
+
submitSeedream40(request: Hedra.SubmitBodySeedream40, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2047
|
+
private __submitSeedream40;
|
|
2048
|
+
/**
|
|
2049
|
+
* Latest Seedream with enhanced detail, refined composition, and multi-reference image support for professional visuals.
|
|
2050
|
+
*
|
|
2051
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2052
|
+
*
|
|
2053
|
+
* @param {Hedra.SubmitBodySeedream45} request
|
|
2054
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2055
|
+
*
|
|
2056
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2057
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2058
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2059
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2060
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2061
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2062
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2063
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2064
|
+
* @throws {@link errors.HedraError}
|
|
2065
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2066
|
+
*
|
|
2067
|
+
* @example
|
|
2068
|
+
* await client.jobs.submitSeedream45({
|
|
2069
|
+
* input: {
|
|
2070
|
+
* prompt: "prompt",
|
|
2071
|
+
* aspect_ratio: "1:1",
|
|
2072
|
+
* resolution: "1440p (2K QHD)"
|
|
2073
|
+
* }
|
|
2074
|
+
* })
|
|
2075
|
+
*/
|
|
2076
|
+
submitSeedream45(request: Hedra.SubmitBodySeedream45, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2077
|
+
private __submitSeedream45;
|
|
2078
|
+
/**
|
|
2079
|
+
* ByteDance Seedream 5.0 Lite Text-to-Image
|
|
2080
|
+
*
|
|
2081
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2082
|
+
*
|
|
2083
|
+
* @param {Hedra.SubmitBodySeedream50Lite} request
|
|
2084
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2085
|
+
*
|
|
2086
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2087
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2088
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2089
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2090
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2091
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2092
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2093
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2094
|
+
* @throws {@link errors.HedraError}
|
|
2095
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2096
|
+
*
|
|
2097
|
+
* @example
|
|
2098
|
+
* await client.jobs.submitSeedream50Lite({
|
|
2099
|
+
* input: {
|
|
2100
|
+
* prompt: "prompt",
|
|
2101
|
+
* aspect_ratio: "1:1",
|
|
2102
|
+
* resolution: "1440p (2K QHD)"
|
|
2103
|
+
* }
|
|
2104
|
+
* })
|
|
2105
|
+
*/
|
|
2106
|
+
submitSeedream50Lite(request: Hedra.SubmitBodySeedream50Lite, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2107
|
+
private __submitSeedream50Lite;
|
|
2108
|
+
/**
|
|
2109
|
+
* ByteDance Seedream 5.0 Pro Text-to-Image
|
|
2110
|
+
*
|
|
2111
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2112
|
+
*
|
|
2113
|
+
* @param {Hedra.SubmitBodySeedream50Pro} request
|
|
2114
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2115
|
+
*
|
|
2116
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2117
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2118
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2119
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2120
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2121
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2122
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2123
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2124
|
+
* @throws {@link errors.HedraError}
|
|
2125
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2126
|
+
*
|
|
2127
|
+
* @example
|
|
2128
|
+
* await client.jobs.submitSeedream50Pro({
|
|
2129
|
+
* input: {
|
|
2130
|
+
* prompt: "prompt",
|
|
2131
|
+
* aspect_ratio: "1:1",
|
|
2132
|
+
* resolution: "1080p"
|
|
2133
|
+
* }
|
|
2134
|
+
* })
|
|
2135
|
+
*/
|
|
2136
|
+
submitSeedream50Pro(request: Hedra.SubmitBodySeedream50Pro, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2137
|
+
private __submitSeedream50Pro;
|
|
2138
|
+
/**
|
|
2139
|
+
* For complex, narrative-driven videos with remarkable consistency and realistic character-world interaction.
|
|
2140
|
+
*
|
|
2141
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2142
|
+
*
|
|
2143
|
+
* @param {Hedra.SubmitBodySora2Pro} request
|
|
2144
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2145
|
+
*
|
|
2146
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2147
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2148
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2149
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2150
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2151
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2152
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2153
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2154
|
+
* @throws {@link errors.HedraError}
|
|
2155
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2156
|
+
*
|
|
2157
|
+
* @example
|
|
2158
|
+
* await client.jobs.submitSora2Pro({
|
|
2159
|
+
* input: {
|
|
2160
|
+
* prompt: "prompt",
|
|
2161
|
+
* aspect_ratio: "16:9",
|
|
2162
|
+
* resolution: "720p",
|
|
2163
|
+
* duration_ms: 1
|
|
2164
|
+
* }
|
|
2165
|
+
* })
|
|
2166
|
+
*/
|
|
2167
|
+
submitSora2Pro(request: Hedra.SubmitBodySora2Pro, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2168
|
+
private __submitSora2Pro;
|
|
2169
|
+
/**
|
|
2170
|
+
* Talking video with natural lip-sync and expressive animation.
|
|
2171
|
+
*
|
|
2172
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2173
|
+
*
|
|
2174
|
+
* @param {Hedra.SubmitBodyVeedFabric10} request
|
|
2175
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2176
|
+
*
|
|
2177
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2178
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2179
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2180
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2181
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2182
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2183
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2184
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2185
|
+
* @throws {@link errors.HedraError}
|
|
2186
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2187
|
+
*
|
|
2188
|
+
* @example
|
|
2189
|
+
* await client.jobs.submitVeedFabric10({
|
|
2190
|
+
* input: {
|
|
2191
|
+
* prompt: "prompt",
|
|
2192
|
+
* aspect_ratio: "16:9",
|
|
2193
|
+
* resolution: "480p",
|
|
2194
|
+
* start_image: {
|
|
2195
|
+
* source: "url",
|
|
2196
|
+
* url: "url"
|
|
2197
|
+
* },
|
|
2198
|
+
* audio: {
|
|
2199
|
+
* source: "url",
|
|
2200
|
+
* url: "url"
|
|
2201
|
+
* }
|
|
2202
|
+
* }
|
|
2203
|
+
* })
|
|
2204
|
+
*/
|
|
2205
|
+
submitVeedFabric10(request: Hedra.SubmitBodyVeedFabric10, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2206
|
+
private __submitVeedFabric10;
|
|
2207
|
+
/**
|
|
2208
|
+
* The current state of the art in video generation
|
|
2209
|
+
*
|
|
2210
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2211
|
+
*
|
|
2212
|
+
* @param {Hedra.SubmitBodyVeo2} request
|
|
2213
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2214
|
+
*
|
|
2215
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2216
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2217
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2218
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2219
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2220
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2221
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2222
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2223
|
+
* @throws {@link errors.HedraError}
|
|
2224
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2225
|
+
*
|
|
2226
|
+
* @example
|
|
2227
|
+
* await client.jobs.submitVeo2({
|
|
2228
|
+
* input: {
|
|
2229
|
+
* prompt: "prompt"
|
|
2230
|
+
* }
|
|
2231
|
+
* })
|
|
2232
|
+
*/
|
|
2233
|
+
submitVeo2(request: Hedra.SubmitBodyVeo2, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2234
|
+
private __submitVeo2;
|
|
2235
|
+
/**
|
|
2236
|
+
* Hollywood-grade, cinematic video straight from text—your go-to for hero campaigns.
|
|
2237
|
+
*
|
|
2238
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2239
|
+
*
|
|
2240
|
+
* @param {Hedra.SubmitBodyVeo3} request
|
|
2241
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2242
|
+
*
|
|
2243
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2244
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2245
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2246
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2247
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2248
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2249
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2250
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2251
|
+
* @throws {@link errors.HedraError}
|
|
2252
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2253
|
+
*
|
|
2254
|
+
* @example
|
|
2255
|
+
* await client.jobs.submitVeo3({
|
|
2256
|
+
* input: {
|
|
2257
|
+
* prompt: "prompt",
|
|
2258
|
+
* aspect_ratio: "16:9",
|
|
2259
|
+
* resolution: "720p",
|
|
2260
|
+
* duration_ms: 1,
|
|
2261
|
+
* quality: "standard"
|
|
2262
|
+
* }
|
|
2263
|
+
* })
|
|
2264
|
+
*/
|
|
2265
|
+
submitVeo3(request: Hedra.SubmitBodyVeo3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2266
|
+
private __submitVeo3;
|
|
2267
|
+
/**
|
|
2268
|
+
* For unparalleled detail and nuance, perfect for when your vision requires the best possible quality.
|
|
2269
|
+
*
|
|
2270
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2271
|
+
*
|
|
2272
|
+
* @param {Hedra.SubmitBodyVeo31} request
|
|
2273
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2274
|
+
*
|
|
2275
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2276
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2277
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2278
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2279
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2280
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2281
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2282
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2283
|
+
* @throws {@link errors.HedraError}
|
|
2284
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2285
|
+
*
|
|
2286
|
+
* @example
|
|
2287
|
+
* await client.jobs.submitVeo31({
|
|
2288
|
+
* input: {
|
|
2289
|
+
* prompt: "prompt",
|
|
2290
|
+
* aspect_ratio: "16:9",
|
|
2291
|
+
* resolution: "720p",
|
|
2292
|
+
* quality: "standard"
|
|
2293
|
+
* }
|
|
2294
|
+
* })
|
|
2295
|
+
*/
|
|
2296
|
+
submitVeo31(request: Hedra.SubmitBodyVeo31, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2297
|
+
private __submitVeo31;
|
|
2298
|
+
/**
|
|
2299
|
+
* Vidu Q3 video with native dialogue and sound, up to 16 seconds — from a text prompt, from a start frame, or between a start and end frame
|
|
2300
|
+
*
|
|
2301
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2302
|
+
*
|
|
2303
|
+
* @param {Hedra.SubmitBodyViduQ3} request
|
|
2304
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2305
|
+
*
|
|
2306
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2307
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2308
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2309
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2310
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2311
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2312
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2313
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2314
|
+
* @throws {@link errors.HedraError}
|
|
2315
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2316
|
+
*
|
|
2317
|
+
* @example
|
|
2318
|
+
* await client.jobs.submitViduQ3({
|
|
2319
|
+
* input: {
|
|
2320
|
+
* prompt: "prompt",
|
|
2321
|
+
* resolution: "540p",
|
|
2322
|
+
* duration_ms: 1,
|
|
2323
|
+
* quality: "standard"
|
|
2324
|
+
* }
|
|
2325
|
+
* })
|
|
2326
|
+
*/
|
|
2327
|
+
submitViduQ3(request: Hedra.SubmitBodyViduQ3, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2328
|
+
private __submitViduQ3;
|
|
2329
|
+
/**
|
|
2330
|
+
* Vidu Q3 reference-to-video keeping up to four subjects consistent
|
|
2331
|
+
*
|
|
2332
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2333
|
+
*
|
|
2334
|
+
* @param {Hedra.SubmitBodyViduQ3Reference} request
|
|
2335
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2336
|
+
*
|
|
2337
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2338
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2339
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2340
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2341
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2342
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2343
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2344
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2345
|
+
* @throws {@link errors.HedraError}
|
|
2346
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2347
|
+
*
|
|
2348
|
+
* @example
|
|
2349
|
+
* await client.jobs.submitViduQ3Reference({
|
|
2350
|
+
* input: {
|
|
2351
|
+
* prompt: "prompt",
|
|
2352
|
+
* aspect_ratio: "16:9",
|
|
2353
|
+
* resolution: "540p",
|
|
2354
|
+
* duration_ms: 1,
|
|
2355
|
+
* images: [{
|
|
2356
|
+
* source: "url",
|
|
2357
|
+
* url: "url"
|
|
2358
|
+
* }]
|
|
2359
|
+
* }
|
|
2360
|
+
* })
|
|
2361
|
+
*/
|
|
2362
|
+
submitViduQ3Reference(request: Hedra.SubmitBodyViduQ3Reference, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2363
|
+
private __submitViduQ3Reference;
|
|
2364
|
+
/**
|
|
2365
|
+
* Wan 2.7 video with native audio — from a text prompt, from a first frame with an optional last frame, or from reference images that keep subjects consistent
|
|
2366
|
+
*
|
|
2367
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2368
|
+
*
|
|
2369
|
+
* @param {Hedra.SubmitBodyWan27} request
|
|
2370
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2371
|
+
*
|
|
2372
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2373
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2374
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2375
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2376
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2377
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2378
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2379
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2380
|
+
* @throws {@link errors.HedraError}
|
|
2381
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2382
|
+
*
|
|
2383
|
+
* @example
|
|
2384
|
+
* await client.jobs.submitWan27({
|
|
2385
|
+
* input: {
|
|
2386
|
+
* prompt: "prompt",
|
|
2387
|
+
* resolution: "720p",
|
|
2388
|
+
* duration_ms: 1
|
|
2389
|
+
* }
|
|
2390
|
+
* })
|
|
2391
|
+
*/
|
|
2392
|
+
submitWan27(request: Hedra.SubmitBodyWan27, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2393
|
+
private __submitWan27;
|
|
2394
|
+
/**
|
|
2395
|
+
* Runs any model in the catalog by its public id, with `input` passed through untyped — the same call the typed operations below make, minus the compile-time schema.
|
|
2396
|
+
*
|
|
2397
|
+
* Reach for it when the model is not known ahead of time: a client generated before a model shipped can still run it, and an id read from `GET /v3/models` at runtime needs no regeneration. Prefer the typed operation whenever your client already has one — `input` here is validated against the same published schema (`GET /v3/models/{model}`), so a bad field is a `400` at submit rather than an error before the call.
|
|
2398
|
+
*
|
|
2399
|
+
* Submits an asynchronous job and returns `202` with a job id. Fetch the result at `GET /v3/jobs/{job_id}` — each item in its `outputs[]` follows the `OutputItem` schema — or track progress via `GET /v3/jobs/{job_id}/status` / the SSE stream at `GET /v3/jobs/{job_id}/stream`.
|
|
2400
|
+
*
|
|
2401
|
+
* @param {string} model - The model's public id (`GET /v3/models`).
|
|
2402
|
+
* @param {Hedra.SubmitBody} request
|
|
2403
|
+
* @param {JobsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
2404
|
+
*
|
|
2405
|
+
* @throws {@link Hedra.BadRequestError}
|
|
2406
|
+
* @throws {@link Hedra.UnauthorizedError}
|
|
2407
|
+
* @throws {@link Hedra.PaymentRequiredError}
|
|
2408
|
+
* @throws {@link Hedra.ForbiddenError}
|
|
2409
|
+
* @throws {@link Hedra.NotFoundError}
|
|
2410
|
+
* @throws {@link Hedra.UnprocessableEntityError}
|
|
2411
|
+
* @throws {@link Hedra.TooManyRequestsError}
|
|
2412
|
+
* @throws {@link Hedra.InternalServerError}
|
|
2413
|
+
* @throws {@link errors.HedraError}
|
|
2414
|
+
* @throws {@link errors.HedraTimeoutError}
|
|
2415
|
+
*
|
|
2416
|
+
* @example
|
|
2417
|
+
* await client.jobs.submit("model", {
|
|
2418
|
+
* input: {
|
|
2419
|
+
* "key": "value"
|
|
2420
|
+
* }
|
|
2421
|
+
* })
|
|
2422
|
+
*/
|
|
2423
|
+
submit(model: string, request: Hedra.SubmitBody, requestOptions?: JobsClient.RequestOptions): core.HttpResponsePromise<Hedra.SubmitResponse>;
|
|
2424
|
+
private __submit;
|
|
2425
|
+
}
|