-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgridscore.ts
247 lines (214 loc) · 5.25 KB
/
gridscore.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/* tslint:disable */
/* eslint-disable */
// Generated using typescript-generator version 3.2.1263 on 2025-01-14 11:11:37.
export interface Trial {
name: string;
description: string;
traits: Trait[];
comments: Comment[];
events: Event[];
people: Person[];
remoteUrl: string;
remoteToken: string;
layout: Layout;
data: { [index: string]: Cell };
brapiId: string;
brapiConfig: BrapiConfig;
socialShareConfig: SocialShareConfig;
updatedOn: string;
createdOn: string;
lastSyncedOn: string;
shareCodes: ShareCodes;
}
export interface Transaction {
trialId: string;
plotCommentAddedTransactions: { [index: string]: PlotCommentContent[] };
plotCommentDeletedTransactions: { [index: string]: PlotCommentContent[] };
plotMarkedTransactions: { [index: string]: boolean };
plotTraitDataChangeTransactions: { [index: string]: TraitMeasurement[] };
plotGeographyChangeTransactions: { [index: string]: PlotGeographyContent };
trialCommentAddedTransactions: TrialCommentContent[];
trialCommentDeletedTransactions: TrialCommentContent[];
trialEventAddedTransactions: TrialEventContent[];
trialEventDeletedTransactions: TrialEventContent[];
trialPersonAddedTransactions: Person[];
trialGermplasmAddedTransactions: string[];
trialTraitAddedTransactions: Trait[];
trialTraitDeletedTransactions: Trait[];
traitChangeTransactions: TraitEditContent[];
trialEditTransaction: TrialContent;
brapiIdChangeTransaction: BrapiIdChangeContent;
brapiConfigChangeTransaction: BrapiConfig;
}
export interface Trait {
id: string;
brapiId: string;
name: string;
description: string;
dataType: string;
allowRepeats: boolean;
setSize: number;
group: Group;
restrictions: Restrictions;
timeframe: Timeframe;
hasImage: boolean;
imageUrl: string;
}
export interface Comment {
timestamp: string;
content: string;
}
export interface Event {
timestamp: string;
content: string;
type: EventType;
impact: number;
}
export interface Person {
id: string;
name: string;
email: string;
types: PersonType[];
}
export interface Layout {
rows: number;
columns: number;
corners: Corners;
markers: Markers;
columnOrder: string;
rowOrder: string;
columnLabels: number[];
rowLabels: number[];
}
export interface Cell {
brapiId: string;
germplasm: string;
rep: string;
isMarked: boolean;
geography: Geography;
measurements: { [index: string]: Measurement[] };
comments: Comment[];
categories: string[];
}
export interface BrapiConfig {
url: string;
}
export interface SocialShareConfig {
title: string;
text: string;
url: string;
}
export interface ShareCodes {
ownerCode: string;
editorCode: string;
viewerCode: string;
}
export interface PlotCommentContent extends PlotContent {
content: string;
timestamp: string;
}
export interface TraitMeasurement extends MeasurementChange {
traitId: string;
}
export interface PlotGeographyContent extends PlotContent {
center: LatLng;
}
export interface TrialCommentContent {
content: string;
timestamp: string;
}
export interface TrialEventContent {
timestamp: string;
content: string;
type: EventType;
impact: number;
}
export interface TraitEditContent {
id: string;
name: string;
description: string;
group: string;
hasImage: boolean;
imageUrl: string;
timestamp: string;
}
export interface TrialContent {
name: string;
description: string;
socialShareConfig: SocialShareConfig;
markers: Markers;
corners: Corners;
plotCorners: { [index: string]: Corners };
}
export interface BrapiIdChangeContent {
germplasmBrapiIds: { [index: string]: string };
traitBrapiIds: { [index: string]: string };
}
export interface Group {
name: string;
}
export interface Restrictions {
min: number;
max: number;
categories: string[];
}
export interface Timeframe {
start: string;
end: string;
type: TimeframeType;
}
export interface Corners {
topLeft: LatLng;
topRight: LatLng;
bottomRight: LatLng;
bottomLeft: LatLng;
valid: boolean;
}
export interface Markers {
anchor: Anchor;
everyRow: number;
everyColumn: number;
}
export interface Geography {
corners: Corners;
center: LatLng;
}
export interface Measurement {
personId: string;
timestamp: string;
values: string[];
}
export interface PlotContent {
row: number;
column: number;
}
export interface MeasurementChange extends Measurement {
delete: boolean;
}
export interface LatLng {
lat: number;
lng: number;
valid: boolean;
}
export const enum EventType {
WEATHER = 'WEATHER',
MANAGEMENT = 'MANAGEMENT',
OTHER = 'OTHER',
}
export const enum PersonType {
DATA_COLLECTOR = 'DATA_COLLECTOR',
DATA_SUBMITTER = 'DATA_SUBMITTER',
AUTHOR = 'AUTHOR',
CORRESPONDING_AUTHOR = 'CORRESPONDING_AUTHOR',
QUALITY_CHECKER = 'QUALITY_CHECKER',
}
export const enum TimeframeType {
SUGGEST = 'SUGGEST',
ENFORCE = 'ENFORCE',
}
export const enum Anchor {
topLeft = 'topLeft',
topRight = 'topRight',
bottomRight = 'bottomRight',
bottomLeft = 'bottomLeft',
}