UNPKG

@sap-ai-sdk/document-grounding

Version:

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

11 lines 453 B
import type { MetaData } from './meta-data.js'; import type { ServiceNowConfigurationStruct } from './service-now-configuration-struct.js'; /** * Representation of the 'ServiceNowPipelineCreateRequest' schema. */ export type ServiceNowPipelineCreateRequest = { type: 'ServiceNow'; metadata?: MetaData; configuration?: ServiceNowConfigurationStruct; } & Record<string, any>; //# sourceMappingURL=service-now-pipeline-create-request.d.ts.map