UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

10 lines 473 B
import type { BasePipelineResponse } from './base-pipeline-response.js'; import type { ServiceNowConfigurationMinimal } from './service-now-configuration-minimal.js'; /** * Representation of the 'ServiceNowPipelineGetResponse' schema. */ export type ServiceNowPipelineGetResponse = BasePipelineResponse & { type?: 'ServiceNow'; configuration: ServiceNowConfigurationMinimal; } & Record<string, any>; //# sourceMappingURL=service-now-pipeline-get-response.d.ts.map