@riverscapes/common 2.0.24 → 2.0.25
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/gen/gqlSchema.js +1 -1
- package/dist/gen/gqlSchema.js.map +1 -1
- package/dist/gen/schema.types.d.ts +16 -0
- package/dist/gen/schema.types.js +9 -2
- package/dist/gen/schema.types.js.map +1 -1
- package/dist/schema.graphql +44 -0
- package/dist_esnext/gen/gqlSchema.js +1 -1
- package/dist_esnext/gen/gqlSchema.js.map +1 -1
- package/dist_esnext/gen/schema.types.d.ts +16 -0
- package/dist_esnext/gen/schema.types.js +7 -0
- package/dist_esnext/gen/schema.types.js.map +1 -1
- package/package.json +2 -2
|
@@ -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,097DAAA,s57DAupEjB,KAAA"}
|
|
@@ -254,11 +254,19 @@ export type DatasetUpdate = {
|
|
|
254
254
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
255
255
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
256
256
|
};
|
|
257
|
+
export declare const DateWithinEnum: {
|
|
258
|
+
readonly OneDay: "ONE_DAY";
|
|
259
|
+
readonly OneMonth: "ONE_MONTH";
|
|
260
|
+
readonly OneWeek: "ONE_WEEK";
|
|
261
|
+
readonly SixMonths: "SIX_MONTHS";
|
|
262
|
+
};
|
|
263
|
+
export type DateWithinEnum = typeof DateWithinEnum[keyof typeof DateWithinEnum];
|
|
257
264
|
export declare const EntitiesWithImagesEnum: {
|
|
258
265
|
readonly Collection: "COLLECTION";
|
|
259
266
|
readonly Organization: "ORGANIZATION";
|
|
260
267
|
readonly Project: "PROJECT";
|
|
261
268
|
readonly ProjectType: "PROJECT_TYPE";
|
|
269
|
+
readonly SavedSearch: "SAVED_SEARCH";
|
|
262
270
|
readonly User: "USER";
|
|
263
271
|
};
|
|
264
272
|
export type EntitiesWithImagesEnum = typeof EntitiesWithImagesEnum[keyof typeof EntitiesWithImagesEnum];
|
|
@@ -1091,6 +1099,7 @@ export type ProjectSearchParams = {
|
|
|
1091
1099
|
bbox?: Maybe<Array<Scalars['Float']['output']>>;
|
|
1092
1100
|
collection?: Maybe<Scalars['ID']['output']>;
|
|
1093
1101
|
createdOn?: Maybe<SearchDate>;
|
|
1102
|
+
createdWithin?: Maybe<DateWithinEnum>;
|
|
1094
1103
|
editableOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
1095
1104
|
keywords?: Maybe<Scalars['String']['output']>;
|
|
1096
1105
|
meta?: Maybe<Array<MetaData>>;
|
|
@@ -1105,6 +1114,7 @@ export type ProjectSearchParamsInput = {
|
|
|
1105
1114
|
boundsId?: InputMaybe<Scalars['ID']['input']>;
|
|
1106
1115
|
collection?: InputMaybe<Scalars['ID']['input']>;
|
|
1107
1116
|
createdOn?: InputMaybe<SearchDateInput>;
|
|
1117
|
+
createdWithin?: InputMaybe<DateWithinEnum>;
|
|
1108
1118
|
editableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1109
1119
|
keywords?: InputMaybe<Scalars['String']['input']>;
|
|
1110
1120
|
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
@@ -1427,10 +1437,12 @@ export type RebuildWebTilesResponse = {
|
|
|
1427
1437
|
};
|
|
1428
1438
|
export type SavedSearch = DbObj & HasOwner & HasStar & HasTags & {
|
|
1429
1439
|
__typename?: 'SavedSearch';
|
|
1440
|
+
citation?: Maybe<Scalars['String']['output']>;
|
|
1430
1441
|
createdBy: User;
|
|
1431
1442
|
createdOn: Scalars['DateTime']['output'];
|
|
1432
1443
|
defaultSort?: Maybe<Array<SearchSortEnum>>;
|
|
1433
1444
|
description: Scalars['String']['output'];
|
|
1445
|
+
heroImage?: Maybe<HeroImage>;
|
|
1434
1446
|
id: Scalars['ID']['output'];
|
|
1435
1447
|
meta: Array<MetaData>;
|
|
1436
1448
|
name: Scalars['String']['output'];
|
|
@@ -1452,8 +1464,11 @@ export type SavedSearchProjectsArgs = {
|
|
|
1452
1464
|
sort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1453
1465
|
};
|
|
1454
1466
|
export type SavedSearchInput = {
|
|
1467
|
+
citation?: InputMaybe<Scalars['String']['input']>;
|
|
1468
|
+
clearHeroImage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1455
1469
|
defaultSort?: InputMaybe<Array<SearchSortEnum>>;
|
|
1456
1470
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
1471
|
+
heroImageToken?: InputMaybe<Scalars['String']['input']>;
|
|
1457
1472
|
meta?: InputMaybe<Array<MetaDataInput>>;
|
|
1458
1473
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1459
1474
|
searchParams?: InputMaybe<ProjectSearchParamsInput>;
|
|
@@ -1581,6 +1596,7 @@ export type SearchPagination = {
|
|
|
1581
1596
|
};
|
|
1582
1597
|
export type SearchParamsInput = {
|
|
1583
1598
|
createdOn?: InputMaybe<SearchDateInput>;
|
|
1599
|
+
createdWithin?: InputMaybe<DateWithinEnum>;
|
|
1584
1600
|
editableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1585
1601
|
keywords?: InputMaybe<Scalars['String']['input']>;
|
|
1586
1602
|
meta?: InputMaybe<Array<MetaDataInput>>;
|
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 = exports.GetProjectForUploadCheck = void 0;
|
|
10
|
+
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.DateWithinEnum = 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 = exports.UpdateCollection = void 0;
|
|
12
12
|
var graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
13
13
|
exports.DatasetContainerTypesEnum = {
|
|
14
14
|
CommonDatasets: 'CommonDatasets',
|
|
@@ -44,11 +44,18 @@ exports.DatasetTypeEnum = {
|
|
|
44
44
|
Video: 'Video',
|
|
45
45
|
ZipFile: 'ZipFile'
|
|
46
46
|
};
|
|
47
|
+
exports.DateWithinEnum = {
|
|
48
|
+
OneDay: 'ONE_DAY',
|
|
49
|
+
OneMonth: 'ONE_MONTH',
|
|
50
|
+
OneWeek: 'ONE_WEEK',
|
|
51
|
+
SixMonths: 'SIX_MONTHS'
|
|
52
|
+
};
|
|
47
53
|
exports.EntitiesWithImagesEnum = {
|
|
48
54
|
Collection: 'COLLECTION',
|
|
49
55
|
Organization: 'ORGANIZATION',
|
|
50
56
|
Project: 'PROJECT',
|
|
51
57
|
ProjectType: 'PROJECT_TYPE',
|
|
58
|
+
SavedSearch: 'SAVED_SEARCH',
|
|
52
59
|
User: 'USER'
|
|
53
60
|
};
|
|
54
61
|
exports.EntityDeleteActionsEnum = {
|
|
@@ -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;
|
|
1
|
+
{"version":3,"file":"schema.types.js","sourceRoot":"","sources":["../../src/gen/schema.types.ts"],"names":[],"mappings":"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"}
|
package/dist/schema.graphql
CHANGED
|
@@ -341,6 +341,17 @@ input DatasetUpdate {
|
|
|
341
341
|
|
|
342
342
|
scalar DateTime
|
|
343
343
|
|
|
344
|
+
"""
|
|
345
|
+
Instead of using a createdOn SearchDateInput you can specify this
|
|
346
|
+
and it will search within a certain time period from the date of the search
|
|
347
|
+
"""
|
|
348
|
+
enum DateWithinEnum {
|
|
349
|
+
ONE_DAY
|
|
350
|
+
ONE_MONTH
|
|
351
|
+
ONE_WEEK
|
|
352
|
+
SIX_MONTHS
|
|
353
|
+
}
|
|
354
|
+
|
|
344
355
|
scalar EmailAddress
|
|
345
356
|
|
|
346
357
|
enum EntitiesWithImagesEnum {
|
|
@@ -348,6 +359,7 @@ enum EntitiesWithImagesEnum {
|
|
|
348
359
|
ORGANIZATION
|
|
349
360
|
PROJECT
|
|
350
361
|
PROJECT_TYPE
|
|
362
|
+
SAVED_SEARCH
|
|
351
363
|
USER
|
|
352
364
|
}
|
|
353
365
|
|
|
@@ -1274,6 +1286,12 @@ type ProjectSearchParams {
|
|
|
1274
1286
|
"""
|
|
1275
1287
|
createdOn: SearchDate
|
|
1276
1288
|
|
|
1289
|
+
"""
|
|
1290
|
+
Filter to projects within a certain time period from the time the search is being made (Now)
|
|
1291
|
+
Cannot be used with createdOn
|
|
1292
|
+
"""
|
|
1293
|
+
createdWithin: DateWithinEnum
|
|
1294
|
+
|
|
1277
1295
|
"""Only projects that I can edit as a user"""
|
|
1278
1296
|
editableOnly: Boolean
|
|
1279
1297
|
keywords: String
|
|
@@ -1316,6 +1334,12 @@ input ProjectSearchParamsInput {
|
|
|
1316
1334
|
"""
|
|
1317
1335
|
createdOn: SearchDateInput
|
|
1318
1336
|
|
|
1337
|
+
"""
|
|
1338
|
+
Filter to projects within a certain time period from the time the search is being made (Now)
|
|
1339
|
+
Cannot be used with createdOn
|
|
1340
|
+
"""
|
|
1341
|
+
createdWithin: DateWithinEnum
|
|
1342
|
+
|
|
1319
1343
|
"""Only projects that I can edit as a user"""
|
|
1320
1344
|
editableOnly: Boolean
|
|
1321
1345
|
keywords: String
|
|
@@ -1680,6 +1704,8 @@ type RebuildWebTilesResponse {
|
|
|
1680
1704
|
}
|
|
1681
1705
|
|
|
1682
1706
|
type SavedSearch implements DBObj & HasOwner & HasStar & HasTags {
|
|
1707
|
+
"""Citation string"""
|
|
1708
|
+
citation: String
|
|
1683
1709
|
createdBy: User!
|
|
1684
1710
|
createdOn: DateTime!
|
|
1685
1711
|
|
|
@@ -1688,6 +1714,9 @@ type SavedSearch implements DBObj & HasOwner & HasStar & HasTags {
|
|
|
1688
1714
|
"""
|
|
1689
1715
|
defaultSort: [SearchSortEnum!]
|
|
1690
1716
|
description: String!
|
|
1717
|
+
|
|
1718
|
+
"""Banner image (optional)"""
|
|
1719
|
+
heroImage: HeroImage
|
|
1691
1720
|
id: ID!
|
|
1692
1721
|
meta: [MetaData!]!
|
|
1693
1722
|
name: String!
|
|
@@ -1707,6 +1736,12 @@ type SavedSearch implements DBObj & HasOwner & HasStar & HasTags {
|
|
|
1707
1736
|
}
|
|
1708
1737
|
|
|
1709
1738
|
input SavedSearchInput {
|
|
1739
|
+
"""Citation string"""
|
|
1740
|
+
citation: String
|
|
1741
|
+
|
|
1742
|
+
"""Resets/deletes the user's avatar back to the default"""
|
|
1743
|
+
clearHeroImage: Boolean
|
|
1744
|
+
|
|
1710
1745
|
"""
|
|
1711
1746
|
The default sort to use. The UI may offer a way to change this on the fly
|
|
1712
1747
|
"""
|
|
@@ -1715,6 +1750,9 @@ input SavedSearchInput {
|
|
|
1715
1750
|
"""Verbose description of the object (< SOME_LIMIT kb of text)"""
|
|
1716
1751
|
description: String
|
|
1717
1752
|
|
|
1753
|
+
"""The Code you were given from the checkUploadImage endpoint"""
|
|
1754
|
+
heroImageToken: String
|
|
1755
|
+
|
|
1718
1756
|
"""Metadata for this object"""
|
|
1719
1757
|
meta: [MetaDataInput!]
|
|
1720
1758
|
|
|
@@ -1895,6 +1933,12 @@ input SearchParamsInput {
|
|
|
1895
1933
|
"""
|
|
1896
1934
|
createdOn: SearchDateInput
|
|
1897
1935
|
|
|
1936
|
+
"""
|
|
1937
|
+
Filter to projects within a certain time period from the time the search is being made (Now)
|
|
1938
|
+
Cannot be used with createdOn
|
|
1939
|
+
"""
|
|
1940
|
+
createdWithin: DateWithinEnum
|
|
1941
|
+
|
|
1898
1942
|
"""Only items that I can edit as a user"""
|
|
1899
1943
|
editableOnly: Boolean
|
|
1900
1944
|
keywords: String
|