-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docs): update ts docs for more resolution
- Loading branch information
Showing
2 changed files
with
24 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1755,48 +1755,46 @@ export namespace FirebaseAnalyticsTypes { | |
setDefaultEventParameters(params?: { [key: string]: any }): Promise<void>; | ||
|
||
/** | ||
* start privacy-sensitive on-device conversion management. | ||
* Start privacy-sensitive on-device conversion management. | ||
* This is iOS-only. | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile. | ||
* | ||
* @platform ios iOS | ||
* @platform ios | ||
* @param emailAddress email address, properly formatted complete with domain name e.g, '[email protected]' | ||
*/ | ||
initiateOnDeviceConversionMeasurementWithEmailAddress(emailAddress: string): Promise<void>; | ||
|
||
/** | ||
* start privacy-sensitive on-device conversion management. | ||
* Start privacy-sensitive on-device conversion management. | ||
* This is iOS-only. | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile. | ||
* You need to pass the sha256-hashed of normalized email address to this function. See [this link](https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3#use-hashed-credentials) for more information. | ||
* | ||
* @platform ios iOS | ||
* @param analytics Analytics instance. | ||
* @platform ios | ||
* @param hashedEmailAddress sha256-hashed of normalized email address, properly formatted complete with domain name e.g, '[email protected]' | ||
* @link https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3#use-hashed-credentials | ||
*/ | ||
initiateOnDeviceConversionMeasurementWithHashedEmailAddress( | ||
hashedEmailAddress: string, | ||
): Poromise<void>; | ||
|
||
/** | ||
* start privacy-sensitive on-device conversion management. | ||
* Start privacy-sensitive on-device conversion management. | ||
* This is iOS-only. | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile. | ||
* | ||
* @platform ios iOS | ||
* @platform ios | ||
* @param phoneNumber phone number in E.164 format - that is a leading + sign, then up to 15 digits, no dashes or spaces. | ||
*/ | ||
initiateOnDeviceConversionMeasurementWithPhoneNumber(phoneNumber: string): Promise<void>; | ||
|
||
/** | ||
* start privacy-sensitive on-device conversion management. | ||
* Start privacy-sensitive on-device conversion management. | ||
* This is iOS-only. | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile. | ||
* You need to pass the sha256-hashed of phone number in E.164 format. See [this link](https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3#use-hashed-credentials) for more information. | ||
* | ||
* @platform ios iOS | ||
* @param analytics Analytics instance. | ||
* @platform ios | ||
* @param hashedPhoneNumber sha256-hashed of normalized phone number in E.164 format - that is a leading + sign, then up to 15 digits, no dashes or spaces. | ||
* @link https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3#use-hashed-credentials | ||
*/ | ||
initiateOnDeviceConversionMeasurementWithHashedPhoneNumber( | ||
hashedPhoneNumber: string, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1153,9 +1153,9 @@ export function setDefaultEventParameters( | |
): Promise<void>; | ||
|
||
/** | ||
* start privacy-sensitive on-device conversion management. | ||
* Start privacy-sensitive on-device conversion management. | ||
* This is iOS-only. | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile. | ||
* | ||
* @platform ios | ||
* @param analytics Analytics instance. | ||
|
@@ -1167,24 +1167,24 @@ export function initiateOnDeviceConversionMeasurementWithEmailAddress( | |
): Promise<void>; | ||
|
||
/** | ||
* start privacy-sensitive on-device conversion management. | ||
* Start privacy-sensitive on-device conversion management. | ||
* This is iOS-only. | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile. | ||
* You need to pass the sha256-hashed of normalized email address to this function. See [this link](https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3#use-hashed-credentials) for more information. | ||
* | ||
* @platform ios | ||
* @param analytics Analytics instance. | ||
* @param hashedEmailAddress sha256-hashed of normalized email address, properly formatted complete with domain name e.g, '[email protected]' | ||
* @link https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3#use-hashed-credentials | ||
*/ | ||
export function initiateOnDeviceConversionMeasurementWithHashedEmailAddress( | ||
analytics: Analytics, | ||
hashedEmailAddress: string, | ||
): Poromise<void>; | ||
|
||
/** | ||
* start privacy-sensitive on-device conversion management. | ||
* Start privacy-sensitive on-device conversion management. | ||
* This is iOS-only. | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile. | ||
* | ||
* @platform ios | ||
* @param analytics Analytics instance. | ||
|
@@ -1196,14 +1196,14 @@ export function initiateOnDeviceConversionMeasurementWithPhoneNumber( | |
): Promise<void>; | ||
|
||
/** | ||
* start privacy-sensitive on-device conversion management. | ||
* Start privacy-sensitive on-device conversion management. | ||
* This is iOS-only. | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile | ||
* This is a no-op if you do not include '$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true' in your Podfile. | ||
* You need to pass the sha256-hashed of phone number in E.164 format. See [this link](https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3#use-hashed-credentials) for more information. | ||
* | ||
* @platform ios | ||
* @param analytics Analytics instance. | ||
* @param hashedPhoneNumber sha256-hashed of normalized phone number in E.164 format - that is a leading + sign, then up to 15 digits, no dashes or spaces. | ||
* @link https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3#use-hashed-credentials | ||
*/ | ||
export function initiateOnDeviceConversionMeasurementWithHashedPhoneNumber( | ||
analytics: Analytics, | ||
|