@runware/sdk-js 1.1.45-beta.6 → 1.1.45-beta.7
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/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -637,7 +637,7 @@ type TImageUploadResponse = {
|
|
|
637
637
|
imageUUID: number;
|
|
638
638
|
imageURL: string;
|
|
639
639
|
};
|
|
640
|
-
type
|
|
640
|
+
type IAudioSyncResult = {
|
|
641
641
|
taskType: string;
|
|
642
642
|
taskUUID: string;
|
|
643
643
|
audioUUID: string;
|
|
@@ -645,11 +645,13 @@ type IAudioResult = {
|
|
|
645
645
|
audioBase64Data?: string;
|
|
646
646
|
audioDataURI?: string;
|
|
647
647
|
cost: number;
|
|
648
|
-
}
|
|
648
|
+
};
|
|
649
|
+
type IAuidoAsyncResult = {
|
|
649
650
|
taskType: string;
|
|
650
651
|
taskUUID: string;
|
|
651
652
|
status: string;
|
|
652
653
|
};
|
|
654
|
+
type IAudioResult = IAudioSyncResult | IAuidoAsyncResult;
|
|
653
655
|
type TImageMaskingResponse = {
|
|
654
656
|
taskType: string;
|
|
655
657
|
taskUUID: string;
|
|
@@ -761,4 +763,4 @@ declare class RunwareServer extends RunwareBase {
|
|
|
761
763
|
|
|
762
764
|
declare let Runware: typeof RunwareClient | typeof RunwareServer;
|
|
763
765
|
|
|
764
|
-
export { EControlMode, EModelArchitecture, EModelConditioning, EModelFormat, EModelType, EOpenPosePreProcessor, EPhotoMakerEnum, EPreProcessor, EPreProcessorGroup, ETaskType, Environment, type GetWithPromiseAsyncCallBackType, type GetWithPromiseCallBackType, type IAddModelResponse, type IAdditionalResponsePayload, type IAsyncResults, type IAudioResult, type IBflProviderSettings, type IControlNet, type IControlNetGeneral, type IControlNetImage, type IControlNetPreprocess, type IControlNetWithUUID, type IDeliveryType, type IEmbedding, type IEnhancedPrompt, type IError, type IErrorResponse, type IImage, type IImageToText, type IOutpaint, type IOutputFormat, type IOutputType, type IPromptEnhancer, type IProviderSettings, type IRefiner, type IRemoveImage, type IRemoveImageBackground, type IRequestImage, type IRequestImageToText, type IRequestVideo, type ITextToImage, type IUpscaleGan, type IVideoOutputFormat, type IVideoToImage, type IipAdapter, type ListenerType, type ProviderSettings, type ReconnectingWebsocketProps, type RequireAtLeastOne, type RequireOnlyOne, Runware, type RunwareBaseType, RunwareClient, RunwareServer, SdkType, type TAcceleratorOptions, type TAddModel, type TAddModelBaseType, type TAddModelCheckPoint, type TAddModelControlNet, type TAddModelLora, type TAudioInference, type TImageMasking, type TImageMaskingResponse, type TImageUpload, type TImageUploadResponse, type TModel, type TModelSearch, type TModelSearchResponse, type TPhotoMaker, type TPhotoMakerResponse, type TPromptWeighting, type TServerError, type UploadImageType };
|
|
766
|
+
export { EControlMode, EModelArchitecture, EModelConditioning, EModelFormat, EModelType, EOpenPosePreProcessor, EPhotoMakerEnum, EPreProcessor, EPreProcessorGroup, ETaskType, Environment, type GetWithPromiseAsyncCallBackType, type GetWithPromiseCallBackType, type IAddModelResponse, type IAdditionalResponsePayload, type IAsyncResults, type IAudioResult, type IAudioSyncResult, type IAuidoAsyncResult, type IBflProviderSettings, type IControlNet, type IControlNetGeneral, type IControlNetImage, type IControlNetPreprocess, type IControlNetWithUUID, type IDeliveryType, type IEmbedding, type IEnhancedPrompt, type IError, type IErrorResponse, type IImage, type IImageToText, type IOutpaint, type IOutputFormat, type IOutputType, type IPromptEnhancer, type IProviderSettings, type IRefiner, type IRemoveImage, type IRemoveImageBackground, type IRequestImage, type IRequestImageToText, type IRequestVideo, type ITextToImage, type IUpscaleGan, type IVideoOutputFormat, type IVideoToImage, type IipAdapter, type ListenerType, type ProviderSettings, type ReconnectingWebsocketProps, type RequireAtLeastOne, type RequireOnlyOne, Runware, type RunwareBaseType, RunwareClient, RunwareServer, SdkType, type TAcceleratorOptions, type TAddModel, type TAddModelBaseType, type TAddModelCheckPoint, type TAddModelControlNet, type TAddModelLora, type TAudioInference, type TImageMasking, type TImageMaskingResponse, type TImageUpload, type TImageUploadResponse, type TModel, type TModelSearch, type TModelSearchResponse, type TPhotoMaker, type TPhotoMakerResponse, type TPromptWeighting, type TServerError, type UploadImageType };
|
package/dist/index.d.ts
CHANGED
|
@@ -637,7 +637,7 @@ type TImageUploadResponse = {
|
|
|
637
637
|
imageUUID: number;
|
|
638
638
|
imageURL: string;
|
|
639
639
|
};
|
|
640
|
-
type
|
|
640
|
+
type IAudioSyncResult = {
|
|
641
641
|
taskType: string;
|
|
642
642
|
taskUUID: string;
|
|
643
643
|
audioUUID: string;
|
|
@@ -645,11 +645,13 @@ type IAudioResult = {
|
|
|
645
645
|
audioBase64Data?: string;
|
|
646
646
|
audioDataURI?: string;
|
|
647
647
|
cost: number;
|
|
648
|
-
}
|
|
648
|
+
};
|
|
649
|
+
type IAuidoAsyncResult = {
|
|
649
650
|
taskType: string;
|
|
650
651
|
taskUUID: string;
|
|
651
652
|
status: string;
|
|
652
653
|
};
|
|
654
|
+
type IAudioResult = IAudioSyncResult | IAuidoAsyncResult;
|
|
653
655
|
type TImageMaskingResponse = {
|
|
654
656
|
taskType: string;
|
|
655
657
|
taskUUID: string;
|
|
@@ -761,4 +763,4 @@ declare class RunwareServer extends RunwareBase {
|
|
|
761
763
|
|
|
762
764
|
declare let Runware: typeof RunwareClient | typeof RunwareServer;
|
|
763
765
|
|
|
764
|
-
export { EControlMode, EModelArchitecture, EModelConditioning, EModelFormat, EModelType, EOpenPosePreProcessor, EPhotoMakerEnum, EPreProcessor, EPreProcessorGroup, ETaskType, Environment, type GetWithPromiseAsyncCallBackType, type GetWithPromiseCallBackType, type IAddModelResponse, type IAdditionalResponsePayload, type IAsyncResults, type IAudioResult, type IBflProviderSettings, type IControlNet, type IControlNetGeneral, type IControlNetImage, type IControlNetPreprocess, type IControlNetWithUUID, type IDeliveryType, type IEmbedding, type IEnhancedPrompt, type IError, type IErrorResponse, type IImage, type IImageToText, type IOutpaint, type IOutputFormat, type IOutputType, type IPromptEnhancer, type IProviderSettings, type IRefiner, type IRemoveImage, type IRemoveImageBackground, type IRequestImage, type IRequestImageToText, type IRequestVideo, type ITextToImage, type IUpscaleGan, type IVideoOutputFormat, type IVideoToImage, type IipAdapter, type ListenerType, type ProviderSettings, type ReconnectingWebsocketProps, type RequireAtLeastOne, type RequireOnlyOne, Runware, type RunwareBaseType, RunwareClient, RunwareServer, SdkType, type TAcceleratorOptions, type TAddModel, type TAddModelBaseType, type TAddModelCheckPoint, type TAddModelControlNet, type TAddModelLora, type TAudioInference, type TImageMasking, type TImageMaskingResponse, type TImageUpload, type TImageUploadResponse, type TModel, type TModelSearch, type TModelSearchResponse, type TPhotoMaker, type TPhotoMakerResponse, type TPromptWeighting, type TServerError, type UploadImageType };
|
|
766
|
+
export { EControlMode, EModelArchitecture, EModelConditioning, EModelFormat, EModelType, EOpenPosePreProcessor, EPhotoMakerEnum, EPreProcessor, EPreProcessorGroup, ETaskType, Environment, type GetWithPromiseAsyncCallBackType, type GetWithPromiseCallBackType, type IAddModelResponse, type IAdditionalResponsePayload, type IAsyncResults, type IAudioResult, type IAudioSyncResult, type IAuidoAsyncResult, type IBflProviderSettings, type IControlNet, type IControlNetGeneral, type IControlNetImage, type IControlNetPreprocess, type IControlNetWithUUID, type IDeliveryType, type IEmbedding, type IEnhancedPrompt, type IError, type IErrorResponse, type IImage, type IImageToText, type IOutpaint, type IOutputFormat, type IOutputType, type IPromptEnhancer, type IProviderSettings, type IRefiner, type IRemoveImage, type IRemoveImageBackground, type IRequestImage, type IRequestImageToText, type IRequestVideo, type ITextToImage, type IUpscaleGan, type IVideoOutputFormat, type IVideoToImage, type IipAdapter, type ListenerType, type ProviderSettings, type ReconnectingWebsocketProps, type RequireAtLeastOne, type RequireOnlyOne, Runware, type RunwareBaseType, RunwareClient, RunwareServer, SdkType, type TAcceleratorOptions, type TAddModel, type TAddModelBaseType, type TAddModelCheckPoint, type TAddModelControlNet, type TAddModelLora, type TAudioInference, type TImageMasking, type TImageMaskingResponse, type TImageUpload, type TImageUploadResponse, type TModel, type TModelSearch, type TModelSearchResponse, type TPhotoMaker, type TPhotoMakerResponse, type TPromptWeighting, type TServerError, type UploadImageType };
|