Skip to content

Commit 446f09a

Browse files
authored
Add SearchedWithResults event (#440)
1 parent 60456c5 commit 446f09a

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

src/Schema/Events/Search.ts

+26
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,32 @@ export interface SearchedWithNoResults {
8888
query: string
8989
}
9090

91+
/**
92+
* A user searches with results
93+
*
94+
* This schema describes events sent to Segment from [[searchedWithResults]]
95+
*
96+
* @example
97+
* ```
98+
* {
99+
* action: "searchedWithResults",
100+
* context_module: "header",
101+
* context_owner_type: "home",
102+
* destination_owner_type: "search",
103+
* query: "Banksy"
104+
* }
105+
* ```
106+
*/
107+
export interface SearchedWithResults {
108+
action: ActionType.searchedWithResults
109+
context_module: ContextModule
110+
context_owner_type: PageOwnerType
111+
context_owner_id?: string
112+
context_owner_slug?: string
113+
destination_owner_type?: PageOwnerType
114+
query: string
115+
}
116+
91117
/**
92118
* A user queries the Artsy Price Database, including the artist_id, string queried, and applied filters
93119
*

src/Schema/Events/index.ts

+6
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ import {
162162
FocusedOnSearchInput,
163163
SearchedPriceDatabase,
164164
SearchedWithNoResults,
165+
SearchedWithResults,
165166
SelectedItemFromPriceDatabaseSearch,
166167
SelectedItemFromSearch,
167168
SelectedSearchSuggestionQuickNavigationItem,
@@ -325,6 +326,7 @@ export type Event =
325326
| SearchedReverseImageWithNoResults
326327
| SearchedReverseImageWithResults
327328
| SearchedWithNoResults
329+
| SearchedWithResults
328330
| SelectedArtworkFromReverseImageSearch
329331
| SelectedItemFromSearch
330332
| SelectedItemFromPriceDatabaseSearch
@@ -902,6 +904,10 @@ export enum ActionType {
902904
* Corresponds to {@link SearchedWithNoResults}
903905
*/
904906
searchedWithNoResults = "searchedWithNoResults",
907+
/**
908+
* Corresponds to {@link SearchedWithResults}
909+
*/
910+
searchedWithResults = "searchedWithResults",
905911
/**
906912
* Corresponds to {@link SelectArtistFromSearch}
907913
*/

0 commit comments

Comments
 (0)