File tree Expand file tree Collapse file tree 6 files changed +68
-2
lines changed
src/main/java/com/researchspace/api/clientmodel Expand file tree Collapse file tree 6 files changed +68
-2
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ push :
4+ branches : [ "main" ]
5+ tags :
6+ - " *"
7+ pull_request :
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ java : [8, 11, 17]
17+ steps :
18+ - uses : actions/checkout@v4
19+
20+ - name : Set up Java
21+ uses : actions/setup-java@v4
22+ with :
23+ distribution : temurin
24+ java-version : ${{ matrix.java }}
25+ cache : maven
26+
27+ - name : Build
28+ run : mvn -B -U clean verify
Original file line number Diff line number Diff line change @@ -30,3 +30,4 @@ hs_err_pid*
3030/.gradle /
3131/target /*
3232.idea /*
33+ .vscode /
Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to this project will be documented in this file.
33
4+ ## [ 1.98.1]
5+
6+ ### Added
7+ - Introduced support for document:
8+ - ` MoveRequest ` model
9+
10+ ### Changed
11+ - Upgrade dependency: lombok 1.18.42.
12+
413## [ 1.98.0]
514
615### Added
Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55
66 <artifactId >rspace-client-java-model</artifactId >
7- <version >1.98.0 </version >
7+ <version >1.98.1 </version >
88 <name >rspace-client-java-model</name >
99 <parent >
1010 <groupId >com.github.rspace-os</groupId >
7373 </dependencies >
7474
7575 <properties >
76- <lombok .version>1.18.22 </lombok .version>
76+ <lombok .version>1.18.42 </lombok .version>
7777 </properties >
7878
7979</project >
Original file line number Diff line number Diff line change @@ -44,8 +44,11 @@ public class DocumentInfo extends IdentifiableNameable {
4444 private Date lastModified = null ;
4545 private Boolean signed = null ;
4646 private String tags = null ;
47+ private String tagMetaData = null ;
4748 private FormInfo form = null ;
4849 private User owner = null ;
4950 private Long parentFolderId = null ;
51+ private Long grandParentId = null ;
52+ private Long version ;
5053
5154}
Original file line number Diff line number Diff line change 1+ package com .researchspace .api .clientmodel ;
2+
3+ import lombok .AllArgsConstructor ;
4+ import lombok .Builder ;
5+ import lombok .Data ;
6+ import lombok .NoArgsConstructor ;
7+
8+ /**
9+ * Request to move a document or notebook to a target folder
10+ *
11+ * @author rspac
12+ * @since 1.98.0
13+ */
14+ @ Data
15+ @ NoArgsConstructor
16+ @ AllArgsConstructor
17+ @ Builder
18+ public class MoveRequest {
19+
20+ private Long recordId ;
21+ private long sourceFolderId ;
22+ private Long targetFolderId ;
23+ private Long currentGrandparentId ;
24+ private String reason ;
25+ }
You can’t perform that action at this time.
0 commit comments