@riverscapes/common 2.0.20 → 2.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/dist/classes/ProjectXML.js +0 -5
- package/dist/classes/ProjectXML.js.map +1 -1
- package/dist/gen/gqlSchema.js +1 -1
- package/dist/gen/gqlSchema.js.map +1 -1
- package/dist/gen/schema.types.d.ts +24 -6
- package/dist/gen/schema.types.js +36 -35
- package/dist/gen/schema.types.js.map +1 -1
- package/dist/schema.graphql +23 -18
- package/dist_esnext/classes/BusinessLogicXML.d.ts +20 -0
- package/dist_esnext/classes/BusinessLogicXML.js +119 -0
- package/dist_esnext/classes/BusinessLogicXML.js.map +1 -0
- package/dist_esnext/classes/ProjectXML.d.ts +30 -0
- package/dist_esnext/classes/ProjectXML.js +375 -0
- package/dist_esnext/classes/ProjectXML.js.map +1 -0
- package/dist_esnext/classes/index.d.ts +2 -0
- package/dist_esnext/classes/index.js +3 -0
- package/dist_esnext/classes/index.js.map +1 -0
- package/dist_esnext/classes/mock/BusinessLogic1_parsed.d.ts +173 -0
- package/dist_esnext/classes/mock/BusinessLogic1_parsed.js +252 -0
- package/dist_esnext/classes/mock/BusinessLogic1_parsed.js.map +1 -0
- package/dist_esnext/constants.d.ts +56 -0
- package/dist_esnext/constants.js +76 -0
- package/dist_esnext/constants.js.map +1 -0
- package/dist_esnext/gen/gqlSchema.d.ts +2 -0
- package/dist_esnext/gen/gqlSchema.js +8 -0
- package/dist_esnext/gen/gqlSchema.js.map +1 -0
- package/dist_esnext/gen/schema.types.d.ts +2795 -0
- package/dist_esnext/gen/schema.types.js +274 -0
- package/dist_esnext/gen/schema.types.js.map +1 -0
- package/dist_esnext/index.d.ts +10 -0
- package/dist_esnext/index.js +11 -0
- package/dist_esnext/index.js.map +1 -0
- package/dist_esnext/lib/dates.d.ts +2 -0
- package/dist_esnext/lib/dates.js +31 -0
- package/dist_esnext/lib/dates.js.map +1 -0
- package/dist_esnext/lib/rsPaths.d.ts +8 -0
- package/dist_esnext/lib/rsPaths.js +143 -0
- package/dist_esnext/lib/rsPaths.js.map +1 -0
- package/dist_esnext/lib/tiles.d.ts +4 -0
- package/dist_esnext/lib/tiles.js +35 -0
- package/dist_esnext/lib/tiles.js.map +1 -0
- package/dist_esnext/lib/util.d.ts +6 -0
- package/dist_esnext/lib/util.js +43 -0
- package/dist_esnext/lib/util.js.map +1 -0
- package/dist_esnext/lib/xml.d.ts +6 -0
- package/dist_esnext/lib/xml.js +89 -0
- package/dist_esnext/lib/xml.js.map +1 -0
- package/dist_esnext/types.d.ts +71 -0
- package/dist_esnext/types.js +6 -0
- package/dist_esnext/types.js.map +1 -0
- package/package.json +16 -15
- package/tsconfig.esnext.json +9 -0
|
@@ -0,0 +1,2795 @@
|
|
|
1
|
+
import { JSONObject } from '../types';
|
|
2
|
+
export type Maybe<T> = T | null;
|
|
3
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
4
|
+
export type Exact<T extends {
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
}> = {
|
|
7
|
+
[K in keyof T]: T[K];
|
|
8
|
+
};
|
|
9
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
10
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
11
|
+
};
|
|
12
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
13
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
14
|
+
};
|
|
15
|
+
export type MakeEmpty<T extends {
|
|
16
|
+
[key: string]: unknown;
|
|
17
|
+
}, K extends keyof T> = {
|
|
18
|
+
[_ in K]?: never;
|
|
19
|
+
};
|
|
20
|
+
export type Incremental<T> = T | {
|
|
21
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
22
|
+
};
|
|
23
|
+
export type Scalars = {
|
|
24
|
+
ID: {
|
|
25
|
+
input: string;
|
|
26
|
+
output: string;
|
|
27
|
+
};
|
|
28
|
+
String: {
|
|
29
|
+
input: string;
|
|
30
|
+
output: string;
|
|
31
|
+
};
|
|
32
|
+
Boolean: {
|
|
33
|
+
input: boolean;
|
|
34
|
+
output: boolean;
|
|
35
|
+
};
|
|
36
|
+
Int: {
|
|
37
|
+
input: number;
|
|
38
|
+
output: number;
|
|
39
|
+
};
|
|
40
|
+
Float: {
|
|
41
|
+
input: number;
|
|
42
|
+
output: number;
|
|
43
|
+
};
|
|
44
|
+
BigInt: {
|
|
45
|
+
input: number;
|
|
46
|
+
output: number;
|
|
47
|
+
};
|
|
48
|
+
DateTime: {
|
|
49
|
+
input: string;
|
|
50
|
+
output: string;
|
|
51
|
+
};
|
|
52
|
+
EmailAddress: {
|
|
53
|
+
input: string;
|
|
54
|
+
output: string;
|
|
55
|
+
};
|
|
56
|
+
JSONObject: {
|
|
57
|
+
input: JSONObject;
|
|
58
|
+
output: JSONObject;
|
|
59
|
+
};
|
|
60
|
+
URL: {
|
|
61
|
+
input: string;
|
|
62
|
+
output: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
export type Collection = DbObj & HasOwner & HasStar & HasTags & {
|
|
66
|
+
__typename?: 'Collection';
|
|
67
|
+
citation?: Maybe<Scalars['String']['output']>;
|
|
68
|
+
contact?: Maybe<User>;
|
|
69
|
+
createdBy: User;
|
|
70
|
+
createdOn: Scalars['DateTime']['output'];
|
|
71
|
+
description: Scalars['String']['output'];
|
|
72
|
+
heroImage?: Maybe<HeroImage>;
|
|
73
|
+
id: Scalars['ID']['output'];
|
|
74
|
+
meta: Array<MetaData>;
|
|
75
|
+
name: Scalars['String']['output'];
|
|
76
|
+
ownedBy: Owner;
|
|
77
|
+
permissions: ObjectPermissions;
|
|
78
|
+
projects: PaginatedProjects;
|
|
79
|
+
starred: Scalars['Boolean']['output'];
|
|
80
|
+
starredCount: Scalars['Int']['output'];
|
|
81
|
+
summary: Scalars['String']['output'];
|
|
82
|
+
tags: Array<Scalars['String']['output']>;
|
|
83
|
+
updatedBy: User;
|
|
84
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
85
|
+
visibility: ProjectGroupVisibilityEnum;
|
|
86
|
+
};
|
|
87
|
+
export type CollectionProjectsArgs = {
|
|
88
|
+
limit: Scalars['Int']['input'];
|
|
89
|
+
offset: Scalars['Int']['input'];
|
|
90
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
91
|
+
};
|
|
92
|
+
export type CollectionInput = {
|
|
93
|
+
citation?: InputMaybe<Scalars['String']['input']>;
|
|
94
|
+
clearContact?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95
|
+
clearHeroImage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96
|
+
contact?: InputMaybe<OwnerInput>;
|
|
97
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
98
|
+
heroImageToken?: InputMaybe<Scalars['String']['input']>;
|
|
99
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
100
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
101
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
102
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
103
|
+
visibility?: InputMaybe<ProjectGroupVisibilityEnum>;
|
|
104
|
+
};
|
|
105
|
+
export type DbObj = {
|
|
106
|
+
createdBy: User;
|
|
107
|
+
createdOn: Scalars['DateTime']['output'];
|
|
108
|
+
description: Scalars['String']['output'];
|
|
109
|
+
id: Scalars['ID']['output'];
|
|
110
|
+
meta: Array<MetaData>;
|
|
111
|
+
name: Scalars['String']['output'];
|
|
112
|
+
summary: Scalars['String']['output'];
|
|
113
|
+
updatedBy: User;
|
|
114
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
115
|
+
};
|
|
116
|
+
export type DbObjNotifications = {
|
|
117
|
+
createdBy: User;
|
|
118
|
+
createdById: Scalars['ID']['output'];
|
|
119
|
+
createdByName: Scalars['String']['output'];
|
|
120
|
+
createdOn: Scalars['DateTime']['output'];
|
|
121
|
+
id: Scalars['ID']['output'];
|
|
122
|
+
name: Scalars['String']['output'];
|
|
123
|
+
summary: Scalars['String']['output'];
|
|
124
|
+
updatedBy: User;
|
|
125
|
+
updatedById: Scalars['ID']['output'];
|
|
126
|
+
updatedByName: Scalars['String']['output'];
|
|
127
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
128
|
+
};
|
|
129
|
+
export type DbObjNotificationsInput = {
|
|
130
|
+
createdById: Scalars['ID']['input'];
|
|
131
|
+
createdByName: Scalars['String']['input'];
|
|
132
|
+
createdOn: Scalars['DateTime']['input'];
|
|
133
|
+
id: Scalars['ID']['input'];
|
|
134
|
+
name: Scalars['String']['input'];
|
|
135
|
+
summary: Scalars['String']['input'];
|
|
136
|
+
updatedById: Scalars['ID']['input'];
|
|
137
|
+
updatedByName: Scalars['String']['input'];
|
|
138
|
+
updatedOn: Scalars['DateTime']['input'];
|
|
139
|
+
};
|
|
140
|
+
export type DbSimpleObj = {
|
|
141
|
+
createdBy: User;
|
|
142
|
+
createdOn: Scalars['DateTime']['output'];
|
|
143
|
+
id: Scalars['ID']['output'];
|
|
144
|
+
updatedBy: User;
|
|
145
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
146
|
+
};
|
|
147
|
+
export type Dataset = DbObj & {
|
|
148
|
+
__typename?: 'Dataset';
|
|
149
|
+
analysisId?: Maybe<Scalars['String']['output']>;
|
|
150
|
+
attachedDatasets: PaginatedDatasets;
|
|
151
|
+
citation?: Maybe<Scalars['String']['output']>;
|
|
152
|
+
createdBy: User;
|
|
153
|
+
createdOn: Scalars['DateTime']['output'];
|
|
154
|
+
datasetContainer: DatasetContainerTypesEnum;
|
|
155
|
+
datasetType: DatasetTypeEnum;
|
|
156
|
+
datasetXMLId: Scalars['String']['output'];
|
|
157
|
+
description: Scalars['String']['output'];
|
|
158
|
+
files: Array<FileDownloadMeta>;
|
|
159
|
+
id: Scalars['ID']['output'];
|
|
160
|
+
layers?: Maybe<Array<Maybe<DatasetLayer>>>;
|
|
161
|
+
localPath: Scalars['String']['output'];
|
|
162
|
+
meta: Array<MetaData>;
|
|
163
|
+
name: Scalars['String']['output'];
|
|
164
|
+
origin?: Maybe<Dataset>;
|
|
165
|
+
project: Project;
|
|
166
|
+
realizationXMLId?: Maybe<Scalars['String']['output']>;
|
|
167
|
+
refProject?: Maybe<Project>;
|
|
168
|
+
rsXPath: Scalars['String']['output'];
|
|
169
|
+
summary: Scalars['String']['output'];
|
|
170
|
+
updatedBy: User;
|
|
171
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
172
|
+
};
|
|
173
|
+
export type DatasetAttachedDatasetsArgs = {
|
|
174
|
+
limit: Scalars['Int']['input'];
|
|
175
|
+
offset: Scalars['Int']['input'];
|
|
176
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
177
|
+
};
|
|
178
|
+
export declare const DatasetContainerTypesEnum: {
|
|
179
|
+
readonly CommonDatasets: "CommonDatasets";
|
|
180
|
+
readonly Configuration: "Configuration";
|
|
181
|
+
readonly Datasets: "Datasets";
|
|
182
|
+
readonly Inputs: "Inputs";
|
|
183
|
+
readonly Intermediates: "Intermediates";
|
|
184
|
+
readonly Logs: "Logs";
|
|
185
|
+
readonly Outputs: "Outputs";
|
|
186
|
+
readonly Products: "Products";
|
|
187
|
+
};
|
|
188
|
+
export type DatasetContainerTypesEnum = typeof DatasetContainerTypesEnum[keyof typeof DatasetContainerTypesEnum];
|
|
189
|
+
export type DatasetInput = {
|
|
190
|
+
citation?: InputMaybe<Scalars['String']['input']>;
|
|
191
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
+
extRef?: InputMaybe<Scalars['ID']['input']>;
|
|
193
|
+
layers?: InputMaybe<Array<DatasetLayerInput>>;
|
|
194
|
+
localPath: Scalars['String']['input'];
|
|
195
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
196
|
+
name: Scalars['String']['input'];
|
|
197
|
+
rsXPath: Scalars['String']['input'];
|
|
198
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
199
|
+
};
|
|
200
|
+
export type DatasetLayer = {
|
|
201
|
+
__typename?: 'DatasetLayer';
|
|
202
|
+
citation?: Maybe<Scalars['String']['output']>;
|
|
203
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
204
|
+
lyrName: Scalars['String']['output'];
|
|
205
|
+
meta?: Maybe<Array<MetaData>>;
|
|
206
|
+
name: Scalars['String']['output'];
|
|
207
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
208
|
+
};
|
|
209
|
+
export type DatasetLayerInput = {
|
|
210
|
+
citation?: InputMaybe<Scalars['String']['input']>;
|
|
211
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
212
|
+
lyrName: Scalars['String']['input'];
|
|
213
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
214
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
215
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
216
|
+
};
|
|
217
|
+
export type DatasetLayerUpdate = {
|
|
218
|
+
citation?: InputMaybe<Scalars['String']['input']>;
|
|
219
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
220
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
221
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
222
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
223
|
+
};
|
|
224
|
+
export declare const DatasetTypeEnum: {
|
|
225
|
+
readonly AuxInstrumentFile: "AuxInstrumentFile";
|
|
226
|
+
readonly Csv: "CSV";
|
|
227
|
+
readonly ConfigFile: "ConfigFile";
|
|
228
|
+
readonly Dem: "DEM";
|
|
229
|
+
readonly DataTable: "DataTable";
|
|
230
|
+
readonly Database: "Database";
|
|
231
|
+
readonly File: "File";
|
|
232
|
+
readonly Geopackage: "Geopackage";
|
|
233
|
+
readonly HtmlFile: "HTMLFile";
|
|
234
|
+
readonly HillShade: "HillShade";
|
|
235
|
+
readonly Image: "Image";
|
|
236
|
+
readonly InstrumentFile: "InstrumentFile";
|
|
237
|
+
readonly LogFile: "LogFile";
|
|
238
|
+
readonly MsAccessDb: "MSAccessDB";
|
|
239
|
+
readonly Pdf: "PDF";
|
|
240
|
+
readonly Raster: "Raster";
|
|
241
|
+
readonly SqLiteDb: "SQLiteDB";
|
|
242
|
+
readonly SurveyQualityDb: "SurveyQualityDB";
|
|
243
|
+
readonly Tin: "TIN";
|
|
244
|
+
readonly Vector: "Vector";
|
|
245
|
+
readonly Video: "Video";
|
|
246
|
+
readonly ZipFile: "ZipFile";
|
|
247
|
+
};
|
|
248
|
+
export type DatasetTypeEnum = typeof DatasetTypeEnum[keyof typeof DatasetTypeEnum];
|
|
249
|
+
export type DatasetUpdate = {
|
|
250
|
+
citation?: InputMaybe<Scalars['String']['input']>;
|
|
251
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
252
|
+
dsId?: InputMaybe<Scalars['String']['input']>;
|
|
253
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
254
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
255
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
256
|
+
};
|
|
257
|
+
export declare const EntitiesWithImagesEnum: {
|
|
258
|
+
readonly Collection: "COLLECTION";
|
|
259
|
+
readonly Organization: "ORGANIZATION";
|
|
260
|
+
readonly Project: "PROJECT";
|
|
261
|
+
readonly ProjectType: "PROJECT_TYPE";
|
|
262
|
+
readonly User: "USER";
|
|
263
|
+
};
|
|
264
|
+
export type EntitiesWithImagesEnum = typeof EntitiesWithImagesEnum[keyof typeof EntitiesWithImagesEnum];
|
|
265
|
+
export declare const EntityDeleteActionsEnum: {
|
|
266
|
+
readonly Delete: "DELETE";
|
|
267
|
+
readonly DeleteComplete: "DELETE_COMPLETE";
|
|
268
|
+
readonly MakePublic: "MAKE_PUBLIC";
|
|
269
|
+
readonly RequestTransfer: "REQUEST_TRANSFER";
|
|
270
|
+
};
|
|
271
|
+
export type EntityDeleteActionsEnum = typeof EntityDeleteActionsEnum[keyof typeof EntityDeleteActionsEnum];
|
|
272
|
+
export type EntityDeletionOptions = {
|
|
273
|
+
totalDelete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
274
|
+
transfer?: InputMaybe<TransferEntityItemsInput>;
|
|
275
|
+
};
|
|
276
|
+
export type FileDownloadMeta = FileDownloadMetaInterface & {
|
|
277
|
+
__typename?: 'FileDownloadMeta';
|
|
278
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
279
|
+
downloadUrl?: Maybe<Scalars['String']['output']>;
|
|
280
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
281
|
+
localPath?: Maybe<Scalars['String']['output']>;
|
|
282
|
+
size?: Maybe<Scalars['BigInt']['output']>;
|
|
283
|
+
};
|
|
284
|
+
export type FileDownloadMetaInput = {
|
|
285
|
+
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
286
|
+
localPath: Scalars['String']['input'];
|
|
287
|
+
md5: Scalars['String']['input'];
|
|
288
|
+
size?: InputMaybe<Scalars['BigInt']['input']>;
|
|
289
|
+
};
|
|
290
|
+
export type FileDownloadMetaInterface = {
|
|
291
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
292
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
293
|
+
localPath?: Maybe<Scalars['String']['output']>;
|
|
294
|
+
size?: Maybe<Scalars['BigInt']['output']>;
|
|
295
|
+
};
|
|
296
|
+
export type FileUploadMeta = {
|
|
297
|
+
__typename?: 'FileUploadMeta';
|
|
298
|
+
downloadUrl: Scalars['String']['output'];
|
|
299
|
+
key: Scalars['String']['output'];
|
|
300
|
+
};
|
|
301
|
+
export type HasOwner = {
|
|
302
|
+
ownedBy: Owner;
|
|
303
|
+
};
|
|
304
|
+
export type HasStar = {
|
|
305
|
+
starred: Scalars['Boolean']['output'];
|
|
306
|
+
starredCount: Scalars['Int']['output'];
|
|
307
|
+
};
|
|
308
|
+
export type HasTags = {
|
|
309
|
+
tags: Array<Scalars['String']['output']>;
|
|
310
|
+
};
|
|
311
|
+
export type HeroImage = {
|
|
312
|
+
__typename?: 'HeroImage';
|
|
313
|
+
lg?: Maybe<Scalars['URL']['output']>;
|
|
314
|
+
md?: Maybe<Scalars['URL']['output']>;
|
|
315
|
+
sm?: Maybe<Scalars['URL']['output']>;
|
|
316
|
+
};
|
|
317
|
+
export declare const ImageTypeEnum: {
|
|
318
|
+
readonly Avatar: "AVATAR";
|
|
319
|
+
readonly Hero: "HERO";
|
|
320
|
+
readonly Logo: "LOGO";
|
|
321
|
+
};
|
|
322
|
+
export type ImageTypeEnum = typeof ImageTypeEnum[keyof typeof ImageTypeEnum];
|
|
323
|
+
export declare const JobStatusEnum: {
|
|
324
|
+
readonly Failed: "FAILED";
|
|
325
|
+
readonly Processing: "PROCESSING";
|
|
326
|
+
readonly Ready: "READY";
|
|
327
|
+
readonly Success: "SUCCESS";
|
|
328
|
+
readonly Unknown: "UNKNOWN";
|
|
329
|
+
};
|
|
330
|
+
export type JobStatusEnum = typeof JobStatusEnum[keyof typeof JobStatusEnum];
|
|
331
|
+
export type JobStatusObj = {
|
|
332
|
+
__typename?: 'JobStatusObj';
|
|
333
|
+
data?: Maybe<Scalars['JSONObject']['output']>;
|
|
334
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
335
|
+
metaData?: Maybe<Scalars['JSONObject']['output']>;
|
|
336
|
+
percentComplete?: Maybe<Scalars['Int']['output']>;
|
|
337
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
338
|
+
status: JobStatusEnum;
|
|
339
|
+
};
|
|
340
|
+
export type Link = {
|
|
341
|
+
__typename?: 'Link';
|
|
342
|
+
alt?: Maybe<Scalars['String']['output']>;
|
|
343
|
+
href: Scalars['URL']['output'];
|
|
344
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
345
|
+
};
|
|
346
|
+
export type LinkInput = {
|
|
347
|
+
alt?: InputMaybe<Scalars['String']['input']>;
|
|
348
|
+
href: Scalars['URL']['input'];
|
|
349
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
350
|
+
};
|
|
351
|
+
export type MapCluster = {
|
|
352
|
+
__typename?: 'MapCluster';
|
|
353
|
+
coords: Array<Scalars['Float']['output']>;
|
|
354
|
+
count: Scalars['Int']['output'];
|
|
355
|
+
hash: Scalars['String']['output'];
|
|
356
|
+
};
|
|
357
|
+
export type MetaData = {
|
|
358
|
+
__typename?: 'MetaData';
|
|
359
|
+
ext?: Maybe<MetaDataExtEnum>;
|
|
360
|
+
key: Scalars['String']['output'];
|
|
361
|
+
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
362
|
+
type?: Maybe<MetaDataTypeEnum>;
|
|
363
|
+
value: Scalars['String']['output'];
|
|
364
|
+
};
|
|
365
|
+
export declare const MetaDataExtEnum: {
|
|
366
|
+
readonly Dataset: "DATASET";
|
|
367
|
+
readonly Project: "PROJECT";
|
|
368
|
+
readonly Warehouse: "WAREHOUSE";
|
|
369
|
+
};
|
|
370
|
+
export type MetaDataExtEnum = typeof MetaDataExtEnum[keyof typeof MetaDataExtEnum];
|
|
371
|
+
export type MetaDataInput = {
|
|
372
|
+
ext?: InputMaybe<MetaDataExtEnum>;
|
|
373
|
+
key: Scalars['String']['input'];
|
|
374
|
+
locked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
375
|
+
type?: InputMaybe<MetaDataTypeEnum>;
|
|
376
|
+
value: Scalars['String']['input'];
|
|
377
|
+
};
|
|
378
|
+
export declare const MetaDataTypeEnum: {
|
|
379
|
+
readonly Boolean: "BOOLEAN";
|
|
380
|
+
readonly Filepath: "FILEPATH";
|
|
381
|
+
readonly Float: "FLOAT";
|
|
382
|
+
readonly Guid: "GUID";
|
|
383
|
+
readonly Hidden: "HIDDEN";
|
|
384
|
+
readonly Image: "IMAGE";
|
|
385
|
+
readonly Int: "INT";
|
|
386
|
+
readonly Isodate: "ISODATE";
|
|
387
|
+
readonly Json: "JSON";
|
|
388
|
+
readonly Markdown: "MARKDOWN";
|
|
389
|
+
readonly Richtext: "RICHTEXT";
|
|
390
|
+
readonly String: "STRING";
|
|
391
|
+
readonly Timestamp: "TIMESTAMP";
|
|
392
|
+
readonly Url: "URL";
|
|
393
|
+
readonly Video: "VIDEO";
|
|
394
|
+
};
|
|
395
|
+
export type MetaDataTypeEnum = typeof MetaDataTypeEnum[keyof typeof MetaDataTypeEnum];
|
|
396
|
+
export type Mutation = {
|
|
397
|
+
__typename?: 'Mutation';
|
|
398
|
+
actionOrganizationInvite?: Maybe<OrganizationInvite>;
|
|
399
|
+
addCollectionProjects?: Maybe<Collection>;
|
|
400
|
+
adminReIndexOpenSearch?: Maybe<Scalars['String']['output']>;
|
|
401
|
+
adminRecreateOpenSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
402
|
+
adminWipeDynamo?: Maybe<Scalars['Int']['output']>;
|
|
403
|
+
changeProjectOwner?: Maybe<Project>;
|
|
404
|
+
createCollection?: Maybe<Collection>;
|
|
405
|
+
createNotification?: Maybe<Notification>;
|
|
406
|
+
createOrganization?: Maybe<Organization>;
|
|
407
|
+
createOrganizationInvite?: Maybe<OrganizationInvite>;
|
|
408
|
+
createProfile?: Maybe<Profile>;
|
|
409
|
+
createProject?: Maybe<Project>;
|
|
410
|
+
createProjectType?: Maybe<ProjectType>;
|
|
411
|
+
createSavedSearch?: Maybe<SavedSearch>;
|
|
412
|
+
createTransfer?: Maybe<Transfer>;
|
|
413
|
+
deleteCollection?: Maybe<MutationResult>;
|
|
414
|
+
deleteNotifications?: Maybe<MutationResult>;
|
|
415
|
+
deleteOrganization?: Maybe<MutationResult>;
|
|
416
|
+
deleteOrganizationInvite?: Maybe<MutationResult>;
|
|
417
|
+
deleteProfile?: Maybe<MutationResult>;
|
|
418
|
+
deleteProject?: Maybe<MutationResult>;
|
|
419
|
+
deleteProjectType?: Maybe<MutationResult>;
|
|
420
|
+
deleteSavedSearch?: Maybe<MutationResult>;
|
|
421
|
+
deleteTransfer?: Maybe<MutationResult>;
|
|
422
|
+
finalizeProjectUpload?: Maybe<JobStatusObj>;
|
|
423
|
+
purgeProject?: Maybe<MutationResult>;
|
|
424
|
+
reIndexProjectXML?: Maybe<WatcherOutput>;
|
|
425
|
+
rebuildWebTiles: RebuildWebTilesResponse;
|
|
426
|
+
removeCollectionProjects?: Maybe<Collection>;
|
|
427
|
+
removeOrganizationMember?: Maybe<MutationResult>;
|
|
428
|
+
requestOrganizationInvite?: Maybe<OrganizationInvite>;
|
|
429
|
+
resendOrganizationInvite?: Maybe<OrganizationInvite>;
|
|
430
|
+
updateCollection?: Maybe<Collection>;
|
|
431
|
+
updateNotifications?: Maybe<MutationResult>;
|
|
432
|
+
updateOrganization?: Maybe<Organization>;
|
|
433
|
+
updateOrganizationMember?: Maybe<OrganizationUser>;
|
|
434
|
+
updateProfile?: Maybe<Profile>;
|
|
435
|
+
updateProject?: Maybe<Project>;
|
|
436
|
+
updateProjectDataset?: Maybe<Dataset>;
|
|
437
|
+
updateProjectDatasetLayer?: Maybe<DatasetLayer>;
|
|
438
|
+
updateProjectQAQC?: Maybe<QaqcEvent>;
|
|
439
|
+
updateProjectType?: Maybe<ProjectType>;
|
|
440
|
+
updateSavedSearch?: Maybe<SavedSearch>;
|
|
441
|
+
updateStar?: Maybe<MutationResult>;
|
|
442
|
+
updateTransfer?: Maybe<Transfer>;
|
|
443
|
+
zipRebuild?: Maybe<Project>;
|
|
444
|
+
};
|
|
445
|
+
export type MutationActionOrganizationInviteArgs = {
|
|
446
|
+
accept: Scalars['Boolean']['input'];
|
|
447
|
+
id: Scalars['ID']['input'];
|
|
448
|
+
role?: InputMaybe<OrganizationInviteRoleEnum>;
|
|
449
|
+
};
|
|
450
|
+
export type MutationAddCollectionProjectsArgs = {
|
|
451
|
+
collectionId: Scalars['ID']['input'];
|
|
452
|
+
projectIds: Array<Scalars['ID']['input']>;
|
|
453
|
+
};
|
|
454
|
+
export type MutationAdminReIndexOpenSearchArgs = {
|
|
455
|
+
paginationToken?: InputMaybe<Scalars['String']['input']>;
|
|
456
|
+
};
|
|
457
|
+
export type MutationChangeProjectOwnerArgs = {
|
|
458
|
+
owner: OwnerInput;
|
|
459
|
+
projectId: Scalars['ID']['input'];
|
|
460
|
+
};
|
|
461
|
+
export type MutationCreateCollectionArgs = {
|
|
462
|
+
collection: CollectionInput;
|
|
463
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
464
|
+
};
|
|
465
|
+
export type MutationCreateNotificationArgs = {
|
|
466
|
+
notification?: InputMaybe<NotificationInput>;
|
|
467
|
+
};
|
|
468
|
+
export type MutationCreateOrganizationArgs = {
|
|
469
|
+
organization: OrganizationInput;
|
|
470
|
+
};
|
|
471
|
+
export type MutationCreateOrganizationInviteArgs = {
|
|
472
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
473
|
+
organizationId: Scalars['ID']['input'];
|
|
474
|
+
role?: InputMaybe<OrganizationInviteRoleEnum>;
|
|
475
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
476
|
+
};
|
|
477
|
+
export type MutationCreateProfileArgs = {
|
|
478
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
479
|
+
profile: ProfileInput;
|
|
480
|
+
};
|
|
481
|
+
export type MutationCreateProjectArgs = {
|
|
482
|
+
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
483
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
484
|
+
project: ProjectInput;
|
|
485
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
486
|
+
projectTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
487
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
488
|
+
};
|
|
489
|
+
export type MutationCreateProjectTypeArgs = {
|
|
490
|
+
id: Scalars['String']['input'];
|
|
491
|
+
projectType: ProjectTypeInput;
|
|
492
|
+
state?: InputMaybe<ProjectTypeStateEnum>;
|
|
493
|
+
};
|
|
494
|
+
export type MutationCreateSavedSearchArgs = {
|
|
495
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
496
|
+
savedSearch: SavedSearchInput;
|
|
497
|
+
};
|
|
498
|
+
export type MutationCreateTransferArgs = {
|
|
499
|
+
transfer: TransferInput;
|
|
500
|
+
};
|
|
501
|
+
export type MutationDeleteCollectionArgs = {
|
|
502
|
+
id: Scalars['ID']['input'];
|
|
503
|
+
};
|
|
504
|
+
export type MutationDeleteNotificationsArgs = {
|
|
505
|
+
all?: InputMaybe<Scalars['Boolean']['input']>;
|
|
506
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
507
|
+
};
|
|
508
|
+
export type MutationDeleteOrganizationArgs = {
|
|
509
|
+
id: Scalars['ID']['input'];
|
|
510
|
+
options?: InputMaybe<EntityDeletionOptions>;
|
|
511
|
+
};
|
|
512
|
+
export type MutationDeleteOrganizationInviteArgs = {
|
|
513
|
+
id: Scalars['ID']['input'];
|
|
514
|
+
};
|
|
515
|
+
export type MutationDeleteProfileArgs = {
|
|
516
|
+
options?: InputMaybe<EntityDeletionOptions>;
|
|
517
|
+
};
|
|
518
|
+
export type MutationDeleteProjectArgs = {
|
|
519
|
+
options?: InputMaybe<EntityDeletionOptions>;
|
|
520
|
+
projectId: Scalars['ID']['input'];
|
|
521
|
+
};
|
|
522
|
+
export type MutationDeleteProjectTypeArgs = {
|
|
523
|
+
id: Scalars['String']['input'];
|
|
524
|
+
};
|
|
525
|
+
export type MutationDeleteSavedSearchArgs = {
|
|
526
|
+
id: Scalars['ID']['input'];
|
|
527
|
+
};
|
|
528
|
+
export type MutationDeleteTransferArgs = {
|
|
529
|
+
transferId: Scalars['ID']['input'];
|
|
530
|
+
};
|
|
531
|
+
export type MutationFinalizeProjectUploadArgs = {
|
|
532
|
+
token: Scalars['String']['input'];
|
|
533
|
+
};
|
|
534
|
+
export type MutationPurgeProjectArgs = {
|
|
535
|
+
projectId: Scalars['ID']['input'];
|
|
536
|
+
};
|
|
537
|
+
export type MutationReIndexProjectXmlArgs = {
|
|
538
|
+
projectId: Scalars['ID']['input'];
|
|
539
|
+
};
|
|
540
|
+
export type MutationRebuildWebTilesArgs = {
|
|
541
|
+
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
542
|
+
projectId: Scalars['ID']['input'];
|
|
543
|
+
rsXPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
544
|
+
};
|
|
545
|
+
export type MutationRemoveCollectionProjectsArgs = {
|
|
546
|
+
collectionId: Scalars['ID']['input'];
|
|
547
|
+
projectIds: Array<Scalars['ID']['input']>;
|
|
548
|
+
};
|
|
549
|
+
export type MutationRemoveOrganizationMemberArgs = {
|
|
550
|
+
organizationId: Scalars['ID']['input'];
|
|
551
|
+
userId: Scalars['ID']['input'];
|
|
552
|
+
};
|
|
553
|
+
export type MutationRequestOrganizationInviteArgs = {
|
|
554
|
+
organizationId: Scalars['ID']['input'];
|
|
555
|
+
};
|
|
556
|
+
export type MutationResendOrganizationInviteArgs = {
|
|
557
|
+
id: Scalars['ID']['input'];
|
|
558
|
+
};
|
|
559
|
+
export type MutationUpdateCollectionArgs = {
|
|
560
|
+
collection?: InputMaybe<CollectionInput>;
|
|
561
|
+
id: Scalars['ID']['input'];
|
|
562
|
+
};
|
|
563
|
+
export type MutationUpdateNotificationsArgs = {
|
|
564
|
+
ids: Array<Scalars['ID']['input']>;
|
|
565
|
+
markAs: NotificationOperationEnum;
|
|
566
|
+
};
|
|
567
|
+
export type MutationUpdateOrganizationArgs = {
|
|
568
|
+
id: Scalars['ID']['input'];
|
|
569
|
+
organization: OrganizationInput;
|
|
570
|
+
};
|
|
571
|
+
export type MutationUpdateOrganizationMemberArgs = {
|
|
572
|
+
organizationId: Scalars['ID']['input'];
|
|
573
|
+
role?: InputMaybe<OrganizationRoleEnum>;
|
|
574
|
+
userId: Scalars['ID']['input'];
|
|
575
|
+
};
|
|
576
|
+
export type MutationUpdateProfileArgs = {
|
|
577
|
+
profile: ProfileInput;
|
|
578
|
+
};
|
|
579
|
+
export type MutationUpdateProjectArgs = {
|
|
580
|
+
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
581
|
+
project: ProjectInput;
|
|
582
|
+
projectId: Scalars['ID']['input'];
|
|
583
|
+
skipXMLUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
584
|
+
};
|
|
585
|
+
export type MutationUpdateProjectDatasetArgs = {
|
|
586
|
+
dataset: DatasetUpdate;
|
|
587
|
+
projectId: Scalars['ID']['input'];
|
|
588
|
+
rsXPath: Scalars['String']['input'];
|
|
589
|
+
};
|
|
590
|
+
export type MutationUpdateProjectDatasetLayerArgs = {
|
|
591
|
+
datasetLayer: DatasetLayerUpdate;
|
|
592
|
+
lyrName: Scalars['String']['input'];
|
|
593
|
+
projectId: Scalars['ID']['input'];
|
|
594
|
+
rsXPath: Scalars['String']['input'];
|
|
595
|
+
};
|
|
596
|
+
export type MutationUpdateProjectQaqcArgs = {
|
|
597
|
+
projectId: Scalars['ID']['input'];
|
|
598
|
+
qaqc: QaqcEventInput;
|
|
599
|
+
qaqcId: Scalars['ID']['input'];
|
|
600
|
+
};
|
|
601
|
+
export type MutationUpdateProjectTypeArgs = {
|
|
602
|
+
id: Scalars['String']['input'];
|
|
603
|
+
projectType: ProjectTypeInput;
|
|
604
|
+
state?: InputMaybe<ProjectTypeStateEnum>;
|
|
605
|
+
};
|
|
606
|
+
export type MutationUpdateSavedSearchArgs = {
|
|
607
|
+
id: Scalars['ID']['input'];
|
|
608
|
+
savedSearch: SavedSearchInput;
|
|
609
|
+
};
|
|
610
|
+
export type MutationUpdateStarArgs = {
|
|
611
|
+
id: Scalars['ID']['input'];
|
|
612
|
+
starred: Scalars['Boolean']['input'];
|
|
613
|
+
type: StarrableTypesEnum;
|
|
614
|
+
};
|
|
615
|
+
export type MutationUpdateTransferArgs = {
|
|
616
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
617
|
+
state?: InputMaybe<TransferStateEnum>;
|
|
618
|
+
transferId: Scalars['ID']['input'];
|
|
619
|
+
};
|
|
620
|
+
export type MutationZipRebuildArgs = {
|
|
621
|
+
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
622
|
+
projectId: Scalars['ID']['input'];
|
|
623
|
+
};
|
|
624
|
+
export type MutationResult = {
|
|
625
|
+
__typename?: 'MutationResult';
|
|
626
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
627
|
+
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
628
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
629
|
+
success: Scalars['Boolean']['output'];
|
|
630
|
+
};
|
|
631
|
+
export type MyStars = {
|
|
632
|
+
__typename?: 'MyStars';
|
|
633
|
+
collections: PaginatedCollections;
|
|
634
|
+
organizations: PaginatedOrganizations;
|
|
635
|
+
projects: PaginatedProjects;
|
|
636
|
+
savedSearches: PaginatedSavedSearches;
|
|
637
|
+
users: PaginatedUsers;
|
|
638
|
+
};
|
|
639
|
+
export type MyStarsCollectionsArgs = {
|
|
640
|
+
limit: Scalars['Int']['input'];
|
|
641
|
+
offset: Scalars['Int']['input'];
|
|
642
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
643
|
+
};
|
|
644
|
+
export type MyStarsOrganizationsArgs = {
|
|
645
|
+
limit: Scalars['Int']['input'];
|
|
646
|
+
offset: Scalars['Int']['input'];
|
|
647
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
648
|
+
};
|
|
649
|
+
export type MyStarsProjectsArgs = {
|
|
650
|
+
limit: Scalars['Int']['input'];
|
|
651
|
+
offset: Scalars['Int']['input'];
|
|
652
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
653
|
+
};
|
|
654
|
+
export type MyStarsSavedSearchesArgs = {
|
|
655
|
+
limit: Scalars['Int']['input'];
|
|
656
|
+
offset: Scalars['Int']['input'];
|
|
657
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
658
|
+
};
|
|
659
|
+
export type MyStarsUsersArgs = {
|
|
660
|
+
limit: Scalars['Int']['input'];
|
|
661
|
+
offset: Scalars['Int']['input'];
|
|
662
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
663
|
+
};
|
|
664
|
+
export type Notification = {
|
|
665
|
+
__typename?: 'Notification';
|
|
666
|
+
id: Scalars['ID']['output'];
|
|
667
|
+
object: DbObjNotifications;
|
|
668
|
+
seen: Scalars['Boolean']['output'];
|
|
669
|
+
subject: DbObjNotifications;
|
|
670
|
+
time: Scalars['DateTime']['output'];
|
|
671
|
+
type: NotificationTypesEnum;
|
|
672
|
+
verb: NotificationActionsEnum;
|
|
673
|
+
};
|
|
674
|
+
export declare const NotificationActionsEnum: {
|
|
675
|
+
readonly Created: "CREATED";
|
|
676
|
+
readonly Deleted: "DELETED";
|
|
677
|
+
readonly Renamed: "RENAMED";
|
|
678
|
+
readonly Transferred: "TRANSFERRED";
|
|
679
|
+
readonly Updated: "UPDATED";
|
|
680
|
+
};
|
|
681
|
+
export type NotificationActionsEnum = typeof NotificationActionsEnum[keyof typeof NotificationActionsEnum];
|
|
682
|
+
export type NotificationInput = {
|
|
683
|
+
object: DbObjNotificationsInput;
|
|
684
|
+
subject: DbObjNotificationsInput;
|
|
685
|
+
type: NotificationTypesEnum;
|
|
686
|
+
verb: NotificationActionsEnum;
|
|
687
|
+
};
|
|
688
|
+
export declare const NotificationOperationEnum: {
|
|
689
|
+
readonly Delete: "DELETE";
|
|
690
|
+
readonly MarkRead: "MARK_READ";
|
|
691
|
+
readonly MarkUnread: "MARK_UNREAD";
|
|
692
|
+
};
|
|
693
|
+
export type NotificationOperationEnum = typeof NotificationOperationEnum[keyof typeof NotificationOperationEnum];
|
|
694
|
+
export declare const NotificationTypesEnum: {
|
|
695
|
+
readonly Collection: "COLLECTION";
|
|
696
|
+
readonly Organization: "ORGANIZATION";
|
|
697
|
+
readonly Project: "PROJECT";
|
|
698
|
+
readonly SavedSearch: "SAVED_SEARCH";
|
|
699
|
+
readonly User: "USER";
|
|
700
|
+
};
|
|
701
|
+
export type NotificationTypesEnum = typeof NotificationTypesEnum[keyof typeof NotificationTypesEnum];
|
|
702
|
+
export type ObjectPermissions = {
|
|
703
|
+
__typename?: 'ObjectPermissions';
|
|
704
|
+
delete?: Maybe<Scalars['Boolean']['output']>;
|
|
705
|
+
update?: Maybe<Scalars['Boolean']['output']>;
|
|
706
|
+
view?: Maybe<Scalars['Boolean']['output']>;
|
|
707
|
+
};
|
|
708
|
+
export type Organization = DbObj & HasStar & {
|
|
709
|
+
__typename?: 'Organization';
|
|
710
|
+
collections: PaginatedCollections;
|
|
711
|
+
createdBy: User;
|
|
712
|
+
createdOn: Scalars['DateTime']['output'];
|
|
713
|
+
description: Scalars['String']['output'];
|
|
714
|
+
id: Scalars['ID']['output'];
|
|
715
|
+
logo?: Maybe<Scalars['URL']['output']>;
|
|
716
|
+
meta: Array<MetaData>;
|
|
717
|
+
myRole: OrganizationRoleEnum;
|
|
718
|
+
name: Scalars['String']['output'];
|
|
719
|
+
organizationInvites: PaginatedOrganizationInvites;
|
|
720
|
+
organizationUsers: PaginatedOrganizationUsers;
|
|
721
|
+
permissions: ObjectPermissions;
|
|
722
|
+
preferences?: Maybe<Scalars['JSONObject']['output']>;
|
|
723
|
+
projects: PaginatedProjects;
|
|
724
|
+
savedSearches: PaginatedSavedSearches;
|
|
725
|
+
social?: Maybe<SocialLinks>;
|
|
726
|
+
starred: Scalars['Boolean']['output'];
|
|
727
|
+
starredCount: Scalars['Int']['output'];
|
|
728
|
+
summary: Scalars['String']['output'];
|
|
729
|
+
updatedBy: User;
|
|
730
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
731
|
+
};
|
|
732
|
+
export type OrganizationCollectionsArgs = {
|
|
733
|
+
limit: Scalars['Int']['input'];
|
|
734
|
+
offset: Scalars['Int']['input'];
|
|
735
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
736
|
+
};
|
|
737
|
+
export type OrganizationOrganizationInvitesArgs = {
|
|
738
|
+
limit: Scalars['Int']['input'];
|
|
739
|
+
offset: Scalars['Int']['input'];
|
|
740
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
741
|
+
};
|
|
742
|
+
export type OrganizationOrganizationUsersArgs = {
|
|
743
|
+
limit: Scalars['Int']['input'];
|
|
744
|
+
offset: Scalars['Int']['input'];
|
|
745
|
+
role?: InputMaybe<OrganizationRoleEnum>;
|
|
746
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
747
|
+
};
|
|
748
|
+
export type OrganizationProjectsArgs = {
|
|
749
|
+
limit: Scalars['Int']['input'];
|
|
750
|
+
offset: Scalars['Int']['input'];
|
|
751
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
752
|
+
};
|
|
753
|
+
export type OrganizationSavedSearchesArgs = {
|
|
754
|
+
limit: Scalars['Int']['input'];
|
|
755
|
+
offset: Scalars['Int']['input'];
|
|
756
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
757
|
+
};
|
|
758
|
+
export type OrganizationInput = {
|
|
759
|
+
clearLogo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
760
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
761
|
+
logoToken?: InputMaybe<Scalars['String']['input']>;
|
|
762
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
763
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
764
|
+
preferences?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
765
|
+
social?: InputMaybe<SocialLinksInput>;
|
|
766
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
767
|
+
};
|
|
768
|
+
export type OrganizationInvite = DbSimpleObj & {
|
|
769
|
+
__typename?: 'OrganizationInvite';
|
|
770
|
+
createdBy: User;
|
|
771
|
+
createdOn: Scalars['DateTime']['output'];
|
|
772
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
773
|
+
id: Scalars['ID']['output'];
|
|
774
|
+
invitee?: Maybe<User>;
|
|
775
|
+
inviter: User;
|
|
776
|
+
organization: Organization;
|
|
777
|
+
retries: Scalars['Int']['output'];
|
|
778
|
+
role: OrganizationInviteRoleEnum;
|
|
779
|
+
state: OrganizationInviteStateEnum;
|
|
780
|
+
updatedBy: User;
|
|
781
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
782
|
+
};
|
|
783
|
+
export declare const OrganizationInviteRoleEnum: {
|
|
784
|
+
readonly Admin: "ADMIN";
|
|
785
|
+
readonly Contributor: "CONTRIBUTOR";
|
|
786
|
+
readonly Viewer: "VIEWER";
|
|
787
|
+
};
|
|
788
|
+
export type OrganizationInviteRoleEnum = typeof OrganizationInviteRoleEnum[keyof typeof OrganizationInviteRoleEnum];
|
|
789
|
+
export declare const OrganizationInviteStateEnum: {
|
|
790
|
+
readonly Accepted: "ACCEPTED";
|
|
791
|
+
readonly Expired: "EXPIRED";
|
|
792
|
+
readonly Invited: "INVITED";
|
|
793
|
+
readonly Rejected: "REJECTED";
|
|
794
|
+
readonly Requested: "REQUESTED";
|
|
795
|
+
};
|
|
796
|
+
export type OrganizationInviteStateEnum = typeof OrganizationInviteStateEnum[keyof typeof OrganizationInviteStateEnum];
|
|
797
|
+
export declare const OrganizationRoleEnum: {
|
|
798
|
+
readonly Admin: "ADMIN";
|
|
799
|
+
readonly Contributor: "CONTRIBUTOR";
|
|
800
|
+
readonly None: "NONE";
|
|
801
|
+
readonly Owner: "OWNER";
|
|
802
|
+
readonly Viewer: "VIEWER";
|
|
803
|
+
};
|
|
804
|
+
export type OrganizationRoleEnum = typeof OrganizationRoleEnum[keyof typeof OrganizationRoleEnum];
|
|
805
|
+
export type OrganizationUser = {
|
|
806
|
+
__typename?: 'OrganizationUser';
|
|
807
|
+
organization: Organization;
|
|
808
|
+
role: OrganizationRoleEnum;
|
|
809
|
+
user: User;
|
|
810
|
+
};
|
|
811
|
+
export type Owner = Organization | User;
|
|
812
|
+
export type OwnerInput = {
|
|
813
|
+
id: Scalars['String']['input'];
|
|
814
|
+
type: OwnerInputTypesEnum;
|
|
815
|
+
};
|
|
816
|
+
export declare const OwnerInputTypesEnum: {
|
|
817
|
+
readonly Organization: "ORGANIZATION";
|
|
818
|
+
readonly User: "USER";
|
|
819
|
+
};
|
|
820
|
+
export type OwnerInputTypesEnum = typeof OwnerInputTypesEnum[keyof typeof OwnerInputTypesEnum];
|
|
821
|
+
export type Owners = PaginatedUsers;
|
|
822
|
+
export type PaginatedCollections = Pagination & {
|
|
823
|
+
__typename?: 'PaginatedCollections';
|
|
824
|
+
items: Array<Collection>;
|
|
825
|
+
limit: Scalars['Int']['output'];
|
|
826
|
+
offset: Scalars['Int']['output'];
|
|
827
|
+
total: Scalars['Int']['output'];
|
|
828
|
+
};
|
|
829
|
+
export type PaginatedDatasets = Pagination & {
|
|
830
|
+
__typename?: 'PaginatedDatasets';
|
|
831
|
+
items: Array<Dataset>;
|
|
832
|
+
limit: Scalars['Int']['output'];
|
|
833
|
+
offset: Scalars['Int']['output'];
|
|
834
|
+
total: Scalars['Int']['output'];
|
|
835
|
+
};
|
|
836
|
+
export type PaginatedFileDownloadMeta = Pagination & {
|
|
837
|
+
__typename?: 'PaginatedFileDownloadMeta';
|
|
838
|
+
items: Array<FileDownloadMeta>;
|
|
839
|
+
limit: Scalars['Int']['output'];
|
|
840
|
+
offset: Scalars['Int']['output'];
|
|
841
|
+
total: Scalars['Int']['output'];
|
|
842
|
+
};
|
|
843
|
+
export type PaginatedNotifications = Pagination & {
|
|
844
|
+
__typename?: 'PaginatedNotifications';
|
|
845
|
+
items: Array<Notification>;
|
|
846
|
+
limit: Scalars['Int']['output'];
|
|
847
|
+
offset: Scalars['Int']['output'];
|
|
848
|
+
total: Scalars['Int']['output'];
|
|
849
|
+
};
|
|
850
|
+
export type PaginatedOrganizationInvites = Pagination & {
|
|
851
|
+
__typename?: 'PaginatedOrganizationInvites';
|
|
852
|
+
items: Array<OrganizationInvite>;
|
|
853
|
+
limit: Scalars['Int']['output'];
|
|
854
|
+
offset: Scalars['Int']['output'];
|
|
855
|
+
total: Scalars['Int']['output'];
|
|
856
|
+
};
|
|
857
|
+
export type PaginatedOrganizationUsers = Pagination & {
|
|
858
|
+
__typename?: 'PaginatedOrganizationUsers';
|
|
859
|
+
items: Array<OrganizationUser>;
|
|
860
|
+
limit: Scalars['Int']['output'];
|
|
861
|
+
offset: Scalars['Int']['output'];
|
|
862
|
+
total: Scalars['Int']['output'];
|
|
863
|
+
};
|
|
864
|
+
export type PaginatedOrganizations = Pagination & {
|
|
865
|
+
__typename?: 'PaginatedOrganizations';
|
|
866
|
+
items: Array<Organization>;
|
|
867
|
+
limit: Scalars['Int']['output'];
|
|
868
|
+
offset: Scalars['Int']['output'];
|
|
869
|
+
total: Scalars['Int']['output'];
|
|
870
|
+
};
|
|
871
|
+
export type PaginatedProjectTypes = Pagination & {
|
|
872
|
+
__typename?: 'PaginatedProjectTypes';
|
|
873
|
+
items: Array<ProjectType>;
|
|
874
|
+
limit: Scalars['Int']['output'];
|
|
875
|
+
offset: Scalars['Int']['output'];
|
|
876
|
+
total: Scalars['Int']['output'];
|
|
877
|
+
};
|
|
878
|
+
export type PaginatedProjects = Pagination & {
|
|
879
|
+
__typename?: 'PaginatedProjects';
|
|
880
|
+
items: Array<Project>;
|
|
881
|
+
limit: Scalars['Int']['output'];
|
|
882
|
+
offset: Scalars['Int']['output'];
|
|
883
|
+
total: Scalars['Int']['output'];
|
|
884
|
+
};
|
|
885
|
+
export type PaginatedQaqcEvents = Pagination & {
|
|
886
|
+
__typename?: 'PaginatedQAQCEvents';
|
|
887
|
+
items: Array<QaqcEvent>;
|
|
888
|
+
limit: Scalars['Int']['output'];
|
|
889
|
+
offset: Scalars['Int']['output'];
|
|
890
|
+
total: Scalars['Int']['output'];
|
|
891
|
+
};
|
|
892
|
+
export type PaginatedSavedSearches = Pagination & {
|
|
893
|
+
__typename?: 'PaginatedSavedSearches';
|
|
894
|
+
items: Array<SavedSearch>;
|
|
895
|
+
limit: Scalars['Int']['output'];
|
|
896
|
+
offset: Scalars['Int']['output'];
|
|
897
|
+
total: Scalars['Int']['output'];
|
|
898
|
+
};
|
|
899
|
+
export type PaginatedUsers = Pagination & {
|
|
900
|
+
__typename?: 'PaginatedUsers';
|
|
901
|
+
items: Array<User>;
|
|
902
|
+
limit: Scalars['Int']['output'];
|
|
903
|
+
offset: Scalars['Int']['output'];
|
|
904
|
+
total: Scalars['Int']['output'];
|
|
905
|
+
};
|
|
906
|
+
export type Pagination = {
|
|
907
|
+
limit: Scalars['Int']['output'];
|
|
908
|
+
offset: Scalars['Int']['output'];
|
|
909
|
+
total: Scalars['Int']['output'];
|
|
910
|
+
};
|
|
911
|
+
export type Profile = DbObj & UserInterface & {
|
|
912
|
+
__typename?: 'Profile';
|
|
913
|
+
affiliations: Array<Maybe<UserAffiliation>>;
|
|
914
|
+
avatar?: Maybe<Scalars['URL']['output']>;
|
|
915
|
+
collections: PaginatedCollections;
|
|
916
|
+
createdBy: User;
|
|
917
|
+
createdOn: Scalars['DateTime']['output'];
|
|
918
|
+
description: Scalars['String']['output'];
|
|
919
|
+
id: Scalars['ID']['output'];
|
|
920
|
+
initialized?: Maybe<Scalars['Boolean']['output']>;
|
|
921
|
+
isAdmin: Scalars['Boolean']['output'];
|
|
922
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
923
|
+
lastLogin: Scalars['DateTime']['output'];
|
|
924
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
925
|
+
meta: Array<MetaData>;
|
|
926
|
+
name: Scalars['String']['output'];
|
|
927
|
+
notifications: PaginatedNotifications;
|
|
928
|
+
organizationInvites: PaginatedOrganizationInvites;
|
|
929
|
+
organizations: PaginatedOrganizations;
|
|
930
|
+
preferences: Scalars['JSONObject']['output'];
|
|
931
|
+
projects: PaginatedProjects;
|
|
932
|
+
savedSearches: PaginatedSavedSearches;
|
|
933
|
+
social: SocialLinks;
|
|
934
|
+
starred: Scalars['Boolean']['output'];
|
|
935
|
+
starredCount: Scalars['Int']['output'];
|
|
936
|
+
stars: MyStars;
|
|
937
|
+
summary: Scalars['String']['output'];
|
|
938
|
+
updatedBy: User;
|
|
939
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
940
|
+
};
|
|
941
|
+
export type ProfileCollectionsArgs = {
|
|
942
|
+
limit: Scalars['Int']['input'];
|
|
943
|
+
offset: Scalars['Int']['input'];
|
|
944
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
945
|
+
};
|
|
946
|
+
export type ProfileNotificationsArgs = {
|
|
947
|
+
limit: Scalars['Int']['input'];
|
|
948
|
+
offset: Scalars['Int']['input'];
|
|
949
|
+
op?: InputMaybe<NotificationOperationEnum>;
|
|
950
|
+
};
|
|
951
|
+
export type ProfileOrganizationInvitesArgs = {
|
|
952
|
+
limit: Scalars['Int']['input'];
|
|
953
|
+
offset: Scalars['Int']['input'];
|
|
954
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
955
|
+
};
|
|
956
|
+
export type ProfileOrganizationsArgs = {
|
|
957
|
+
limit: Scalars['Int']['input'];
|
|
958
|
+
offset: Scalars['Int']['input'];
|
|
959
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
960
|
+
};
|
|
961
|
+
export type ProfileProjectsArgs = {
|
|
962
|
+
limit: Scalars['Int']['input'];
|
|
963
|
+
offset: Scalars['Int']['input'];
|
|
964
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
965
|
+
};
|
|
966
|
+
export type ProfileSavedSearchesArgs = {
|
|
967
|
+
limit: Scalars['Int']['input'];
|
|
968
|
+
offset: Scalars['Int']['input'];
|
|
969
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
970
|
+
};
|
|
971
|
+
export type ProfileInput = {
|
|
972
|
+
affiliations?: InputMaybe<Array<UserAffiliationInput>>;
|
|
973
|
+
avatarToken?: InputMaybe<Scalars['String']['input']>;
|
|
974
|
+
clearAvatar?: InputMaybe<Scalars['Boolean']['input']>;
|
|
975
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
976
|
+
jobTitle?: InputMaybe<Scalars['String']['input']>;
|
|
977
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
978
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
979
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
980
|
+
preferences?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
981
|
+
socialLinks?: InputMaybe<SocialLinksInput>;
|
|
982
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
983
|
+
};
|
|
984
|
+
export type Project = DbObj & HasOwner & HasStar & {
|
|
985
|
+
__typename?: 'Project';
|
|
986
|
+
bounds?: Maybe<ProjectBounds>;
|
|
987
|
+
citation?: Maybe<Scalars['String']['output']>;
|
|
988
|
+
collections: PaginatedCollections;
|
|
989
|
+
createdBy: User;
|
|
990
|
+
createdOn: Scalars['DateTime']['output'];
|
|
991
|
+
datasets: PaginatedDatasets;
|
|
992
|
+
deleted: Scalars['Boolean']['output'];
|
|
993
|
+
description: Scalars['String']['output'];
|
|
994
|
+
dirty: Scalars['Boolean']['output'];
|
|
995
|
+
files: Array<FileDownloadMeta>;
|
|
996
|
+
heroImage?: Maybe<HeroImage>;
|
|
997
|
+
id: Scalars['ID']['output'];
|
|
998
|
+
meta: Array<MetaData>;
|
|
999
|
+
name: Scalars['String']['output'];
|
|
1000
|
+
ownedBy: Owner;
|
|
1001
|
+
permissions: ObjectPermissions;
|
|
1002
|
+
projectType: ProjectType;
|
|
1003
|
+
qaqc: PaginatedQaqcEvents;
|
|
1004
|
+
ref: Scalars['String']['output'];
|
|
1005
|
+
sponsor?: Maybe<Owner>;
|
|
1006
|
+
starred: Scalars['Boolean']['output'];
|
|
1007
|
+
starredCount: Scalars['Int']['output'];
|
|
1008
|
+
summary: Scalars['String']['output'];
|
|
1009
|
+
tags: Array<Scalars['String']['output']>;
|
|
1010
|
+
totalSize?: Maybe<Scalars['BigInt']['output']>;
|
|
1011
|
+
tree: ProjectTree;
|
|
1012
|
+
updatedBy: User;
|
|
1013
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
1014
|
+
visibility: ProjectVisibilityEnum;
|
|
1015
|
+
};
|
|
1016
|
+
export type ProjectCollectionsArgs = {
|
|
1017
|
+
limit: Scalars['Int']['input'];
|
|
1018
|
+
offset: Scalars['Int']['input'];
|
|
1019
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1020
|
+
};
|
|
1021
|
+
export type ProjectDatasetsArgs = {
|
|
1022
|
+
limit: Scalars['Int']['input'];
|
|
1023
|
+
offset: Scalars['Int']['input'];
|
|
1024
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1025
|
+
};
|
|
1026
|
+
export type ProjectQaqcArgs = {
|
|
1027
|
+
limit: Scalars['Int']['input'];
|
|
1028
|
+
offset: Scalars['Int']['input'];
|
|
1029
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1030
|
+
};
|
|
1031
|
+
export type ProjectBounds = DbSimpleObj & {
|
|
1032
|
+
__typename?: 'ProjectBounds';
|
|
1033
|
+
area?: Maybe<Scalars['Float']['output']>;
|
|
1034
|
+
bbox: Array<Scalars['Float']['output']>;
|
|
1035
|
+
centroid: Array<Scalars['Float']['output']>;
|
|
1036
|
+
createdBy: User;
|
|
1037
|
+
createdOn: Scalars['DateTime']['output'];
|
|
1038
|
+
geoHash?: Maybe<Scalars['String']['output']>;
|
|
1039
|
+
id: Scalars['ID']['output'];
|
|
1040
|
+
polygonUrl: Scalars['URL']['output'];
|
|
1041
|
+
updatedBy: User;
|
|
1042
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
1043
|
+
};
|
|
1044
|
+
export declare const ProjectDeleteChoicesEnum: {
|
|
1045
|
+
readonly Delete: "DELETE";
|
|
1046
|
+
readonly DeleteComplete: "DELETE_COMPLETE";
|
|
1047
|
+
};
|
|
1048
|
+
export type ProjectDeleteChoicesEnum = typeof ProjectDeleteChoicesEnum[keyof typeof ProjectDeleteChoicesEnum];
|
|
1049
|
+
export declare const ProjectGroupVisibilityEnum: {
|
|
1050
|
+
readonly Public: "PUBLIC";
|
|
1051
|
+
readonly Secret: "SECRET";
|
|
1052
|
+
};
|
|
1053
|
+
export type ProjectGroupVisibilityEnum = typeof ProjectGroupVisibilityEnum[keyof typeof ProjectGroupVisibilityEnum];
|
|
1054
|
+
export type ProjectInput = {
|
|
1055
|
+
boundsToken?: InputMaybe<Scalars['String']['input']>;
|
|
1056
|
+
citation?: InputMaybe<Scalars['String']['input']>;
|
|
1057
|
+
clearBounds?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1058
|
+
clearHeroImage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1059
|
+
clearSponsor?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1060
|
+
datasets?: InputMaybe<Array<DatasetInput>>;
|
|
1061
|
+
deleteDatasets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1062
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1063
|
+
heroImageToken?: InputMaybe<Scalars['String']['input']>;
|
|
1064
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1065
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1066
|
+
qaqc?: InputMaybe<Array<QaqcEventInput>>;
|
|
1067
|
+
sponsor?: InputMaybe<OwnerInput>;
|
|
1068
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
1069
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1070
|
+
totalSize?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1071
|
+
visibility?: InputMaybe<ProjectVisibilityEnum>;
|
|
1072
|
+
};
|
|
1073
|
+
export type ProjectSearchMeta = {
|
|
1074
|
+
__typename?: 'ProjectSearchMeta';
|
|
1075
|
+
area?: Maybe<Scalars['Float']['output']>;
|
|
1076
|
+
bbox?: Maybe<Array<Scalars['Float']['output']>>;
|
|
1077
|
+
geoBuckets?: Maybe<Scalars['JSONObject']['output']>;
|
|
1078
|
+
maxScore?: Maybe<Scalars['Float']['output']>;
|
|
1079
|
+
metaDataBuckets: Scalars['JSONObject']['output'];
|
|
1080
|
+
openSearch?: Maybe<Scalars['JSONObject']['output']>;
|
|
1081
|
+
projectTypes?: Maybe<Scalars['JSONObject']['output']>;
|
|
1082
|
+
searchTime?: Maybe<Scalars['Float']['output']>;
|
|
1083
|
+
};
|
|
1084
|
+
export type ProjectSearchParams = {
|
|
1085
|
+
__typename?: 'ProjectSearchParams';
|
|
1086
|
+
bbox?: Maybe<Array<Scalars['Float']['output']>>;
|
|
1087
|
+
collection?: Maybe<Scalars['ID']['output']>;
|
|
1088
|
+
createdOn?: Maybe<SearchDate>;
|
|
1089
|
+
editableOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
1090
|
+
keywords?: Maybe<Scalars['String']['output']>;
|
|
1091
|
+
meta?: Maybe<Array<MetaData>>;
|
|
1092
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1093
|
+
ownedBy?: Maybe<SearchOwner>;
|
|
1094
|
+
projectTypeId?: Maybe<Scalars['String']['output']>;
|
|
1095
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
1096
|
+
updatedOn?: Maybe<SearchDate>;
|
|
1097
|
+
};
|
|
1098
|
+
export type ProjectSearchParamsInput = {
|
|
1099
|
+
bbox?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
1100
|
+
boundsId?: InputMaybe<Scalars['ID']['input']>;
|
|
1101
|
+
collection?: InputMaybe<Scalars['ID']['input']>;
|
|
1102
|
+
createdOn?: InputMaybe<SearchDateInput>;
|
|
1103
|
+
editableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1104
|
+
keywords?: InputMaybe<Scalars['String']['input']>;
|
|
1105
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1106
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1107
|
+
ownedBy?: InputMaybe<OwnerInput>;
|
|
1108
|
+
projectTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
1109
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1110
|
+
updatedOn?: InputMaybe<SearchDateInput>;
|
|
1111
|
+
};
|
|
1112
|
+
export type ProjectTree = {
|
|
1113
|
+
__typename?: 'ProjectTree';
|
|
1114
|
+
branches: Array<ProjectTreeBranch>;
|
|
1115
|
+
defaultView?: Maybe<Scalars['ID']['output']>;
|
|
1116
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1117
|
+
leaves: Array<ProjectTreeLeaf>;
|
|
1118
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1119
|
+
views: Array<ProjectTreeView>;
|
|
1120
|
+
};
|
|
1121
|
+
export type ProjectTreeBranch = {
|
|
1122
|
+
__typename?: 'ProjectTreeBranch';
|
|
1123
|
+
bid: Scalars['Int']['output'];
|
|
1124
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
1125
|
+
label: Scalars['String']['output'];
|
|
1126
|
+
pid: Scalars['Int']['output'];
|
|
1127
|
+
};
|
|
1128
|
+
export declare const ProjectTreeLayerTypeEnum: {
|
|
1129
|
+
readonly File: "FILE";
|
|
1130
|
+
readonly Line: "LINE";
|
|
1131
|
+
readonly Point: "POINT";
|
|
1132
|
+
readonly Polygon: "POLYGON";
|
|
1133
|
+
readonly Raster: "RASTER";
|
|
1134
|
+
readonly Report: "REPORT";
|
|
1135
|
+
readonly Tin: "TIN";
|
|
1136
|
+
};
|
|
1137
|
+
export type ProjectTreeLayerTypeEnum = typeof ProjectTreeLayerTypeEnum[keyof typeof ProjectTreeLayerTypeEnum];
|
|
1138
|
+
export type ProjectTreeLeaf = {
|
|
1139
|
+
__typename?: 'ProjectTreeLeaf';
|
|
1140
|
+
blLayerId?: Maybe<Scalars['String']['output']>;
|
|
1141
|
+
filePath?: Maybe<Scalars['String']['output']>;
|
|
1142
|
+
id: Scalars['Int']['output'];
|
|
1143
|
+
label: Scalars['String']['output'];
|
|
1144
|
+
labelxpath?: Maybe<Scalars['String']['output']>;
|
|
1145
|
+
layerType: ProjectTreeLayerTypeEnum;
|
|
1146
|
+
lyrName?: Maybe<Scalars['String']['output']>;
|
|
1147
|
+
nodeId?: Maybe<Scalars['ID']['output']>;
|
|
1148
|
+
pid: Scalars['Int']['output'];
|
|
1149
|
+
rsXPath: Scalars['String']['output'];
|
|
1150
|
+
symbology?: Maybe<Scalars['String']['output']>;
|
|
1151
|
+
transparency?: Maybe<Scalars['Int']['output']>;
|
|
1152
|
+
};
|
|
1153
|
+
export type ProjectTreeView = {
|
|
1154
|
+
__typename?: 'ProjectTreeView';
|
|
1155
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1156
|
+
id: Scalars['ID']['output'];
|
|
1157
|
+
layers: Array<ProjectTreeViewLayer>;
|
|
1158
|
+
name: Scalars['String']['output'];
|
|
1159
|
+
};
|
|
1160
|
+
export type ProjectTreeViewLayer = {
|
|
1161
|
+
__typename?: 'ProjectTreeViewLayer';
|
|
1162
|
+
id: Scalars['ID']['output'];
|
|
1163
|
+
visible?: Maybe<Scalars['Boolean']['output']>;
|
|
1164
|
+
};
|
|
1165
|
+
export type ProjectType = DbObj & {
|
|
1166
|
+
__typename?: 'ProjectType';
|
|
1167
|
+
createdBy: User;
|
|
1168
|
+
createdOn: Scalars['DateTime']['output'];
|
|
1169
|
+
description: Scalars['String']['output'];
|
|
1170
|
+
id: Scalars['ID']['output'];
|
|
1171
|
+
logo?: Maybe<Scalars['URL']['output']>;
|
|
1172
|
+
machineName: Scalars['String']['output'];
|
|
1173
|
+
meta: Array<MetaData>;
|
|
1174
|
+
name: Scalars['String']['output'];
|
|
1175
|
+
state: ProjectTypeStateEnum;
|
|
1176
|
+
summary: Scalars['String']['output'];
|
|
1177
|
+
updatedBy: User;
|
|
1178
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
1179
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
1180
|
+
};
|
|
1181
|
+
export type ProjectTypeInput = {
|
|
1182
|
+
clearLogo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1183
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1184
|
+
logoToken?: InputMaybe<Scalars['String']['input']>;
|
|
1185
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1186
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1187
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
1188
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
1189
|
+
};
|
|
1190
|
+
export declare const ProjectTypeStateEnum: {
|
|
1191
|
+
readonly Active: "ACTIVE";
|
|
1192
|
+
readonly Deleted: "DELETED";
|
|
1193
|
+
readonly Suggested: "SUGGESTED";
|
|
1194
|
+
};
|
|
1195
|
+
export type ProjectTypeStateEnum = typeof ProjectTypeStateEnum[keyof typeof ProjectTypeStateEnum];
|
|
1196
|
+
export type ProjectUploadUrl = {
|
|
1197
|
+
__typename?: 'ProjectUploadUrl';
|
|
1198
|
+
fields?: Maybe<Scalars['JSONObject']['output']>;
|
|
1199
|
+
origPath?: Maybe<Scalars['String']['output']>;
|
|
1200
|
+
url: Scalars['String']['output'];
|
|
1201
|
+
};
|
|
1202
|
+
export type ProjectValidation = {
|
|
1203
|
+
__typename?: 'ProjectValidation';
|
|
1204
|
+
errors?: Maybe<Array<Maybe<ProjectValidationError>>>;
|
|
1205
|
+
valid?: Maybe<Scalars['Boolean']['output']>;
|
|
1206
|
+
};
|
|
1207
|
+
export type ProjectValidationError = {
|
|
1208
|
+
__typename?: 'ProjectValidationError';
|
|
1209
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1210
|
+
message: Scalars['String']['output'];
|
|
1211
|
+
severity?: Maybe<SeverityEnum>;
|
|
1212
|
+
};
|
|
1213
|
+
export declare const ProjectVisibilityEnum: {
|
|
1214
|
+
readonly Private: "PRIVATE";
|
|
1215
|
+
readonly Public: "PUBLIC";
|
|
1216
|
+
readonly Secret: "SECRET";
|
|
1217
|
+
};
|
|
1218
|
+
export type ProjectVisibilityEnum = typeof ProjectVisibilityEnum[keyof typeof ProjectVisibilityEnum];
|
|
1219
|
+
export type QaqcEvent = DbObj & {
|
|
1220
|
+
__typename?: 'QAQCEvent';
|
|
1221
|
+
createdBy: User;
|
|
1222
|
+
createdOn: Scalars['DateTime']['output'];
|
|
1223
|
+
datePerformed: Scalars['DateTime']['output'];
|
|
1224
|
+
description: Scalars['String']['output'];
|
|
1225
|
+
id: Scalars['ID']['output'];
|
|
1226
|
+
meta: Array<MetaData>;
|
|
1227
|
+
name: Scalars['String']['output'];
|
|
1228
|
+
performedBy: Scalars['String']['output'];
|
|
1229
|
+
state: QaqcStateEnum;
|
|
1230
|
+
summary: Scalars['String']['output'];
|
|
1231
|
+
supportingLinks?: Maybe<Array<Link>>;
|
|
1232
|
+
updatedBy: User;
|
|
1233
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
1234
|
+
};
|
|
1235
|
+
export type QaqcEventInput = {
|
|
1236
|
+
datePerformed: Scalars['DateTime']['input'];
|
|
1237
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1238
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1239
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1240
|
+
performedBy: Scalars['String']['input'];
|
|
1241
|
+
state: QaqcStateEnum;
|
|
1242
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
1243
|
+
supportingLinks?: InputMaybe<Array<LinkInput>>;
|
|
1244
|
+
};
|
|
1245
|
+
export declare const QaqcStateEnum: {
|
|
1246
|
+
readonly Failed: "FAILED";
|
|
1247
|
+
readonly Passed: "PASSED";
|
|
1248
|
+
readonly Provisional: "PROVISIONAL";
|
|
1249
|
+
};
|
|
1250
|
+
export type QaqcStateEnum = typeof QaqcStateEnum[keyof typeof QaqcStateEnum];
|
|
1251
|
+
export type Query = {
|
|
1252
|
+
__typename?: 'Query';
|
|
1253
|
+
checkUpload?: Maybe<JobStatusObj>;
|
|
1254
|
+
collection?: Maybe<Collection>;
|
|
1255
|
+
dirtyProjects?: Maybe<PaginatedProjects>;
|
|
1256
|
+
downloadFile?: Maybe<FileDownloadMeta>;
|
|
1257
|
+
downloadZip?: Maybe<ZipFileDownloadMeta>;
|
|
1258
|
+
getLayerTiles?: Maybe<TileService>;
|
|
1259
|
+
getWebSymbology?: Maybe<Symbology>;
|
|
1260
|
+
info?: Maybe<WarehouseInfo>;
|
|
1261
|
+
organization?: Maybe<Organization>;
|
|
1262
|
+
profile?: Maybe<Profile>;
|
|
1263
|
+
project?: Maybe<Project>;
|
|
1264
|
+
projectType?: Maybe<ProjectType>;
|
|
1265
|
+
projectTypes?: Maybe<PaginatedProjectTypes>;
|
|
1266
|
+
requestUploadBounds?: Maybe<UploadUrl>;
|
|
1267
|
+
requestUploadImage?: Maybe<UploadUrl>;
|
|
1268
|
+
requestUploadProject?: Maybe<UploadProjectRequest>;
|
|
1269
|
+
requestUploadProjectFilesUrl?: Maybe<Array<Maybe<UploadProjectFileUrls>>>;
|
|
1270
|
+
savedSearch?: Maybe<SavedSearch>;
|
|
1271
|
+
searchCollections: SearchCollectionPagination;
|
|
1272
|
+
searchMapBounds: SearchMapBoundsResult;
|
|
1273
|
+
searchMapClusters: SearchMapClusterResult;
|
|
1274
|
+
searchOrganizations: SearchOrganizationPagination;
|
|
1275
|
+
searchProjects: SearchProjectPagination;
|
|
1276
|
+
searchSavedSearches: SearchSavedSearchPagination;
|
|
1277
|
+
searchSuggest?: Maybe<SearchSuggestionResults>;
|
|
1278
|
+
searchUsers: SearchUserPagination;
|
|
1279
|
+
user?: Maybe<User>;
|
|
1280
|
+
validateProject?: Maybe<ProjectValidation>;
|
|
1281
|
+
};
|
|
1282
|
+
export type QueryCheckUploadArgs = {
|
|
1283
|
+
token: Scalars['String']['input'];
|
|
1284
|
+
};
|
|
1285
|
+
export type QueryCollectionArgs = {
|
|
1286
|
+
id: Scalars['ID']['input'];
|
|
1287
|
+
};
|
|
1288
|
+
export type QueryDirtyProjectsArgs = {
|
|
1289
|
+
limit: Scalars['Int']['input'];
|
|
1290
|
+
offset: Scalars['Int']['input'];
|
|
1291
|
+
};
|
|
1292
|
+
export type QueryDownloadFileArgs = {
|
|
1293
|
+
filePath: Scalars['String']['input'];
|
|
1294
|
+
projectId: Scalars['ID']['input'];
|
|
1295
|
+
};
|
|
1296
|
+
export type QueryDownloadZipArgs = {
|
|
1297
|
+
projectId: Scalars['ID']['input'];
|
|
1298
|
+
};
|
|
1299
|
+
export type QueryGetLayerTilesArgs = {
|
|
1300
|
+
projectId: Scalars['ID']['input'];
|
|
1301
|
+
projectTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
1302
|
+
rsXPath: Scalars['String']['input'];
|
|
1303
|
+
};
|
|
1304
|
+
export type QueryGetWebSymbologyArgs = {
|
|
1305
|
+
isRaster?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1306
|
+
name: Scalars['String']['input'];
|
|
1307
|
+
projectTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
1308
|
+
};
|
|
1309
|
+
export type QueryOrganizationArgs = {
|
|
1310
|
+
id: Scalars['ID']['input'];
|
|
1311
|
+
};
|
|
1312
|
+
export type QueryProjectArgs = {
|
|
1313
|
+
id: Scalars['ID']['input'];
|
|
1314
|
+
};
|
|
1315
|
+
export type QueryProjectTypeArgs = {
|
|
1316
|
+
id: Scalars['String']['input'];
|
|
1317
|
+
};
|
|
1318
|
+
export type QueryProjectTypesArgs = {
|
|
1319
|
+
limit: Scalars['Int']['input'];
|
|
1320
|
+
offset: Scalars['Int']['input'];
|
|
1321
|
+
state?: InputMaybe<ProjectTypeStateEnum>;
|
|
1322
|
+
};
|
|
1323
|
+
export type QueryRequestUploadImageArgs = {
|
|
1324
|
+
entityId: Scalars['ID']['input'];
|
|
1325
|
+
entityType: EntitiesWithImagesEnum;
|
|
1326
|
+
};
|
|
1327
|
+
export type QueryRequestUploadProjectArgs = {
|
|
1328
|
+
etags: Array<Scalars['String']['input']>;
|
|
1329
|
+
files: Array<Scalars['String']['input']>;
|
|
1330
|
+
noDelete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1331
|
+
owner?: InputMaybe<OwnerInput>;
|
|
1332
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
1333
|
+
sizes: Array<Scalars['BigInt']['input']>;
|
|
1334
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1335
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
1336
|
+
visibility?: InputMaybe<ProjectVisibilityEnum>;
|
|
1337
|
+
};
|
|
1338
|
+
export type QueryRequestUploadProjectFilesUrlArgs = {
|
|
1339
|
+
files: Array<Scalars['String']['input']>;
|
|
1340
|
+
token: Scalars['String']['input'];
|
|
1341
|
+
};
|
|
1342
|
+
export type QuerySavedSearchArgs = {
|
|
1343
|
+
id: Scalars['ID']['input'];
|
|
1344
|
+
};
|
|
1345
|
+
export type QuerySearchCollectionsArgs = {
|
|
1346
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1347
|
+
limit: Scalars['Int']['input'];
|
|
1348
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1349
|
+
offset: Scalars['Int']['input'];
|
|
1350
|
+
params: SearchParamsInput;
|
|
1351
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1352
|
+
};
|
|
1353
|
+
export type QuerySearchMapBoundsArgs = {
|
|
1354
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1355
|
+
limit: Scalars['Int']['input'];
|
|
1356
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1357
|
+
params: ProjectSearchParamsInput;
|
|
1358
|
+
};
|
|
1359
|
+
export type QuerySearchMapClustersArgs = {
|
|
1360
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1361
|
+
limit: Scalars['Int']['input'];
|
|
1362
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1363
|
+
params: ProjectSearchParamsInput;
|
|
1364
|
+
precision: Scalars['Int']['input'];
|
|
1365
|
+
};
|
|
1366
|
+
export type QuerySearchOrganizationsArgs = {
|
|
1367
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1368
|
+
limit: Scalars['Int']['input'];
|
|
1369
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1370
|
+
offset: Scalars['Int']['input'];
|
|
1371
|
+
params: SearchParamsInput;
|
|
1372
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1373
|
+
};
|
|
1374
|
+
export type QuerySearchProjectsArgs = {
|
|
1375
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1376
|
+
limit: Scalars['Int']['input'];
|
|
1377
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1378
|
+
offset: Scalars['Int']['input'];
|
|
1379
|
+
params: ProjectSearchParamsInput;
|
|
1380
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1381
|
+
};
|
|
1382
|
+
export type QuerySearchSavedSearchesArgs = {
|
|
1383
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1384
|
+
limit: Scalars['Int']['input'];
|
|
1385
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1386
|
+
offset: Scalars['Int']['input'];
|
|
1387
|
+
params: SearchParamsInput;
|
|
1388
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1389
|
+
};
|
|
1390
|
+
export type QuerySearchSuggestArgs = {
|
|
1391
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1392
|
+
text: Scalars['String']['input'];
|
|
1393
|
+
type?: InputMaybe<StarrableTypesEnum>;
|
|
1394
|
+
};
|
|
1395
|
+
export type QuerySearchUsersArgs = {
|
|
1396
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1397
|
+
limit: Scalars['Int']['input'];
|
|
1398
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1399
|
+
offset: Scalars['Int']['input'];
|
|
1400
|
+
params: SearchParamsInput;
|
|
1401
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1402
|
+
};
|
|
1403
|
+
export type QueryUserArgs = {
|
|
1404
|
+
id: Scalars['ID']['input'];
|
|
1405
|
+
};
|
|
1406
|
+
export type QueryValidateProjectArgs = {
|
|
1407
|
+
files: Array<Scalars['String']['input']>;
|
|
1408
|
+
owner?: InputMaybe<OwnerInput>;
|
|
1409
|
+
xml: Scalars['String']['input'];
|
|
1410
|
+
};
|
|
1411
|
+
export declare const RampTypeEnum: {
|
|
1412
|
+
readonly Discrete: "DISCRETE";
|
|
1413
|
+
readonly Exact: "EXACT";
|
|
1414
|
+
readonly Interpolated: "INTERPOLATED";
|
|
1415
|
+
};
|
|
1416
|
+
export type RampTypeEnum = typeof RampTypeEnum[keyof typeof RampTypeEnum];
|
|
1417
|
+
export type RebuildWebTilesResponse = {
|
|
1418
|
+
__typename?: 'RebuildWebTilesResponse';
|
|
1419
|
+
queued?: Maybe<Array<Scalars['String']['output']>>;
|
|
1420
|
+
skipped?: Maybe<Array<Scalars['String']['output']>>;
|
|
1421
|
+
};
|
|
1422
|
+
export type SavedSearch = DbObj & HasOwner & HasStar & HasTags & {
|
|
1423
|
+
__typename?: 'SavedSearch';
|
|
1424
|
+
createdBy: User;
|
|
1425
|
+
createdOn: Scalars['DateTime']['output'];
|
|
1426
|
+
defaultSort?: Maybe<Array<SearchSortEnum>>;
|
|
1427
|
+
description: Scalars['String']['output'];
|
|
1428
|
+
id: Scalars['ID']['output'];
|
|
1429
|
+
meta: Array<MetaData>;
|
|
1430
|
+
name: Scalars['String']['output'];
|
|
1431
|
+
ownedBy: Owner;
|
|
1432
|
+
permissions: ObjectPermissions;
|
|
1433
|
+
projects: SearchProjectPagination;
|
|
1434
|
+
searchParams: ProjectSearchParams;
|
|
1435
|
+
starred: Scalars['Boolean']['output'];
|
|
1436
|
+
starredCount: Scalars['Int']['output'];
|
|
1437
|
+
summary: Scalars['String']['output'];
|
|
1438
|
+
tags: Array<Scalars['String']['output']>;
|
|
1439
|
+
updatedBy: User;
|
|
1440
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
1441
|
+
visibility: ProjectGroupVisibilityEnum;
|
|
1442
|
+
};
|
|
1443
|
+
export type SavedSearchProjectsArgs = {
|
|
1444
|
+
limit: Scalars['Int']['input'];
|
|
1445
|
+
offset: Scalars['Int']['input'];
|
|
1446
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1447
|
+
};
|
|
1448
|
+
export type SavedSearchInput = {
|
|
1449
|
+
defaultSort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1450
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1451
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1452
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1453
|
+
searchParams?: InputMaybe<ProjectSearchParamsInput>;
|
|
1454
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
1455
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1456
|
+
visibility?: InputMaybe<ProjectGroupVisibilityEnum>;
|
|
1457
|
+
};
|
|
1458
|
+
export type SearchCollection = SearchResult & {
|
|
1459
|
+
__typename?: 'SearchCollection';
|
|
1460
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1461
|
+
item: Collection;
|
|
1462
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1463
|
+
};
|
|
1464
|
+
export type SearchCollectionPagination = Pagination & SearchPagination & {
|
|
1465
|
+
__typename?: 'SearchCollectionPagination';
|
|
1466
|
+
limit: Scalars['Int']['output'];
|
|
1467
|
+
offset: Scalars['Int']['output'];
|
|
1468
|
+
results: Array<SearchCollection>;
|
|
1469
|
+
stats?: Maybe<SearchStats>;
|
|
1470
|
+
total: Scalars['Int']['output'];
|
|
1471
|
+
};
|
|
1472
|
+
export type SearchDataset = SearchResult & {
|
|
1473
|
+
__typename?: 'SearchDataset';
|
|
1474
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1475
|
+
item: Dataset;
|
|
1476
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1477
|
+
};
|
|
1478
|
+
export type SearchDatasetPagination = Pagination & SearchPagination & {
|
|
1479
|
+
__typename?: 'SearchDatasetPagination';
|
|
1480
|
+
limit: Scalars['Int']['output'];
|
|
1481
|
+
offset: Scalars['Int']['output'];
|
|
1482
|
+
results: Array<SearchDataset>;
|
|
1483
|
+
stats?: Maybe<SearchStats>;
|
|
1484
|
+
total: Scalars['Int']['output'];
|
|
1485
|
+
};
|
|
1486
|
+
export type SearchDate = {
|
|
1487
|
+
__typename?: 'SearchDate';
|
|
1488
|
+
from?: Maybe<Scalars['DateTime']['output']>;
|
|
1489
|
+
to?: Maybe<Scalars['DateTime']['output']>;
|
|
1490
|
+
};
|
|
1491
|
+
export type SearchDateInput = {
|
|
1492
|
+
from?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1493
|
+
to?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1494
|
+
};
|
|
1495
|
+
export type SearchMapBoundsItem = {
|
|
1496
|
+
__typename?: 'SearchMapBoundsItem';
|
|
1497
|
+
bounds: ProjectBounds;
|
|
1498
|
+
clusters: Array<MapCluster>;
|
|
1499
|
+
projectCount: Scalars['Int']['output'];
|
|
1500
|
+
};
|
|
1501
|
+
export type SearchMapBoundsResult = {
|
|
1502
|
+
__typename?: 'SearchMapBoundsResult';
|
|
1503
|
+
bounds: Array<SearchMapBoundsItem>;
|
|
1504
|
+
remaining: Scalars['Int']['output'];
|
|
1505
|
+
};
|
|
1506
|
+
export type SearchMapClusterResult = {
|
|
1507
|
+
__typename?: 'SearchMapClusterResult';
|
|
1508
|
+
clusters: Array<MapCluster>;
|
|
1509
|
+
remaining: Scalars['Int']['output'];
|
|
1510
|
+
};
|
|
1511
|
+
export type SearchMeta = {
|
|
1512
|
+
__typename?: 'SearchMeta';
|
|
1513
|
+
maxScore?: Maybe<Scalars['Float']['output']>;
|
|
1514
|
+
metaDataBuckets: Scalars['JSONObject']['output'];
|
|
1515
|
+
searchTime?: Maybe<Scalars['Float']['output']>;
|
|
1516
|
+
};
|
|
1517
|
+
export type SearchMetaInterface = {
|
|
1518
|
+
maxScore?: Maybe<Scalars['Float']['output']>;
|
|
1519
|
+
metaDataBuckets: Scalars['JSONObject']['output'];
|
|
1520
|
+
searchTime?: Maybe<Scalars['Float']['output']>;
|
|
1521
|
+
};
|
|
1522
|
+
export type SearchNotification = SearchResult & {
|
|
1523
|
+
__typename?: 'SearchNotification';
|
|
1524
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1525
|
+
item: Notification;
|
|
1526
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1527
|
+
};
|
|
1528
|
+
export type SearchNotificationPagination = Pagination & SearchPagination & {
|
|
1529
|
+
__typename?: 'SearchNotificationPagination';
|
|
1530
|
+
limit: Scalars['Int']['output'];
|
|
1531
|
+
offset: Scalars['Int']['output'];
|
|
1532
|
+
results: Array<SearchNotification>;
|
|
1533
|
+
stats?: Maybe<SearchStats>;
|
|
1534
|
+
total: Scalars['Int']['output'];
|
|
1535
|
+
};
|
|
1536
|
+
export type SearchOrganization = SearchResult & {
|
|
1537
|
+
__typename?: 'SearchOrganization';
|
|
1538
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1539
|
+
item: Organization;
|
|
1540
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1541
|
+
};
|
|
1542
|
+
export type SearchOrganizationInvite = SearchResult & {
|
|
1543
|
+
__typename?: 'SearchOrganizationInvite';
|
|
1544
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1545
|
+
item: OrganizationInvite;
|
|
1546
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1547
|
+
};
|
|
1548
|
+
export type SearchOrganizationInvitePagination = Pagination & SearchPagination & {
|
|
1549
|
+
__typename?: 'SearchOrganizationInvitePagination';
|
|
1550
|
+
limit: Scalars['Int']['output'];
|
|
1551
|
+
offset: Scalars['Int']['output'];
|
|
1552
|
+
results: Array<SearchOrganizationInvite>;
|
|
1553
|
+
stats?: Maybe<SearchStats>;
|
|
1554
|
+
total: Scalars['Int']['output'];
|
|
1555
|
+
};
|
|
1556
|
+
export type SearchOrganizationPagination = Pagination & SearchPagination & {
|
|
1557
|
+
__typename?: 'SearchOrganizationPagination';
|
|
1558
|
+
limit: Scalars['Int']['output'];
|
|
1559
|
+
offset: Scalars['Int']['output'];
|
|
1560
|
+
results: Array<SearchOrganization>;
|
|
1561
|
+
stats?: Maybe<SearchStats>;
|
|
1562
|
+
total: Scalars['Int']['output'];
|
|
1563
|
+
};
|
|
1564
|
+
export type SearchOwner = {
|
|
1565
|
+
__typename?: 'SearchOwner';
|
|
1566
|
+
id: Scalars['String']['output'];
|
|
1567
|
+
type: OwnerInputTypesEnum;
|
|
1568
|
+
};
|
|
1569
|
+
export type SearchPagination = {
|
|
1570
|
+
limit: Scalars['Int']['output'];
|
|
1571
|
+
offset: Scalars['Int']['output'];
|
|
1572
|
+
stats?: Maybe<SearchStats>;
|
|
1573
|
+
total: Scalars['Int']['output'];
|
|
1574
|
+
};
|
|
1575
|
+
export type SearchParamsInput = {
|
|
1576
|
+
createdOn?: InputMaybe<SearchDateInput>;
|
|
1577
|
+
editableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1578
|
+
keywords?: InputMaybe<Scalars['String']['input']>;
|
|
1579
|
+
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1580
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1581
|
+
ownedBy?: InputMaybe<OwnerInput>;
|
|
1582
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1583
|
+
updatedOn?: InputMaybe<SearchDateInput>;
|
|
1584
|
+
};
|
|
1585
|
+
export type SearchProject = SearchResult & {
|
|
1586
|
+
__typename?: 'SearchProject';
|
|
1587
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1588
|
+
item: Project;
|
|
1589
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1590
|
+
};
|
|
1591
|
+
export type SearchProjectPagination = Pagination & SearchPagination & {
|
|
1592
|
+
__typename?: 'SearchProjectPagination';
|
|
1593
|
+
limit: Scalars['Int']['output'];
|
|
1594
|
+
offset: Scalars['Int']['output'];
|
|
1595
|
+
results: Array<SearchProject>;
|
|
1596
|
+
stats?: Maybe<SearchStats>;
|
|
1597
|
+
total: Scalars['Int']['output'];
|
|
1598
|
+
};
|
|
1599
|
+
export type SearchProjectType = SearchResult & {
|
|
1600
|
+
__typename?: 'SearchProjectType';
|
|
1601
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1602
|
+
item: ProjectType;
|
|
1603
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1604
|
+
};
|
|
1605
|
+
export type SearchProjectTypePagination = Pagination & SearchPagination & {
|
|
1606
|
+
__typename?: 'SearchProjectTypePagination';
|
|
1607
|
+
limit: Scalars['Int']['output'];
|
|
1608
|
+
offset: Scalars['Int']['output'];
|
|
1609
|
+
results: Array<SearchProjectType>;
|
|
1610
|
+
stats?: Maybe<SearchStats>;
|
|
1611
|
+
total: Scalars['Int']['output'];
|
|
1612
|
+
};
|
|
1613
|
+
export type SearchQaqcEvent = SearchResult & {
|
|
1614
|
+
__typename?: 'SearchQAQCEvent';
|
|
1615
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1616
|
+
item: QaqcEvent;
|
|
1617
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1618
|
+
};
|
|
1619
|
+
export type SearchQaqcEventPagination = Pagination & SearchPagination & {
|
|
1620
|
+
__typename?: 'SearchQAQCEventPagination';
|
|
1621
|
+
limit: Scalars['Int']['output'];
|
|
1622
|
+
offset: Scalars['Int']['output'];
|
|
1623
|
+
results: Array<SearchQaqcEvent>;
|
|
1624
|
+
stats?: Maybe<SearchStats>;
|
|
1625
|
+
total: Scalars['Int']['output'];
|
|
1626
|
+
};
|
|
1627
|
+
export type SearchResult = {
|
|
1628
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1629
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1630
|
+
};
|
|
1631
|
+
export type SearchResultMeta = {
|
|
1632
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1633
|
+
score: Scalars['Float']['output'];
|
|
1634
|
+
};
|
|
1635
|
+
export type SearchSavedSearch = SearchResult & {
|
|
1636
|
+
__typename?: 'SearchSavedSearch';
|
|
1637
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1638
|
+
item: SavedSearch;
|
|
1639
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1640
|
+
};
|
|
1641
|
+
export type SearchSavedSearchPagination = Pagination & SearchPagination & {
|
|
1642
|
+
__typename?: 'SearchSavedSearchPagination';
|
|
1643
|
+
limit: Scalars['Int']['output'];
|
|
1644
|
+
offset: Scalars['Int']['output'];
|
|
1645
|
+
results: Array<SearchSavedSearch>;
|
|
1646
|
+
stats?: Maybe<SearchStats>;
|
|
1647
|
+
total: Scalars['Int']['output'];
|
|
1648
|
+
};
|
|
1649
|
+
export declare const SearchSortEnum: {
|
|
1650
|
+
readonly AreaDesc: "AREA_DESC";
|
|
1651
|
+
readonly DateCreatedAsc: "DATE_CREATED_ASC";
|
|
1652
|
+
readonly DateCreatedDesc: "DATE_CREATED_DESC";
|
|
1653
|
+
readonly DateUpdatedAsc: "DATE_UPDATED_ASC";
|
|
1654
|
+
readonly DateUpdatedDesc: "DATE_UPDATED_DESC";
|
|
1655
|
+
readonly Mine: "MINE";
|
|
1656
|
+
readonly NameAsc: "NAME_ASC";
|
|
1657
|
+
readonly NameDesc: "NAME_DESC";
|
|
1658
|
+
};
|
|
1659
|
+
export type SearchSortEnum = typeof SearchSortEnum[keyof typeof SearchSortEnum];
|
|
1660
|
+
export type SearchStats = ProjectSearchMeta | SearchMeta;
|
|
1661
|
+
export type SearchSuggestionResult = SearchResult & {
|
|
1662
|
+
__typename?: 'SearchSuggestionResult';
|
|
1663
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1664
|
+
item?: Maybe<DbObj>;
|
|
1665
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1666
|
+
};
|
|
1667
|
+
export type SearchSuggestionResults = {
|
|
1668
|
+
__typename?: 'SearchSuggestionResults';
|
|
1669
|
+
metaKey: Array<SearchSuggestions>;
|
|
1670
|
+
metaValues: Array<SearchSuggestions>;
|
|
1671
|
+
results: Array<SearchSuggestionResult>;
|
|
1672
|
+
tags: Array<SearchSuggestions>;
|
|
1673
|
+
};
|
|
1674
|
+
export type SearchSuggestions = {
|
|
1675
|
+
__typename?: 'SearchSuggestions';
|
|
1676
|
+
freq?: Maybe<Scalars['Int']['output']>;
|
|
1677
|
+
score: Scalars['Float']['output'];
|
|
1678
|
+
text: Scalars['String']['output'];
|
|
1679
|
+
};
|
|
1680
|
+
export type SearchUser = SearchResult & {
|
|
1681
|
+
__typename?: 'SearchUser';
|
|
1682
|
+
highlights?: Maybe<Scalars['JSONObject']['output']>;
|
|
1683
|
+
item: User;
|
|
1684
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
1685
|
+
};
|
|
1686
|
+
export type SearchUserPagination = Pagination & SearchPagination & {
|
|
1687
|
+
__typename?: 'SearchUserPagination';
|
|
1688
|
+
limit: Scalars['Int']['output'];
|
|
1689
|
+
offset: Scalars['Int']['output'];
|
|
1690
|
+
results: Array<SearchUser>;
|
|
1691
|
+
stats?: Maybe<SearchStats>;
|
|
1692
|
+
total: Scalars['Int']['output'];
|
|
1693
|
+
};
|
|
1694
|
+
export declare const SearchableTypesEnum: {
|
|
1695
|
+
readonly Collection: "COLLECTION";
|
|
1696
|
+
readonly Organization: "ORGANIZATION";
|
|
1697
|
+
readonly Project: "PROJECT";
|
|
1698
|
+
readonly SavedSearch: "SAVED_SEARCH";
|
|
1699
|
+
readonly User: "USER";
|
|
1700
|
+
};
|
|
1701
|
+
export type SearchableTypesEnum = typeof SearchableTypesEnum[keyof typeof SearchableTypesEnum];
|
|
1702
|
+
export declare const SeverityEnum: {
|
|
1703
|
+
readonly Critical: "CRITICAL";
|
|
1704
|
+
readonly Debug: "DEBUG";
|
|
1705
|
+
readonly Error: "ERROR";
|
|
1706
|
+
readonly Info: "INFO";
|
|
1707
|
+
readonly Warning: "WARNING";
|
|
1708
|
+
};
|
|
1709
|
+
export type SeverityEnum = typeof SeverityEnum[keyof typeof SeverityEnum];
|
|
1710
|
+
export type SocialLinks = {
|
|
1711
|
+
__typename?: 'SocialLinks';
|
|
1712
|
+
facebook?: Maybe<Scalars['URL']['output']>;
|
|
1713
|
+
instagram?: Maybe<Scalars['URL']['output']>;
|
|
1714
|
+
linkedIn?: Maybe<Scalars['URL']['output']>;
|
|
1715
|
+
tiktok?: Maybe<Scalars['URL']['output']>;
|
|
1716
|
+
twitter?: Maybe<Scalars['URL']['output']>;
|
|
1717
|
+
website?: Maybe<Scalars['URL']['output']>;
|
|
1718
|
+
};
|
|
1719
|
+
export type SocialLinksInput = {
|
|
1720
|
+
facebook?: InputMaybe<Scalars['String']['input']>;
|
|
1721
|
+
instagram?: InputMaybe<Scalars['String']['input']>;
|
|
1722
|
+
linkedIn?: InputMaybe<Scalars['String']['input']>;
|
|
1723
|
+
tiktok?: InputMaybe<Scalars['String']['input']>;
|
|
1724
|
+
twitter?: InputMaybe<Scalars['String']['input']>;
|
|
1725
|
+
website?: InputMaybe<Scalars['URL']['input']>;
|
|
1726
|
+
};
|
|
1727
|
+
export declare const StarrableTypesEnum: {
|
|
1728
|
+
readonly Collection: "COLLECTION";
|
|
1729
|
+
readonly Organization: "ORGANIZATION";
|
|
1730
|
+
readonly Project: "PROJECT";
|
|
1731
|
+
readonly SavedSearch: "SAVED_SEARCH";
|
|
1732
|
+
readonly User: "USER";
|
|
1733
|
+
};
|
|
1734
|
+
export type StarrableTypesEnum = typeof StarrableTypesEnum[keyof typeof StarrableTypesEnum];
|
|
1735
|
+
export type Symbology = {
|
|
1736
|
+
__typename?: 'Symbology';
|
|
1737
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
1738
|
+
legend?: Maybe<Array<Array<Scalars['String']['output']>>>;
|
|
1739
|
+
mapboxJson?: Maybe<Scalars['JSONObject']['output']>;
|
|
1740
|
+
name: Scalars['String']['output'];
|
|
1741
|
+
rampType?: Maybe<RampTypeEnum>;
|
|
1742
|
+
state: SymbologyStateEnum;
|
|
1743
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
1744
|
+
};
|
|
1745
|
+
export declare const SymbologyStateEnum: {
|
|
1746
|
+
readonly Error: "ERROR";
|
|
1747
|
+
readonly Fetching: "FETCHING";
|
|
1748
|
+
readonly Found: "FOUND";
|
|
1749
|
+
readonly Missing: "MISSING";
|
|
1750
|
+
readonly NotApplicable: "NOT_APPLICABLE";
|
|
1751
|
+
readonly Unknown: "UNKNOWN";
|
|
1752
|
+
};
|
|
1753
|
+
export type SymbologyStateEnum = typeof SymbologyStateEnum[keyof typeof SymbologyStateEnum];
|
|
1754
|
+
export type TileIndexOriginFile = FileDownloadMetaInterface & {
|
|
1755
|
+
__typename?: 'TileIndexOriginFile';
|
|
1756
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
1757
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
1758
|
+
localPath?: Maybe<Scalars['String']['output']>;
|
|
1759
|
+
size?: Maybe<Scalars['BigInt']['output']>;
|
|
1760
|
+
};
|
|
1761
|
+
export type TileService = {
|
|
1762
|
+
__typename?: 'TileService';
|
|
1763
|
+
bounds?: Maybe<Array<Maybe<Scalars['Float']['output']>>>;
|
|
1764
|
+
duration?: Maybe<Scalars['Float']['output']>;
|
|
1765
|
+
errorMsg?: Maybe<Scalars['String']['output']>;
|
|
1766
|
+
format?: Maybe<Scalars['String']['output']>;
|
|
1767
|
+
indexUrl?: Maybe<Scalars['String']['output']>;
|
|
1768
|
+
lastState?: Maybe<Scalars['DateTime']['output']>;
|
|
1769
|
+
layers?: Maybe<Array<Scalars['String']['output']>>;
|
|
1770
|
+
localPath?: Maybe<Scalars['String']['output']>;
|
|
1771
|
+
maxZoom?: Maybe<Scalars['Int']['output']>;
|
|
1772
|
+
minZoom?: Maybe<Scalars['Int']['output']>;
|
|
1773
|
+
numFiles?: Maybe<Scalars['Int']['output']>;
|
|
1774
|
+
originFile?: Maybe<TileIndexOriginFile>;
|
|
1775
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
1776
|
+
rasterStats?: Maybe<Scalars['JSONObject']['output']>;
|
|
1777
|
+
rsXPath: Scalars['String']['output'];
|
|
1778
|
+
started?: Maybe<Scalars['DateTime']['output']>;
|
|
1779
|
+
state: TilingStateEnum;
|
|
1780
|
+
symbologies?: Maybe<Array<Scalars['String']['output']>>;
|
|
1781
|
+
tileType?: Maybe<TileTypesEnum>;
|
|
1782
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
1783
|
+
};
|
|
1784
|
+
export declare const TileTypesEnum: {
|
|
1785
|
+
readonly Html: "HTML";
|
|
1786
|
+
readonly Raster: "RASTER";
|
|
1787
|
+
readonly VectorGpkg: "VECTOR_GPKG";
|
|
1788
|
+
readonly VectorShp: "VECTOR_SHP";
|
|
1789
|
+
};
|
|
1790
|
+
export type TileTypesEnum = typeof TileTypesEnum[keyof typeof TileTypesEnum];
|
|
1791
|
+
export declare const TilingStateEnum: {
|
|
1792
|
+
readonly Creating: "CREATING";
|
|
1793
|
+
readonly Fetching: "FETCHING";
|
|
1794
|
+
readonly FetchError: "FETCH_ERROR";
|
|
1795
|
+
readonly IndexNotFound: "INDEX_NOT_FOUND";
|
|
1796
|
+
readonly LayerNotFound: "LAYER_NOT_FOUND";
|
|
1797
|
+
readonly NotApplicable: "NOT_APPLICABLE";
|
|
1798
|
+
readonly NoGeometries: "NO_GEOMETRIES";
|
|
1799
|
+
readonly Queued: "QUEUED";
|
|
1800
|
+
readonly Success: "SUCCESS";
|
|
1801
|
+
readonly TilingError: "TILING_ERROR";
|
|
1802
|
+
readonly Timeout: "TIMEOUT";
|
|
1803
|
+
readonly Unknown: "UNKNOWN";
|
|
1804
|
+
};
|
|
1805
|
+
export type TilingStateEnum = typeof TilingStateEnum[keyof typeof TilingStateEnum];
|
|
1806
|
+
export type Transfer = DbSimpleObj & {
|
|
1807
|
+
__typename?: 'Transfer';
|
|
1808
|
+
createdBy: User;
|
|
1809
|
+
createdOn: Scalars['DateTime']['output'];
|
|
1810
|
+
id: Scalars['ID']['output'];
|
|
1811
|
+
includeProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
1812
|
+
note: Scalars['String']['output'];
|
|
1813
|
+
state: TransferStateEnum;
|
|
1814
|
+
transferObjects: Array<TransferObject>;
|
|
1815
|
+
transferTo: Owner;
|
|
1816
|
+
transferType: TransferrableTypesEnum;
|
|
1817
|
+
updatedBy: User;
|
|
1818
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
1819
|
+
};
|
|
1820
|
+
export type TransferEntityItemsInput = {
|
|
1821
|
+
note: Scalars['String']['input'];
|
|
1822
|
+
transferTo: OwnerInput;
|
|
1823
|
+
};
|
|
1824
|
+
export type TransferInput = {
|
|
1825
|
+
includeProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1826
|
+
note: Scalars['String']['input'];
|
|
1827
|
+
objectIds: Array<Scalars['ID']['input']>;
|
|
1828
|
+
transferTo: OwnerInput;
|
|
1829
|
+
transferType: TransferrableTypesEnum;
|
|
1830
|
+
};
|
|
1831
|
+
export type TransferObject = Collection | Organization | Project | User;
|
|
1832
|
+
export declare const TransferStateEnum: {
|
|
1833
|
+
readonly Accepted: "ACCEPTED";
|
|
1834
|
+
readonly Expired: "EXPIRED";
|
|
1835
|
+
readonly InProgress: "IN_PROGRESS";
|
|
1836
|
+
readonly Proposed: "PROPOSED";
|
|
1837
|
+
readonly Rejected: "REJECTED";
|
|
1838
|
+
};
|
|
1839
|
+
export type TransferStateEnum = typeof TransferStateEnum[keyof typeof TransferStateEnum];
|
|
1840
|
+
export declare const TransferrableTypesEnum: {
|
|
1841
|
+
readonly Collection: "COLLECTION";
|
|
1842
|
+
readonly Organization: "ORGANIZATION";
|
|
1843
|
+
readonly Project: "PROJECT";
|
|
1844
|
+
readonly User: "USER";
|
|
1845
|
+
};
|
|
1846
|
+
export type TransferrableTypesEnum = typeof TransferrableTypesEnum[keyof typeof TransferrableTypesEnum];
|
|
1847
|
+
export type UploadProjectFileUrls = {
|
|
1848
|
+
__typename?: 'UploadProjectFileUrls';
|
|
1849
|
+
relPath: Scalars['String']['output'];
|
|
1850
|
+
urls?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1851
|
+
};
|
|
1852
|
+
export type UploadProjectRequest = {
|
|
1853
|
+
__typename?: 'UploadProjectRequest';
|
|
1854
|
+
create: Array<Scalars['String']['output']>;
|
|
1855
|
+
delete: Array<Scalars['String']['output']>;
|
|
1856
|
+
newId?: Maybe<Scalars['String']['output']>;
|
|
1857
|
+
token: Scalars['String']['output'];
|
|
1858
|
+
update: Array<Scalars['String']['output']>;
|
|
1859
|
+
};
|
|
1860
|
+
export type UploadUrl = {
|
|
1861
|
+
__typename?: 'UploadUrl';
|
|
1862
|
+
fields: Scalars['JSONObject']['output'];
|
|
1863
|
+
token: Scalars['String']['output'];
|
|
1864
|
+
url: Scalars['String']['output'];
|
|
1865
|
+
};
|
|
1866
|
+
export type User = DbObj & UserInterface & {
|
|
1867
|
+
__typename?: 'User';
|
|
1868
|
+
affiliations: Array<Maybe<UserAffiliation>>;
|
|
1869
|
+
avatar?: Maybe<Scalars['URL']['output']>;
|
|
1870
|
+
collections: PaginatedCollections;
|
|
1871
|
+
createdBy: User;
|
|
1872
|
+
createdOn: Scalars['DateTime']['output'];
|
|
1873
|
+
description: Scalars['String']['output'];
|
|
1874
|
+
id: Scalars['ID']['output'];
|
|
1875
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
1876
|
+
lastLogin: Scalars['DateTime']['output'];
|
|
1877
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
1878
|
+
meta: Array<MetaData>;
|
|
1879
|
+
name: Scalars['String']['output'];
|
|
1880
|
+
organizations: PaginatedOrganizations;
|
|
1881
|
+
projects: PaginatedProjects;
|
|
1882
|
+
savedSearches: PaginatedSavedSearches;
|
|
1883
|
+
social: SocialLinks;
|
|
1884
|
+
starred: Scalars['Boolean']['output'];
|
|
1885
|
+
starredCount: Scalars['Int']['output'];
|
|
1886
|
+
summary: Scalars['String']['output'];
|
|
1887
|
+
updatedBy: User;
|
|
1888
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
1889
|
+
};
|
|
1890
|
+
export type UserCollectionsArgs = {
|
|
1891
|
+
limit: Scalars['Int']['input'];
|
|
1892
|
+
offset: Scalars['Int']['input'];
|
|
1893
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1894
|
+
};
|
|
1895
|
+
export type UserOrganizationsArgs = {
|
|
1896
|
+
limit: Scalars['Int']['input'];
|
|
1897
|
+
offset: Scalars['Int']['input'];
|
|
1898
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1899
|
+
};
|
|
1900
|
+
export type UserProjectsArgs = {
|
|
1901
|
+
limit: Scalars['Int']['input'];
|
|
1902
|
+
offset: Scalars['Int']['input'];
|
|
1903
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1904
|
+
};
|
|
1905
|
+
export type UserSavedSearchesArgs = {
|
|
1906
|
+
limit: Scalars['Int']['input'];
|
|
1907
|
+
offset: Scalars['Int']['input'];
|
|
1908
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1909
|
+
};
|
|
1910
|
+
export type UserAffiliation = {
|
|
1911
|
+
__typename?: 'UserAffiliation';
|
|
1912
|
+
affiliationRole?: Maybe<Scalars['String']['output']>;
|
|
1913
|
+
name: Scalars['String']['output'];
|
|
1914
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
1915
|
+
};
|
|
1916
|
+
export type UserAffiliationInput = {
|
|
1917
|
+
affiliationRole?: InputMaybe<Scalars['String']['input']>;
|
|
1918
|
+
name: Scalars['String']['input'];
|
|
1919
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
1920
|
+
};
|
|
1921
|
+
export type UserInterface = {
|
|
1922
|
+
affiliations: Array<Maybe<UserAffiliation>>;
|
|
1923
|
+
avatar?: Maybe<Scalars['URL']['output']>;
|
|
1924
|
+
collections: PaginatedCollections;
|
|
1925
|
+
createdBy: User;
|
|
1926
|
+
createdOn: Scalars['DateTime']['output'];
|
|
1927
|
+
description: Scalars['String']['output'];
|
|
1928
|
+
id: Scalars['ID']['output'];
|
|
1929
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
1930
|
+
lastLogin: Scalars['DateTime']['output'];
|
|
1931
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
1932
|
+
meta: Array<MetaData>;
|
|
1933
|
+
name: Scalars['String']['output'];
|
|
1934
|
+
projects: PaginatedProjects;
|
|
1935
|
+
savedSearches: PaginatedSavedSearches;
|
|
1936
|
+
social: SocialLinks;
|
|
1937
|
+
starred: Scalars['Boolean']['output'];
|
|
1938
|
+
starredCount: Scalars['Int']['output'];
|
|
1939
|
+
summary: Scalars['String']['output'];
|
|
1940
|
+
updatedBy: User;
|
|
1941
|
+
updatedOn: Scalars['DateTime']['output'];
|
|
1942
|
+
};
|
|
1943
|
+
export type UserInterfaceCollectionsArgs = {
|
|
1944
|
+
limit: Scalars['Int']['input'];
|
|
1945
|
+
offset: Scalars['Int']['input'];
|
|
1946
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1947
|
+
};
|
|
1948
|
+
export type UserInterfaceProjectsArgs = {
|
|
1949
|
+
limit: Scalars['Int']['input'];
|
|
1950
|
+
offset: Scalars['Int']['input'];
|
|
1951
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1952
|
+
};
|
|
1953
|
+
export type UserInterfaceSavedSearchesArgs = {
|
|
1954
|
+
limit: Scalars['Int']['input'];
|
|
1955
|
+
offset: Scalars['Int']['input'];
|
|
1956
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1957
|
+
};
|
|
1958
|
+
export type WarehouseInfo = {
|
|
1959
|
+
__typename?: 'WarehouseInfo';
|
|
1960
|
+
api?: Maybe<Scalars['String']['output']>;
|
|
1961
|
+
businessLogic?: Maybe<Scalars['String']['output']>;
|
|
1962
|
+
projectFile?: Maybe<Scalars['String']['output']>;
|
|
1963
|
+
warehouse?: Maybe<Scalars['String']['output']>;
|
|
1964
|
+
xml?: Maybe<Scalars['String']['output']>;
|
|
1965
|
+
xsd?: Maybe<Scalars['String']['output']>;
|
|
1966
|
+
};
|
|
1967
|
+
export type WatcherOutput = {
|
|
1968
|
+
__typename?: 'WatcherOutput';
|
|
1969
|
+
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1970
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
1971
|
+
results?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1972
|
+
};
|
|
1973
|
+
export type ZipFileDownloadMeta = FileDownloadMetaInterface & {
|
|
1974
|
+
__typename?: 'ZipFileDownloadMeta';
|
|
1975
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
1976
|
+
downloadUrl?: Maybe<Scalars['String']['output']>;
|
|
1977
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
1978
|
+
localPath?: Maybe<Scalars['String']['output']>;
|
|
1979
|
+
pendingSince?: Maybe<Scalars['DateTime']['output']>;
|
|
1980
|
+
progress?: Maybe<Scalars['Int']['output']>;
|
|
1981
|
+
size?: Maybe<Scalars['BigInt']['output']>;
|
|
1982
|
+
};
|
|
1983
|
+
export type AdminReIndexOpenSearchMutationVariables = Exact<{
|
|
1984
|
+
paginationToken?: InputMaybe<Scalars['String']['input']>;
|
|
1985
|
+
}>;
|
|
1986
|
+
export type AdminReIndexOpenSearchMutation = {
|
|
1987
|
+
__typename?: 'Mutation';
|
|
1988
|
+
adminReIndexOpenSearch?: string | null;
|
|
1989
|
+
};
|
|
1990
|
+
export type AdminRecreateOpenSearchMutationVariables = Exact<{
|
|
1991
|
+
[key: string]: never;
|
|
1992
|
+
}>;
|
|
1993
|
+
export type AdminRecreateOpenSearchMutation = {
|
|
1994
|
+
__typename?: 'Mutation';
|
|
1995
|
+
adminRecreateOpenSearch?: boolean | null;
|
|
1996
|
+
};
|
|
1997
|
+
export type DeleteProjectMutationVariables = Exact<{
|
|
1998
|
+
projectId: Scalars['ID']['input'];
|
|
1999
|
+
options?: InputMaybe<EntityDeletionOptions>;
|
|
2000
|
+
}>;
|
|
2001
|
+
export type DeleteProjectMutation = {
|
|
2002
|
+
__typename?: 'Mutation';
|
|
2003
|
+
deleteProject?: {
|
|
2004
|
+
__typename?: 'MutationResult';
|
|
2005
|
+
error?: string | null;
|
|
2006
|
+
ids?: Array<string> | null;
|
|
2007
|
+
message?: string | null;
|
|
2008
|
+
success: boolean;
|
|
2009
|
+
} | null;
|
|
2010
|
+
};
|
|
2011
|
+
export type DirtyProjectsQueryVariables = Exact<{
|
|
2012
|
+
limit: Scalars['Int']['input'];
|
|
2013
|
+
offset: Scalars['Int']['input'];
|
|
2014
|
+
}>;
|
|
2015
|
+
export type DirtyProjectsQuery = {
|
|
2016
|
+
__typename?: 'Query';
|
|
2017
|
+
dirtyProjects?: {
|
|
2018
|
+
__typename?: 'PaginatedProjects';
|
|
2019
|
+
limit: number;
|
|
2020
|
+
offset: number;
|
|
2021
|
+
total: number;
|
|
2022
|
+
items: Array<{
|
|
2023
|
+
__typename?: 'Project';
|
|
2024
|
+
id: string;
|
|
2025
|
+
name: string;
|
|
2026
|
+
description: string;
|
|
2027
|
+
citation?: string | null;
|
|
2028
|
+
summary: string;
|
|
2029
|
+
updatedOn: string;
|
|
2030
|
+
createdOn: string;
|
|
2031
|
+
deleted: boolean;
|
|
2032
|
+
dirty: boolean;
|
|
2033
|
+
ref: string;
|
|
2034
|
+
bounds?: {
|
|
2035
|
+
__typename?: 'ProjectBounds';
|
|
2036
|
+
id: string;
|
|
2037
|
+
polygonUrl: string;
|
|
2038
|
+
} | null;
|
|
2039
|
+
meta: Array<{
|
|
2040
|
+
__typename?: 'MetaData';
|
|
2041
|
+
ext?: MetaDataExtEnum | null;
|
|
2042
|
+
key: string;
|
|
2043
|
+
value: string;
|
|
2044
|
+
locked?: boolean | null;
|
|
2045
|
+
type?: MetaDataTypeEnum | null;
|
|
2046
|
+
}>;
|
|
2047
|
+
}>;
|
|
2048
|
+
} | null;
|
|
2049
|
+
};
|
|
2050
|
+
export type GetDirtyProjectQueryVariables = Exact<{
|
|
2051
|
+
projectId: Scalars['ID']['input'];
|
|
2052
|
+
}>;
|
|
2053
|
+
export type GetDirtyProjectQuery = {
|
|
2054
|
+
__typename?: 'Query';
|
|
2055
|
+
project?: {
|
|
2056
|
+
__typename?: 'Project';
|
|
2057
|
+
id: string;
|
|
2058
|
+
name: string;
|
|
2059
|
+
description: string;
|
|
2060
|
+
citation?: string | null;
|
|
2061
|
+
summary: string;
|
|
2062
|
+
updatedOn: string;
|
|
2063
|
+
createdOn: string;
|
|
2064
|
+
deleted: boolean;
|
|
2065
|
+
dirty: boolean;
|
|
2066
|
+
ref: string;
|
|
2067
|
+
bounds?: {
|
|
2068
|
+
__typename?: 'ProjectBounds';
|
|
2069
|
+
id: string;
|
|
2070
|
+
polygonUrl: string;
|
|
2071
|
+
} | null;
|
|
2072
|
+
meta: Array<{
|
|
2073
|
+
__typename?: 'MetaData';
|
|
2074
|
+
ext?: MetaDataExtEnum | null;
|
|
2075
|
+
key: string;
|
|
2076
|
+
value: string;
|
|
2077
|
+
locked?: boolean | null;
|
|
2078
|
+
type?: MetaDataTypeEnum | null;
|
|
2079
|
+
}>;
|
|
2080
|
+
} | null;
|
|
2081
|
+
};
|
|
2082
|
+
export type DirtyProjectsFragmentFragment = {
|
|
2083
|
+
__typename?: 'Project';
|
|
2084
|
+
id: string;
|
|
2085
|
+
name: string;
|
|
2086
|
+
description: string;
|
|
2087
|
+
citation?: string | null;
|
|
2088
|
+
summary: string;
|
|
2089
|
+
updatedOn: string;
|
|
2090
|
+
createdOn: string;
|
|
2091
|
+
deleted: boolean;
|
|
2092
|
+
dirty: boolean;
|
|
2093
|
+
ref: string;
|
|
2094
|
+
bounds?: {
|
|
2095
|
+
__typename?: 'ProjectBounds';
|
|
2096
|
+
id: string;
|
|
2097
|
+
polygonUrl: string;
|
|
2098
|
+
} | null;
|
|
2099
|
+
meta: Array<{
|
|
2100
|
+
__typename?: 'MetaData';
|
|
2101
|
+
ext?: MetaDataExtEnum | null;
|
|
2102
|
+
key: string;
|
|
2103
|
+
value: string;
|
|
2104
|
+
locked?: boolean | null;
|
|
2105
|
+
type?: MetaDataTypeEnum | null;
|
|
2106
|
+
}>;
|
|
2107
|
+
};
|
|
2108
|
+
export type Auth_QueryQueryVariables = Exact<{
|
|
2109
|
+
[key: string]: never;
|
|
2110
|
+
}>;
|
|
2111
|
+
export type Auth_QueryQuery = {
|
|
2112
|
+
__typename?: 'Query';
|
|
2113
|
+
info?: {
|
|
2114
|
+
__typename?: 'WarehouseInfo';
|
|
2115
|
+
api?: string | null;
|
|
2116
|
+
businessLogic?: string | null;
|
|
2117
|
+
projectFile?: string | null;
|
|
2118
|
+
warehouse?: string | null;
|
|
2119
|
+
xml?: string | null;
|
|
2120
|
+
xsd?: string | null;
|
|
2121
|
+
} | null;
|
|
2122
|
+
};
|
|
2123
|
+
export type MyProfileQueryVariables = Exact<{
|
|
2124
|
+
[key: string]: never;
|
|
2125
|
+
}>;
|
|
2126
|
+
export type MyProfileQuery = {
|
|
2127
|
+
__typename?: 'Query';
|
|
2128
|
+
profile?: {
|
|
2129
|
+
__typename?: 'Profile';
|
|
2130
|
+
id: string;
|
|
2131
|
+
name: string;
|
|
2132
|
+
initialized?: boolean | null;
|
|
2133
|
+
} | null;
|
|
2134
|
+
};
|
|
2135
|
+
export type DownloadFileQueryVariables = Exact<{
|
|
2136
|
+
projectId: Scalars['ID']['input'];
|
|
2137
|
+
filePath: Scalars['String']['input'];
|
|
2138
|
+
}>;
|
|
2139
|
+
export type DownloadFileQuery = {
|
|
2140
|
+
__typename?: 'Query';
|
|
2141
|
+
downloadFile?: {
|
|
2142
|
+
__typename?: 'FileDownloadMeta';
|
|
2143
|
+
localPath?: string | null;
|
|
2144
|
+
etag?: string | null;
|
|
2145
|
+
size?: number | null;
|
|
2146
|
+
contentType?: string | null;
|
|
2147
|
+
downloadUrl?: string | null;
|
|
2148
|
+
} | null;
|
|
2149
|
+
};
|
|
2150
|
+
export type CreateProjectTypeMutationVariables = Exact<{
|
|
2151
|
+
id: Scalars['String']['input'];
|
|
2152
|
+
projectType: ProjectTypeInput;
|
|
2153
|
+
}>;
|
|
2154
|
+
export type CreateProjectTypeMutation = {
|
|
2155
|
+
__typename?: 'Mutation';
|
|
2156
|
+
createProjectType?: {
|
|
2157
|
+
__typename?: 'ProjectType';
|
|
2158
|
+
id: string;
|
|
2159
|
+
} | null;
|
|
2160
|
+
};
|
|
2161
|
+
export type UpdateProjectTypeMutationVariables = Exact<{
|
|
2162
|
+
id: Scalars['String']['input'];
|
|
2163
|
+
projectType: ProjectTypeInput;
|
|
2164
|
+
}>;
|
|
2165
|
+
export type UpdateProjectTypeMutation = {
|
|
2166
|
+
__typename?: 'Mutation';
|
|
2167
|
+
updateProjectType?: {
|
|
2168
|
+
__typename?: 'ProjectType';
|
|
2169
|
+
id: string;
|
|
2170
|
+
} | null;
|
|
2171
|
+
};
|
|
2172
|
+
export type CreateProjectMutationVariables = Exact<{
|
|
2173
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
2174
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
2175
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
2176
|
+
project: ProjectInput;
|
|
2177
|
+
projectTypeId: Scalars['String']['input'];
|
|
2178
|
+
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
2179
|
+
}>;
|
|
2180
|
+
export type CreateProjectMutation = {
|
|
2181
|
+
__typename?: 'Mutation';
|
|
2182
|
+
createProject?: {
|
|
2183
|
+
__typename?: 'Project';
|
|
2184
|
+
id: string;
|
|
2185
|
+
ref: string;
|
|
2186
|
+
createdOn: string;
|
|
2187
|
+
updatedOn: string;
|
|
2188
|
+
tags: Array<string>;
|
|
2189
|
+
ownedBy: {
|
|
2190
|
+
__typename: 'Organization';
|
|
2191
|
+
id: string;
|
|
2192
|
+
name: string;
|
|
2193
|
+
} | {
|
|
2194
|
+
__typename: 'User';
|
|
2195
|
+
id: string;
|
|
2196
|
+
name: string;
|
|
2197
|
+
};
|
|
2198
|
+
projectType: {
|
|
2199
|
+
__typename?: 'ProjectType';
|
|
2200
|
+
id: string;
|
|
2201
|
+
};
|
|
2202
|
+
} | null;
|
|
2203
|
+
};
|
|
2204
|
+
export type UpdateProjectMutationVariables = Exact<{
|
|
2205
|
+
projectId: Scalars['ID']['input'];
|
|
2206
|
+
project: ProjectInput;
|
|
2207
|
+
agentId?: InputMaybe<Scalars['ID']['input']>;
|
|
2208
|
+
}>;
|
|
2209
|
+
export type UpdateProjectMutation = {
|
|
2210
|
+
__typename?: 'Mutation';
|
|
2211
|
+
updateProject?: {
|
|
2212
|
+
__typename?: 'Project';
|
|
2213
|
+
id: string;
|
|
2214
|
+
ref: string;
|
|
2215
|
+
createdOn: string;
|
|
2216
|
+
updatedOn: string;
|
|
2217
|
+
tags: Array<string>;
|
|
2218
|
+
ownedBy: {
|
|
2219
|
+
__typename: 'Organization';
|
|
2220
|
+
id: string;
|
|
2221
|
+
name: string;
|
|
2222
|
+
} | {
|
|
2223
|
+
__typename: 'User';
|
|
2224
|
+
id: string;
|
|
2225
|
+
name: string;
|
|
2226
|
+
};
|
|
2227
|
+
projectType: {
|
|
2228
|
+
__typename?: 'ProjectType';
|
|
2229
|
+
id: string;
|
|
2230
|
+
};
|
|
2231
|
+
} | null;
|
|
2232
|
+
};
|
|
2233
|
+
export type PurgeProjectMutationVariables = Exact<{
|
|
2234
|
+
projectId: Scalars['ID']['input'];
|
|
2235
|
+
}>;
|
|
2236
|
+
export type PurgeProjectMutation = {
|
|
2237
|
+
__typename?: 'Mutation';
|
|
2238
|
+
purgeProject?: {
|
|
2239
|
+
__typename?: 'MutationResult';
|
|
2240
|
+
ids?: Array<string> | null;
|
|
2241
|
+
error?: string | null;
|
|
2242
|
+
success: boolean;
|
|
2243
|
+
message?: string | null;
|
|
2244
|
+
} | null;
|
|
2245
|
+
};
|
|
2246
|
+
export type UpdateProfileMutationVariables = Exact<{
|
|
2247
|
+
profile: ProfileInput;
|
|
2248
|
+
}>;
|
|
2249
|
+
export type UpdateProfileMutation = {
|
|
2250
|
+
__typename?: 'Mutation';
|
|
2251
|
+
updateProfile?: {
|
|
2252
|
+
__typename?: 'Profile';
|
|
2253
|
+
name: string;
|
|
2254
|
+
} | null;
|
|
2255
|
+
};
|
|
2256
|
+
export type CreateOrganizationMutationVariables = Exact<{
|
|
2257
|
+
organization: OrganizationInput;
|
|
2258
|
+
}>;
|
|
2259
|
+
export type CreateOrganizationMutation = {
|
|
2260
|
+
__typename?: 'Mutation';
|
|
2261
|
+
createOrganization?: {
|
|
2262
|
+
__typename?: 'Organization';
|
|
2263
|
+
id: string;
|
|
2264
|
+
} | null;
|
|
2265
|
+
};
|
|
2266
|
+
export type UpdateOrganizationMutationVariables = Exact<{
|
|
2267
|
+
id: Scalars['ID']['input'];
|
|
2268
|
+
organization: OrganizationInput;
|
|
2269
|
+
}>;
|
|
2270
|
+
export type UpdateOrganizationMutation = {
|
|
2271
|
+
__typename?: 'Mutation';
|
|
2272
|
+
updateOrganization?: {
|
|
2273
|
+
__typename?: 'Organization';
|
|
2274
|
+
id: string;
|
|
2275
|
+
} | null;
|
|
2276
|
+
};
|
|
2277
|
+
export type CreateCollectionMutationVariables = Exact<{
|
|
2278
|
+
collection: CollectionInput;
|
|
2279
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
2280
|
+
}>;
|
|
2281
|
+
export type CreateCollectionMutation = {
|
|
2282
|
+
__typename?: 'Mutation';
|
|
2283
|
+
createCollection?: {
|
|
2284
|
+
__typename?: 'Collection';
|
|
2285
|
+
id: string;
|
|
2286
|
+
} | null;
|
|
2287
|
+
};
|
|
2288
|
+
export type UpdateCollectionMutationVariables = Exact<{
|
|
2289
|
+
id: Scalars['ID']['input'];
|
|
2290
|
+
organization: OrganizationInput;
|
|
2291
|
+
}>;
|
|
2292
|
+
export type UpdateCollectionMutation = {
|
|
2293
|
+
__typename?: 'Mutation';
|
|
2294
|
+
updateOrganization?: {
|
|
2295
|
+
__typename?: 'Organization';
|
|
2296
|
+
id: string;
|
|
2297
|
+
} | null;
|
|
2298
|
+
};
|
|
2299
|
+
export type GetProjectForUploadCheckQueryVariables = Exact<{
|
|
2300
|
+
id: Scalars['ID']['input'];
|
|
2301
|
+
dsLimit: Scalars['Int']['input'];
|
|
2302
|
+
dsOffset: Scalars['Int']['input'];
|
|
2303
|
+
}>;
|
|
2304
|
+
export type GetProjectForUploadCheckQuery = {
|
|
2305
|
+
__typename?: 'Query';
|
|
2306
|
+
project?: {
|
|
2307
|
+
__typename?: 'Project';
|
|
2308
|
+
id: string;
|
|
2309
|
+
name: string;
|
|
2310
|
+
summary: string;
|
|
2311
|
+
deleted: boolean;
|
|
2312
|
+
createdOn: string;
|
|
2313
|
+
updatedOn: string;
|
|
2314
|
+
ref: string;
|
|
2315
|
+
tags: Array<string>;
|
|
2316
|
+
projectType: {
|
|
2317
|
+
__typename?: 'ProjectType';
|
|
2318
|
+
id: string;
|
|
2319
|
+
};
|
|
2320
|
+
meta: Array<{
|
|
2321
|
+
__typename?: 'MetaData';
|
|
2322
|
+
key: string;
|
|
2323
|
+
value: string;
|
|
2324
|
+
type?: MetaDataTypeEnum | null;
|
|
2325
|
+
locked?: boolean | null;
|
|
2326
|
+
ext?: MetaDataExtEnum | null;
|
|
2327
|
+
}>;
|
|
2328
|
+
createdBy: {
|
|
2329
|
+
__typename?: 'User';
|
|
2330
|
+
id: string;
|
|
2331
|
+
name: string;
|
|
2332
|
+
};
|
|
2333
|
+
updatedBy: {
|
|
2334
|
+
__typename?: 'User';
|
|
2335
|
+
id: string;
|
|
2336
|
+
name: string;
|
|
2337
|
+
};
|
|
2338
|
+
ownedBy: {
|
|
2339
|
+
__typename: 'Organization';
|
|
2340
|
+
id: string;
|
|
2341
|
+
name: string;
|
|
2342
|
+
} | {
|
|
2343
|
+
__typename: 'User';
|
|
2344
|
+
id: string;
|
|
2345
|
+
name: string;
|
|
2346
|
+
};
|
|
2347
|
+
datasets: {
|
|
2348
|
+
__typename?: 'PaginatedDatasets';
|
|
2349
|
+
total: number;
|
|
2350
|
+
items: Array<{
|
|
2351
|
+
__typename?: 'Dataset';
|
|
2352
|
+
id: string;
|
|
2353
|
+
name: string;
|
|
2354
|
+
rsXPath: string;
|
|
2355
|
+
}>;
|
|
2356
|
+
};
|
|
2357
|
+
} | null;
|
|
2358
|
+
};
|
|
2359
|
+
export type ProjectDownloadQueryVariables = Exact<{
|
|
2360
|
+
id: Scalars['ID']['input'];
|
|
2361
|
+
}>;
|
|
2362
|
+
export type ProjectDownloadQuery = {
|
|
2363
|
+
__typename?: 'Query';
|
|
2364
|
+
project?: {
|
|
2365
|
+
__typename?: 'Project';
|
|
2366
|
+
id: string;
|
|
2367
|
+
name: string;
|
|
2368
|
+
ref: string;
|
|
2369
|
+
tags: Array<string>;
|
|
2370
|
+
createdOn: string;
|
|
2371
|
+
updatedOn: string;
|
|
2372
|
+
deleted: boolean;
|
|
2373
|
+
ownedBy: {
|
|
2374
|
+
__typename: 'Organization';
|
|
2375
|
+
id: string;
|
|
2376
|
+
name: string;
|
|
2377
|
+
} | {
|
|
2378
|
+
__typename: 'User';
|
|
2379
|
+
id: string;
|
|
2380
|
+
name: string;
|
|
2381
|
+
};
|
|
2382
|
+
projectType: {
|
|
2383
|
+
__typename?: 'ProjectType';
|
|
2384
|
+
id: string;
|
|
2385
|
+
};
|
|
2386
|
+
meta: Array<{
|
|
2387
|
+
__typename?: 'MetaData';
|
|
2388
|
+
key: string;
|
|
2389
|
+
value: string;
|
|
2390
|
+
type?: MetaDataTypeEnum | null;
|
|
2391
|
+
locked?: boolean | null;
|
|
2392
|
+
ext?: MetaDataExtEnum | null;
|
|
2393
|
+
}>;
|
|
2394
|
+
files: Array<{
|
|
2395
|
+
__typename?: 'FileDownloadMeta';
|
|
2396
|
+
contentType?: string | null;
|
|
2397
|
+
downloadUrl?: string | null;
|
|
2398
|
+
etag?: string | null;
|
|
2399
|
+
localPath?: string | null;
|
|
2400
|
+
size?: number | null;
|
|
2401
|
+
}>;
|
|
2402
|
+
} | null;
|
|
2403
|
+
};
|
|
2404
|
+
export type ProjectExistsQueryVariables = Exact<{
|
|
2405
|
+
id: Scalars['ID']['input'];
|
|
2406
|
+
}>;
|
|
2407
|
+
export type ProjectExistsQuery = {
|
|
2408
|
+
__typename?: 'Query';
|
|
2409
|
+
project?: {
|
|
2410
|
+
__typename?: 'Project';
|
|
2411
|
+
id: string;
|
|
2412
|
+
name: string;
|
|
2413
|
+
ref: string;
|
|
2414
|
+
deleted: boolean;
|
|
2415
|
+
createdOn: string;
|
|
2416
|
+
updatedOn: string;
|
|
2417
|
+
ownedBy: {
|
|
2418
|
+
__typename: 'Organization';
|
|
2419
|
+
id: string;
|
|
2420
|
+
name: string;
|
|
2421
|
+
} | {
|
|
2422
|
+
__typename: 'User';
|
|
2423
|
+
id: string;
|
|
2424
|
+
name: string;
|
|
2425
|
+
};
|
|
2426
|
+
projectType: {
|
|
2427
|
+
__typename?: 'ProjectType';
|
|
2428
|
+
id: string;
|
|
2429
|
+
};
|
|
2430
|
+
meta: Array<{
|
|
2431
|
+
__typename?: 'MetaData';
|
|
2432
|
+
key: string;
|
|
2433
|
+
value: string;
|
|
2434
|
+
type?: MetaDataTypeEnum | null;
|
|
2435
|
+
locked?: boolean | null;
|
|
2436
|
+
ext?: MetaDataExtEnum | null;
|
|
2437
|
+
}>;
|
|
2438
|
+
} | null;
|
|
2439
|
+
};
|
|
2440
|
+
export type ProjectTree_QueryQueryVariables = Exact<{
|
|
2441
|
+
id: Scalars['ID']['input'];
|
|
2442
|
+
}>;
|
|
2443
|
+
export type ProjectTree_QueryQuery = {
|
|
2444
|
+
__typename?: 'Query';
|
|
2445
|
+
project?: {
|
|
2446
|
+
__typename?: 'Project';
|
|
2447
|
+
deleted: boolean;
|
|
2448
|
+
tree: {
|
|
2449
|
+
__typename?: 'ProjectTree';
|
|
2450
|
+
defaultView?: string | null;
|
|
2451
|
+
description?: string | null;
|
|
2452
|
+
leaves: Array<{
|
|
2453
|
+
__typename?: 'ProjectTreeLeaf';
|
|
2454
|
+
id: number;
|
|
2455
|
+
pid: number;
|
|
2456
|
+
label: string;
|
|
2457
|
+
labelxpath?: string | null;
|
|
2458
|
+
nodeId?: string | null;
|
|
2459
|
+
layerType: ProjectTreeLayerTypeEnum;
|
|
2460
|
+
blLayerId?: string | null;
|
|
2461
|
+
symbology?: string | null;
|
|
2462
|
+
transparency?: number | null;
|
|
2463
|
+
rsXPath: string;
|
|
2464
|
+
lyrName?: string | null;
|
|
2465
|
+
}>;
|
|
2466
|
+
branches: Array<{
|
|
2467
|
+
__typename?: 'ProjectTreeBranch';
|
|
2468
|
+
bid: number;
|
|
2469
|
+
collapsed?: boolean | null;
|
|
2470
|
+
label: string;
|
|
2471
|
+
pid: number;
|
|
2472
|
+
}>;
|
|
2473
|
+
views: Array<{
|
|
2474
|
+
__typename?: 'ProjectTreeView';
|
|
2475
|
+
id: string;
|
|
2476
|
+
name: string;
|
|
2477
|
+
description?: string | null;
|
|
2478
|
+
layers: Array<{
|
|
2479
|
+
__typename?: 'ProjectTreeViewLayer';
|
|
2480
|
+
id: string;
|
|
2481
|
+
visible?: boolean | null;
|
|
2482
|
+
}>;
|
|
2483
|
+
}>;
|
|
2484
|
+
};
|
|
2485
|
+
} | null;
|
|
2486
|
+
};
|
|
2487
|
+
export type GetProjectForWatcherQueryVariables = Exact<{
|
|
2488
|
+
id: Scalars['ID']['input'];
|
|
2489
|
+
}>;
|
|
2490
|
+
export type GetProjectForWatcherQuery = {
|
|
2491
|
+
__typename?: 'Query';
|
|
2492
|
+
project?: {
|
|
2493
|
+
__typename?: 'Project';
|
|
2494
|
+
id: string;
|
|
2495
|
+
name: string;
|
|
2496
|
+
createdOn: string;
|
|
2497
|
+
updatedOn: string;
|
|
2498
|
+
ref: string;
|
|
2499
|
+
deleted: boolean;
|
|
2500
|
+
projectType: {
|
|
2501
|
+
__typename?: 'ProjectType';
|
|
2502
|
+
id: string;
|
|
2503
|
+
};
|
|
2504
|
+
ownedBy: {
|
|
2505
|
+
__typename: 'Organization';
|
|
2506
|
+
id: string;
|
|
2507
|
+
name: string;
|
|
2508
|
+
} | {
|
|
2509
|
+
__typename: 'User';
|
|
2510
|
+
id: string;
|
|
2511
|
+
name: string;
|
|
2512
|
+
};
|
|
2513
|
+
} | null;
|
|
2514
|
+
};
|
|
2515
|
+
export type RequestUploadBoundsQueryVariables = Exact<{
|
|
2516
|
+
[key: string]: never;
|
|
2517
|
+
}>;
|
|
2518
|
+
export type RequestUploadBoundsQuery = {
|
|
2519
|
+
__typename?: 'Query';
|
|
2520
|
+
requestUploadBounds?: {
|
|
2521
|
+
__typename?: 'UploadUrl';
|
|
2522
|
+
fields: JSONObject;
|
|
2523
|
+
token: string;
|
|
2524
|
+
url: string;
|
|
2525
|
+
} | null;
|
|
2526
|
+
};
|
|
2527
|
+
export type GetProjectFilesForDownloadQueryVariables = Exact<{
|
|
2528
|
+
id: Scalars['ID']['input'];
|
|
2529
|
+
dsLimit: Scalars['Int']['input'];
|
|
2530
|
+
dsOffset: Scalars['Int']['input'];
|
|
2531
|
+
}>;
|
|
2532
|
+
export type GetProjectFilesForDownloadQuery = {
|
|
2533
|
+
__typename?: 'Query';
|
|
2534
|
+
project?: {
|
|
2535
|
+
__typename?: 'Project';
|
|
2536
|
+
id: string;
|
|
2537
|
+
name: string;
|
|
2538
|
+
summary: string;
|
|
2539
|
+
deleted: boolean;
|
|
2540
|
+
createdOn: string;
|
|
2541
|
+
updatedOn: string;
|
|
2542
|
+
ref: string;
|
|
2543
|
+
tags: Array<string>;
|
|
2544
|
+
projectType: {
|
|
2545
|
+
__typename?: 'ProjectType';
|
|
2546
|
+
id: string;
|
|
2547
|
+
};
|
|
2548
|
+
meta: Array<{
|
|
2549
|
+
__typename?: 'MetaData';
|
|
2550
|
+
key: string;
|
|
2551
|
+
value: string;
|
|
2552
|
+
type?: MetaDataTypeEnum | null;
|
|
2553
|
+
locked?: boolean | null;
|
|
2554
|
+
ext?: MetaDataExtEnum | null;
|
|
2555
|
+
}>;
|
|
2556
|
+
createdBy: {
|
|
2557
|
+
__typename?: 'User';
|
|
2558
|
+
id: string;
|
|
2559
|
+
};
|
|
2560
|
+
updatedBy: {
|
|
2561
|
+
__typename?: 'User';
|
|
2562
|
+
id: string;
|
|
2563
|
+
};
|
|
2564
|
+
ownedBy: {
|
|
2565
|
+
__typename: 'Organization';
|
|
2566
|
+
id: string;
|
|
2567
|
+
name: string;
|
|
2568
|
+
} | {
|
|
2569
|
+
__typename: 'User';
|
|
2570
|
+
id: string;
|
|
2571
|
+
name: string;
|
|
2572
|
+
};
|
|
2573
|
+
datasets: {
|
|
2574
|
+
__typename?: 'PaginatedDatasets';
|
|
2575
|
+
total: number;
|
|
2576
|
+
items: Array<{
|
|
2577
|
+
__typename?: 'Dataset';
|
|
2578
|
+
id: string;
|
|
2579
|
+
name: string;
|
|
2580
|
+
rsXPath: string;
|
|
2581
|
+
}>;
|
|
2582
|
+
};
|
|
2583
|
+
files: Array<{
|
|
2584
|
+
__typename?: 'FileDownloadMeta';
|
|
2585
|
+
localPath?: string | null;
|
|
2586
|
+
etag?: string | null;
|
|
2587
|
+
size?: number | null;
|
|
2588
|
+
contentType?: string | null;
|
|
2589
|
+
downloadUrl?: string | null;
|
|
2590
|
+
}>;
|
|
2591
|
+
} | null;
|
|
2592
|
+
};
|
|
2593
|
+
export type RebuildWebTilesMutationVariables = Exact<{
|
|
2594
|
+
projectId: Scalars['ID']['input'];
|
|
2595
|
+
rsXPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2596
|
+
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2597
|
+
}>;
|
|
2598
|
+
export type RebuildWebTilesMutation = {
|
|
2599
|
+
__typename?: 'Mutation';
|
|
2600
|
+
rebuildWebTiles: {
|
|
2601
|
+
__typename?: 'RebuildWebTilesResponse';
|
|
2602
|
+
skipped?: Array<string> | null;
|
|
2603
|
+
queued?: Array<string> | null;
|
|
2604
|
+
};
|
|
2605
|
+
};
|
|
2606
|
+
export type ZipRebuildMutationVariables = Exact<{
|
|
2607
|
+
projectId: Scalars['ID']['input'];
|
|
2608
|
+
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2609
|
+
}>;
|
|
2610
|
+
export type ZipRebuildMutation = {
|
|
2611
|
+
__typename?: 'Mutation';
|
|
2612
|
+
zipRebuild?: {
|
|
2613
|
+
__typename?: 'Project';
|
|
2614
|
+
id: string;
|
|
2615
|
+
} | null;
|
|
2616
|
+
};
|
|
2617
|
+
export type ProjectSearchQueryVariables = Exact<{
|
|
2618
|
+
offset: Scalars['Int']['input'];
|
|
2619
|
+
limit: Scalars['Int']['input'];
|
|
2620
|
+
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
2621
|
+
params: ProjectSearchParamsInput;
|
|
2622
|
+
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
2623
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2624
|
+
}>;
|
|
2625
|
+
export type ProjectSearchQuery = {
|
|
2626
|
+
__typename?: 'Query';
|
|
2627
|
+
searchProjects: {
|
|
2628
|
+
__typename?: 'SearchProjectPagination';
|
|
2629
|
+
total: number;
|
|
2630
|
+
results: Array<{
|
|
2631
|
+
__typename?: 'SearchProject';
|
|
2632
|
+
score?: number | null;
|
|
2633
|
+
item: {
|
|
2634
|
+
__typename: 'Project';
|
|
2635
|
+
id: string;
|
|
2636
|
+
name: string;
|
|
2637
|
+
deleted: boolean;
|
|
2638
|
+
visibility: ProjectVisibilityEnum;
|
|
2639
|
+
summary: string;
|
|
2640
|
+
projectType: {
|
|
2641
|
+
__typename?: 'ProjectType';
|
|
2642
|
+
id: string;
|
|
2643
|
+
name: string;
|
|
2644
|
+
logo?: string | null;
|
|
2645
|
+
};
|
|
2646
|
+
meta: Array<{
|
|
2647
|
+
__typename?: 'MetaData';
|
|
2648
|
+
ext?: MetaDataExtEnum | null;
|
|
2649
|
+
key: string;
|
|
2650
|
+
locked?: boolean | null;
|
|
2651
|
+
type?: MetaDataTypeEnum | null;
|
|
2652
|
+
value: string;
|
|
2653
|
+
}>;
|
|
2654
|
+
bounds?: {
|
|
2655
|
+
__typename?: 'ProjectBounds';
|
|
2656
|
+
id: string;
|
|
2657
|
+
geoHash?: string | null;
|
|
2658
|
+
polygonUrl: string;
|
|
2659
|
+
bbox: Array<number>;
|
|
2660
|
+
} | null;
|
|
2661
|
+
};
|
|
2662
|
+
}>;
|
|
2663
|
+
stats?: {
|
|
2664
|
+
__typename: 'ProjectSearchMeta';
|
|
2665
|
+
bbox?: Array<number> | null;
|
|
2666
|
+
projectTypes?: JSONObject | null;
|
|
2667
|
+
openSearch?: JSONObject | null;
|
|
2668
|
+
} | {
|
|
2669
|
+
__typename: 'SearchMeta';
|
|
2670
|
+
} | null;
|
|
2671
|
+
};
|
|
2672
|
+
};
|
|
2673
|
+
export type ValidateProjectQueryVariables = Exact<{
|
|
2674
|
+
xml: Scalars['String']['input'];
|
|
2675
|
+
owner?: InputMaybe<OwnerInput>;
|
|
2676
|
+
files: Array<Scalars['String']['input']>;
|
|
2677
|
+
}>;
|
|
2678
|
+
export type ValidateProjectQuery = {
|
|
2679
|
+
__typename?: 'Query';
|
|
2680
|
+
validateProject?: {
|
|
2681
|
+
__typename?: 'ProjectValidation';
|
|
2682
|
+
valid?: boolean | null;
|
|
2683
|
+
errors?: Array<{
|
|
2684
|
+
__typename: 'ProjectValidationError';
|
|
2685
|
+
code?: string | null;
|
|
2686
|
+
message: string;
|
|
2687
|
+
severity?: SeverityEnum | null;
|
|
2688
|
+
} | null> | null;
|
|
2689
|
+
} | null;
|
|
2690
|
+
};
|
|
2691
|
+
export type RequestUploadProjectQueryVariables = Exact<{
|
|
2692
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
2693
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
2694
|
+
files: Array<Scalars['String']['input']>;
|
|
2695
|
+
etags: Array<Scalars['String']['input']>;
|
|
2696
|
+
sizes: Array<Scalars['BigInt']['input']>;
|
|
2697
|
+
noDelete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2698
|
+
owner?: InputMaybe<OwnerInput>;
|
|
2699
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2700
|
+
visibility?: InputMaybe<ProjectVisibilityEnum>;
|
|
2701
|
+
}>;
|
|
2702
|
+
export type RequestUploadProjectQuery = {
|
|
2703
|
+
__typename?: 'Query';
|
|
2704
|
+
requestUploadProject?: {
|
|
2705
|
+
__typename: 'UploadProjectRequest';
|
|
2706
|
+
newId?: string | null;
|
|
2707
|
+
create: Array<string>;
|
|
2708
|
+
delete: Array<string>;
|
|
2709
|
+
token: string;
|
|
2710
|
+
update: Array<string>;
|
|
2711
|
+
} | null;
|
|
2712
|
+
};
|
|
2713
|
+
export type CheckUploadQueryVariables = Exact<{
|
|
2714
|
+
token: Scalars['String']['input'];
|
|
2715
|
+
}>;
|
|
2716
|
+
export type CheckUploadQuery = {
|
|
2717
|
+
__typename?: 'Query';
|
|
2718
|
+
checkUpload?: {
|
|
2719
|
+
__typename: 'JobStatusObj';
|
|
2720
|
+
data?: JSONObject | null;
|
|
2721
|
+
errors?: Array<string> | null;
|
|
2722
|
+
metaData?: JSONObject | null;
|
|
2723
|
+
percentComplete?: number | null;
|
|
2724
|
+
status: JobStatusEnum;
|
|
2725
|
+
} | null;
|
|
2726
|
+
};
|
|
2727
|
+
export type RequestUploadProjectFilesUrlQueryVariables = Exact<{
|
|
2728
|
+
files: Array<Scalars['String']['input']>;
|
|
2729
|
+
token: Scalars['String']['input'];
|
|
2730
|
+
}>;
|
|
2731
|
+
export type RequestUploadProjectFilesUrlQuery = {
|
|
2732
|
+
__typename?: 'Query';
|
|
2733
|
+
requestUploadProjectFilesUrl?: Array<{
|
|
2734
|
+
__typename: 'UploadProjectFileUrls';
|
|
2735
|
+
relPath: string;
|
|
2736
|
+
urls?: Array<string | null> | null;
|
|
2737
|
+
} | null> | null;
|
|
2738
|
+
};
|
|
2739
|
+
export type FinalizeProjectUploadMutationVariables = Exact<{
|
|
2740
|
+
token: Scalars['String']['input'];
|
|
2741
|
+
}>;
|
|
2742
|
+
export type FinalizeProjectUploadMutation = {
|
|
2743
|
+
__typename?: 'Mutation';
|
|
2744
|
+
finalizeProjectUpload?: {
|
|
2745
|
+
__typename: 'JobStatusObj';
|
|
2746
|
+
} | null;
|
|
2747
|
+
};
|
|
2748
|
+
export type RequestUploadImageQueryVariables = Exact<{
|
|
2749
|
+
entityId: Scalars['ID']['input'];
|
|
2750
|
+
entityType: EntitiesWithImagesEnum;
|
|
2751
|
+
}>;
|
|
2752
|
+
export type RequestUploadImageQuery = {
|
|
2753
|
+
__typename?: 'Query';
|
|
2754
|
+
requestUploadImage?: {
|
|
2755
|
+
__typename?: 'UploadUrl';
|
|
2756
|
+
fields: JSONObject;
|
|
2757
|
+
token: string;
|
|
2758
|
+
url: string;
|
|
2759
|
+
} | null;
|
|
2760
|
+
};
|
|
2761
|
+
export declare const DirtyProjectsFragment: import("graphql/language/ast").DocumentNode;
|
|
2762
|
+
export declare const AdminReIndexOpenSearch: import("graphql/language/ast").DocumentNode;
|
|
2763
|
+
export declare const AdminRecreateOpenSearch: import("graphql/language/ast").DocumentNode;
|
|
2764
|
+
export declare const DeleteProject: import("graphql/language/ast").DocumentNode;
|
|
2765
|
+
export declare const DirtyProjects: import("graphql/language/ast").DocumentNode;
|
|
2766
|
+
export declare const GetDirtyProject: import("graphql/language/ast").DocumentNode;
|
|
2767
|
+
export declare const Auth_Query: import("graphql/language/ast").DocumentNode;
|
|
2768
|
+
export declare const MyProfile: import("graphql/language/ast").DocumentNode;
|
|
2769
|
+
export declare const DownloadFile: import("graphql/language/ast").DocumentNode;
|
|
2770
|
+
export declare const CreateProjectType: import("graphql/language/ast").DocumentNode;
|
|
2771
|
+
export declare const UpdateProjectType: import("graphql/language/ast").DocumentNode;
|
|
2772
|
+
export declare const CreateProject: import("graphql/language/ast").DocumentNode;
|
|
2773
|
+
export declare const UpdateProject: import("graphql/language/ast").DocumentNode;
|
|
2774
|
+
export declare const PurgeProject: import("graphql/language/ast").DocumentNode;
|
|
2775
|
+
export declare const UpdateProfile: import("graphql/language/ast").DocumentNode;
|
|
2776
|
+
export declare const CreateOrganization: import("graphql/language/ast").DocumentNode;
|
|
2777
|
+
export declare const UpdateOrganization: import("graphql/language/ast").DocumentNode;
|
|
2778
|
+
export declare const CreateCollection: import("graphql/language/ast").DocumentNode;
|
|
2779
|
+
export declare const UpdateCollection: import("graphql/language/ast").DocumentNode;
|
|
2780
|
+
export declare const GetProjectForUploadCheck: import("graphql/language/ast").DocumentNode;
|
|
2781
|
+
export declare const ProjectDownload: import("graphql/language/ast").DocumentNode;
|
|
2782
|
+
export declare const ProjectExists: import("graphql/language/ast").DocumentNode;
|
|
2783
|
+
export declare const ProjectTree_Query: import("graphql/language/ast").DocumentNode;
|
|
2784
|
+
export declare const GetProjectForWatcher: import("graphql/language/ast").DocumentNode;
|
|
2785
|
+
export declare const RequestUploadBounds: import("graphql/language/ast").DocumentNode;
|
|
2786
|
+
export declare const GetProjectFilesForDownload: import("graphql/language/ast").DocumentNode;
|
|
2787
|
+
export declare const RebuildWebTiles: import("graphql/language/ast").DocumentNode;
|
|
2788
|
+
export declare const ZipRebuild: import("graphql/language/ast").DocumentNode;
|
|
2789
|
+
export declare const ProjectSearch: import("graphql/language/ast").DocumentNode;
|
|
2790
|
+
export declare const ValidateProject: import("graphql/language/ast").DocumentNode;
|
|
2791
|
+
export declare const RequestUploadProject: import("graphql/language/ast").DocumentNode;
|
|
2792
|
+
export declare const CheckUpload: import("graphql/language/ast").DocumentNode;
|
|
2793
|
+
export declare const RequestUploadProjectFilesUrl: import("graphql/language/ast").DocumentNode;
|
|
2794
|
+
export declare const FinalizeProjectUpload: import("graphql/language/ast").DocumentNode;
|
|
2795
|
+
export declare const RequestUploadImage: import("graphql/language/ast").DocumentNode;
|