You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 3, 2021. It is now read-only.
*FeatureFlagsApi* | [**deleteFeatureFlag**](docs/FeatureFlagsApi.md#deletefeatureflag) | **DELETE** /flags/{projectKey}/{featureFlagKey} | Delete a feature flag in all environments. Be careful-- only delete feature flags that are no longer being used by your application.
115
115
*FeatureFlagsApi* | [**getFeatureFlag**](docs/FeatureFlagsApi.md#getfeatureflag) | **GET** /flags/{projectKey}/{featureFlagKey} | Get a single feature flag by key.
116
116
*FeatureFlagsApi* | [**getFeatureFlagStatus**](docs/FeatureFlagsApi.md#getfeatureflagstatus) | **GET** /flag-statuses/{projectKey}/{environmentKey}/{featureFlagKey} | Get the status for a particular feature flag.
117
+
*FeatureFlagsApi* | [**getFeatureFlagStatusAcrossEnvironments**](docs/FeatureFlagsApi.md#getfeatureflagstatusacrossenvironments) | **GET** /flag-status/{projectKey}/{featureFlagKey} | [BETA] Get the status for a particular feature flag across environments
117
118
*FeatureFlagsApi* | [**getFeatureFlagStatuses**](docs/FeatureFlagsApi.md#getfeatureflagstatuses) | **GET** /flag-statuses/{projectKey}/{environmentKey} | Get a list of statuses for all feature flags. The status includes the last time the feature flag was requested, as well as the state of the flag.
118
119
*FeatureFlagsApi* | [**getFeatureFlags**](docs/FeatureFlagsApi.md#getfeatureflags) | **GET** /flags/{projectKey} | Get a list of all features in the given project.
119
120
*FeatureFlagsApi* | [**patchFeatureFlag**](docs/FeatureFlagsApi.md#patchfeatureflag) | **PATCH** /flags/{projectKey}/{featureFlagKey} | Perform a partial update to a feature.
*TeamMembersApi* | [**getMembers**](docs/TeamMembersApi.md#getmembers) | **GET** /members | Returns a list of all members in the account.
130
131
*TeamMembersApi* | [**patchMember**](docs/TeamMembersApi.md#patchmember) | **PATCH** /members/{memberId} | Modify a team member by ID.
131
132
*TeamMembersApi* | [**postMembers**](docs/TeamMembersApi.md#postmembers) | **POST** /members | Invite new members.
133
+
*UsageApi* | [**getEvaluations**](docs/UsageApi.md#getevaluations) | **GET** /usage/evaluations/{envId}/{flagKey} | [BETA] Get events usage by event id and the feature flag key.
134
+
*UsageApi* | [**getEvent**](docs/UsageApi.md#getevent) | **GET** /usage/events/{type} | [BETA] Get events usage by event type.
*UsageApi* | [**getMAU**](docs/UsageApi.md#getmau) | **GET** /usage/mau | [BETA] Get monthly active user data.
137
+
*UsageApi* | [**getMAUByCategory**](docs/UsageApi.md#getmaubycategory) | **GET** /usage/mau/bycategory | [BETA] Get monthly active user data by category.
138
+
*UsageApi* | [**getStream**](docs/UsageApi.md#getstream) | **GET** /usage/streams/{source} | [BETA] Get a stream endpoint and return timeseries data.
139
+
*UsageApi* | [**getStreamBySDK**](docs/UsageApi.md#getstreambysdk) | **GET** /usage/streams/{source}/bysdkversion | [BETA] Get a stream timeseries data by source show sdk version metadata.
140
+
*UsageApi* | [**getStreamSDKVersion**](docs/UsageApi.md#getstreamsdkversion) | **GET** /usage/streams/{source}/sdkversions | [BETA] Get a stream timeseries data by source and show all sdk version associated.
141
+
*UsageApi* | [**getStreams**](docs/UsageApi.md#getstreams) | **GET** /usage/streams | [BETA] Returns a list of all streams.
142
+
*UsageApi* | [**getUsage**](docs/UsageApi.md#getusage) | **GET** /usage | [BETA] Returns of the usage endpoints available.
132
143
*UserSegmentsApi* | [**deleteUserSegment**](docs/UserSegmentsApi.md#deleteusersegment) | **DELETE** /segments/{projectKey}/{environmentKey}/{userSegmentKey} | Delete a user segment.
133
144
*UserSegmentsApi* | [**getUserSegment**](docs/UserSegmentsApi.md#getusersegment) | **GET** /segments/{projectKey}/{environmentKey}/{userSegmentKey} | Get a single user segment by key.
134
145
*UserSegmentsApi* | [**getUserSegments**](docs/UserSegmentsApi.md#getusersegments) | **GET** /segments/{projectKey}/{environmentKey} | Get a list of all user segments in the given project.
Copy file name to clipboardExpand all lines: _client.sh
+85-1
Original file line number
Diff line number
Diff line change
@@ -308,6 +308,7 @@ case $state in
308
308
"deleteFeatureFlag[Delete a feature flag in all environments. Be careful-- only delete feature flags that are no longer being used by your application.]" \
309
309
"getFeatureFlag[Get a single feature flag by key.]" \
310
310
"getFeatureFlagStatus[Get the status for a particular feature flag.]" \
311
+
"getFeatureFlagStatusAcrossEnvironments[[BETA] Get the status for a particular feature flag across environments]" \
311
312
"getFeatureFlagStatuses[Get a list of statuses for all feature flags. The status includes the last time the feature flag was requested, as well as the state of the flag.]" \
312
313
"getFeatureFlags[Get a list of all features in the given project.]" \
313
314
"patchFeatureFlag[Perform a partial update to a feature.]" \
@@ -319,7 +320,16 @@ case $state in
319
320
"getMember[Get a single team member by ID.]" \
320
321
"getMembers[Returns a list of all members in the account.]" \
321
322
"patchMember[Modify a team member by ID.]" \
322
-
"postMembers[Invite new members.]""deleteUserSegment[Delete a user segment.]" \
323
+
"postMembers[Invite new members.]""getEvaluations[[BETA] Get events usage by event id and the feature flag key.]" \
324
+
"getEvent[[BETA] Get events usage by event type.]" \
325
+
"getEvents[[BETA] Get events usage endpoints.]" \
326
+
"getMAU[[BETA] Get monthly active user data.]" \
327
+
"getMAUByCategory[[BETA] Get monthly active user data by category.]" \
328
+
"getStream[[BETA] Get a stream endpoint and return timeseries data.]" \
329
+
"getStreamBySDK[[BETA] Get a stream timeseries data by source show sdk version metadata.]" \
330
+
"getStreamSDKVersion[[BETA] Get a stream timeseries data by source and show all sdk version associated.]" \
331
+
"getStreams[[BETA] Returns a list of all streams.]" \
332
+
"getUsage[[BETA] Returns of the usage endpoints available.]""deleteUserSegment[Delete a user segment.]" \
323
333
"getUserSegment[Get a single user segment by key.]" \
324
334
"getUserSegments[Get a list of all user segments in the given project.]" \
325
335
"patchUserSegment[Perform a partial update to a user segment.]" \
@@ -451,6 +461,14 @@ case $state in
451
461
_op_arguments=(
452
462
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
453
463
"environmentKey=:[PATH] The environment key, used to tie together flag configuration and users under one environment so they can be managed together."
464
+
"featureFlagKey=:[PATH] The feature flag's key. The key identifies the flag in your code."
0 commit comments