@riverscapes/common 2.0.21 → 2.0.23
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/constants.js +2 -2
- package/dist/constants.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 +34 -16
- package/dist/gen/schema.types.js +36 -35
- package/dist/gen/schema.types.js.map +1 -1
- package/dist/schema.graphql +29 -21
- 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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gqlSchema.js","sourceRoot":"","sources":["../../src/gen/gqlSchema.ts"],"names":[],"mappings":";;;;;;;;;AAAA,4DAA6B;AAE7B,sBAAe,qBAAG,
|
|
1
|
+
{"version":3,"file":"gqlSchema.js","sourceRoot":"","sources":["../../src/gen/gqlSchema.ts"],"names":[],"mappings":";;;;;;;;;AAAA,4DAA6B;AAE7B,sBAAe,qBAAG,qz4DAAA,iv4DAgmEjB,KAAA"}
|
|
@@ -360,7 +360,7 @@ export type MetaData = {
|
|
|
360
360
|
key: Scalars['String']['output'];
|
|
361
361
|
locked?: Maybe<Scalars['Boolean']['output']>;
|
|
362
362
|
type?: Maybe<MetaDataTypeEnum>;
|
|
363
|
-
value
|
|
363
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
364
364
|
};
|
|
365
365
|
export declare const MetaDataExtEnum: {
|
|
366
366
|
readonly Dataset: "DATASET";
|
|
@@ -373,7 +373,7 @@ export type MetaDataInput = {
|
|
|
373
373
|
key: Scalars['String']['input'];
|
|
374
374
|
locked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
375
375
|
type?: InputMaybe<MetaDataTypeEnum>;
|
|
376
|
-
value
|
|
376
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
377
377
|
};
|
|
378
378
|
export declare const MetaDataTypeEnum: {
|
|
379
379
|
readonly Boolean: "BOOLEAN";
|
|
@@ -919,9 +919,9 @@ export type Profile = DbObj & UserInterface & {
|
|
|
919
919
|
id: Scalars['ID']['output'];
|
|
920
920
|
initialized?: Maybe<Scalars['Boolean']['output']>;
|
|
921
921
|
isAdmin: Scalars['Boolean']['output'];
|
|
922
|
-
jobTitle
|
|
922
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
923
923
|
lastLogin: Scalars['DateTime']['output'];
|
|
924
|
-
location
|
|
924
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
925
925
|
meta: Array<MetaData>;
|
|
926
926
|
name: Scalars['String']['output'];
|
|
927
927
|
notifications: PaginatedNotifications;
|
|
@@ -1077,6 +1077,7 @@ export type ProjectSearchMeta = {
|
|
|
1077
1077
|
geoBuckets?: Maybe<Scalars['JSONObject']['output']>;
|
|
1078
1078
|
maxScore?: Maybe<Scalars['Float']['output']>;
|
|
1079
1079
|
metaDataBuckets: Scalars['JSONObject']['output'];
|
|
1080
|
+
openSearch?: Maybe<Scalars['JSONObject']['output']>;
|
|
1080
1081
|
projectTypes?: Maybe<Scalars['JSONObject']['output']>;
|
|
1081
1082
|
searchTime?: Maybe<Scalars['Float']['output']>;
|
|
1082
1083
|
};
|
|
@@ -1342,6 +1343,7 @@ export type QuerySavedSearchArgs = {
|
|
|
1342
1343
|
id: Scalars['ID']['input'];
|
|
1343
1344
|
};
|
|
1344
1345
|
export type QuerySearchCollectionsArgs = {
|
|
1346
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1345
1347
|
limit: Scalars['Int']['input'];
|
|
1346
1348
|
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1347
1349
|
offset: Scalars['Int']['input'];
|
|
@@ -1349,17 +1351,20 @@ export type QuerySearchCollectionsArgs = {
|
|
|
1349
1351
|
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1350
1352
|
};
|
|
1351
1353
|
export type QuerySearchMapBoundsArgs = {
|
|
1354
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1352
1355
|
limit: Scalars['Int']['input'];
|
|
1353
1356
|
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1354
1357
|
params: ProjectSearchParamsInput;
|
|
1355
1358
|
};
|
|
1356
1359
|
export type QuerySearchMapClustersArgs = {
|
|
1360
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1357
1361
|
limit: Scalars['Int']['input'];
|
|
1358
1362
|
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1359
1363
|
params: ProjectSearchParamsInput;
|
|
1360
1364
|
precision: Scalars['Int']['input'];
|
|
1361
1365
|
};
|
|
1362
1366
|
export type QuerySearchOrganizationsArgs = {
|
|
1367
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1363
1368
|
limit: Scalars['Int']['input'];
|
|
1364
1369
|
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1365
1370
|
offset: Scalars['Int']['input'];
|
|
@@ -1367,6 +1372,7 @@ export type QuerySearchOrganizationsArgs = {
|
|
|
1367
1372
|
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1368
1373
|
};
|
|
1369
1374
|
export type QuerySearchProjectsArgs = {
|
|
1375
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1370
1376
|
limit: Scalars['Int']['input'];
|
|
1371
1377
|
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1372
1378
|
offset: Scalars['Int']['input'];
|
|
@@ -1374,6 +1380,7 @@ export type QuerySearchProjectsArgs = {
|
|
|
1374
1380
|
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1375
1381
|
};
|
|
1376
1382
|
export type QuerySearchSavedSearchesArgs = {
|
|
1383
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1377
1384
|
limit: Scalars['Int']['input'];
|
|
1378
1385
|
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1379
1386
|
offset: Scalars['Int']['input'];
|
|
@@ -1386,6 +1393,7 @@ export type QuerySearchSuggestArgs = {
|
|
|
1386
1393
|
type?: InputMaybe<StarrableTypesEnum>;
|
|
1387
1394
|
};
|
|
1388
1395
|
export type QuerySearchUsersArgs = {
|
|
1396
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1389
1397
|
limit: Scalars['Int']['input'];
|
|
1390
1398
|
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1391
1399
|
offset: Scalars['Int']['input'];
|
|
@@ -1864,9 +1872,9 @@ export type User = DbObj & UserInterface & {
|
|
|
1864
1872
|
createdOn: Scalars['DateTime']['output'];
|
|
1865
1873
|
description: Scalars['String']['output'];
|
|
1866
1874
|
id: Scalars['ID']['output'];
|
|
1867
|
-
jobTitle
|
|
1875
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
1868
1876
|
lastLogin: Scalars['DateTime']['output'];
|
|
1869
|
-
location
|
|
1877
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
1870
1878
|
meta: Array<MetaData>;
|
|
1871
1879
|
name: Scalars['String']['output'];
|
|
1872
1880
|
organizations: PaginatedOrganizations;
|
|
@@ -1918,9 +1926,9 @@ export type UserInterface = {
|
|
|
1918
1926
|
createdOn: Scalars['DateTime']['output'];
|
|
1919
1927
|
description: Scalars['String']['output'];
|
|
1920
1928
|
id: Scalars['ID']['output'];
|
|
1921
|
-
jobTitle
|
|
1929
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
1922
1930
|
lastLogin: Scalars['DateTime']['output'];
|
|
1923
|
-
location
|
|
1931
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
1924
1932
|
meta: Array<MetaData>;
|
|
1925
1933
|
name: Scalars['String']['output'];
|
|
1926
1934
|
projects: PaginatedProjects;
|
|
@@ -1979,6 +1987,13 @@ export type AdminReIndexOpenSearchMutation = {
|
|
|
1979
1987
|
__typename?: 'Mutation';
|
|
1980
1988
|
adminReIndexOpenSearch?: string | null;
|
|
1981
1989
|
};
|
|
1990
|
+
export type AdminRecreateOpenSearchMutationVariables = Exact<{
|
|
1991
|
+
[key: string]: never;
|
|
1992
|
+
}>;
|
|
1993
|
+
export type AdminRecreateOpenSearchMutation = {
|
|
1994
|
+
__typename?: 'Mutation';
|
|
1995
|
+
adminRecreateOpenSearch?: boolean | null;
|
|
1996
|
+
};
|
|
1982
1997
|
export type DeleteProjectMutationVariables = Exact<{
|
|
1983
1998
|
projectId: Scalars['ID']['input'];
|
|
1984
1999
|
options?: InputMaybe<EntityDeletionOptions>;
|
|
@@ -2025,7 +2040,7 @@ export type DirtyProjectsQuery = {
|
|
|
2025
2040
|
__typename?: 'MetaData';
|
|
2026
2041
|
ext?: MetaDataExtEnum | null;
|
|
2027
2042
|
key: string;
|
|
2028
|
-
value
|
|
2043
|
+
value?: string | null;
|
|
2029
2044
|
locked?: boolean | null;
|
|
2030
2045
|
type?: MetaDataTypeEnum | null;
|
|
2031
2046
|
}>;
|
|
@@ -2058,7 +2073,7 @@ export type GetDirtyProjectQuery = {
|
|
|
2058
2073
|
__typename?: 'MetaData';
|
|
2059
2074
|
ext?: MetaDataExtEnum | null;
|
|
2060
2075
|
key: string;
|
|
2061
|
-
value
|
|
2076
|
+
value?: string | null;
|
|
2062
2077
|
locked?: boolean | null;
|
|
2063
2078
|
type?: MetaDataTypeEnum | null;
|
|
2064
2079
|
}>;
|
|
@@ -2085,7 +2100,7 @@ export type DirtyProjectsFragmentFragment = {
|
|
|
2085
2100
|
__typename?: 'MetaData';
|
|
2086
2101
|
ext?: MetaDataExtEnum | null;
|
|
2087
2102
|
key: string;
|
|
2088
|
-
value
|
|
2103
|
+
value?: string | null;
|
|
2089
2104
|
locked?: boolean | null;
|
|
2090
2105
|
type?: MetaDataTypeEnum | null;
|
|
2091
2106
|
}>;
|
|
@@ -2305,7 +2320,7 @@ export type GetProjectForUploadCheckQuery = {
|
|
|
2305
2320
|
meta: Array<{
|
|
2306
2321
|
__typename?: 'MetaData';
|
|
2307
2322
|
key: string;
|
|
2308
|
-
value
|
|
2323
|
+
value?: string | null;
|
|
2309
2324
|
type?: MetaDataTypeEnum | null;
|
|
2310
2325
|
locked?: boolean | null;
|
|
2311
2326
|
ext?: MetaDataExtEnum | null;
|
|
@@ -2371,7 +2386,7 @@ export type ProjectDownloadQuery = {
|
|
|
2371
2386
|
meta: Array<{
|
|
2372
2387
|
__typename?: 'MetaData';
|
|
2373
2388
|
key: string;
|
|
2374
|
-
value
|
|
2389
|
+
value?: string | null;
|
|
2375
2390
|
type?: MetaDataTypeEnum | null;
|
|
2376
2391
|
locked?: boolean | null;
|
|
2377
2392
|
ext?: MetaDataExtEnum | null;
|
|
@@ -2415,7 +2430,7 @@ export type ProjectExistsQuery = {
|
|
|
2415
2430
|
meta: Array<{
|
|
2416
2431
|
__typename?: 'MetaData';
|
|
2417
2432
|
key: string;
|
|
2418
|
-
value
|
|
2433
|
+
value?: string | null;
|
|
2419
2434
|
type?: MetaDataTypeEnum | null;
|
|
2420
2435
|
locked?: boolean | null;
|
|
2421
2436
|
ext?: MetaDataExtEnum | null;
|
|
@@ -2533,7 +2548,7 @@ export type GetProjectFilesForDownloadQuery = {
|
|
|
2533
2548
|
meta: Array<{
|
|
2534
2549
|
__typename?: 'MetaData';
|
|
2535
2550
|
key: string;
|
|
2536
|
-
value
|
|
2551
|
+
value?: string | null;
|
|
2537
2552
|
type?: MetaDataTypeEnum | null;
|
|
2538
2553
|
locked?: boolean | null;
|
|
2539
2554
|
ext?: MetaDataExtEnum | null;
|
|
@@ -2605,6 +2620,7 @@ export type ProjectSearchQueryVariables = Exact<{
|
|
|
2605
2620
|
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
2606
2621
|
params: ProjectSearchParamsInput;
|
|
2607
2622
|
minScore?: InputMaybe<Scalars['Float']['input']>;
|
|
2623
|
+
debug?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2608
2624
|
}>;
|
|
2609
2625
|
export type ProjectSearchQuery = {
|
|
2610
2626
|
__typename?: 'Query';
|
|
@@ -2633,7 +2649,7 @@ export type ProjectSearchQuery = {
|
|
|
2633
2649
|
key: string;
|
|
2634
2650
|
locked?: boolean | null;
|
|
2635
2651
|
type?: MetaDataTypeEnum | null;
|
|
2636
|
-
value
|
|
2652
|
+
value?: string | null;
|
|
2637
2653
|
}>;
|
|
2638
2654
|
bounds?: {
|
|
2639
2655
|
__typename?: 'ProjectBounds';
|
|
@@ -2648,6 +2664,7 @@ export type ProjectSearchQuery = {
|
|
|
2648
2664
|
__typename: 'ProjectSearchMeta';
|
|
2649
2665
|
bbox?: Array<number> | null;
|
|
2650
2666
|
projectTypes?: JSONObject | null;
|
|
2667
|
+
openSearch?: JSONObject | null;
|
|
2651
2668
|
} | {
|
|
2652
2669
|
__typename: 'SearchMeta';
|
|
2653
2670
|
} | null;
|
|
@@ -2743,6 +2760,7 @@ export type RequestUploadImageQuery = {
|
|
|
2743
2760
|
};
|
|
2744
2761
|
export declare const DirtyProjectsFragment: import("graphql/language/ast").DocumentNode;
|
|
2745
2762
|
export declare const AdminReIndexOpenSearch: import("graphql/language/ast").DocumentNode;
|
|
2763
|
+
export declare const AdminRecreateOpenSearch: import("graphql/language/ast").DocumentNode;
|
|
2746
2764
|
export declare const DeleteProject: import("graphql/language/ast").DocumentNode;
|
|
2747
2765
|
export declare const DirtyProjects: import("graphql/language/ast").DocumentNode;
|
|
2748
2766
|
export declare const GetDirtyProject: import("graphql/language/ast").DocumentNode;
|
package/dist/gen/schema.types.js
CHANGED
|
@@ -7,8 +7,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
7
7
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
8
8
|
};
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.
|
|
11
|
-
exports.RequestUploadImage = exports.FinalizeProjectUpload = exports.RequestUploadProjectFilesUrl = exports.CheckUpload = exports.RequestUploadProject = exports.ValidateProject = exports.ProjectSearch = exports.ZipRebuild = exports.RebuildWebTiles = exports.GetProjectFilesForDownload = exports.RequestUploadBounds = exports.GetProjectForWatcher = exports.ProjectTree_Query = exports.ProjectExists = exports.ProjectDownload = void 0;
|
|
10
|
+
exports.UpdateCollection = exports.CreateCollection = exports.UpdateOrganization = exports.CreateOrganization = exports.UpdateProfile = exports.PurgeProject = exports.UpdateProject = exports.CreateProject = exports.UpdateProjectType = exports.CreateProjectType = exports.DownloadFile = exports.MyProfile = exports.Auth_Query = exports.GetDirtyProject = exports.DirtyProjects = exports.DeleteProject = exports.AdminRecreateOpenSearch = exports.AdminReIndexOpenSearch = exports.DirtyProjectsFragment = exports.TransferrableTypesEnum = exports.TransferStateEnum = exports.TilingStateEnum = exports.TileTypesEnum = exports.SymbologyStateEnum = exports.StarrableTypesEnum = exports.SeverityEnum = exports.SearchableTypesEnum = exports.SearchSortEnum = exports.RampTypeEnum = exports.QaqcStateEnum = exports.ProjectVisibilityEnum = exports.ProjectTypeStateEnum = exports.ProjectTreeLayerTypeEnum = exports.ProjectGroupVisibilityEnum = exports.ProjectDeleteChoicesEnum = exports.OwnerInputTypesEnum = exports.OrganizationRoleEnum = exports.OrganizationInviteStateEnum = exports.OrganizationInviteRoleEnum = exports.NotificationTypesEnum = exports.NotificationOperationEnum = exports.NotificationActionsEnum = exports.MetaDataTypeEnum = exports.MetaDataExtEnum = exports.JobStatusEnum = exports.ImageTypeEnum = exports.EntityDeleteActionsEnum = exports.EntitiesWithImagesEnum = exports.DatasetTypeEnum = exports.DatasetContainerTypesEnum = void 0;
|
|
11
|
+
exports.RequestUploadImage = exports.FinalizeProjectUpload = exports.RequestUploadProjectFilesUrl = exports.CheckUpload = exports.RequestUploadProject = exports.ValidateProject = exports.ProjectSearch = exports.ZipRebuild = exports.RebuildWebTiles = exports.GetProjectFilesForDownload = exports.RequestUploadBounds = exports.GetProjectForWatcher = exports.ProjectTree_Query = exports.ProjectExists = exports.ProjectDownload = exports.GetProjectForUploadCheck = void 0;
|
|
12
12
|
var graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
13
13
|
exports.DatasetContainerTypesEnum = {
|
|
14
14
|
CommonDatasets: 'CommonDatasets',
|
|
@@ -244,37 +244,38 @@ exports.TransferrableTypesEnum = {
|
|
|
244
244
|
};
|
|
245
245
|
exports.DirtyProjectsFragment = (0, graphql_tag_1.default)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n fragment DirtyProjectsFragment on Project {\n id\n name\n description\n citation\n summary\n updatedOn\n createdOn\n deleted\n dirty\n ref\n bounds {\n id\n polygonUrl\n }\n meta {\n ext\n key\n value\n locked\n type\n }\n}\n "], ["\n fragment DirtyProjectsFragment on Project {\n id\n name\n description\n citation\n summary\n updatedOn\n createdOn\n deleted\n dirty\n ref\n bounds {\n id\n polygonUrl\n }\n meta {\n ext\n key\n value\n locked\n type\n }\n}\n "])));
|
|
246
246
|
exports.AdminReIndexOpenSearch = (0, graphql_tag_1.default)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n mutation adminReIndexOpenSearch($paginationToken: String) {\n adminReIndexOpenSearch(paginationToken: $paginationToken)\n}\n "], ["\n mutation adminReIndexOpenSearch($paginationToken: String) {\n adminReIndexOpenSearch(paginationToken: $paginationToken)\n}\n "])));
|
|
247
|
-
exports.
|
|
248
|
-
exports.
|
|
249
|
-
exports.
|
|
250
|
-
exports.
|
|
251
|
-
exports.
|
|
252
|
-
exports.
|
|
253
|
-
exports.
|
|
254
|
-
exports.
|
|
255
|
-
exports.
|
|
256
|
-
exports.
|
|
257
|
-
exports.
|
|
258
|
-
exports.
|
|
259
|
-
exports.
|
|
260
|
-
exports.
|
|
261
|
-
exports.
|
|
262
|
-
exports.
|
|
263
|
-
exports.
|
|
264
|
-
exports.
|
|
265
|
-
exports.
|
|
266
|
-
exports.
|
|
267
|
-
exports.
|
|
268
|
-
exports.
|
|
269
|
-
exports.
|
|
270
|
-
exports.
|
|
271
|
-
exports.
|
|
272
|
-
exports.
|
|
273
|
-
exports.
|
|
274
|
-
exports.
|
|
275
|
-
exports.
|
|
276
|
-
exports.
|
|
277
|
-
exports.
|
|
278
|
-
exports.
|
|
279
|
-
|
|
247
|
+
exports.AdminRecreateOpenSearch = (0, graphql_tag_1.default)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n mutation adminRecreateOpenSearch {\n adminRecreateOpenSearch\n}\n "], ["\n mutation adminRecreateOpenSearch {\n adminRecreateOpenSearch\n}\n "])));
|
|
248
|
+
exports.DeleteProject = (0, graphql_tag_1.default)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n mutation deleteProject($projectId: ID!, $options: EntityDeletionOptions) {\n deleteProject(projectId: $projectId, options: $options) {\n error\n ids\n message\n success\n }\n}\n "], ["\n mutation deleteProject($projectId: ID!, $options: EntityDeletionOptions) {\n deleteProject(projectId: $projectId, options: $options) {\n error\n ids\n message\n success\n }\n}\n "])));
|
|
249
|
+
exports.DirtyProjects = (0, graphql_tag_1.default)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n query dirtyProjects($limit: Int!, $offset: Int!) {\n dirtyProjects(limit: $limit, offset: $offset) {\n items {\n ...DirtyProjectsFragment\n }\n limit\n offset\n total\n }\n}\n ", ""], ["\n query dirtyProjects($limit: Int!, $offset: Int!) {\n dirtyProjects(limit: $limit, offset: $offset) {\n items {\n ...DirtyProjectsFragment\n }\n limit\n offset\n total\n }\n}\n ", ""])), exports.DirtyProjectsFragment);
|
|
250
|
+
exports.GetDirtyProject = (0, graphql_tag_1.default)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n query getDirtyProject($projectId: ID!) {\n project(id: $projectId) {\n ...DirtyProjectsFragment\n }\n}\n ", ""], ["\n query getDirtyProject($projectId: ID!) {\n project(id: $projectId) {\n ...DirtyProjectsFragment\n }\n}\n ", ""])), exports.DirtyProjectsFragment);
|
|
251
|
+
exports.Auth_Query = (0, graphql_tag_1.default)(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n query auth_query {\n info {\n api\n businessLogic\n projectFile\n warehouse\n xml\n xsd\n }\n}\n "], ["\n query auth_query {\n info {\n api\n businessLogic\n projectFile\n warehouse\n xml\n xsd\n }\n}\n "])));
|
|
252
|
+
exports.MyProfile = (0, graphql_tag_1.default)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n query myProfile {\n profile {\n id\n name\n initialized\n }\n}\n "], ["\n query myProfile {\n profile {\n id\n name\n initialized\n }\n}\n "])));
|
|
253
|
+
exports.DownloadFile = (0, graphql_tag_1.default)(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n query downloadFile($projectId: ID!, $filePath: String!) {\n downloadFile(projectId: $projectId, filePath: $filePath) {\n localPath\n etag\n size\n contentType\n downloadUrl\n }\n}\n "], ["\n query downloadFile($projectId: ID!, $filePath: String!) {\n downloadFile(projectId: $projectId, filePath: $filePath) {\n localPath\n etag\n size\n contentType\n downloadUrl\n }\n}\n "])));
|
|
254
|
+
exports.CreateProjectType = (0, graphql_tag_1.default)(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n mutation createProjectType($id: String!, $projectType: ProjectTypeInput!) {\n createProjectType(id: $id, projectType: $projectType, state: ACTIVE) {\n id\n }\n}\n "], ["\n mutation createProjectType($id: String!, $projectType: ProjectTypeInput!) {\n createProjectType(id: $id, projectType: $projectType, state: ACTIVE) {\n id\n }\n}\n "])));
|
|
255
|
+
exports.UpdateProjectType = (0, graphql_tag_1.default)(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n mutation updateProjectType($id: String!, $projectType: ProjectTypeInput!) {\n updateProjectType(id: $id, projectType: $projectType, state: ACTIVE) {\n id\n }\n}\n "], ["\n mutation updateProjectType($id: String!, $projectType: ProjectTypeInput!) {\n updateProjectType(id: $id, projectType: $projectType, state: ACTIVE) {\n id\n }\n}\n "])));
|
|
256
|
+
exports.CreateProject = (0, graphql_tag_1.default)(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n mutation createProject($projectId: ID, $orgId: ID, $userId: ID, $project: ProjectInput!, $projectTypeId: String!, $agentId: ID) {\n createProject(\n projectId: $projectId\n orgId: $orgId\n userId: $userId\n project: $project\n projectTypeId: $projectTypeId\n agentId: $agentId\n ) {\n id\n ref\n createdOn\n updatedOn\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n projectType {\n id\n }\n tags\n }\n}\n "], ["\n mutation createProject($projectId: ID, $orgId: ID, $userId: ID, $project: ProjectInput!, $projectTypeId: String!, $agentId: ID) {\n createProject(\n projectId: $projectId\n orgId: $orgId\n userId: $userId\n project: $project\n projectTypeId: $projectTypeId\n agentId: $agentId\n ) {\n id\n ref\n createdOn\n updatedOn\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n projectType {\n id\n }\n tags\n }\n}\n "])));
|
|
257
|
+
exports.UpdateProject = (0, graphql_tag_1.default)(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n mutation updateProject($projectId: ID!, $project: ProjectInput!, $agentId: ID) {\n updateProject(projectId: $projectId, project: $project, agentId: $agentId) {\n id\n ref\n createdOn\n updatedOn\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n projectType {\n id\n }\n tags\n }\n}\n "], ["\n mutation updateProject($projectId: ID!, $project: ProjectInput!, $agentId: ID) {\n updateProject(projectId: $projectId, project: $project, agentId: $agentId) {\n id\n ref\n createdOn\n updatedOn\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n projectType {\n id\n }\n tags\n }\n}\n "])));
|
|
258
|
+
exports.PurgeProject = (0, graphql_tag_1.default)(templateObject_14 || (templateObject_14 = __makeTemplateObject(["\n mutation purgeProject($projectId: ID!) {\n purgeProject(projectId: $projectId) {\n ids\n error\n success\n message\n }\n}\n "], ["\n mutation purgeProject($projectId: ID!) {\n purgeProject(projectId: $projectId) {\n ids\n error\n success\n message\n }\n}\n "])));
|
|
259
|
+
exports.UpdateProfile = (0, graphql_tag_1.default)(templateObject_15 || (templateObject_15 = __makeTemplateObject(["\n mutation updateProfile($profile: ProfileInput!) {\n updateProfile(profile: $profile) {\n name\n }\n}\n "], ["\n mutation updateProfile($profile: ProfileInput!) {\n updateProfile(profile: $profile) {\n name\n }\n}\n "])));
|
|
260
|
+
exports.CreateOrganization = (0, graphql_tag_1.default)(templateObject_16 || (templateObject_16 = __makeTemplateObject(["\n mutation createOrganization($organization: OrganizationInput!) {\n createOrganization(organization: $organization) {\n id\n }\n}\n "], ["\n mutation createOrganization($organization: OrganizationInput!) {\n createOrganization(organization: $organization) {\n id\n }\n}\n "])));
|
|
261
|
+
exports.UpdateOrganization = (0, graphql_tag_1.default)(templateObject_17 || (templateObject_17 = __makeTemplateObject(["\n mutation updateOrganization($id: ID!, $organization: OrganizationInput!) {\n updateOrganization(id: $id, organization: $organization) {\n id\n }\n}\n "], ["\n mutation updateOrganization($id: ID!, $organization: OrganizationInput!) {\n updateOrganization(id: $id, organization: $organization) {\n id\n }\n}\n "])));
|
|
262
|
+
exports.CreateCollection = (0, graphql_tag_1.default)(templateObject_18 || (templateObject_18 = __makeTemplateObject(["\n mutation createCollection($collection: CollectionInput!, $orgId: ID) {\n createCollection(collection: $collection, orgId: $orgId) {\n id\n }\n}\n "], ["\n mutation createCollection($collection: CollectionInput!, $orgId: ID) {\n createCollection(collection: $collection, orgId: $orgId) {\n id\n }\n}\n "])));
|
|
263
|
+
exports.UpdateCollection = (0, graphql_tag_1.default)(templateObject_19 || (templateObject_19 = __makeTemplateObject(["\n mutation updateCollection($id: ID!, $organization: OrganizationInput!) {\n updateOrganization(id: $id, organization: $organization) {\n id\n }\n}\n "], ["\n mutation updateCollection($id: ID!, $organization: OrganizationInput!) {\n updateOrganization(id: $id, organization: $organization) {\n id\n }\n}\n "])));
|
|
264
|
+
exports.GetProjectForUploadCheck = (0, graphql_tag_1.default)(templateObject_20 || (templateObject_20 = __makeTemplateObject(["\n query getProjectForUploadCheck($id: ID!, $dsLimit: Int!, $dsOffset: Int!) {\n project(id: $id) {\n id\n name\n summary\n deleted\n projectType {\n id\n }\n meta {\n key\n value\n type\n locked\n ext\n }\n createdBy {\n id\n name\n }\n updatedBy {\n id\n name\n }\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n createdOn\n updatedOn\n ref\n datasets(limit: $dsLimit, offset: $dsOffset) {\n items {\n id\n name\n rsXPath\n }\n total\n }\n tags\n }\n}\n "], ["\n query getProjectForUploadCheck($id: ID!, $dsLimit: Int!, $dsOffset: Int!) {\n project(id: $id) {\n id\n name\n summary\n deleted\n projectType {\n id\n }\n meta {\n key\n value\n type\n locked\n ext\n }\n createdBy {\n id\n name\n }\n updatedBy {\n id\n name\n }\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n createdOn\n updatedOn\n ref\n datasets(limit: $dsLimit, offset: $dsOffset) {\n items {\n id\n name\n rsXPath\n }\n total\n }\n tags\n }\n}\n "])));
|
|
265
|
+
exports.ProjectDownload = (0, graphql_tag_1.default)(templateObject_21 || (templateObject_21 = __makeTemplateObject(["\n query projectDownload($id: ID!) {\n project(id: $id) {\n id\n name\n ref\n tags\n createdOn\n updatedOn\n deleted\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n projectType {\n id\n }\n meta {\n key\n value\n type\n locked\n ext\n }\n files {\n contentType\n downloadUrl\n etag\n localPath\n size\n }\n }\n}\n "], ["\n query projectDownload($id: ID!) {\n project(id: $id) {\n id\n name\n ref\n tags\n createdOn\n updatedOn\n deleted\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n projectType {\n id\n }\n meta {\n key\n value\n type\n locked\n ext\n }\n files {\n contentType\n downloadUrl\n etag\n localPath\n size\n }\n }\n}\n "])));
|
|
266
|
+
exports.ProjectExists = (0, graphql_tag_1.default)(templateObject_22 || (templateObject_22 = __makeTemplateObject(["\n query projectExists($id: ID!) {\n project(id: $id) {\n id\n name\n ref\n deleted\n createdOn\n updatedOn\n deleted\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n projectType {\n id\n }\n meta {\n key\n value\n type\n locked\n ext\n }\n }\n}\n "], ["\n query projectExists($id: ID!) {\n project(id: $id) {\n id\n name\n ref\n deleted\n createdOn\n updatedOn\n deleted\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n projectType {\n id\n }\n meta {\n key\n value\n type\n locked\n ext\n }\n }\n}\n "])));
|
|
267
|
+
exports.ProjectTree_Query = (0, graphql_tag_1.default)(templateObject_23 || (templateObject_23 = __makeTemplateObject(["\n query projectTree_query($id: ID!) {\n project(id: $id) {\n deleted\n tree {\n defaultView\n description\n leaves {\n id\n pid\n label\n labelxpath\n nodeId\n layerType\n blLayerId\n symbology\n transparency\n rsXPath\n lyrName\n }\n branches {\n bid\n collapsed\n label\n pid\n }\n defaultView\n views {\n id\n name\n description\n layers {\n id\n visible\n }\n }\n }\n }\n}\n "], ["\n query projectTree_query($id: ID!) {\n project(id: $id) {\n deleted\n tree {\n defaultView\n description\n leaves {\n id\n pid\n label\n labelxpath\n nodeId\n layerType\n blLayerId\n symbology\n transparency\n rsXPath\n lyrName\n }\n branches {\n bid\n collapsed\n label\n pid\n }\n defaultView\n views {\n id\n name\n description\n layers {\n id\n visible\n }\n }\n }\n }\n}\n "])));
|
|
268
|
+
exports.GetProjectForWatcher = (0, graphql_tag_1.default)(templateObject_24 || (templateObject_24 = __makeTemplateObject(["\n query getProjectForWatcher($id: ID!) {\n project(id: $id) {\n id\n name\n createdOn\n updatedOn\n ref\n deleted\n projectType {\n id\n }\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n }\n}\n "], ["\n query getProjectForWatcher($id: ID!) {\n project(id: $id) {\n id\n name\n createdOn\n updatedOn\n ref\n deleted\n projectType {\n id\n }\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n }\n}\n "])));
|
|
269
|
+
exports.RequestUploadBounds = (0, graphql_tag_1.default)(templateObject_25 || (templateObject_25 = __makeTemplateObject(["\n query requestUploadBounds {\n requestUploadBounds {\n fields\n token\n url\n }\n}\n "], ["\n query requestUploadBounds {\n requestUploadBounds {\n fields\n token\n url\n }\n}\n "])));
|
|
270
|
+
exports.GetProjectFilesForDownload = (0, graphql_tag_1.default)(templateObject_26 || (templateObject_26 = __makeTemplateObject(["\n query getProjectFilesForDownload($id: ID!, $dsLimit: Int!, $dsOffset: Int!) {\n project(id: $id) {\n id\n name\n summary\n deleted\n projectType {\n id\n }\n meta {\n key\n value\n type\n locked\n ext\n }\n createdBy {\n id\n }\n updatedBy {\n id\n }\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n createdOn\n updatedOn\n ref\n datasets(limit: $dsLimit, offset: $dsOffset) {\n items {\n id\n name\n rsXPath\n }\n total\n }\n tags\n files {\n localPath\n etag\n size\n contentType\n downloadUrl\n }\n }\n}\n "], ["\n query getProjectFilesForDownload($id: ID!, $dsLimit: Int!, $dsOffset: Int!) {\n project(id: $id) {\n id\n name\n summary\n deleted\n projectType {\n id\n }\n meta {\n key\n value\n type\n locked\n ext\n }\n createdBy {\n id\n }\n updatedBy {\n id\n }\n ownedBy {\n ... on User {\n id\n name\n }\n ... on Organization {\n id\n name\n }\n __typename\n }\n createdOn\n updatedOn\n ref\n datasets(limit: $dsLimit, offset: $dsOffset) {\n items {\n id\n name\n rsXPath\n }\n total\n }\n tags\n files {\n localPath\n etag\n size\n contentType\n downloadUrl\n }\n }\n}\n "])));
|
|
271
|
+
exports.RebuildWebTiles = (0, graphql_tag_1.default)(templateObject_27 || (templateObject_27 = __makeTemplateObject(["\n mutation rebuildWebTiles($projectId: ID!, $rsXPaths: [String!], $force: Boolean) {\n rebuildWebTiles(projectId: $projectId, rsXPaths: $rsXPaths, force: $force) {\n skipped\n queued\n }\n}\n "], ["\n mutation rebuildWebTiles($projectId: ID!, $rsXPaths: [String!], $force: Boolean) {\n rebuildWebTiles(projectId: $projectId, rsXPaths: $rsXPaths, force: $force) {\n skipped\n queued\n }\n}\n "])));
|
|
272
|
+
exports.ZipRebuild = (0, graphql_tag_1.default)(templateObject_28 || (templateObject_28 = __makeTemplateObject(["\n mutation zipRebuild($projectId: ID!, $force: Boolean) {\n zipRebuild(projectId: $projectId, force: $force) {\n id\n }\n}\n "], ["\n mutation zipRebuild($projectId: ID!, $force: Boolean) {\n zipRebuild(projectId: $projectId, force: $force) {\n id\n }\n}\n "])));
|
|
273
|
+
exports.ProjectSearch = (0, graphql_tag_1.default)(templateObject_29 || (templateObject_29 = __makeTemplateObject(["\n query projectSearch($offset: Int!, $limit: Int!, $sort: [SearchSortEnum!], $params: ProjectSearchParamsInput!, $minScore: Float, $debug: Boolean) {\n searchProjects(\n offset: $offset\n limit: $limit\n sort: $sort\n params: $params\n minScore: $minScore\n debug: $debug\n ) {\n total\n results {\n score\n item {\n __typename\n ... on Project {\n id\n name\n deleted\n projectType {\n id\n name\n logo\n }\n visibility\n summary\n meta {\n ext\n key\n locked\n type\n value\n }\n bounds {\n id\n geoHash\n polygonUrl\n bbox\n }\n }\n }\n }\n stats {\n __typename\n ... on ProjectSearchMeta {\n bbox\n projectTypes\n openSearch\n }\n }\n }\n}\n "], ["\n query projectSearch($offset: Int!, $limit: Int!, $sort: [SearchSortEnum!], $params: ProjectSearchParamsInput!, $minScore: Float, $debug: Boolean) {\n searchProjects(\n offset: $offset\n limit: $limit\n sort: $sort\n params: $params\n minScore: $minScore\n debug: $debug\n ) {\n total\n results {\n score\n item {\n __typename\n ... on Project {\n id\n name\n deleted\n projectType {\n id\n name\n logo\n }\n visibility\n summary\n meta {\n ext\n key\n locked\n type\n value\n }\n bounds {\n id\n geoHash\n polygonUrl\n bbox\n }\n }\n }\n }\n stats {\n __typename\n ... on ProjectSearchMeta {\n bbox\n projectTypes\n openSearch\n }\n }\n }\n}\n "])));
|
|
274
|
+
exports.ValidateProject = (0, graphql_tag_1.default)(templateObject_30 || (templateObject_30 = __makeTemplateObject(["\n query validateProject($xml: String!, $owner: OwnerInput, $files: [String!]!) {\n validateProject(xml: $xml, owner: $owner, files: $files) {\n valid\n errors {\n code\n message\n severity\n __typename\n }\n }\n}\n "], ["\n query validateProject($xml: String!, $owner: OwnerInput, $files: [String!]!) {\n validateProject(xml: $xml, owner: $owner, files: $files) {\n valid\n errors {\n code\n message\n severity\n __typename\n }\n }\n}\n "])));
|
|
275
|
+
exports.RequestUploadProject = (0, graphql_tag_1.default)(templateObject_31 || (templateObject_31 = __makeTemplateObject(["\n query requestUploadProject($projectId: String, $token: String, $files: [String!]!, $etags: [String!]!, $sizes: [BigInt!]!, $noDelete: Boolean, $owner: OwnerInput, $tags: [String!], $visibility: ProjectVisibilityEnum) {\n requestUploadProject(\n projectId: $projectId\n token: $token\n files: $files\n etags: $etags\n sizes: $sizes\n noDelete: $noDelete\n owner: $owner\n tags: $tags\n visibility: $visibility\n ) {\n newId\n create\n delete\n token\n update\n __typename\n }\n}\n "], ["\n query requestUploadProject($projectId: String, $token: String, $files: [String!]!, $etags: [String!]!, $sizes: [BigInt!]!, $noDelete: Boolean, $owner: OwnerInput, $tags: [String!], $visibility: ProjectVisibilityEnum) {\n requestUploadProject(\n projectId: $projectId\n token: $token\n files: $files\n etags: $etags\n sizes: $sizes\n noDelete: $noDelete\n owner: $owner\n tags: $tags\n visibility: $visibility\n ) {\n newId\n create\n delete\n token\n update\n __typename\n }\n}\n "])));
|
|
276
|
+
exports.CheckUpload = (0, graphql_tag_1.default)(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n query checkUpload($token: String!) {\n checkUpload(token: $token) {\n data\n errors\n metaData\n percentComplete\n status\n __typename\n }\n}\n "], ["\n query checkUpload($token: String!) {\n checkUpload(token: $token) {\n data\n errors\n metaData\n percentComplete\n status\n __typename\n }\n}\n "])));
|
|
277
|
+
exports.RequestUploadProjectFilesUrl = (0, graphql_tag_1.default)(templateObject_33 || (templateObject_33 = __makeTemplateObject(["\n query requestUploadProjectFilesUrl($files: [String!]!, $token: String!) {\n requestUploadProjectFilesUrl(files: $files, token: $token) {\n relPath\n urls\n __typename\n }\n}\n "], ["\n query requestUploadProjectFilesUrl($files: [String!]!, $token: String!) {\n requestUploadProjectFilesUrl(files: $files, token: $token) {\n relPath\n urls\n __typename\n }\n}\n "])));
|
|
278
|
+
exports.FinalizeProjectUpload = (0, graphql_tag_1.default)(templateObject_34 || (templateObject_34 = __makeTemplateObject(["\n mutation finalizeProjectUpload($token: String!) {\n finalizeProjectUpload(token: $token) {\n __typename\n }\n}\n "], ["\n mutation finalizeProjectUpload($token: String!) {\n finalizeProjectUpload(token: $token) {\n __typename\n }\n}\n "])));
|
|
279
|
+
exports.RequestUploadImage = (0, graphql_tag_1.default)(templateObject_35 || (templateObject_35 = __makeTemplateObject(["\n query requestUploadImage($entityId: ID!, $entityType: EntitiesWithImagesEnum!) {\n requestUploadImage(entityId: $entityId, entityType: $entityType) {\n fields\n token\n url\n }\n}\n "], ["\n query requestUploadImage($entityId: ID!, $entityType: EntitiesWithImagesEnum!) {\n requestUploadImage(entityId: $entityId, entityType: $entityType) {\n fields\n token\n url\n }\n}\n "])));
|
|
280
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14, templateObject_15, templateObject_16, templateObject_17, templateObject_18, templateObject_19, templateObject_20, templateObject_21, templateObject_22, templateObject_23, templateObject_24, templateObject_25, templateObject_26, templateObject_27, templateObject_28, templateObject_29, templateObject_30, templateObject_31, templateObject_32, templateObject_33, templateObject_34, templateObject_35;
|
|
280
281
|
//# sourceMappingURL=schema.types.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.types.js","sourceRoot":"","sources":["../../src/gen/schema.types.ts"],"names":[],"mappings":";;;;;;;;;;;AACA,4DAA8B;AA4NjB,QAAA,yBAAyB,GAAG;IACvC,cAAc,EAAE,gBAAgB;IAChC,aAAa,EAAE,eAAe;IAC9B,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,eAAe;IAC9B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;CACZ,CAAC;AA8DE,QAAA,eAAe,GAAG;IAC7B,iBAAiB,EAAE,mBAAmB;IACtC,GAAG,EAAE,KAAK;IACV,UAAU,EAAE,YAAY;IACxB,GAAG,EAAE,KAAK;IACV,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE,MAAM;IACZ,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;IACxB,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,eAAe,EAAE,iBAAiB;IAClC,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;CACV,CAAC;AAYE,QAAA,sBAAsB,GAAG;IACpC,UAAU,EAAE,YAAY;IACxB,YAAY,EAAE,cAAc;IAC5B,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,cAAc;IAC3B,IAAI,EAAE,MAAM;CACJ,CAAC;AAGE,QAAA,uBAAuB,GAAG;IACrC,MAAM,EAAE,QAAQ;IAChB,cAAc,EAAE,iBAAiB;IACjC,UAAU,EAAE,aAAa;IACzB,eAAe,EAAE,kBAAkB;CAC3B,CAAC;AAgEE,QAAA,aAAa,GAAG;IAC3B,MAAM,EAAE,QAAQ;IAChB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;CACJ,CAAC;AAGE,QAAA,aAAa,GAAG;IAC3B,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;CACV,CAAC;AAuDE,QAAA,eAAe,GAAG;IAC7B,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,WAAW;CACd,CAAC;
|
|
1
|
+
{"version":3,"file":"schema.types.js","sourceRoot":"","sources":["../../src/gen/schema.types.ts"],"names":[],"mappings":"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"}
|