| 1 | export interface ConfigContent { |
| 2 | customer_code: string |
| 3 | config_content: string |
| 4 | } |
| 5 | |
| 6 | export interface UploadConfigFileResponse { |
| 7 | customer_code: string |
| 8 | filename: string |
| 9 | overwritten: boolean |
| 10 | } |
| 11 | |
| 12 | export interface DeployConfigResponse { |
| 13 | customer_code: string |
| 14 | worker_success: boolean |
| 15 | worker_message: string |
| 16 | error_detail: string |
| 17 | } |