@riverscapes/common 2.0.8 → 2.0.10
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/dist/classes/BusinessLogicXML.js +4 -1
- package/dist/classes/BusinessLogicXML.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 +48 -21
- package/dist/gen/schema.types.js +16 -13
- package/dist/gen/schema.types.js.map +1 -1
- package/dist/lib/jsonBigIntPatch.js +1 -0
- package/dist/lib/jsonBigIntPatch.js.map +1 -0
- package/dist/lib/xml.js +10 -1
- package/dist/lib/xml.js.map +1 -1
- package/dist/schema.graphql +18 -2
- package/dist/types.d.ts +2 -5
- package/dist/types.js.map +1 -1
- package/package.json +2 -2
- package/dist/classes/api.d.ts +0 -32
- package/dist/classes/api.js +0 -307
- package/dist/classes/api.js.map +0 -1
- package/dist/dates.d.ts +0 -1
- package/dist/dates.js +0 -12
- package/dist/dates.js.map +0 -1
- package/dist/gen/ops.d.ts +0 -1828
- package/dist/gen/ops.js +0 -259
- package/dist/gen/ops.js.map +0 -1
- package/dist/gqlSchema.d.ts +0 -2
- package/dist/gqlSchema.js +0 -13
- package/dist/gqlSchema.js.map +0 -1
- package/dist/graphql/auth.graphql.d.ts +0 -2
- package/dist/graphql/auth.graphql.js +0 -12
- package/dist/graphql/auth.graphql.js.map +0 -1
- package/dist/graphql/index.d.ts +0 -3
- package/dist/graphql/index.js +0 -20
- package/dist/graphql/index.js.map +0 -1
- package/dist/graphql/mutations.graphql.js +0 -57
- package/dist/graphql/mutations.graphql.js.map +0 -1
- package/dist/graphql/project.graphql.d.ts +0 -1
- package/dist/graphql/project.graphql.js +0 -11
- package/dist/graphql/project.graphql.js.map +0 -1
- package/dist/graphql/projects.graphql.d.ts +0 -1
- package/dist/graphql/projects.graphql.js +0 -11
- package/dist/graphql/projects.graphql.js.map +0 -1
- package/dist/graphql/upload.graphql.d.ts +0 -4
- package/dist/graphql/upload.graphql.js +0 -14
- package/dist/graphql/upload.graphql.js.map +0 -1
- package/dist/lib/geojson/createProjectBounds.d.ts +0 -10
- package/dist/lib/geojson/createProjectBounds.js +0 -34
- package/dist/lib/geojson/createProjectBounds.js.map +0 -1
- package/dist/lib/geojson/equality.d.ts +0 -2
- package/dist/lib/geojson/equality.js +0 -81
- package/dist/lib/geojson/equality.js.map +0 -1
- package/dist/lib/geojson/index.d.ts +0 -3
- package/dist/lib/geojson/index.js +0 -13
- package/dist/lib/geojson/index.js.map +0 -1
- package/dist/lib/geojson/precision.d.ts +0 -4
- package/dist/lib/geojson/precision.js +0 -79
- package/dist/lib/geojson/precision.js.map +0 -1
- package/dist/lib/graphql/auth.graphql.d.ts +0 -1
- package/dist/lib/graphql/auth.graphql.js +0 -11
- package/dist/lib/graphql/auth.graphql.js.map +0 -1
- package/dist/lib/graphql/index.d.ts +0 -1
- package/dist/lib/graphql/index.js +0 -18
- package/dist/lib/graphql/index.js.map +0 -1
- package/dist/schema.types.d.ts +0 -1815
- package/dist/schema.types.js +0 -259
- package/dist/schema.types.js.map +0 -1
- /package/dist/{graphql/mutations.graphql.d.ts → lib/jsonBigIntPatch.d.ts} +0 -0
package/dist/schema.types.d.ts
DELETED
|
@@ -1,1815 +0,0 @@
|
|
|
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 Scalars = {
|
|
16
|
-
ID: string;
|
|
17
|
-
String: string;
|
|
18
|
-
Boolean: boolean;
|
|
19
|
-
Int: number;
|
|
20
|
-
Float: number;
|
|
21
|
-
DateTime: string;
|
|
22
|
-
EmailAddress: string;
|
|
23
|
-
JSONObject: JSONObject;
|
|
24
|
-
URL: string;
|
|
25
|
-
};
|
|
26
|
-
export type AuthParams = {
|
|
27
|
-
__typename?: 'AuthParams';
|
|
28
|
-
clientId?: Maybe<Scalars['String']>;
|
|
29
|
-
domain?: Maybe<Scalars['String']>;
|
|
30
|
-
loggedIn?: Maybe<Scalars['Boolean']>;
|
|
31
|
-
region?: Maybe<Scalars['String']>;
|
|
32
|
-
userPool?: Maybe<Scalars['String']>;
|
|
33
|
-
};
|
|
34
|
-
export type Collection = DbObj & HasOwner & HasStar & HasTags & {
|
|
35
|
-
__typename?: 'Collection';
|
|
36
|
-
citation?: Maybe<Scalars['String']>;
|
|
37
|
-
contact?: Maybe<User>;
|
|
38
|
-
createdBy: User;
|
|
39
|
-
createdOn: Scalars['DateTime'];
|
|
40
|
-
description: Scalars['String'];
|
|
41
|
-
heroImage?: Maybe<HeroImage>;
|
|
42
|
-
id: Scalars['ID'];
|
|
43
|
-
meta: Array<MetaData>;
|
|
44
|
-
name: Scalars['String'];
|
|
45
|
-
ownedBy: Owner;
|
|
46
|
-
permissions: ObjectPermissions;
|
|
47
|
-
projects: PaginatedProjects;
|
|
48
|
-
starred: Scalars['Boolean'];
|
|
49
|
-
starredCount: Scalars['Int'];
|
|
50
|
-
summary: Scalars['String'];
|
|
51
|
-
tags: Array<Scalars['String']>;
|
|
52
|
-
updatedBy: User;
|
|
53
|
-
updatedOn: Scalars['DateTime'];
|
|
54
|
-
visibility: ProjectGroupVisibilityEnum;
|
|
55
|
-
};
|
|
56
|
-
export type CollectionProjectsArgs = {
|
|
57
|
-
limit: Scalars['Int'];
|
|
58
|
-
offset: Scalars['Int'];
|
|
59
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
60
|
-
};
|
|
61
|
-
export type CollectionInput = {
|
|
62
|
-
citation?: InputMaybe<Scalars['String']>;
|
|
63
|
-
clearContact?: InputMaybe<Scalars['Boolean']>;
|
|
64
|
-
clearHeroImage?: InputMaybe<Scalars['Boolean']>;
|
|
65
|
-
contact?: InputMaybe<OwnerInput>;
|
|
66
|
-
description?: InputMaybe<Scalars['String']>;
|
|
67
|
-
heroImageToken?: InputMaybe<Scalars['String']>;
|
|
68
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
69
|
-
name?: InputMaybe<Scalars['String']>;
|
|
70
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
71
|
-
tags?: InputMaybe<Array<Scalars['String']>>;
|
|
72
|
-
visibility?: InputMaybe<ProjectGroupVisibilityEnum>;
|
|
73
|
-
};
|
|
74
|
-
export type DbObj = {
|
|
75
|
-
createdBy: User;
|
|
76
|
-
createdOn: Scalars['DateTime'];
|
|
77
|
-
description: Scalars['String'];
|
|
78
|
-
id: Scalars['ID'];
|
|
79
|
-
meta: Array<MetaData>;
|
|
80
|
-
name: Scalars['String'];
|
|
81
|
-
summary: Scalars['String'];
|
|
82
|
-
updatedBy: User;
|
|
83
|
-
updatedOn: Scalars['DateTime'];
|
|
84
|
-
};
|
|
85
|
-
export type DbObjNotifications = {
|
|
86
|
-
createdBy: User;
|
|
87
|
-
createdById: Scalars['ID'];
|
|
88
|
-
createdByName: Scalars['String'];
|
|
89
|
-
createdOn: Scalars['DateTime'];
|
|
90
|
-
id: Scalars['ID'];
|
|
91
|
-
name: Scalars['String'];
|
|
92
|
-
summary: Scalars['String'];
|
|
93
|
-
updatedBy: User;
|
|
94
|
-
updatedById: Scalars['ID'];
|
|
95
|
-
updatedByName: Scalars['String'];
|
|
96
|
-
updatedOn: Scalars['DateTime'];
|
|
97
|
-
};
|
|
98
|
-
export type DbObjNotificationsInput = {
|
|
99
|
-
createdById: Scalars['ID'];
|
|
100
|
-
createdByName: Scalars['String'];
|
|
101
|
-
createdOn: Scalars['DateTime'];
|
|
102
|
-
id: Scalars['ID'];
|
|
103
|
-
name: Scalars['String'];
|
|
104
|
-
summary: Scalars['String'];
|
|
105
|
-
updatedById: Scalars['ID'];
|
|
106
|
-
updatedByName: Scalars['String'];
|
|
107
|
-
updatedOn: Scalars['DateTime'];
|
|
108
|
-
};
|
|
109
|
-
export type DbSimpleObj = {
|
|
110
|
-
createdBy: User;
|
|
111
|
-
createdOn: Scalars['DateTime'];
|
|
112
|
-
id: Scalars['ID'];
|
|
113
|
-
updatedBy: User;
|
|
114
|
-
updatedOn: Scalars['DateTime'];
|
|
115
|
-
};
|
|
116
|
-
export type Dataset = DbObj & {
|
|
117
|
-
__typename?: 'Dataset';
|
|
118
|
-
analysisId?: Maybe<Scalars['String']>;
|
|
119
|
-
attachedDatasets: PaginatedDatasets;
|
|
120
|
-
citation?: Maybe<Scalars['String']>;
|
|
121
|
-
createdBy: User;
|
|
122
|
-
createdOn: Scalars['DateTime'];
|
|
123
|
-
datasetContainer: DatasetContainerTypesEnum;
|
|
124
|
-
datasetType: DatasetTypeEnum;
|
|
125
|
-
datasetXMLId: Scalars['String'];
|
|
126
|
-
description: Scalars['String'];
|
|
127
|
-
files: Array<FileDownloadMeta>;
|
|
128
|
-
id: Scalars['ID'];
|
|
129
|
-
layers?: Maybe<Array<Maybe<DatasetLayer>>>;
|
|
130
|
-
localPath: Scalars['String'];
|
|
131
|
-
meta: Array<MetaData>;
|
|
132
|
-
name: Scalars['String'];
|
|
133
|
-
origin?: Maybe<Dataset>;
|
|
134
|
-
project: Project;
|
|
135
|
-
realizationXMLId?: Maybe<Scalars['String']>;
|
|
136
|
-
refProject?: Maybe<Project>;
|
|
137
|
-
rsXPath: Scalars['String'];
|
|
138
|
-
summary: Scalars['String'];
|
|
139
|
-
updatedBy: User;
|
|
140
|
-
updatedOn: Scalars['DateTime'];
|
|
141
|
-
};
|
|
142
|
-
export type DatasetAttachedDatasetsArgs = {
|
|
143
|
-
limit: Scalars['Int'];
|
|
144
|
-
offset: Scalars['Int'];
|
|
145
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
146
|
-
};
|
|
147
|
-
export declare enum DatasetContainerTypesEnum {
|
|
148
|
-
CommonDatasets = "CommonDatasets",
|
|
149
|
-
Configuration = "Configuration",
|
|
150
|
-
Datasets = "Datasets",
|
|
151
|
-
Inputs = "Inputs",
|
|
152
|
-
Intermediates = "Intermediates",
|
|
153
|
-
Logs = "Logs",
|
|
154
|
-
Outputs = "Outputs",
|
|
155
|
-
Products = "Products"
|
|
156
|
-
}
|
|
157
|
-
export type DatasetInput = {
|
|
158
|
-
citation?: InputMaybe<Scalars['String']>;
|
|
159
|
-
description?: InputMaybe<Scalars['String']>;
|
|
160
|
-
extRef?: InputMaybe<Scalars['ID']>;
|
|
161
|
-
layers?: InputMaybe<Array<DatasetLayerInput>>;
|
|
162
|
-
localPath: Scalars['String'];
|
|
163
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
164
|
-
name: Scalars['String'];
|
|
165
|
-
rsXPath: Scalars['String'];
|
|
166
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
167
|
-
};
|
|
168
|
-
export type DatasetLayer = {
|
|
169
|
-
__typename?: 'DatasetLayer';
|
|
170
|
-
citation?: Maybe<Scalars['String']>;
|
|
171
|
-
description?: Maybe<Scalars['String']>;
|
|
172
|
-
lyrName: Scalars['String'];
|
|
173
|
-
meta?: Maybe<Array<MetaData>>;
|
|
174
|
-
name: Scalars['String'];
|
|
175
|
-
summary?: Maybe<Scalars['String']>;
|
|
176
|
-
};
|
|
177
|
-
export type DatasetLayerInput = {
|
|
178
|
-
citation?: InputMaybe<Scalars['String']>;
|
|
179
|
-
description?: InputMaybe<Scalars['String']>;
|
|
180
|
-
lyrName: Scalars['String'];
|
|
181
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
182
|
-
name?: InputMaybe<Scalars['String']>;
|
|
183
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
184
|
-
};
|
|
185
|
-
export type DatasetLayerUpdate = {
|
|
186
|
-
citation?: InputMaybe<Scalars['String']>;
|
|
187
|
-
description?: InputMaybe<Scalars['String']>;
|
|
188
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
189
|
-
name?: InputMaybe<Scalars['String']>;
|
|
190
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
191
|
-
};
|
|
192
|
-
export declare enum DatasetTypeEnum {
|
|
193
|
-
AuxInstrumentFile = "AuxInstrumentFile",
|
|
194
|
-
Csv = "CSV",
|
|
195
|
-
ConfigFile = "ConfigFile",
|
|
196
|
-
Dem = "DEM",
|
|
197
|
-
DataTable = "DataTable",
|
|
198
|
-
Database = "Database",
|
|
199
|
-
File = "File",
|
|
200
|
-
Geopackage = "Geopackage",
|
|
201
|
-
HtmlFile = "HTMLFile",
|
|
202
|
-
HillShade = "HillShade",
|
|
203
|
-
Image = "Image",
|
|
204
|
-
InstrumentFile = "InstrumentFile",
|
|
205
|
-
LogFile = "LogFile",
|
|
206
|
-
MsAccessDb = "MSAccessDB",
|
|
207
|
-
Pdf = "PDF",
|
|
208
|
-
Raster = "Raster",
|
|
209
|
-
SqLiteDb = "SQLiteDB",
|
|
210
|
-
SurveyQualityDb = "SurveyQualityDB",
|
|
211
|
-
Tin = "TIN",
|
|
212
|
-
Vector = "Vector",
|
|
213
|
-
Video = "Video",
|
|
214
|
-
ZipFile = "ZipFile"
|
|
215
|
-
}
|
|
216
|
-
export type DatasetUpdate = {
|
|
217
|
-
citation?: InputMaybe<Scalars['String']>;
|
|
218
|
-
description?: InputMaybe<Scalars['String']>;
|
|
219
|
-
dsId?: InputMaybe<Scalars['String']>;
|
|
220
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
221
|
-
name?: InputMaybe<Scalars['String']>;
|
|
222
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
223
|
-
};
|
|
224
|
-
export declare enum EntitiesWithImagesEnum {
|
|
225
|
-
Collection = "COLLECTION",
|
|
226
|
-
Organization = "ORGANIZATION",
|
|
227
|
-
Project = "PROJECT",
|
|
228
|
-
ProjectType = "PROJECT_TYPE",
|
|
229
|
-
User = "USER"
|
|
230
|
-
}
|
|
231
|
-
export declare enum EntityDeleteActionsEnum {
|
|
232
|
-
Delete = "DELETE",
|
|
233
|
-
DeleteComplete = "DELETE_COMPLETE",
|
|
234
|
-
MakePublic = "MAKE_PUBLIC",
|
|
235
|
-
RequestTransfer = "REQUEST_TRANSFER"
|
|
236
|
-
}
|
|
237
|
-
export type EntityDeletionOptions = {
|
|
238
|
-
totalDelete?: InputMaybe<Scalars['Boolean']>;
|
|
239
|
-
transfer?: InputMaybe<TransferEntityItemsInput>;
|
|
240
|
-
};
|
|
241
|
-
export type FileDownloadMeta = {
|
|
242
|
-
contentType?: Maybe<Scalars['String']>;
|
|
243
|
-
downloadUrl: Scalars['String'];
|
|
244
|
-
etag: Scalars['String'];
|
|
245
|
-
key: Scalars['String'];
|
|
246
|
-
size?: Maybe<Scalars['Int']>;
|
|
247
|
-
};
|
|
248
|
-
export type FileDownloadMetaInput = {
|
|
249
|
-
contentType?: InputMaybe<Scalars['String']>;
|
|
250
|
-
key: Scalars['String'];
|
|
251
|
-
md5: Scalars['String'];
|
|
252
|
-
size?: InputMaybe<Scalars['Int']>;
|
|
253
|
-
};
|
|
254
|
-
export type FileUploadMeta = {
|
|
255
|
-
__typename?: 'FileUploadMeta';
|
|
256
|
-
downloadUrl: Scalars['String'];
|
|
257
|
-
key: Scalars['String'];
|
|
258
|
-
};
|
|
259
|
-
export type HasOwner = {
|
|
260
|
-
ownedBy: Owner;
|
|
261
|
-
};
|
|
262
|
-
export type HasStar = {
|
|
263
|
-
starred: Scalars['Boolean'];
|
|
264
|
-
starredCount: Scalars['Int'];
|
|
265
|
-
};
|
|
266
|
-
export type HasTags = {
|
|
267
|
-
tags: Array<Scalars['String']>;
|
|
268
|
-
};
|
|
269
|
-
export type HeroImage = {
|
|
270
|
-
__typename?: 'HeroImage';
|
|
271
|
-
lg?: Maybe<Scalars['URL']>;
|
|
272
|
-
md?: Maybe<Scalars['URL']>;
|
|
273
|
-
sm?: Maybe<Scalars['URL']>;
|
|
274
|
-
};
|
|
275
|
-
export declare enum ImageTypeEnum {
|
|
276
|
-
Avatar = "AVATAR",
|
|
277
|
-
Hero = "HERO",
|
|
278
|
-
Logo = "LOGO"
|
|
279
|
-
}
|
|
280
|
-
export declare enum JobStatusEnum {
|
|
281
|
-
Failed = "FAILED",
|
|
282
|
-
Processing = "PROCESSING",
|
|
283
|
-
Success = "SUCCESS",
|
|
284
|
-
Unknown = "UNKNOWN"
|
|
285
|
-
}
|
|
286
|
-
export type JobStatusObj = {
|
|
287
|
-
__typename?: 'JobStatusObj';
|
|
288
|
-
data?: Maybe<Scalars['JSONObject']>;
|
|
289
|
-
errors?: Maybe<Array<Scalars['String']>>;
|
|
290
|
-
metaData?: Maybe<Scalars['JSONObject']>;
|
|
291
|
-
percentComplete?: Maybe<Scalars['Int']>;
|
|
292
|
-
status: JobStatusEnum;
|
|
293
|
-
};
|
|
294
|
-
export type MapCluster = {
|
|
295
|
-
__typename?: 'MapCluster';
|
|
296
|
-
coords: Array<Scalars['Float']>;
|
|
297
|
-
count: Scalars['Int'];
|
|
298
|
-
hash: Scalars['String'];
|
|
299
|
-
};
|
|
300
|
-
export type MetaData = {
|
|
301
|
-
__typename?: 'MetaData';
|
|
302
|
-
key: Scalars['String'];
|
|
303
|
-
type?: Maybe<MetaDataTypeEnum>;
|
|
304
|
-
value: Scalars['String'];
|
|
305
|
-
};
|
|
306
|
-
export type MetaDataInput = {
|
|
307
|
-
key: Scalars['String'];
|
|
308
|
-
type?: InputMaybe<MetaDataTypeEnum>;
|
|
309
|
-
value: Scalars['String'];
|
|
310
|
-
};
|
|
311
|
-
export declare enum MetaDataTypeEnum {
|
|
312
|
-
Boolean = "BOOLEAN",
|
|
313
|
-
Filepath = "FILEPATH",
|
|
314
|
-
Float = "FLOAT",
|
|
315
|
-
Guid = "GUID",
|
|
316
|
-
Image = "IMAGE",
|
|
317
|
-
Int = "INT",
|
|
318
|
-
Isodate = "ISODATE",
|
|
319
|
-
Json = "JSON",
|
|
320
|
-
Markdown = "MARKDOWN",
|
|
321
|
-
Richtext = "RICHTEXT",
|
|
322
|
-
String = "STRING",
|
|
323
|
-
Timestamp = "TIMESTAMP",
|
|
324
|
-
Url = "URL",
|
|
325
|
-
Video = "VIDEO"
|
|
326
|
-
}
|
|
327
|
-
export type Mutation = {
|
|
328
|
-
__typename?: 'Mutation';
|
|
329
|
-
actionOrganizationInvite?: Maybe<OrganizationInvite>;
|
|
330
|
-
addCollectionProjects?: Maybe<Collection>;
|
|
331
|
-
adminReIndexOpenSearch?: Maybe<Scalars['String']>;
|
|
332
|
-
adminRecreateOpenSearch?: Maybe<Scalars['Boolean']>;
|
|
333
|
-
adminWipeDynamo?: Maybe<Scalars['Int']>;
|
|
334
|
-
createCollection?: Maybe<Collection>;
|
|
335
|
-
createNotification?: Maybe<Notification>;
|
|
336
|
-
createOrganization?: Maybe<Organization>;
|
|
337
|
-
createOrganizationInvite?: Maybe<OrganizationInvite>;
|
|
338
|
-
createProfile?: Maybe<Profile>;
|
|
339
|
-
createProject?: Maybe<Project>;
|
|
340
|
-
createProjectType?: Maybe<ProjectType>;
|
|
341
|
-
createSavedSearch?: Maybe<SavedSearch>;
|
|
342
|
-
createTransfer?: Maybe<Transfer>;
|
|
343
|
-
deleteCollection?: Maybe<MutationResult>;
|
|
344
|
-
deleteNotifications?: Maybe<MutationResult>;
|
|
345
|
-
deleteOrganization?: Maybe<MutationResult>;
|
|
346
|
-
deleteOrganizationInvite?: Maybe<MutationResult>;
|
|
347
|
-
deleteProfile?: Maybe<MutationResult>;
|
|
348
|
-
deleteProject?: Maybe<MutationResult>;
|
|
349
|
-
deleteProjectType?: Maybe<MutationResult>;
|
|
350
|
-
deleteSavedSearch?: Maybe<MutationResult>;
|
|
351
|
-
deleteTransfer?: Maybe<MutationResult>;
|
|
352
|
-
queueTileRebuild?: Maybe<Scalars['String']>;
|
|
353
|
-
reIndexProjectXML?: Maybe<WatcherOutput>;
|
|
354
|
-
removeCollectionProjects?: Maybe<Collection>;
|
|
355
|
-
removeOrganizationMember?: Maybe<MutationResult>;
|
|
356
|
-
requestOrganizationInvite?: Maybe<OrganizationInvite>;
|
|
357
|
-
resendOrganizationInvite?: Maybe<OrganizationInvite>;
|
|
358
|
-
updateCollection?: Maybe<Collection>;
|
|
359
|
-
updateNotifications?: Maybe<MutationResult>;
|
|
360
|
-
updateOrganization?: Maybe<Organization>;
|
|
361
|
-
updateOrganizationMember?: Maybe<OrganizationUser>;
|
|
362
|
-
updateProfile?: Maybe<Profile>;
|
|
363
|
-
updateProject?: Maybe<Project>;
|
|
364
|
-
updateProjectDataset?: Maybe<Dataset>;
|
|
365
|
-
updateProjectDatasetLayer?: Maybe<DatasetLayer>;
|
|
366
|
-
updateProjectQAQC?: Maybe<QaqcEvent>;
|
|
367
|
-
updateProjectType?: Maybe<ProjectType>;
|
|
368
|
-
updateSavedSearch?: Maybe<SavedSearch>;
|
|
369
|
-
updateStar?: Maybe<MutationResult>;
|
|
370
|
-
updateTransfer?: Maybe<Transfer>;
|
|
371
|
-
zipRebuild?: Maybe<Scalars['ID']>;
|
|
372
|
-
};
|
|
373
|
-
export type MutationActionOrganizationInviteArgs = {
|
|
374
|
-
accept?: InputMaybe<Scalars['Boolean']>;
|
|
375
|
-
id: Scalars['ID'];
|
|
376
|
-
};
|
|
377
|
-
export type MutationAddCollectionProjectsArgs = {
|
|
378
|
-
collectionId: Scalars['ID'];
|
|
379
|
-
projectIds: Array<Scalars['ID']>;
|
|
380
|
-
};
|
|
381
|
-
export type MutationAdminReIndexOpenSearchArgs = {
|
|
382
|
-
paginationToken?: InputMaybe<Scalars['String']>;
|
|
383
|
-
};
|
|
384
|
-
export type MutationCreateCollectionArgs = {
|
|
385
|
-
collection: CollectionInput;
|
|
386
|
-
orgId?: InputMaybe<Scalars['ID']>;
|
|
387
|
-
};
|
|
388
|
-
export type MutationCreateNotificationArgs = {
|
|
389
|
-
notification?: InputMaybe<NotificationInput>;
|
|
390
|
-
};
|
|
391
|
-
export type MutationCreateOrganizationArgs = {
|
|
392
|
-
organization: OrganizationInput;
|
|
393
|
-
};
|
|
394
|
-
export type MutationCreateOrganizationInviteArgs = {
|
|
395
|
-
email?: InputMaybe<Scalars['String']>;
|
|
396
|
-
organizationId: Scalars['ID'];
|
|
397
|
-
role?: InputMaybe<OrganizationInviteRoleEnum>;
|
|
398
|
-
userId?: InputMaybe<Scalars['ID']>;
|
|
399
|
-
};
|
|
400
|
-
export type MutationCreateProfileArgs = {
|
|
401
|
-
email?: InputMaybe<Scalars['String']>;
|
|
402
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
403
|
-
profile: ProfileInput;
|
|
404
|
-
};
|
|
405
|
-
export type MutationCreateProjectArgs = {
|
|
406
|
-
orgId?: InputMaybe<Scalars['ID']>;
|
|
407
|
-
project: ProjectInput;
|
|
408
|
-
projectTypeId?: InputMaybe<Scalars['String']>;
|
|
409
|
-
};
|
|
410
|
-
export type MutationCreateProjectTypeArgs = {
|
|
411
|
-
id: Scalars['String'];
|
|
412
|
-
projectType: ProjectTypeInput;
|
|
413
|
-
state?: InputMaybe<ProjectTypeStateEnum>;
|
|
414
|
-
};
|
|
415
|
-
export type MutationCreateSavedSearchArgs = {
|
|
416
|
-
orgId?: InputMaybe<Scalars['ID']>;
|
|
417
|
-
savedSearch: SavedSearchInput;
|
|
418
|
-
};
|
|
419
|
-
export type MutationCreateTransferArgs = {
|
|
420
|
-
transfer: TransferInput;
|
|
421
|
-
};
|
|
422
|
-
export type MutationDeleteCollectionArgs = {
|
|
423
|
-
id: Scalars['ID'];
|
|
424
|
-
};
|
|
425
|
-
export type MutationDeleteNotificationsArgs = {
|
|
426
|
-
all?: InputMaybe<Scalars['Boolean']>;
|
|
427
|
-
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
428
|
-
};
|
|
429
|
-
export type MutationDeleteOrganizationArgs = {
|
|
430
|
-
id: Scalars['ID'];
|
|
431
|
-
options?: InputMaybe<EntityDeletionOptions>;
|
|
432
|
-
};
|
|
433
|
-
export type MutationDeleteOrganizationInviteArgs = {
|
|
434
|
-
id: Scalars['ID'];
|
|
435
|
-
};
|
|
436
|
-
export type MutationDeleteProfileArgs = {
|
|
437
|
-
options?: InputMaybe<EntityDeletionOptions>;
|
|
438
|
-
};
|
|
439
|
-
export type MutationDeleteProjectArgs = {
|
|
440
|
-
id: Scalars['ID'];
|
|
441
|
-
options?: InputMaybe<EntityDeletionOptions>;
|
|
442
|
-
};
|
|
443
|
-
export type MutationDeleteProjectTypeArgs = {
|
|
444
|
-
id: Scalars['String'];
|
|
445
|
-
};
|
|
446
|
-
export type MutationDeleteSavedSearchArgs = {
|
|
447
|
-
id: Scalars['ID'];
|
|
448
|
-
};
|
|
449
|
-
export type MutationDeleteTransferArgs = {
|
|
450
|
-
transferId: Scalars['ID'];
|
|
451
|
-
};
|
|
452
|
-
export type MutationQueueTileRebuildArgs = {
|
|
453
|
-
filePath?: InputMaybe<Scalars['String']>;
|
|
454
|
-
id: Scalars['ID'];
|
|
455
|
-
symbologies?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
456
|
-
};
|
|
457
|
-
export type MutationReIndexProjectXmlArgs = {
|
|
458
|
-
id: Scalars['ID'];
|
|
459
|
-
};
|
|
460
|
-
export type MutationRemoveCollectionProjectsArgs = {
|
|
461
|
-
collectionId: Scalars['ID'];
|
|
462
|
-
projectIds: Array<Scalars['ID']>;
|
|
463
|
-
};
|
|
464
|
-
export type MutationRemoveOrganizationMemberArgs = {
|
|
465
|
-
organizationId: Scalars['ID'];
|
|
466
|
-
userId: Scalars['ID'];
|
|
467
|
-
};
|
|
468
|
-
export type MutationRequestOrganizationInviteArgs = {
|
|
469
|
-
organizationId: Scalars['ID'];
|
|
470
|
-
};
|
|
471
|
-
export type MutationResendOrganizationInviteArgs = {
|
|
472
|
-
id: Scalars['ID'];
|
|
473
|
-
};
|
|
474
|
-
export type MutationUpdateCollectionArgs = {
|
|
475
|
-
collection?: InputMaybe<CollectionInput>;
|
|
476
|
-
id: Scalars['ID'];
|
|
477
|
-
};
|
|
478
|
-
export type MutationUpdateNotificationsArgs = {
|
|
479
|
-
ids: Array<Scalars['ID']>;
|
|
480
|
-
markAs: NotificationOperationEnum;
|
|
481
|
-
};
|
|
482
|
-
export type MutationUpdateOrganizationArgs = {
|
|
483
|
-
id: Scalars['ID'];
|
|
484
|
-
organization: OrganizationInput;
|
|
485
|
-
};
|
|
486
|
-
export type MutationUpdateOrganizationMemberArgs = {
|
|
487
|
-
organizationId: Scalars['ID'];
|
|
488
|
-
role?: InputMaybe<OrganizationRoleEnum>;
|
|
489
|
-
userId: Scalars['ID'];
|
|
490
|
-
};
|
|
491
|
-
export type MutationUpdateProfileArgs = {
|
|
492
|
-
profile: ProfileInput;
|
|
493
|
-
};
|
|
494
|
-
export type MutationUpdateProjectArgs = {
|
|
495
|
-
project: ProjectInput;
|
|
496
|
-
projectId: Scalars['ID'];
|
|
497
|
-
};
|
|
498
|
-
export type MutationUpdateProjectDatasetArgs = {
|
|
499
|
-
dataset: DatasetUpdate;
|
|
500
|
-
projectId: Scalars['ID'];
|
|
501
|
-
rsXPath: Scalars['String'];
|
|
502
|
-
};
|
|
503
|
-
export type MutationUpdateProjectDatasetLayerArgs = {
|
|
504
|
-
datasetLayer: DatasetLayerUpdate;
|
|
505
|
-
lyrName: Scalars['String'];
|
|
506
|
-
projectId: Scalars['ID'];
|
|
507
|
-
rsXPath: Scalars['String'];
|
|
508
|
-
};
|
|
509
|
-
export type MutationUpdateProjectQaqcArgs = {
|
|
510
|
-
projectId: Scalars['ID'];
|
|
511
|
-
qaqc: QaqcEventInput;
|
|
512
|
-
qaqcId: Scalars['ID'];
|
|
513
|
-
};
|
|
514
|
-
export type MutationUpdateProjectTypeArgs = {
|
|
515
|
-
id: Scalars['String'];
|
|
516
|
-
projectType: ProjectTypeInput;
|
|
517
|
-
state?: InputMaybe<ProjectTypeStateEnum>;
|
|
518
|
-
};
|
|
519
|
-
export type MutationUpdateSavedSearchArgs = {
|
|
520
|
-
id: Scalars['ID'];
|
|
521
|
-
savedSearch: SavedSearchInput;
|
|
522
|
-
};
|
|
523
|
-
export type MutationUpdateStarArgs = {
|
|
524
|
-
id: Scalars['ID'];
|
|
525
|
-
starred: Scalars['Boolean'];
|
|
526
|
-
type: StarrableTypesEnum;
|
|
527
|
-
};
|
|
528
|
-
export type MutationUpdateTransferArgs = {
|
|
529
|
-
note?: InputMaybe<Scalars['String']>;
|
|
530
|
-
state?: InputMaybe<TransferStateEnum>;
|
|
531
|
-
transferId: Scalars['ID'];
|
|
532
|
-
};
|
|
533
|
-
export type MutationZipRebuildArgs = {
|
|
534
|
-
id: Scalars['ID'];
|
|
535
|
-
};
|
|
536
|
-
export type MutationResult = {
|
|
537
|
-
__typename?: 'MutationResult';
|
|
538
|
-
error?: Maybe<Scalars['String']>;
|
|
539
|
-
ids?: Maybe<Array<Scalars['ID']>>;
|
|
540
|
-
message?: Maybe<Scalars['String']>;
|
|
541
|
-
success: Scalars['Boolean'];
|
|
542
|
-
};
|
|
543
|
-
export type MyStars = {
|
|
544
|
-
__typename?: 'MyStars';
|
|
545
|
-
collections: PaginatedCollections;
|
|
546
|
-
organizations: PaginatedOrganizations;
|
|
547
|
-
projects: PaginatedProjects;
|
|
548
|
-
savedSearches: PaginatedSavedSearches;
|
|
549
|
-
users: PaginatedUsers;
|
|
550
|
-
};
|
|
551
|
-
export type MyStarsCollectionsArgs = {
|
|
552
|
-
limit: Scalars['Int'];
|
|
553
|
-
offset: Scalars['Int'];
|
|
554
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
555
|
-
};
|
|
556
|
-
export type MyStarsOrganizationsArgs = {
|
|
557
|
-
limit: Scalars['Int'];
|
|
558
|
-
offset: Scalars['Int'];
|
|
559
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
560
|
-
};
|
|
561
|
-
export type MyStarsProjectsArgs = {
|
|
562
|
-
limit: Scalars['Int'];
|
|
563
|
-
offset: Scalars['Int'];
|
|
564
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
565
|
-
};
|
|
566
|
-
export type MyStarsSavedSearchesArgs = {
|
|
567
|
-
limit: Scalars['Int'];
|
|
568
|
-
offset: Scalars['Int'];
|
|
569
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
570
|
-
};
|
|
571
|
-
export type MyStarsUsersArgs = {
|
|
572
|
-
limit: Scalars['Int'];
|
|
573
|
-
offset: Scalars['Int'];
|
|
574
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
575
|
-
};
|
|
576
|
-
export type Notification = {
|
|
577
|
-
__typename?: 'Notification';
|
|
578
|
-
id: Scalars['ID'];
|
|
579
|
-
object: DbObjNotifications;
|
|
580
|
-
seen: Scalars['Boolean'];
|
|
581
|
-
subject: DbObjNotifications;
|
|
582
|
-
time: Scalars['DateTime'];
|
|
583
|
-
type: NotificationTypesEnum;
|
|
584
|
-
verb: NotificationActionsEnum;
|
|
585
|
-
};
|
|
586
|
-
export declare enum NotificationActionsEnum {
|
|
587
|
-
Created = "CREATED",
|
|
588
|
-
Deleted = "DELETED",
|
|
589
|
-
Renamed = "RENAMED",
|
|
590
|
-
Transferred = "TRANSFERRED",
|
|
591
|
-
Updated = "UPDATED"
|
|
592
|
-
}
|
|
593
|
-
export type NotificationInput = {
|
|
594
|
-
object: DbObjNotificationsInput;
|
|
595
|
-
subject: DbObjNotificationsInput;
|
|
596
|
-
type: NotificationTypesEnum;
|
|
597
|
-
verb: NotificationActionsEnum;
|
|
598
|
-
};
|
|
599
|
-
export declare enum NotificationOperationEnum {
|
|
600
|
-
Delete = "DELETE",
|
|
601
|
-
MarkRead = "MARK_READ",
|
|
602
|
-
MarkUnread = "MARK_UNREAD"
|
|
603
|
-
}
|
|
604
|
-
export declare enum NotificationTypesEnum {
|
|
605
|
-
Collection = "COLLECTION",
|
|
606
|
-
Organization = "ORGANIZATION",
|
|
607
|
-
Project = "PROJECT",
|
|
608
|
-
SavedSearch = "SAVED_SEARCH",
|
|
609
|
-
User = "USER"
|
|
610
|
-
}
|
|
611
|
-
export type ObjectPermissions = {
|
|
612
|
-
__typename?: 'ObjectPermissions';
|
|
613
|
-
delete?: Maybe<Scalars['Boolean']>;
|
|
614
|
-
update?: Maybe<Scalars['Boolean']>;
|
|
615
|
-
view?: Maybe<Scalars['Boolean']>;
|
|
616
|
-
};
|
|
617
|
-
export type Organization = DbObj & HasStar & {
|
|
618
|
-
__typename?: 'Organization';
|
|
619
|
-
collections: PaginatedCollections;
|
|
620
|
-
createdBy: User;
|
|
621
|
-
createdOn: Scalars['DateTime'];
|
|
622
|
-
description: Scalars['String'];
|
|
623
|
-
id: Scalars['ID'];
|
|
624
|
-
logo?: Maybe<Scalars['URL']>;
|
|
625
|
-
meta: Array<MetaData>;
|
|
626
|
-
myRole: OrganizationRoleEnum;
|
|
627
|
-
name: Scalars['String'];
|
|
628
|
-
organizationInvites: PaginatedOrganizationInvites;
|
|
629
|
-
organizationUsers: PaginatedOrganizationUsers;
|
|
630
|
-
permissions: ObjectPermissions;
|
|
631
|
-
preferences?: Maybe<Scalars['JSONObject']>;
|
|
632
|
-
projects: PaginatedProjects;
|
|
633
|
-
savedSearches: PaginatedSavedSearches;
|
|
634
|
-
social?: Maybe<SocialLinks>;
|
|
635
|
-
starred: Scalars['Boolean'];
|
|
636
|
-
starredCount: Scalars['Int'];
|
|
637
|
-
summary: Scalars['String'];
|
|
638
|
-
updatedBy: User;
|
|
639
|
-
updatedOn: Scalars['DateTime'];
|
|
640
|
-
};
|
|
641
|
-
export type OrganizationCollectionsArgs = {
|
|
642
|
-
limit: Scalars['Int'];
|
|
643
|
-
offset: Scalars['Int'];
|
|
644
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
645
|
-
};
|
|
646
|
-
export type OrganizationOrganizationInvitesArgs = {
|
|
647
|
-
limit: Scalars['Int'];
|
|
648
|
-
offset: Scalars['Int'];
|
|
649
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
650
|
-
};
|
|
651
|
-
export type OrganizationOrganizationUsersArgs = {
|
|
652
|
-
limit: Scalars['Int'];
|
|
653
|
-
offset: Scalars['Int'];
|
|
654
|
-
role?: InputMaybe<OrganizationRoleEnum>;
|
|
655
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
656
|
-
};
|
|
657
|
-
export type OrganizationProjectsArgs = {
|
|
658
|
-
limit: Scalars['Int'];
|
|
659
|
-
offset: Scalars['Int'];
|
|
660
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
661
|
-
};
|
|
662
|
-
export type OrganizationSavedSearchesArgs = {
|
|
663
|
-
limit: Scalars['Int'];
|
|
664
|
-
offset: Scalars['Int'];
|
|
665
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
666
|
-
};
|
|
667
|
-
export type OrganizationInput = {
|
|
668
|
-
clearLogo?: InputMaybe<Scalars['Boolean']>;
|
|
669
|
-
description?: InputMaybe<Scalars['String']>;
|
|
670
|
-
logoToken?: InputMaybe<Scalars['String']>;
|
|
671
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
672
|
-
name?: InputMaybe<Scalars['String']>;
|
|
673
|
-
preferences?: InputMaybe<Scalars['JSONObject']>;
|
|
674
|
-
social?: InputMaybe<SocialLinksInput>;
|
|
675
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
676
|
-
};
|
|
677
|
-
export type OrganizationInvite = DbSimpleObj & {
|
|
678
|
-
__typename?: 'OrganizationInvite';
|
|
679
|
-
createdBy: User;
|
|
680
|
-
createdOn: Scalars['DateTime'];
|
|
681
|
-
email?: Maybe<Scalars['String']>;
|
|
682
|
-
id: Scalars['ID'];
|
|
683
|
-
invitee?: Maybe<User>;
|
|
684
|
-
inviter: User;
|
|
685
|
-
organization: Organization;
|
|
686
|
-
retries: Scalars['Int'];
|
|
687
|
-
role: OrganizationInviteRoleEnum;
|
|
688
|
-
state: OrganizationInviteStateEnum;
|
|
689
|
-
updatedBy: User;
|
|
690
|
-
updatedOn: Scalars['DateTime'];
|
|
691
|
-
};
|
|
692
|
-
export declare enum OrganizationInviteRoleEnum {
|
|
693
|
-
Admin = "ADMIN",
|
|
694
|
-
Contributor = "CONTRIBUTOR",
|
|
695
|
-
Viewer = "VIEWER"
|
|
696
|
-
}
|
|
697
|
-
export declare enum OrganizationInviteStateEnum {
|
|
698
|
-
Accepted = "ACCEPTED",
|
|
699
|
-
Expired = "EXPIRED",
|
|
700
|
-
Invited = "INVITED",
|
|
701
|
-
Rejected = "REJECTED",
|
|
702
|
-
Requested = "REQUESTED"
|
|
703
|
-
}
|
|
704
|
-
export declare enum OrganizationRoleEnum {
|
|
705
|
-
Admin = "ADMIN",
|
|
706
|
-
Contributor = "CONTRIBUTOR",
|
|
707
|
-
None = "NONE",
|
|
708
|
-
Owner = "OWNER",
|
|
709
|
-
Viewer = "VIEWER"
|
|
710
|
-
}
|
|
711
|
-
export type OrganizationUser = {
|
|
712
|
-
__typename?: 'OrganizationUser';
|
|
713
|
-
organization: Organization;
|
|
714
|
-
role: OrganizationRoleEnum;
|
|
715
|
-
user: User;
|
|
716
|
-
};
|
|
717
|
-
export type Owner = Organization | User;
|
|
718
|
-
export type OwnerInput = {
|
|
719
|
-
id: Scalars['String'];
|
|
720
|
-
type: OwnerInputTypesEnum;
|
|
721
|
-
};
|
|
722
|
-
export declare enum OwnerInputTypesEnum {
|
|
723
|
-
Organization = "ORGANIZATION",
|
|
724
|
-
User = "USER"
|
|
725
|
-
}
|
|
726
|
-
export type Owners = PaginatedUsers;
|
|
727
|
-
export type PaginatedCollections = Pagination & {
|
|
728
|
-
__typename?: 'PaginatedCollections';
|
|
729
|
-
items: Array<Collection>;
|
|
730
|
-
limit: Scalars['Int'];
|
|
731
|
-
offset: Scalars['Int'];
|
|
732
|
-
total: Scalars['Int'];
|
|
733
|
-
};
|
|
734
|
-
export type PaginatedDatasets = Pagination & {
|
|
735
|
-
__typename?: 'PaginatedDatasets';
|
|
736
|
-
items: Array<Dataset>;
|
|
737
|
-
limit: Scalars['Int'];
|
|
738
|
-
offset: Scalars['Int'];
|
|
739
|
-
total: Scalars['Int'];
|
|
740
|
-
};
|
|
741
|
-
export type PaginatedFileDownloadMeta = Pagination & {
|
|
742
|
-
__typename?: 'PaginatedFileDownloadMeta';
|
|
743
|
-
items: Array<FileDownloadMeta>;
|
|
744
|
-
limit: Scalars['Int'];
|
|
745
|
-
offset: Scalars['Int'];
|
|
746
|
-
total: Scalars['Int'];
|
|
747
|
-
};
|
|
748
|
-
export type PaginatedNotifications = Pagination & {
|
|
749
|
-
__typename?: 'PaginatedNotifications';
|
|
750
|
-
items: Array<Notification>;
|
|
751
|
-
limit: Scalars['Int'];
|
|
752
|
-
offset: Scalars['Int'];
|
|
753
|
-
total: Scalars['Int'];
|
|
754
|
-
};
|
|
755
|
-
export type PaginatedOrganizationInvites = Pagination & {
|
|
756
|
-
__typename?: 'PaginatedOrganizationInvites';
|
|
757
|
-
items: Array<OrganizationInvite>;
|
|
758
|
-
limit: Scalars['Int'];
|
|
759
|
-
offset: Scalars['Int'];
|
|
760
|
-
total: Scalars['Int'];
|
|
761
|
-
};
|
|
762
|
-
export type PaginatedOrganizationUsers = Pagination & {
|
|
763
|
-
__typename?: 'PaginatedOrganizationUsers';
|
|
764
|
-
items: Array<OrganizationUser>;
|
|
765
|
-
limit: Scalars['Int'];
|
|
766
|
-
offset: Scalars['Int'];
|
|
767
|
-
total: Scalars['Int'];
|
|
768
|
-
};
|
|
769
|
-
export type PaginatedOrganizations = Pagination & {
|
|
770
|
-
__typename?: 'PaginatedOrganizations';
|
|
771
|
-
items: Array<Organization>;
|
|
772
|
-
limit: Scalars['Int'];
|
|
773
|
-
offset: Scalars['Int'];
|
|
774
|
-
total: Scalars['Int'];
|
|
775
|
-
};
|
|
776
|
-
export type PaginatedProjectTypes = Pagination & {
|
|
777
|
-
__typename?: 'PaginatedProjectTypes';
|
|
778
|
-
items: Array<ProjectType>;
|
|
779
|
-
limit: Scalars['Int'];
|
|
780
|
-
offset: Scalars['Int'];
|
|
781
|
-
total: Scalars['Int'];
|
|
782
|
-
};
|
|
783
|
-
export type PaginatedProjects = Pagination & {
|
|
784
|
-
__typename?: 'PaginatedProjects';
|
|
785
|
-
items: Array<Project>;
|
|
786
|
-
limit: Scalars['Int'];
|
|
787
|
-
offset: Scalars['Int'];
|
|
788
|
-
total: Scalars['Int'];
|
|
789
|
-
};
|
|
790
|
-
export type PaginatedQaqcEvents = Pagination & {
|
|
791
|
-
__typename?: 'PaginatedQAQCEvents';
|
|
792
|
-
items: Array<QaqcEvent>;
|
|
793
|
-
limit: Scalars['Int'];
|
|
794
|
-
offset: Scalars['Int'];
|
|
795
|
-
total: Scalars['Int'];
|
|
796
|
-
};
|
|
797
|
-
export type PaginatedSavedSearches = Pagination & {
|
|
798
|
-
__typename?: 'PaginatedSavedSearches';
|
|
799
|
-
items: Array<SavedSearch>;
|
|
800
|
-
limit: Scalars['Int'];
|
|
801
|
-
offset: Scalars['Int'];
|
|
802
|
-
total: Scalars['Int'];
|
|
803
|
-
};
|
|
804
|
-
export type PaginatedUsers = Pagination & {
|
|
805
|
-
__typename?: 'PaginatedUsers';
|
|
806
|
-
items: Array<User>;
|
|
807
|
-
limit: Scalars['Int'];
|
|
808
|
-
offset: Scalars['Int'];
|
|
809
|
-
total: Scalars['Int'];
|
|
810
|
-
};
|
|
811
|
-
export type Pagination = {
|
|
812
|
-
limit: Scalars['Int'];
|
|
813
|
-
offset: Scalars['Int'];
|
|
814
|
-
total: Scalars['Int'];
|
|
815
|
-
};
|
|
816
|
-
export type Profile = DbObj & UserInterface & {
|
|
817
|
-
__typename?: 'Profile';
|
|
818
|
-
affiliations: Array<Maybe<UserAffiliation>>;
|
|
819
|
-
avatar?: Maybe<Scalars['URL']>;
|
|
820
|
-
collections: PaginatedCollections;
|
|
821
|
-
createdBy: User;
|
|
822
|
-
createdOn: Scalars['DateTime'];
|
|
823
|
-
description: Scalars['String'];
|
|
824
|
-
email?: Maybe<Scalars['EmailAddress']>;
|
|
825
|
-
id: Scalars['ID'];
|
|
826
|
-
initialized?: Maybe<Scalars['Boolean']>;
|
|
827
|
-
jobTitle: Scalars['String'];
|
|
828
|
-
lastLogin: Scalars['DateTime'];
|
|
829
|
-
location: Scalars['String'];
|
|
830
|
-
meta: Array<MetaData>;
|
|
831
|
-
name: Scalars['String'];
|
|
832
|
-
notifications: PaginatedNotifications;
|
|
833
|
-
organizationInvites: PaginatedOrganizationInvites;
|
|
834
|
-
organizations: PaginatedOrganizations;
|
|
835
|
-
preferences: Scalars['JSONObject'];
|
|
836
|
-
projects: PaginatedProjects;
|
|
837
|
-
savedSearches: PaginatedSavedSearches;
|
|
838
|
-
social: SocialLinks;
|
|
839
|
-
starred: Scalars['Boolean'];
|
|
840
|
-
starredCount: Scalars['Int'];
|
|
841
|
-
stars: MyStars;
|
|
842
|
-
summary: Scalars['String'];
|
|
843
|
-
updatedBy: User;
|
|
844
|
-
updatedOn: Scalars['DateTime'];
|
|
845
|
-
};
|
|
846
|
-
export type ProfileCollectionsArgs = {
|
|
847
|
-
limit: Scalars['Int'];
|
|
848
|
-
offset: Scalars['Int'];
|
|
849
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
850
|
-
};
|
|
851
|
-
export type ProfileNotificationsArgs = {
|
|
852
|
-
limit: Scalars['Int'];
|
|
853
|
-
offset: Scalars['Int'];
|
|
854
|
-
op?: InputMaybe<NotificationOperationEnum>;
|
|
855
|
-
};
|
|
856
|
-
export type ProfileOrganizationInvitesArgs = {
|
|
857
|
-
limit: Scalars['Int'];
|
|
858
|
-
offset: Scalars['Int'];
|
|
859
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
860
|
-
};
|
|
861
|
-
export type ProfileOrganizationsArgs = {
|
|
862
|
-
limit: Scalars['Int'];
|
|
863
|
-
offset: Scalars['Int'];
|
|
864
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
865
|
-
};
|
|
866
|
-
export type ProfileProjectsArgs = {
|
|
867
|
-
limit: Scalars['Int'];
|
|
868
|
-
offset: Scalars['Int'];
|
|
869
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
870
|
-
};
|
|
871
|
-
export type ProfileSavedSearchesArgs = {
|
|
872
|
-
limit: Scalars['Int'];
|
|
873
|
-
offset: Scalars['Int'];
|
|
874
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
875
|
-
};
|
|
876
|
-
export type ProfileInput = {
|
|
877
|
-
affiliations?: InputMaybe<Array<UserAffiliationInput>>;
|
|
878
|
-
avatarToken?: InputMaybe<Scalars['String']>;
|
|
879
|
-
clearAvatar?: InputMaybe<Scalars['Boolean']>;
|
|
880
|
-
description?: InputMaybe<Scalars['String']>;
|
|
881
|
-
jobTitle?: InputMaybe<Scalars['String']>;
|
|
882
|
-
location?: InputMaybe<Scalars['String']>;
|
|
883
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
884
|
-
name?: InputMaybe<Scalars['String']>;
|
|
885
|
-
preferences?: InputMaybe<Scalars['JSONObject']>;
|
|
886
|
-
socialLinks?: InputMaybe<SocialLinksInput>;
|
|
887
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
888
|
-
};
|
|
889
|
-
export type Project = DbObj & HasOwner & HasStar & {
|
|
890
|
-
__typename?: 'Project';
|
|
891
|
-
bounds?: Maybe<ProjectBounds>;
|
|
892
|
-
citation?: Maybe<Scalars['String']>;
|
|
893
|
-
collections: PaginatedCollections;
|
|
894
|
-
createdBy: User;
|
|
895
|
-
createdOn: Scalars['DateTime'];
|
|
896
|
-
datasets: PaginatedDatasets;
|
|
897
|
-
description: Scalars['String'];
|
|
898
|
-
files: Array<FileDownloadMeta>;
|
|
899
|
-
heroImage?: Maybe<HeroImage>;
|
|
900
|
-
id: Scalars['ID'];
|
|
901
|
-
meta: Array<MetaData>;
|
|
902
|
-
name: Scalars['String'];
|
|
903
|
-
ownedBy: Owner;
|
|
904
|
-
permissions: ObjectPermissions;
|
|
905
|
-
projectType: ProjectType;
|
|
906
|
-
qaqc: PaginatedQaqcEvents;
|
|
907
|
-
ref: Scalars['String'];
|
|
908
|
-
sponsor?: Maybe<Owner>;
|
|
909
|
-
starred: Scalars['Boolean'];
|
|
910
|
-
starredCount: Scalars['Int'];
|
|
911
|
-
summary: Scalars['String'];
|
|
912
|
-
tags: Array<Scalars['String']>;
|
|
913
|
-
totalSize?: Maybe<Scalars['Int']>;
|
|
914
|
-
tree?: Maybe<ProjectTree>;
|
|
915
|
-
updatedBy: User;
|
|
916
|
-
updatedOn: Scalars['DateTime'];
|
|
917
|
-
visibility: ProjectVisibilityEnum;
|
|
918
|
-
};
|
|
919
|
-
export type ProjectCollectionsArgs = {
|
|
920
|
-
limit: Scalars['Int'];
|
|
921
|
-
offset: Scalars['Int'];
|
|
922
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
923
|
-
};
|
|
924
|
-
export type ProjectDatasetsArgs = {
|
|
925
|
-
limit: Scalars['Int'];
|
|
926
|
-
offset: Scalars['Int'];
|
|
927
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
928
|
-
};
|
|
929
|
-
export type ProjectQaqcArgs = {
|
|
930
|
-
limit: Scalars['Int'];
|
|
931
|
-
offset: Scalars['Int'];
|
|
932
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
933
|
-
};
|
|
934
|
-
export type ProjectBounds = DbSimpleObj & {
|
|
935
|
-
__typename?: 'ProjectBounds';
|
|
936
|
-
area?: Maybe<Scalars['Float']>;
|
|
937
|
-
bbox: Array<Scalars['Float']>;
|
|
938
|
-
centroid: Array<Scalars['Float']>;
|
|
939
|
-
createdBy: User;
|
|
940
|
-
createdOn: Scalars['DateTime'];
|
|
941
|
-
geoHash?: Maybe<Scalars['String']>;
|
|
942
|
-
id: Scalars['ID'];
|
|
943
|
-
polygonUrl: Scalars['URL'];
|
|
944
|
-
updatedBy: User;
|
|
945
|
-
updatedOn: Scalars['DateTime'];
|
|
946
|
-
};
|
|
947
|
-
export declare enum ProjectDeleteChoicesEnum {
|
|
948
|
-
Delete = "DELETE",
|
|
949
|
-
DeleteComplete = "DELETE_COMPLETE"
|
|
950
|
-
}
|
|
951
|
-
export declare enum ProjectGroupVisibilityEnum {
|
|
952
|
-
Public = "PUBLIC",
|
|
953
|
-
Secret = "SECRET"
|
|
954
|
-
}
|
|
955
|
-
export type ProjectInput = {
|
|
956
|
-
boundsToken?: InputMaybe<Scalars['String']>;
|
|
957
|
-
citation?: InputMaybe<Scalars['String']>;
|
|
958
|
-
clearBounds?: InputMaybe<Scalars['Boolean']>;
|
|
959
|
-
clearHeroImage?: InputMaybe<Scalars['Boolean']>;
|
|
960
|
-
clearSponsor?: InputMaybe<Scalars['Boolean']>;
|
|
961
|
-
datasets?: InputMaybe<Array<DatasetInput>>;
|
|
962
|
-
deleteDatasets?: InputMaybe<Array<Scalars['ID']>>;
|
|
963
|
-
description?: InputMaybe<Scalars['String']>;
|
|
964
|
-
heroImageToken?: InputMaybe<Scalars['String']>;
|
|
965
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
966
|
-
name?: InputMaybe<Scalars['String']>;
|
|
967
|
-
qaqc?: InputMaybe<Array<QaqcEventInput>>;
|
|
968
|
-
sponsor?: InputMaybe<OwnerInput>;
|
|
969
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
970
|
-
tags?: InputMaybe<Array<Scalars['String']>>;
|
|
971
|
-
totalSize?: InputMaybe<Scalars['Int']>;
|
|
972
|
-
visibility?: InputMaybe<ProjectVisibilityEnum>;
|
|
973
|
-
};
|
|
974
|
-
export type ProjectSearchMeta = {
|
|
975
|
-
__typename?: 'ProjectSearchMeta';
|
|
976
|
-
area?: Maybe<Scalars['Float']>;
|
|
977
|
-
bbox?: Maybe<Array<Scalars['Float']>>;
|
|
978
|
-
geoBuckets?: Maybe<Scalars['JSONObject']>;
|
|
979
|
-
maxScore?: Maybe<Scalars['Float']>;
|
|
980
|
-
metaDataBuckets: Scalars['JSONObject'];
|
|
981
|
-
projectTypes?: Maybe<Scalars['JSONObject']>;
|
|
982
|
-
searchTime?: Maybe<Scalars['Float']>;
|
|
983
|
-
};
|
|
984
|
-
export type ProjectSearchParams = {
|
|
985
|
-
__typename?: 'ProjectSearchParams';
|
|
986
|
-
bbox?: Maybe<Array<Scalars['Float']>>;
|
|
987
|
-
collection?: Maybe<Scalars['ID']>;
|
|
988
|
-
createdOn?: Maybe<SearchDate>;
|
|
989
|
-
editableOnly?: Maybe<Scalars['Boolean']>;
|
|
990
|
-
keywords?: Maybe<Scalars['String']>;
|
|
991
|
-
meta?: Maybe<Array<MetaData>>;
|
|
992
|
-
name?: Maybe<Scalars['String']>;
|
|
993
|
-
ownedBy?: Maybe<SearchOwner>;
|
|
994
|
-
projectTypeId?: Maybe<Scalars['String']>;
|
|
995
|
-
tags?: Maybe<Array<Scalars['String']>>;
|
|
996
|
-
updatedOn?: Maybe<SearchDate>;
|
|
997
|
-
};
|
|
998
|
-
export type ProjectSearchParamsInput = {
|
|
999
|
-
bbox?: InputMaybe<Array<Scalars['Float']>>;
|
|
1000
|
-
boundsId?: InputMaybe<Scalars['ID']>;
|
|
1001
|
-
collection?: InputMaybe<Scalars['ID']>;
|
|
1002
|
-
createdOn?: InputMaybe<SearchDateInput>;
|
|
1003
|
-
editableOnly?: InputMaybe<Scalars['Boolean']>;
|
|
1004
|
-
keywords?: InputMaybe<Scalars['String']>;
|
|
1005
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1006
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1007
|
-
ownedBy?: InputMaybe<OwnerInput>;
|
|
1008
|
-
projectTypeId?: InputMaybe<Scalars['String']>;
|
|
1009
|
-
tags?: InputMaybe<Array<Scalars['String']>>;
|
|
1010
|
-
updatedOn?: InputMaybe<SearchDateInput>;
|
|
1011
|
-
};
|
|
1012
|
-
export type ProjectTree = {
|
|
1013
|
-
__typename?: 'ProjectTree';
|
|
1014
|
-
branches?: Maybe<Array<Maybe<ProjectTreeBranch>>>;
|
|
1015
|
-
defaultView?: Maybe<Scalars['ID']>;
|
|
1016
|
-
description?: Maybe<Scalars['String']>;
|
|
1017
|
-
leaves?: Maybe<Array<Maybe<ProjectTreeLeaf>>>;
|
|
1018
|
-
name?: Maybe<Scalars['String']>;
|
|
1019
|
-
views?: Maybe<Array<Maybe<ProjectTreeView>>>;
|
|
1020
|
-
};
|
|
1021
|
-
export type ProjectTreeBranch = {
|
|
1022
|
-
__typename?: 'ProjectTreeBranch';
|
|
1023
|
-
bid?: Maybe<Scalars['Int']>;
|
|
1024
|
-
collapsed?: Maybe<Scalars['Boolean']>;
|
|
1025
|
-
label: Scalars['String'];
|
|
1026
|
-
pid?: Maybe<Scalars['Int']>;
|
|
1027
|
-
};
|
|
1028
|
-
export declare enum ProjectTreeLayerTypeEnum {
|
|
1029
|
-
File = "FILE",
|
|
1030
|
-
Line = "LINE",
|
|
1031
|
-
Point = "POINT",
|
|
1032
|
-
Polygon = "POLYGON",
|
|
1033
|
-
Raster = "RASTER",
|
|
1034
|
-
Report = "REPORT",
|
|
1035
|
-
Tin = "TIN"
|
|
1036
|
-
}
|
|
1037
|
-
export type ProjectTreeLeaf = {
|
|
1038
|
-
__typename?: 'ProjectTreeLeaf';
|
|
1039
|
-
blLayerId?: Maybe<Scalars['String']>;
|
|
1040
|
-
dataset?: Maybe<Dataset>;
|
|
1041
|
-
datasetLayer?: Maybe<DatasetLayer>;
|
|
1042
|
-
id?: Maybe<Scalars['Int']>;
|
|
1043
|
-
label?: Maybe<Scalars['String']>;
|
|
1044
|
-
labelxpath?: Maybe<Scalars['String']>;
|
|
1045
|
-
layerType: ProjectTreeLayerTypeEnum;
|
|
1046
|
-
lyrName?: Maybe<Scalars['String']>;
|
|
1047
|
-
nodeId?: Maybe<Scalars['ID']>;
|
|
1048
|
-
pid?: Maybe<Scalars['Int']>;
|
|
1049
|
-
rsXPath: Scalars['String'];
|
|
1050
|
-
symbology?: Maybe<Scalars['String']>;
|
|
1051
|
-
transparency?: Maybe<Scalars['Int']>;
|
|
1052
|
-
};
|
|
1053
|
-
export type ProjectTreeView = {
|
|
1054
|
-
__typename?: 'ProjectTreeView';
|
|
1055
|
-
description?: Maybe<Scalars['String']>;
|
|
1056
|
-
id: Scalars['ID'];
|
|
1057
|
-
layers?: Maybe<Array<Maybe<ProjectTreeViewLayer>>>;
|
|
1058
|
-
name: Scalars['String'];
|
|
1059
|
-
};
|
|
1060
|
-
export type ProjectTreeViewLayer = {
|
|
1061
|
-
__typename?: 'ProjectTreeViewLayer';
|
|
1062
|
-
id: Scalars['ID'];
|
|
1063
|
-
visible?: Maybe<Scalars['Boolean']>;
|
|
1064
|
-
};
|
|
1065
|
-
export type ProjectType = DbObj & {
|
|
1066
|
-
__typename?: 'ProjectType';
|
|
1067
|
-
createdBy: User;
|
|
1068
|
-
createdOn: Scalars['DateTime'];
|
|
1069
|
-
description: Scalars['String'];
|
|
1070
|
-
id: Scalars['ID'];
|
|
1071
|
-
logo?: Maybe<Scalars['URL']>;
|
|
1072
|
-
machineName: Scalars['String'];
|
|
1073
|
-
meta: Array<MetaData>;
|
|
1074
|
-
name: Scalars['String'];
|
|
1075
|
-
state: ProjectTypeStateEnum;
|
|
1076
|
-
summary: Scalars['String'];
|
|
1077
|
-
updatedBy: User;
|
|
1078
|
-
updatedOn: Scalars['DateTime'];
|
|
1079
|
-
url?: Maybe<Scalars['URL']>;
|
|
1080
|
-
};
|
|
1081
|
-
export type ProjectTypeInput = {
|
|
1082
|
-
clearLogo?: InputMaybe<Scalars['Boolean']>;
|
|
1083
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1084
|
-
logoToken?: InputMaybe<Scalars['String']>;
|
|
1085
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1086
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1087
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
1088
|
-
url?: InputMaybe<Scalars['URL']>;
|
|
1089
|
-
};
|
|
1090
|
-
export declare enum ProjectTypeStateEnum {
|
|
1091
|
-
Active = "ACTIVE",
|
|
1092
|
-
Deleted = "DELETED",
|
|
1093
|
-
Suggested = "SUGGESTED"
|
|
1094
|
-
}
|
|
1095
|
-
export type ProjectUploadUrl = {
|
|
1096
|
-
__typename?: 'ProjectUploadUrl';
|
|
1097
|
-
fields?: Maybe<Scalars['JSONObject']>;
|
|
1098
|
-
origPath?: Maybe<Scalars['String']>;
|
|
1099
|
-
url: Scalars['String'];
|
|
1100
|
-
};
|
|
1101
|
-
export type ProjectValidation = {
|
|
1102
|
-
__typename?: 'ProjectValidation';
|
|
1103
|
-
errors?: Maybe<Array<Maybe<ProjectValidationError>>>;
|
|
1104
|
-
valid?: Maybe<Scalars['Boolean']>;
|
|
1105
|
-
};
|
|
1106
|
-
export type ProjectValidationError = {
|
|
1107
|
-
__typename?: 'ProjectValidationError';
|
|
1108
|
-
code?: Maybe<Scalars['String']>;
|
|
1109
|
-
message: Scalars['String'];
|
|
1110
|
-
severity?: Maybe<SeverityEnum>;
|
|
1111
|
-
};
|
|
1112
|
-
export declare enum ProjectVisibilityEnum {
|
|
1113
|
-
Private = "PRIVATE",
|
|
1114
|
-
Public = "PUBLIC",
|
|
1115
|
-
Secret = "SECRET"
|
|
1116
|
-
}
|
|
1117
|
-
export type QaqcEvent = DbObj & {
|
|
1118
|
-
__typename?: 'QAQCEvent';
|
|
1119
|
-
createdBy: User;
|
|
1120
|
-
createdOn: Scalars['DateTime'];
|
|
1121
|
-
datePerformed: Scalars['DateTime'];
|
|
1122
|
-
description: Scalars['String'];
|
|
1123
|
-
id: Scalars['ID'];
|
|
1124
|
-
meta: Array<MetaData>;
|
|
1125
|
-
name: Scalars['String'];
|
|
1126
|
-
performedBy: Scalars['String'];
|
|
1127
|
-
state: QaqcStateEnum;
|
|
1128
|
-
summary: Scalars['String'];
|
|
1129
|
-
supportingLinks?: Maybe<Array<Scalars['URL']>>;
|
|
1130
|
-
updatedBy: User;
|
|
1131
|
-
updatedOn: Scalars['DateTime'];
|
|
1132
|
-
};
|
|
1133
|
-
export type QaqcEventInput = {
|
|
1134
|
-
datePerformed: Scalars['DateTime'];
|
|
1135
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1136
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1137
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1138
|
-
performedBy: Scalars['String'];
|
|
1139
|
-
state: QaqcStateEnum;
|
|
1140
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
1141
|
-
supportingLinks?: InputMaybe<Array<Scalars['URL']>>;
|
|
1142
|
-
};
|
|
1143
|
-
export declare enum QaqcStateEnum {
|
|
1144
|
-
Failed = "FAILED",
|
|
1145
|
-
Passed = "PASSED",
|
|
1146
|
-
Provisional = "PROVISIONAL"
|
|
1147
|
-
}
|
|
1148
|
-
export type Query = {
|
|
1149
|
-
__typename?: 'Query';
|
|
1150
|
-
auth?: Maybe<AuthParams>;
|
|
1151
|
-
checkUpload?: Maybe<JobStatusObj>;
|
|
1152
|
-
collection?: Maybe<Collection>;
|
|
1153
|
-
downloadFile?: Maybe<FileDownloadMeta>;
|
|
1154
|
-
downloadZip?: Maybe<FileDownloadMeta>;
|
|
1155
|
-
finalizeProjectUpload?: Maybe<JobStatusObj>;
|
|
1156
|
-
getLayerTiles?: Maybe<TileService>;
|
|
1157
|
-
getWebSymbology?: Maybe<Symbology>;
|
|
1158
|
-
organization?: Maybe<Organization>;
|
|
1159
|
-
profile?: Maybe<Profile>;
|
|
1160
|
-
project?: Maybe<Project>;
|
|
1161
|
-
projectType?: Maybe<ProjectType>;
|
|
1162
|
-
projectTypes?: Maybe<PaginatedProjectTypes>;
|
|
1163
|
-
requestUploadBounds?: Maybe<UploadUrl>;
|
|
1164
|
-
requestUploadImage?: Maybe<UploadUrl>;
|
|
1165
|
-
requestUploadProjectFileUrls?: Maybe<UploadProjectRequest>;
|
|
1166
|
-
savedSearch?: Maybe<SavedSearch>;
|
|
1167
|
-
searchCollections: SearchCollectionPagination;
|
|
1168
|
-
searchMapBounds: SearchMapBoundsResult;
|
|
1169
|
-
searchMapClusters: SearchMapClusterResult;
|
|
1170
|
-
searchOrganizations: SearchOrganizationPagination;
|
|
1171
|
-
searchProjects: SearchProjectPagination;
|
|
1172
|
-
searchSavedSearches: SearchSavedSearchPagination;
|
|
1173
|
-
searchSuggest?: Maybe<SearchSuggestionResults>;
|
|
1174
|
-
searchUsers: SearchUserPagination;
|
|
1175
|
-
user?: Maybe<User>;
|
|
1176
|
-
validateProject?: Maybe<ProjectValidation>;
|
|
1177
|
-
};
|
|
1178
|
-
export type QueryCheckUploadArgs = {
|
|
1179
|
-
token: Scalars['String'];
|
|
1180
|
-
};
|
|
1181
|
-
export type QueryCollectionArgs = {
|
|
1182
|
-
id: Scalars['ID'];
|
|
1183
|
-
};
|
|
1184
|
-
export type QueryDownloadFileArgs = {
|
|
1185
|
-
filePath: Scalars['String'];
|
|
1186
|
-
projectId: Scalars['ID'];
|
|
1187
|
-
};
|
|
1188
|
-
export type QueryDownloadZipArgs = {
|
|
1189
|
-
projectId: Scalars['ID'];
|
|
1190
|
-
};
|
|
1191
|
-
export type QueryFinalizeProjectUploadArgs = {
|
|
1192
|
-
token: Scalars['String'];
|
|
1193
|
-
};
|
|
1194
|
-
export type QueryGetLayerTilesArgs = {
|
|
1195
|
-
layerPath: Scalars['String'];
|
|
1196
|
-
projectId: Scalars['ID'];
|
|
1197
|
-
};
|
|
1198
|
-
export type QueryGetWebSymbologyArgs = {
|
|
1199
|
-
isRaster?: InputMaybe<Scalars['Boolean']>;
|
|
1200
|
-
name: Scalars['String'];
|
|
1201
|
-
projectTypeId?: InputMaybe<Scalars['String']>;
|
|
1202
|
-
};
|
|
1203
|
-
export type QueryOrganizationArgs = {
|
|
1204
|
-
id: Scalars['ID'];
|
|
1205
|
-
};
|
|
1206
|
-
export type QueryProjectArgs = {
|
|
1207
|
-
id: Scalars['ID'];
|
|
1208
|
-
};
|
|
1209
|
-
export type QueryProjectTypeArgs = {
|
|
1210
|
-
id: Scalars['String'];
|
|
1211
|
-
};
|
|
1212
|
-
export type QueryProjectTypesArgs = {
|
|
1213
|
-
limit: Scalars['Int'];
|
|
1214
|
-
offset: Scalars['Int'];
|
|
1215
|
-
state?: InputMaybe<ProjectTypeStateEnum>;
|
|
1216
|
-
};
|
|
1217
|
-
export type QueryRequestUploadImageArgs = {
|
|
1218
|
-
entityId: Scalars['ID'];
|
|
1219
|
-
entityType: EntitiesWithImagesEnum;
|
|
1220
|
-
};
|
|
1221
|
-
export type QueryRequestUploadProjectFileUrlsArgs = {
|
|
1222
|
-
etags?: InputMaybe<Array<Scalars['String']>>;
|
|
1223
|
-
files?: InputMaybe<Array<Scalars['String']>>;
|
|
1224
|
-
projectId?: InputMaybe<Scalars['String']>;
|
|
1225
|
-
};
|
|
1226
|
-
export type QuerySavedSearchArgs = {
|
|
1227
|
-
id: Scalars['ID'];
|
|
1228
|
-
};
|
|
1229
|
-
export type QuerySearchCollectionsArgs = {
|
|
1230
|
-
limit: Scalars['Int'];
|
|
1231
|
-
offset: Scalars['Int'];
|
|
1232
|
-
params: SearchParamsInput;
|
|
1233
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1234
|
-
};
|
|
1235
|
-
export type QuerySearchMapBoundsArgs = {
|
|
1236
|
-
limit: Scalars['Int'];
|
|
1237
|
-
params: ProjectSearchParamsInput;
|
|
1238
|
-
};
|
|
1239
|
-
export type QuerySearchMapClustersArgs = {
|
|
1240
|
-
limit: Scalars['Int'];
|
|
1241
|
-
params: ProjectSearchParamsInput;
|
|
1242
|
-
precision: Scalars['Int'];
|
|
1243
|
-
};
|
|
1244
|
-
export type QuerySearchOrganizationsArgs = {
|
|
1245
|
-
limit: Scalars['Int'];
|
|
1246
|
-
offset: Scalars['Int'];
|
|
1247
|
-
params: SearchParamsInput;
|
|
1248
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1249
|
-
};
|
|
1250
|
-
export type QuerySearchProjectsArgs = {
|
|
1251
|
-
limit: Scalars['Int'];
|
|
1252
|
-
offset: Scalars['Int'];
|
|
1253
|
-
params: ProjectSearchParamsInput;
|
|
1254
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1255
|
-
};
|
|
1256
|
-
export type QuerySearchSavedSearchesArgs = {
|
|
1257
|
-
limit: Scalars['Int'];
|
|
1258
|
-
offset: Scalars['Int'];
|
|
1259
|
-
params: SearchParamsInput;
|
|
1260
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1261
|
-
};
|
|
1262
|
-
export type QuerySearchSuggestArgs = {
|
|
1263
|
-
text: Scalars['String'];
|
|
1264
|
-
type?: InputMaybe<StarrableTypesEnum>;
|
|
1265
|
-
};
|
|
1266
|
-
export type QuerySearchUsersArgs = {
|
|
1267
|
-
limit: Scalars['Int'];
|
|
1268
|
-
offset: Scalars['Int'];
|
|
1269
|
-
params: SearchParamsInput;
|
|
1270
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1271
|
-
};
|
|
1272
|
-
export type QueryUserArgs = {
|
|
1273
|
-
id: Scalars['ID'];
|
|
1274
|
-
};
|
|
1275
|
-
export type QueryValidateProjectArgs = {
|
|
1276
|
-
etags?: InputMaybe<Array<Scalars['String']>>;
|
|
1277
|
-
files?: InputMaybe<Array<Scalars['String']>>;
|
|
1278
|
-
xml: Scalars['String'];
|
|
1279
|
-
};
|
|
1280
|
-
export declare enum RampTypeEnum {
|
|
1281
|
-
Discrete = "DISCRETE",
|
|
1282
|
-
Exact = "EXACT",
|
|
1283
|
-
Interpolated = "INTERPOLATED"
|
|
1284
|
-
}
|
|
1285
|
-
export type SavedSearch = DbObj & HasOwner & HasStar & HasTags & {
|
|
1286
|
-
__typename?: 'SavedSearch';
|
|
1287
|
-
createdBy: User;
|
|
1288
|
-
createdOn: Scalars['DateTime'];
|
|
1289
|
-
defaultSort?: Maybe<Array<SearchSortEnum>>;
|
|
1290
|
-
description: Scalars['String'];
|
|
1291
|
-
id: Scalars['ID'];
|
|
1292
|
-
meta: Array<MetaData>;
|
|
1293
|
-
name: Scalars['String'];
|
|
1294
|
-
ownedBy: Owner;
|
|
1295
|
-
permissions: ObjectPermissions;
|
|
1296
|
-
projects: SearchProjectPagination;
|
|
1297
|
-
searchParams: ProjectSearchParams;
|
|
1298
|
-
starred: Scalars['Boolean'];
|
|
1299
|
-
starredCount: Scalars['Int'];
|
|
1300
|
-
summary: Scalars['String'];
|
|
1301
|
-
tags: Array<Scalars['String']>;
|
|
1302
|
-
updatedBy: User;
|
|
1303
|
-
updatedOn: Scalars['DateTime'];
|
|
1304
|
-
visibility: ProjectGroupVisibilityEnum;
|
|
1305
|
-
};
|
|
1306
|
-
export type SavedSearchProjectsArgs = {
|
|
1307
|
-
limit: Scalars['Int'];
|
|
1308
|
-
offset: Scalars['Int'];
|
|
1309
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1310
|
-
};
|
|
1311
|
-
export type SavedSearchInput = {
|
|
1312
|
-
defaultSort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1313
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1314
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1315
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1316
|
-
searchParams?: InputMaybe<ProjectSearchParamsInput>;
|
|
1317
|
-
summary?: InputMaybe<Scalars['String']>;
|
|
1318
|
-
tags?: InputMaybe<Array<Scalars['String']>>;
|
|
1319
|
-
visibility?: InputMaybe<ProjectGroupVisibilityEnum>;
|
|
1320
|
-
};
|
|
1321
|
-
export type SearchCollection = SearchResult & {
|
|
1322
|
-
__typename?: 'SearchCollection';
|
|
1323
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1324
|
-
item: Collection;
|
|
1325
|
-
score?: Maybe<Scalars['Float']>;
|
|
1326
|
-
};
|
|
1327
|
-
export type SearchCollectionPagination = Pagination & SearchPagination & {
|
|
1328
|
-
__typename?: 'SearchCollectionPagination';
|
|
1329
|
-
limit: Scalars['Int'];
|
|
1330
|
-
offset: Scalars['Int'];
|
|
1331
|
-
results: Array<SearchCollection>;
|
|
1332
|
-
stats?: Maybe<SearchStats>;
|
|
1333
|
-
total: Scalars['Int'];
|
|
1334
|
-
};
|
|
1335
|
-
export type SearchDataset = SearchResult & {
|
|
1336
|
-
__typename?: 'SearchDataset';
|
|
1337
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1338
|
-
item: Dataset;
|
|
1339
|
-
score?: Maybe<Scalars['Float']>;
|
|
1340
|
-
};
|
|
1341
|
-
export type SearchDatasetPagination = Pagination & SearchPagination & {
|
|
1342
|
-
__typename?: 'SearchDatasetPagination';
|
|
1343
|
-
limit: Scalars['Int'];
|
|
1344
|
-
offset: Scalars['Int'];
|
|
1345
|
-
results: Array<SearchDataset>;
|
|
1346
|
-
stats?: Maybe<SearchStats>;
|
|
1347
|
-
total: Scalars['Int'];
|
|
1348
|
-
};
|
|
1349
|
-
export type SearchDate = {
|
|
1350
|
-
__typename?: 'SearchDate';
|
|
1351
|
-
from?: Maybe<Scalars['DateTime']>;
|
|
1352
|
-
to?: Maybe<Scalars['DateTime']>;
|
|
1353
|
-
};
|
|
1354
|
-
export type SearchDateInput = {
|
|
1355
|
-
from?: InputMaybe<Scalars['DateTime']>;
|
|
1356
|
-
to?: InputMaybe<Scalars['DateTime']>;
|
|
1357
|
-
};
|
|
1358
|
-
export type SearchMapBoundsItem = {
|
|
1359
|
-
__typename?: 'SearchMapBoundsItem';
|
|
1360
|
-
bounds: ProjectBounds;
|
|
1361
|
-
clusters: Array<MapCluster>;
|
|
1362
|
-
projectCount: Scalars['Int'];
|
|
1363
|
-
};
|
|
1364
|
-
export type SearchMapBoundsResult = {
|
|
1365
|
-
__typename?: 'SearchMapBoundsResult';
|
|
1366
|
-
bounds: Array<SearchMapBoundsItem>;
|
|
1367
|
-
remaining: Scalars['Int'];
|
|
1368
|
-
};
|
|
1369
|
-
export type SearchMapClusterResult = {
|
|
1370
|
-
__typename?: 'SearchMapClusterResult';
|
|
1371
|
-
clusters: Array<MapCluster>;
|
|
1372
|
-
remaining: Scalars['Int'];
|
|
1373
|
-
};
|
|
1374
|
-
export type SearchMeta = {
|
|
1375
|
-
__typename?: 'SearchMeta';
|
|
1376
|
-
maxScore?: Maybe<Scalars['Float']>;
|
|
1377
|
-
metaDataBuckets: Scalars['JSONObject'];
|
|
1378
|
-
searchTime?: Maybe<Scalars['Float']>;
|
|
1379
|
-
};
|
|
1380
|
-
export type SearchMetaInterface = {
|
|
1381
|
-
maxScore?: Maybe<Scalars['Float']>;
|
|
1382
|
-
metaDataBuckets: Scalars['JSONObject'];
|
|
1383
|
-
searchTime?: Maybe<Scalars['Float']>;
|
|
1384
|
-
};
|
|
1385
|
-
export type SearchNotification = SearchResult & {
|
|
1386
|
-
__typename?: 'SearchNotification';
|
|
1387
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1388
|
-
item: Notification;
|
|
1389
|
-
score?: Maybe<Scalars['Float']>;
|
|
1390
|
-
};
|
|
1391
|
-
export type SearchNotificationPagination = Pagination & SearchPagination & {
|
|
1392
|
-
__typename?: 'SearchNotificationPagination';
|
|
1393
|
-
limit: Scalars['Int'];
|
|
1394
|
-
offset: Scalars['Int'];
|
|
1395
|
-
results: Array<SearchNotification>;
|
|
1396
|
-
stats?: Maybe<SearchStats>;
|
|
1397
|
-
total: Scalars['Int'];
|
|
1398
|
-
};
|
|
1399
|
-
export type SearchOrganization = SearchResult & {
|
|
1400
|
-
__typename?: 'SearchOrganization';
|
|
1401
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1402
|
-
item: Organization;
|
|
1403
|
-
score?: Maybe<Scalars['Float']>;
|
|
1404
|
-
};
|
|
1405
|
-
export type SearchOrganizationInvite = SearchResult & {
|
|
1406
|
-
__typename?: 'SearchOrganizationInvite';
|
|
1407
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1408
|
-
item: OrganizationInvite;
|
|
1409
|
-
score?: Maybe<Scalars['Float']>;
|
|
1410
|
-
};
|
|
1411
|
-
export type SearchOrganizationInvitePagination = Pagination & SearchPagination & {
|
|
1412
|
-
__typename?: 'SearchOrganizationInvitePagination';
|
|
1413
|
-
limit: Scalars['Int'];
|
|
1414
|
-
offset: Scalars['Int'];
|
|
1415
|
-
results: Array<SearchOrganizationInvite>;
|
|
1416
|
-
stats?: Maybe<SearchStats>;
|
|
1417
|
-
total: Scalars['Int'];
|
|
1418
|
-
};
|
|
1419
|
-
export type SearchOrganizationPagination = Pagination & SearchPagination & {
|
|
1420
|
-
__typename?: 'SearchOrganizationPagination';
|
|
1421
|
-
limit: Scalars['Int'];
|
|
1422
|
-
offset: Scalars['Int'];
|
|
1423
|
-
results: Array<SearchOrganization>;
|
|
1424
|
-
stats?: Maybe<SearchStats>;
|
|
1425
|
-
total: Scalars['Int'];
|
|
1426
|
-
};
|
|
1427
|
-
export type SearchOwner = {
|
|
1428
|
-
__typename?: 'SearchOwner';
|
|
1429
|
-
id: Scalars['String'];
|
|
1430
|
-
type: OwnerInputTypesEnum;
|
|
1431
|
-
};
|
|
1432
|
-
export type SearchPagination = {
|
|
1433
|
-
limit: Scalars['Int'];
|
|
1434
|
-
offset: Scalars['Int'];
|
|
1435
|
-
stats?: Maybe<SearchStats>;
|
|
1436
|
-
total: Scalars['Int'];
|
|
1437
|
-
};
|
|
1438
|
-
export type SearchParamsInput = {
|
|
1439
|
-
createdOn?: InputMaybe<SearchDateInput>;
|
|
1440
|
-
editableOnly?: InputMaybe<Scalars['Boolean']>;
|
|
1441
|
-
keywords?: InputMaybe<Scalars['String']>;
|
|
1442
|
-
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1443
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1444
|
-
ownedBy?: InputMaybe<OwnerInput>;
|
|
1445
|
-
tags?: InputMaybe<Array<Scalars['String']>>;
|
|
1446
|
-
updatedOn?: InputMaybe<SearchDateInput>;
|
|
1447
|
-
};
|
|
1448
|
-
export type SearchProject = SearchResult & {
|
|
1449
|
-
__typename?: 'SearchProject';
|
|
1450
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1451
|
-
item: Project;
|
|
1452
|
-
score?: Maybe<Scalars['Float']>;
|
|
1453
|
-
};
|
|
1454
|
-
export type SearchProjectPagination = Pagination & SearchPagination & {
|
|
1455
|
-
__typename?: 'SearchProjectPagination';
|
|
1456
|
-
limit: Scalars['Int'];
|
|
1457
|
-
offset: Scalars['Int'];
|
|
1458
|
-
results: Array<SearchProject>;
|
|
1459
|
-
stats?: Maybe<SearchStats>;
|
|
1460
|
-
total: Scalars['Int'];
|
|
1461
|
-
};
|
|
1462
|
-
export type SearchProjectType = SearchResult & {
|
|
1463
|
-
__typename?: 'SearchProjectType';
|
|
1464
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1465
|
-
item: ProjectType;
|
|
1466
|
-
score?: Maybe<Scalars['Float']>;
|
|
1467
|
-
};
|
|
1468
|
-
export type SearchProjectTypePagination = Pagination & SearchPagination & {
|
|
1469
|
-
__typename?: 'SearchProjectTypePagination';
|
|
1470
|
-
limit: Scalars['Int'];
|
|
1471
|
-
offset: Scalars['Int'];
|
|
1472
|
-
results: Array<SearchProjectType>;
|
|
1473
|
-
stats?: Maybe<SearchStats>;
|
|
1474
|
-
total: Scalars['Int'];
|
|
1475
|
-
};
|
|
1476
|
-
export type SearchQaqcEvent = SearchResult & {
|
|
1477
|
-
__typename?: 'SearchQAQCEvent';
|
|
1478
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1479
|
-
item: QaqcEvent;
|
|
1480
|
-
score?: Maybe<Scalars['Float']>;
|
|
1481
|
-
};
|
|
1482
|
-
export type SearchQaqcEventPagination = Pagination & SearchPagination & {
|
|
1483
|
-
__typename?: 'SearchQAQCEventPagination';
|
|
1484
|
-
limit: Scalars['Int'];
|
|
1485
|
-
offset: Scalars['Int'];
|
|
1486
|
-
results: Array<SearchQaqcEvent>;
|
|
1487
|
-
stats?: Maybe<SearchStats>;
|
|
1488
|
-
total: Scalars['Int'];
|
|
1489
|
-
};
|
|
1490
|
-
export type SearchResult = {
|
|
1491
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1492
|
-
score?: Maybe<Scalars['Float']>;
|
|
1493
|
-
};
|
|
1494
|
-
export type SearchResultMeta = {
|
|
1495
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1496
|
-
score: Scalars['Float'];
|
|
1497
|
-
};
|
|
1498
|
-
export type SearchSavedSearch = SearchResult & {
|
|
1499
|
-
__typename?: 'SearchSavedSearch';
|
|
1500
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1501
|
-
item: SavedSearch;
|
|
1502
|
-
score?: Maybe<Scalars['Float']>;
|
|
1503
|
-
};
|
|
1504
|
-
export type SearchSavedSearchPagination = Pagination & SearchPagination & {
|
|
1505
|
-
__typename?: 'SearchSavedSearchPagination';
|
|
1506
|
-
limit: Scalars['Int'];
|
|
1507
|
-
offset: Scalars['Int'];
|
|
1508
|
-
results: Array<SearchSavedSearch>;
|
|
1509
|
-
stats?: Maybe<SearchStats>;
|
|
1510
|
-
total: Scalars['Int'];
|
|
1511
|
-
};
|
|
1512
|
-
export declare enum SearchSortEnum {
|
|
1513
|
-
AreaDesc = "AREA_DESC",
|
|
1514
|
-
DateCreatedAsc = "DATE_CREATED_ASC",
|
|
1515
|
-
DateCreatedDesc = "DATE_CREATED_DESC",
|
|
1516
|
-
DateUpdatedAsc = "DATE_UPDATED_ASC",
|
|
1517
|
-
DateUpdatedDesc = "DATE_UPDATED_DESC",
|
|
1518
|
-
Mine = "MINE",
|
|
1519
|
-
NameAsc = "NAME_ASC",
|
|
1520
|
-
NameDesc = "NAME_DESC"
|
|
1521
|
-
}
|
|
1522
|
-
export type SearchStats = ProjectSearchMeta | SearchMeta;
|
|
1523
|
-
export type SearchSuggestionResult = SearchResult & {
|
|
1524
|
-
__typename?: 'SearchSuggestionResult';
|
|
1525
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1526
|
-
item?: Maybe<DbObj>;
|
|
1527
|
-
score?: Maybe<Scalars['Float']>;
|
|
1528
|
-
};
|
|
1529
|
-
export type SearchSuggestionResults = {
|
|
1530
|
-
__typename?: 'SearchSuggestionResults';
|
|
1531
|
-
metaKey: Array<SearchSuggestions>;
|
|
1532
|
-
metaValues: Array<SearchSuggestions>;
|
|
1533
|
-
results: Array<SearchSuggestionResult>;
|
|
1534
|
-
tags: Array<SearchSuggestions>;
|
|
1535
|
-
};
|
|
1536
|
-
export type SearchSuggestions = {
|
|
1537
|
-
__typename?: 'SearchSuggestions';
|
|
1538
|
-
freq?: Maybe<Scalars['Int']>;
|
|
1539
|
-
score: Scalars['Float'];
|
|
1540
|
-
text: Scalars['String'];
|
|
1541
|
-
};
|
|
1542
|
-
export type SearchUser = SearchResult & {
|
|
1543
|
-
__typename?: 'SearchUser';
|
|
1544
|
-
highlights?: Maybe<Scalars['JSONObject']>;
|
|
1545
|
-
item: User;
|
|
1546
|
-
score?: Maybe<Scalars['Float']>;
|
|
1547
|
-
};
|
|
1548
|
-
export type SearchUserPagination = Pagination & SearchPagination & {
|
|
1549
|
-
__typename?: 'SearchUserPagination';
|
|
1550
|
-
limit: Scalars['Int'];
|
|
1551
|
-
offset: Scalars['Int'];
|
|
1552
|
-
results: Array<SearchUser>;
|
|
1553
|
-
stats?: Maybe<SearchStats>;
|
|
1554
|
-
total: Scalars['Int'];
|
|
1555
|
-
};
|
|
1556
|
-
export declare enum SearchableTypesEnum {
|
|
1557
|
-
Collection = "COLLECTION",
|
|
1558
|
-
Organization = "ORGANIZATION",
|
|
1559
|
-
Project = "PROJECT",
|
|
1560
|
-
SavedSearch = "SAVED_SEARCH",
|
|
1561
|
-
User = "USER"
|
|
1562
|
-
}
|
|
1563
|
-
export declare enum SeverityEnum {
|
|
1564
|
-
Critical = "CRITICAL",
|
|
1565
|
-
Debug = "DEBUG",
|
|
1566
|
-
Error = "ERROR",
|
|
1567
|
-
Info = "INFO",
|
|
1568
|
-
Warning = "WARNING"
|
|
1569
|
-
}
|
|
1570
|
-
export type SocialLinks = {
|
|
1571
|
-
__typename?: 'SocialLinks';
|
|
1572
|
-
facebook?: Maybe<Scalars['URL']>;
|
|
1573
|
-
instagram?: Maybe<Scalars['URL']>;
|
|
1574
|
-
linkedIn?: Maybe<Scalars['URL']>;
|
|
1575
|
-
tiktok?: Maybe<Scalars['URL']>;
|
|
1576
|
-
twitter?: Maybe<Scalars['URL']>;
|
|
1577
|
-
website?: Maybe<Scalars['URL']>;
|
|
1578
|
-
};
|
|
1579
|
-
export type SocialLinksInput = {
|
|
1580
|
-
facebook?: InputMaybe<Scalars['String']>;
|
|
1581
|
-
instagram?: InputMaybe<Scalars['String']>;
|
|
1582
|
-
linkedIn?: InputMaybe<Scalars['String']>;
|
|
1583
|
-
tiktok?: InputMaybe<Scalars['String']>;
|
|
1584
|
-
twitter?: InputMaybe<Scalars['String']>;
|
|
1585
|
-
website?: InputMaybe<Scalars['URL']>;
|
|
1586
|
-
};
|
|
1587
|
-
export declare enum StarrableTypesEnum {
|
|
1588
|
-
Collection = "COLLECTION",
|
|
1589
|
-
Organization = "ORGANIZATION",
|
|
1590
|
-
Project = "PROJECT",
|
|
1591
|
-
SavedSearch = "SAVED_SEARCH",
|
|
1592
|
-
User = "USER"
|
|
1593
|
-
}
|
|
1594
|
-
export type Symbology = {
|
|
1595
|
-
__typename?: 'Symbology';
|
|
1596
|
-
error?: Maybe<Scalars['String']>;
|
|
1597
|
-
legend?: Maybe<Array<Maybe<Array<Maybe<Scalars['String']>>>>>;
|
|
1598
|
-
mapboxJson?: Maybe<Scalars['String']>;
|
|
1599
|
-
name: Scalars['String'];
|
|
1600
|
-
rampType?: Maybe<RampTypeEnum>;
|
|
1601
|
-
state?: Maybe<SymbologyStateEnum>;
|
|
1602
|
-
url?: Maybe<Scalars['String']>;
|
|
1603
|
-
};
|
|
1604
|
-
export declare enum SymbologyStateEnum {
|
|
1605
|
-
Error = "ERROR",
|
|
1606
|
-
Fetching = "FETCHING",
|
|
1607
|
-
Found = "FOUND",
|
|
1608
|
-
Missing = "MISSING",
|
|
1609
|
-
NotApplicable = "NOT_APPLICABLE",
|
|
1610
|
-
Unknown = "UNKNOWN"
|
|
1611
|
-
}
|
|
1612
|
-
export type TileService = {
|
|
1613
|
-
__typename?: 'TileService';
|
|
1614
|
-
bounds?: Maybe<Array<Maybe<Scalars['Float']>>>;
|
|
1615
|
-
duration?: Maybe<Scalars['Float']>;
|
|
1616
|
-
error?: Maybe<Scalars['String']>;
|
|
1617
|
-
format?: Maybe<Scalars['String']>;
|
|
1618
|
-
indexUrl?: Maybe<Scalars['String']>;
|
|
1619
|
-
lastState?: Maybe<Scalars['String']>;
|
|
1620
|
-
maxZoom?: Maybe<Scalars['Int']>;
|
|
1621
|
-
minZoom?: Maybe<Scalars['Int']>;
|
|
1622
|
-
numFiles?: Maybe<Scalars['Int']>;
|
|
1623
|
-
originFile?: Maybe<TileServiceOriginFile>;
|
|
1624
|
-
rasterStats?: Maybe<Scalars['String']>;
|
|
1625
|
-
rsLayer?: Maybe<Scalars['String']>;
|
|
1626
|
-
started?: Maybe<Scalars['String']>;
|
|
1627
|
-
state: TilingStateEnum;
|
|
1628
|
-
url?: Maybe<Scalars['String']>;
|
|
1629
|
-
};
|
|
1630
|
-
export type TileServiceOriginFile = {
|
|
1631
|
-
__typename?: 'TileServiceOriginFile';
|
|
1632
|
-
etag?: Maybe<Scalars['String']>;
|
|
1633
|
-
key?: Maybe<Scalars['String']>;
|
|
1634
|
-
lastModified?: Maybe<Scalars['String']>;
|
|
1635
|
-
size?: Maybe<Scalars['Int']>;
|
|
1636
|
-
};
|
|
1637
|
-
export declare enum TileTypesEnum {
|
|
1638
|
-
Html = "HTML",
|
|
1639
|
-
Raster = "RASTER",
|
|
1640
|
-
VectorGpkg = "VECTOR_GPKG",
|
|
1641
|
-
VectorShp = "VECTOR_SHP"
|
|
1642
|
-
}
|
|
1643
|
-
export declare enum TilingStateEnum {
|
|
1644
|
-
Creating = "CREATING",
|
|
1645
|
-
Fetching = "FETCHING",
|
|
1646
|
-
FetchError = "FETCH_ERROR",
|
|
1647
|
-
IndexNotFound = "INDEX_NOT_FOUND",
|
|
1648
|
-
LayerNotFound = "LAYER_NOT_FOUND",
|
|
1649
|
-
NotApplicable = "NOT_APPLICABLE",
|
|
1650
|
-
NoGeometries = "NO_GEOMETRIES",
|
|
1651
|
-
Queued = "QUEUED",
|
|
1652
|
-
Success = "SUCCESS",
|
|
1653
|
-
TilingError = "TILING_ERROR",
|
|
1654
|
-
Timeout = "TIMEOUT",
|
|
1655
|
-
Unknown = "UNKNOWN"
|
|
1656
|
-
}
|
|
1657
|
-
export type Transfer = DbSimpleObj & {
|
|
1658
|
-
__typename?: 'Transfer';
|
|
1659
|
-
createdBy: User;
|
|
1660
|
-
createdOn: Scalars['DateTime'];
|
|
1661
|
-
id: Scalars['ID'];
|
|
1662
|
-
includeProjects?: Maybe<Scalars['Boolean']>;
|
|
1663
|
-
note: Scalars['String'];
|
|
1664
|
-
state: TransferStateEnum;
|
|
1665
|
-
transferObjects: Array<TransferObject>;
|
|
1666
|
-
transferTo: Owner;
|
|
1667
|
-
transferType: TransferrableTypesEnum;
|
|
1668
|
-
updatedBy: User;
|
|
1669
|
-
updatedOn: Scalars['DateTime'];
|
|
1670
|
-
};
|
|
1671
|
-
export type TransferEntityItemsInput = {
|
|
1672
|
-
note: Scalars['String'];
|
|
1673
|
-
transferTo: OwnerInput;
|
|
1674
|
-
};
|
|
1675
|
-
export type TransferInput = {
|
|
1676
|
-
includeProjects?: InputMaybe<Scalars['Boolean']>;
|
|
1677
|
-
note: Scalars['String'];
|
|
1678
|
-
objectIds: Array<Scalars['ID']>;
|
|
1679
|
-
transferTo: OwnerInput;
|
|
1680
|
-
transferType: TransferrableTypesEnum;
|
|
1681
|
-
};
|
|
1682
|
-
export type TransferObject = Collection | Organization | Project | User;
|
|
1683
|
-
export declare enum TransferStateEnum {
|
|
1684
|
-
Accepted = "ACCEPTED",
|
|
1685
|
-
Expired = "EXPIRED",
|
|
1686
|
-
InProgress = "IN_PROGRESS",
|
|
1687
|
-
Proposed = "PROPOSED",
|
|
1688
|
-
Rejected = "REJECTED"
|
|
1689
|
-
}
|
|
1690
|
-
export declare enum TransferrableTypesEnum {
|
|
1691
|
-
Collection = "COLLECTION",
|
|
1692
|
-
Organization = "ORGANIZATION",
|
|
1693
|
-
Project = "PROJECT",
|
|
1694
|
-
User = "USER"
|
|
1695
|
-
}
|
|
1696
|
-
export type UploadProjectRequest = {
|
|
1697
|
-
__typename?: 'UploadProjectRequest';
|
|
1698
|
-
deletions: Array<Scalars['String']>;
|
|
1699
|
-
token: Scalars['String'];
|
|
1700
|
-
uploadUrls?: Maybe<Array<Maybe<ProjectUploadUrl>>>;
|
|
1701
|
-
};
|
|
1702
|
-
export type UploadUrl = {
|
|
1703
|
-
__typename?: 'UploadUrl';
|
|
1704
|
-
fields: Scalars['JSONObject'];
|
|
1705
|
-
token: Scalars['String'];
|
|
1706
|
-
url: Scalars['String'];
|
|
1707
|
-
};
|
|
1708
|
-
export type User = DbObj & UserInterface & {
|
|
1709
|
-
__typename?: 'User';
|
|
1710
|
-
affiliations: Array<Maybe<UserAffiliation>>;
|
|
1711
|
-
avatar?: Maybe<Scalars['URL']>;
|
|
1712
|
-
collections: PaginatedCollections;
|
|
1713
|
-
createdBy: User;
|
|
1714
|
-
createdOn: Scalars['DateTime'];
|
|
1715
|
-
description: Scalars['String'];
|
|
1716
|
-
id: Scalars['ID'];
|
|
1717
|
-
jobTitle: Scalars['String'];
|
|
1718
|
-
lastLogin: Scalars['DateTime'];
|
|
1719
|
-
location: Scalars['String'];
|
|
1720
|
-
meta: Array<MetaData>;
|
|
1721
|
-
name: Scalars['String'];
|
|
1722
|
-
organizations: PaginatedOrganizations;
|
|
1723
|
-
projects: PaginatedProjects;
|
|
1724
|
-
savedSearches: PaginatedSavedSearches;
|
|
1725
|
-
social: SocialLinks;
|
|
1726
|
-
starred: Scalars['Boolean'];
|
|
1727
|
-
starredCount: Scalars['Int'];
|
|
1728
|
-
summary: Scalars['String'];
|
|
1729
|
-
updatedBy: User;
|
|
1730
|
-
updatedOn: Scalars['DateTime'];
|
|
1731
|
-
};
|
|
1732
|
-
export type UserCollectionsArgs = {
|
|
1733
|
-
limit: Scalars['Int'];
|
|
1734
|
-
offset: Scalars['Int'];
|
|
1735
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1736
|
-
};
|
|
1737
|
-
export type UserOrganizationsArgs = {
|
|
1738
|
-
limit: Scalars['Int'];
|
|
1739
|
-
offset: Scalars['Int'];
|
|
1740
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1741
|
-
};
|
|
1742
|
-
export type UserProjectsArgs = {
|
|
1743
|
-
limit: Scalars['Int'];
|
|
1744
|
-
offset: Scalars['Int'];
|
|
1745
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1746
|
-
};
|
|
1747
|
-
export type UserSavedSearchesArgs = {
|
|
1748
|
-
limit: Scalars['Int'];
|
|
1749
|
-
offset: Scalars['Int'];
|
|
1750
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1751
|
-
};
|
|
1752
|
-
export type UserAffiliation = {
|
|
1753
|
-
__typename?: 'UserAffiliation';
|
|
1754
|
-
affiliationRole?: Maybe<Scalars['String']>;
|
|
1755
|
-
name: Scalars['String'];
|
|
1756
|
-
url?: Maybe<Scalars['URL']>;
|
|
1757
|
-
};
|
|
1758
|
-
export type UserAffiliationInput = {
|
|
1759
|
-
affiliationRole?: InputMaybe<Scalars['String']>;
|
|
1760
|
-
name: Scalars['String'];
|
|
1761
|
-
url?: InputMaybe<Scalars['URL']>;
|
|
1762
|
-
};
|
|
1763
|
-
export type UserInterface = {
|
|
1764
|
-
affiliations: Array<Maybe<UserAffiliation>>;
|
|
1765
|
-
avatar?: Maybe<Scalars['URL']>;
|
|
1766
|
-
collections: PaginatedCollections;
|
|
1767
|
-
createdBy: User;
|
|
1768
|
-
createdOn: Scalars['DateTime'];
|
|
1769
|
-
description: Scalars['String'];
|
|
1770
|
-
id: Scalars['ID'];
|
|
1771
|
-
jobTitle: Scalars['String'];
|
|
1772
|
-
lastLogin: Scalars['DateTime'];
|
|
1773
|
-
location: Scalars['String'];
|
|
1774
|
-
meta: Array<MetaData>;
|
|
1775
|
-
name: Scalars['String'];
|
|
1776
|
-
projects: PaginatedProjects;
|
|
1777
|
-
savedSearches: PaginatedSavedSearches;
|
|
1778
|
-
social: SocialLinks;
|
|
1779
|
-
starred: Scalars['Boolean'];
|
|
1780
|
-
starredCount: Scalars['Int'];
|
|
1781
|
-
summary: Scalars['String'];
|
|
1782
|
-
updatedBy: User;
|
|
1783
|
-
updatedOn: Scalars['DateTime'];
|
|
1784
|
-
};
|
|
1785
|
-
export type UserInterfaceCollectionsArgs = {
|
|
1786
|
-
limit: Scalars['Int'];
|
|
1787
|
-
offset: Scalars['Int'];
|
|
1788
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1789
|
-
};
|
|
1790
|
-
export type UserInterfaceProjectsArgs = {
|
|
1791
|
-
limit: Scalars['Int'];
|
|
1792
|
-
offset: Scalars['Int'];
|
|
1793
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1794
|
-
};
|
|
1795
|
-
export type UserInterfaceSavedSearchesArgs = {
|
|
1796
|
-
limit: Scalars['Int'];
|
|
1797
|
-
offset: Scalars['Int'];
|
|
1798
|
-
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1799
|
-
};
|
|
1800
|
-
export type WatcherOutput = {
|
|
1801
|
-
__typename?: 'WatcherOutput';
|
|
1802
|
-
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1803
|
-
message?: Maybe<Scalars['String']>;
|
|
1804
|
-
results?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1805
|
-
};
|
|
1806
|
-
export type ZipFileDownloadMeta = FileDownloadMeta & {
|
|
1807
|
-
__typename?: 'ZipFileDownloadMeta';
|
|
1808
|
-
contentType?: Maybe<Scalars['String']>;
|
|
1809
|
-
downloadUrl: Scalars['String'];
|
|
1810
|
-
etag: Scalars['String'];
|
|
1811
|
-
key: Scalars['String'];
|
|
1812
|
-
pendingSince?: Maybe<Scalars['String']>;
|
|
1813
|
-
progress?: Maybe<Scalars['Int']>;
|
|
1814
|
-
size?: Maybe<Scalars['Int']>;
|
|
1815
|
-
};
|