No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.d.ts 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /**
  2. * @license
  3. * Copyright 2021 Google LLC
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /**
  18. * Officially recommended event names for gtag.js
  19. * Any other string is also allowed.
  20. */
  21. export declare enum EventName {
  22. ADD_SHIPPING_INFO = "add_shipping_info",
  23. ADD_PAYMENT_INFO = "add_payment_info",
  24. ADD_TO_CART = "add_to_cart",
  25. ADD_TO_WISHLIST = "add_to_wishlist",
  26. BEGIN_CHECKOUT = "begin_checkout",
  27. /**
  28. * @deprecated
  29. * This event name is deprecated and is unsupported in updated
  30. * Enhanced Ecommerce reports.
  31. */
  32. CHECKOUT_PROGRESS = "checkout_progress",
  33. EXCEPTION = "exception",
  34. GENERATE_LEAD = "generate_lead",
  35. LOGIN = "login",
  36. PAGE_VIEW = "page_view",
  37. PURCHASE = "purchase",
  38. REFUND = "refund",
  39. REMOVE_FROM_CART = "remove_from_cart",
  40. SCREEN_VIEW = "screen_view",
  41. SEARCH = "search",
  42. SELECT_CONTENT = "select_content",
  43. SELECT_ITEM = "select_item",
  44. SELECT_PROMOTION = "select_promotion",
  45. /** @deprecated */
  46. SET_CHECKOUT_OPTION = "set_checkout_option",
  47. SHARE = "share",
  48. SIGN_UP = "sign_up",
  49. TIMING_COMPLETE = "timing_complete",
  50. VIEW_CART = "view_cart",
  51. VIEW_ITEM = "view_item",
  52. VIEW_ITEM_LIST = "view_item_list",
  53. VIEW_PROMOTION = "view_promotion",
  54. VIEW_SEARCH_RESULTS = "view_search_results"
  55. }