File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -1204,7 +1204,7 @@ export namespace FirebaseAnalyticsTypes {
1204
1204
* can help you identify popular content and categories of content in your app.
1205
1205
*
1206
1206
* Logged event name: `select_content`
1207
- *ana
1207
+ *
1208
1208
* #### Example
1209
1209
*
1210
1210
* ```js
@@ -1218,19 +1218,24 @@ export namespace FirebaseAnalyticsTypes {
1218
1218
*/
1219
1219
logSelectContent ( params : SelectContentEventParameters ) : Promise < void > ;
1220
1220
/**
1221
- * Select Content event. This general purpose event signifies that a user has selected some
1222
- * content of a certain type in an app. The content can be any object in your app. This event
1223
- * can help you identify popular content and categories of content in your app.
1221
+ * Select Item event. This event signifies that an item was selected by a user from a list.
1222
+ * Use the appropriate parameters to contextualize the event.
1223
+ * Use this event to discover the most popular items selected.
1224
+ *
1225
+ * Logged event name: `select_item`
1224
1226
*
1225
- * Logged event name: `select_content`
1226
- *ana
1227
1227
* #### Example
1228
1228
*
1229
1229
* ```js
1230
1230
* await firebase.analytics().logSelectItem({
1231
1231
* item_list_id: '54690834',
1232
- * item_list_name: 'purple baseball cap',
1233
- * content_type: 'cap',
1232
+ * item_list_name: 't-shirts',
1233
+ * items: [{
1234
+ * item_brand: 'cool-shirt-brand',
1235
+ * item_id: '23456',
1236
+ * item_name: 'orange t-shirt',
1237
+ * item_category: 'round necked t-shirts',
1238
+ * }]
1234
1239
* });
1235
1240
* ```
1236
1241
*
You can’t perform that action at this time.
0 commit comments