Skip to content

Commit b3f5fa1

Browse files
author
Athira M
committed
Merge branch 'web-exp-fetch' into web-exp-abt
2 parents ccc71e1 + 19c0fd6 commit b3f5fa1

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs-devsite/remote-config.fetchresponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export interface FetchResponse
2626
| --- | --- | --- |
2727
| [config](./remote-config.fetchresponse.md#fetchresponseconfig) | [FirebaseRemoteConfigObject](./remote-config.firebaseremoteconfigobject.md#firebaseremoteconfigobject_interface) | Defines the map of parameters returned as "entries" in the fetch response body.<p>Only defined for 200 responses. |
2828
| [eTag](./remote-config.fetchresponse.md#fetchresponseetag) | string | Defines the ETag response header value.<p>Only defined for 200 and 304 responses. |
29-
| [experiments](./remote-config.fetchresponse.md#fetchresponseexperiments) | [FirebaseExperimentDescription](./remote-config.firebaseexperimentdescription.md#firebaseexperimentdescription_interface)<!-- -->\[\] | A/B Test and Rollout experiment metadata.<p>Only defined for 200 responses. |
29+
| [experiments](./remote-config.fetchresponse.md#fetchresponseexperiments) | [FirebaseExperimentDescription](./remote-config.firebaseexperimentdescription.md#firebaseexperimentdescription_interface)<!-- -->\[\] | A/B Test and Rollout experiment metadata. |
3030
| [status](./remote-config.fetchresponse.md#fetchresponsestatus) | number | The HTTP status, which is useful for differentiating success responses with data from those without.<p>The Remote Config client is modeled after the native <code>Fetch</code> interface, so HTTP status is first-class.<p>Disambiguation: the fetch response returns a legacy "state" value that is redundant with the HTTP status code. The former is normalized into the latter. |
3131
| [templateVersion](./remote-config.fetchresponse.md#fetchresponsetemplateversion) | number | The version number of the config template fetched from the server. |
3232

@@ -58,7 +58,7 @@ eTag?: string;
5858

5959
A/B Test and Rollout experiment metadata.
6060

61-
<p>Only defined for 200 responses.
61+
Only defined for 200 responses.
6262

6363
<b>Signature:</b>
6464

packages/remote-config/src/public_types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ export interface FirebaseRemoteConfigObject {
6161

6262
/**
6363
* Defines experiment and variant attached to a config parameter.
64+
*
65+
* @public
6466
*/
6567
export interface FirebaseExperimentDescription {
6668
// A string of max length 22 characters and of format: _exp_<experiment_id>
@@ -128,7 +130,7 @@ export interface FetchResponse {
128130
/**
129131
* A/B Test and Rollout experiment metadata.
130132
*
131-
* <p>Only defined for 200 responses.
133+
* @remarks Only defined for 200 responses.
132134
*/
133135
experiments?: FirebaseExperimentDescription[];
134136
}

0 commit comments

Comments
 (0)