chore(ui): regen api client

This commit is contained in:
user1
2023-05-21 17:30:44 -07:00
committed by Kent Keirsey
parent dcebd71381
commit c1dbafc2df
31 changed files with 941 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { ImageField } from './ImageField';
/**
* Applies Midas depth processing to image
*/
export type MidasDepthImageProcessorInvocation = {
/**
* The id of this node. Must be unique among all nodes.
*/
id: string;
type?: 'midas_depth_image_processor';
/**
* image to process
*/
image?: ImageField;
/**
* Midas parameter a = amult * PI
*/
a_mult?: number;
/**
* Midas parameter bg_th
*/
bg_th?: number;
};