vendor: updated github.com/koofr/go-koofrclient for set mtime support.

This commit is contained in:
jaKa 2019-07-15 14:57:02 +02:00 committed by Nick Craig-Wood
parent 9af0a704af
commit 3df9dbf887
5 changed files with 53 additions and 39 deletions

View file

@ -102,6 +102,7 @@ type FolderCreate struct {
type FileCopy struct {
ToMountId string `json:"toMountId"`
TPath string `json:"toPath"`
Modified *int64 `json:"modified,omitempty"`
}
type FileMove struct {
@ -118,20 +119,25 @@ type FileUpload struct {
Name string `json:"name"`
}
type PutFilter struct {
Modified *int64
Size *int64
Hash *string
IgnoreNonExisting bool
NoRename bool
ForceOverwrite bool
type PutOptions struct {
OverwriteIfModified *int64
OverwriteIfSize *int64
OverwriteIfHash *string
OverwriteIgnoreNonExisting bool
NoRename bool
ForceOverwrite bool
SetModified *int64
}
type DeleteFilter struct {
Modified *int64
Size *int64
Hash *string
IfEmpty bool
type CopyOptions struct {
SetModified *int64
}
type DeleteOptions struct {
RemoveIfModified *int64
RemoveIfSize *int64
RemoveIfHash *string
RemoveIfEmpty bool
}
type FileInfo struct {