1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-04-13 17:33:13 +00:00

feat: added methods to GET and UPDATE file content on viya

This commit is contained in:
2025-06-04 17:04:27 +02:00
parent 3ec73750b7
commit b1c0e26c23
3 changed files with 198 additions and 7 deletions

View File

@@ -0,0 +1,33 @@
export interface FileContentUpdate {
creationTimeStamp: string
modifiedTimeStamp: string
createdBy: string
modifiedBy: string
id: string
properties: Properties
contentDisposition: string
contentType: string
encoding: string
links: Link[]
name: string
size: number
searchable: boolean
fileStatus: string
fileVersion: number
typeDefName: string
version: number
virusDetected: boolean
urlDetected: boolean
quarantine: boolean
}
export interface Link {
method: string
rel: string
href: string
uri: string
type?: string
responseType?: string
}
export interface Properties {}