Skip to content

Commit

Permalink
added two new faceted types of a content item (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
theorm authored Jan 16, 2025
1 parent 6a20027 commit a8a0408
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
4 changes: 3 additions & 1 deletion dist/impresso-jscommons.js
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,9 @@ var query_pb = createCommonjsModule(function (module, exports) {
TYPE_TEXT_REUSE_CLUSTER: 29,
TYPE_MENTION_FUNCTION: 30,
TYPE_NAG: 31,
TYPE_WIKIDATA_ID: 32
TYPE_WIKIDATA_ID: 32,
TYPE_DATA_DOMAIN: 33,
TYPE_COPYRIGHT: 34
};

/**
Expand Down
2 changes: 1 addition & 1 deletion dist/impresso-jscommons.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "impresso-jscommons",
"version": "1.4.3",
"version": "1.5.0",
"description": "Code shared between the middle layer and frontend",
"private": true,
"main": "dist/impresso-jscommons.js",
Expand Down
3 changes: 3 additions & 0 deletions proto/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ enum FilterType {
TYPE_MENTION_FUNCTION = 30;
TYPE_NAG = 31;
TYPE_WIKIDATA_ID = 32;

TYPE_DATA_DOMAIN = 33;
TYPE_COPYRIGHT = 34;
}

enum FilterPrecision {
Expand Down
2 changes: 2 additions & 0 deletions src/generated/query_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,8 @@ export interface FilterTypeMap {
TYPE_MENTION_FUNCTION: 30;
TYPE_NAG: 31;
TYPE_WIKIDATA_ID: 32;
TYPE_DATA_DOMAIN: 33;
TYPE_COPYRIGHT: 34;
}

export const FilterType: FilterTypeMap;
Expand Down
4 changes: 3 additions & 1 deletion src/generated/query_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -1595,7 +1595,9 @@ proto.impresso.query.FilterType = {
TYPE_TEXT_REUSE_CLUSTER: 29,
TYPE_MENTION_FUNCTION: 30,
TYPE_NAG: 31,
TYPE_WIKIDATA_ID: 32
TYPE_WIKIDATA_ID: 32,
TYPE_DATA_DOMAIN: 33,
TYPE_COPYRIGHT: 34
};

/**
Expand Down

0 comments on commit a8a0408

Please sign in to comment.