@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
18 lines • 471 B
TypeScript
import type { IncludePathsArray } from './include-paths-array.js';
/**
* Representation of the 'SFTPConfiguration' schema.
*/
export type SFTPConfiguration = {
/**
* @example "generic-secret-name"
*/
destination: string;
sftp?: {
includePaths?: IncludePathsArray;
} & Record<string, any>;
/**
* @example "0 3 * * *"
*/
cronExpression?: string;
} & Record<string, any>;
//# sourceMappingURL=sftp-configuration.d.ts.map