Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/common/src/collections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const map: string[] = [
"Map Service",
"Scene Service",
"Scene Layer",
"3DTiles Service",
"Vector Tile Service",
"Web Map Service",
"Web Map Tile Service",
Expand All @@ -79,7 +80,6 @@ const map: string[] = [
const other: string[] = [
"360 VR Experience",
"3DTiles Package",
"3DTiles Service",
"API Key",
"Activity",
"Addin Package",
Expand Down
1 change: 1 addition & 0 deletions packages/common/src/content/compose.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ const getMetadataUpdatedDateInfo = (item: IItem, metadata?: any) => {
export const getContentTypeIcon = (contentType: string) => {
const type = camelize(contentType);
const iconMap = {
"3dtilesService": "urban-model",
appbuilderExtension: "file",
appbuilderWidgetPackage: "widgets-source",
application: "web",
Expand Down
2 changes: 1 addition & 1 deletion packages/search/test/ago/encode-ago-query.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe("encodeAgoQuery test", () => {
};
const actual = encodeAgoQuery(params);
const expected = {
q: '-type:"code attachment" AND crime AND ((group:"1ef")) AND (type:"Image Collection" OR type:"Image Service" OR type:"Map Service Layer" OR type:"Map Service" OR type:"Scene Service" OR type:"Scene Layer" OR type:"Vector Tile Service" OR type:"Web Map Service" OR type:"Web Map Tile Service" OR type:"Web Map" OR type:"Web Scene" OR type:"WFS" OR type:"WMS" OR type:"WMTS") AND (tags:"test")',
q: '-type:"code attachment" AND crime AND ((group:"1ef")) AND (type:"Image Collection" OR type:"Image Service" OR type:"Map Service Layer" OR type:"Map Service" OR type:"Scene Service" OR type:"Scene Layer" OR type:"3DTiles Service" OR type:"Vector Tile Service" OR type:"Web Map Service" OR type:"Web Map Tile Service" OR type:"Web Map" OR type:"Web Scene" OR type:"WFS" OR type:"WMS" OR type:"WMTS") AND (tags:"test")',
start: 1,
num: 10,
sortField: "title",
Expand Down