mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			249 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			249 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export type CreateExternalAPIReq = {
 | |
|   name: string
 | |
|   settings: {
 | |
|     endpoint: string
 | |
|     api_key: string
 | |
|   }
 | |
| }
 | |
| 
 | |
| export type FormSchema = {
 | |
|   variable: string
 | |
|   type: 'text' | 'secret'
 | |
|   label: {
 | |
|     [key: string]: string
 | |
|   }
 | |
|   required: boolean
 | |
| }
 | 
