(
params: Partial<{
deployment_owner: string;
deployment_name: string;
stream: boolean;
}>
)
| 13 | }; |
| 14 | |
| 15 | export const createDeploymentProperties = ( |
| 16 | params: Partial<{ |
| 17 | deployment_owner: string; |
| 18 | deployment_name: string; |
| 19 | stream: boolean; |
| 20 | }> |
| 21 | ) => { |
| 22 | return [ |
| 23 | ...(params.deployment_owner |
| 24 | ? [{ label: "Deployment Owner", text: params.deployment_owner }] |
| 25 | : []), |
| 26 | ...(params.deployment_name ? [{ label: "Deployment Name", text: params.deployment_name }] : []), |
| 27 | ...streamingProperty(params), |
| 28 | ]; |
| 29 | }; |
| 30 | |
| 31 | export const modelProperties = ( |
| 32 | params: Partial<{ |
no test coverage detected
searching dependent graphs…