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.
138
138
*FeatureFlagsApi* | [**getExpiringUserTargets**](docs/FeatureFlagsApi.md#getexpiringusertargets) | **GET** /flags/{projectKey}/{featureFlagKey}/expiring-user-targets/{environmentKey} | Get expiring user targets for feature flag
139
139
*FeatureFlagsApi* | [**getFeatureFlag**](docs/FeatureFlagsApi.md#getfeatureflag) | **GET** /flags/{projectKey}/{featureFlagKey} | Get a single feature flag by key.
140
+
*FeatureFlagsApi* | [**getFeatureFlagChangeRequest**](docs/FeatureFlagsApi.md#getfeatureflagchangerequest) | **GET** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagChangeRequestId} | Get a single change request for a feature flag
141
+
*FeatureFlagsApi* | [**getFeatureFlagChangeRequests**](docs/FeatureFlagsApi.md#getfeatureflagchangerequests) | **GET** /{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests | Get all change requests for a feature flag
140
142
*FeatureFlagsApi* | [**getFeatureFlagStatus**](docs/FeatureFlagsApi.md#getfeatureflagstatus) | **GET** /flag-statuses/{projectKey}/{environmentKey}/{featureFlagKey} | Get the status for a particular feature flag.
141
143
*FeatureFlagsApi* | [**getFeatureFlagStatusAcrossEnvironments**](docs/FeatureFlagsApi.md#getfeatureflagstatusacrossenvironments) | **GET** /flag-status/{projectKey}/{featureFlagKey} | Get the status for a particular feature flag across environments
142
144
*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.
143
145
*FeatureFlagsApi* | [**getFeatureFlags**](docs/FeatureFlagsApi.md#getfeatureflags) | **GET** /flags/{projectKey} | Get a list of all features in the given project.
144
146
*FeatureFlagsApi* | [**patchExpiringUserTargets**](docs/FeatureFlagsApi.md#patchexpiringusertargets) | **PATCH** /flags/{projectKey}/{featureFlagKey}/expiring-user-targets/{environmentKey} | Update, add, or delete expiring user targets on feature flag
145
147
*FeatureFlagsApi* | [**patchFeatureFlag**](docs/FeatureFlagsApi.md#patchfeatureflag) | **PATCH** /flags/{projectKey}/{featureFlagKey} | Perform a partial update to a feature.
148
+
*FeatureFlagsApi* | [**postApplyFeatureFlagChangeRequest**](docs/FeatureFlagsApi.md#postapplyfeatureflagchangerequest) | **POST** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagChangeRequestId}/apply | Apply change request for a feature flag
146
149
*FeatureFlagsApi* | [**postFeatureFlag**](docs/FeatureFlagsApi.md#postfeatureflag) | **POST** /flags/{projectKey} | Creates a new feature flag.
*FeatureFlagsApi* | [**postReviewFeatureFlagChangeRequest**](docs/FeatureFlagsApi.md#postreviewfeatureflagchangerequest) | **POST** /projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{featureFlagChangeRequestId}/review | Review change request for a feature flag
147
152
*IntegrationsApi* | [**deleteIntegrationSubscription**](docs/IntegrationsApi.md#deleteintegrationsubscription) | **DELETE** /integrations/{integrationKey}/{integrationId} | Delete an integration subscription by ID.
148
153
*IntegrationsApi* | [**getIntegrationSubscription**](docs/IntegrationsApi.md#getintegrationsubscription) | **GET** /integrations/{integrationKey}/{integrationId} | Get a single integration subscription by ID.
149
154
*IntegrationsApi* | [**getIntegrationSubscriptions**](docs/IntegrationsApi.md#getintegrationsubscriptions) | **GET** /integrations/{integrationKey} | Get a list of all configured integrations of a given kind.
Copy file name to clipboardExpand all lines: _client.sh
+54-1
Original file line number
Diff line number
Diff line change
@@ -328,13 +328,18 @@ case $state in
328
328
"deleteFeatureFlag[Delete a feature flag in all environments. Be careful-- only delete feature flags that are no longer being used by your application.]" \
329
329
"getExpiringUserTargets[Get expiring user targets for feature flag]" \
330
330
"getFeatureFlag[Get a single feature flag by key.]" \
331
+
"getFeatureFlagChangeRequest[Get a single change request for a feature flag]" \
332
+
"getFeatureFlagChangeRequests[Get all change requests for a feature flag]" \
331
333
"getFeatureFlagStatus[Get the status for a particular feature flag.]" \
332
334
"getFeatureFlagStatusAcrossEnvironments[Get the status for a particular feature flag across environments]" \
333
335
"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.]" \
334
336
"getFeatureFlags[Get a list of all features in the given project.]" \
335
337
"patchExpiringUserTargets[Update, add, or delete expiring user targets on feature flag]" \
336
338
"patchFeatureFlag[Perform a partial update to a feature.]" \
337
-
"postFeatureFlag[Creates a new feature flag.]""deleteIntegrationSubscription[Delete an integration subscription by ID.]" \
339
+
"postApplyFeatureFlagChangeRequest[Apply change request for a feature flag]" \
340
+
"postFeatureFlag[Creates a new feature flag.]" \
341
+
"postFeatureFlagChangeRequest[]" \
342
+
"postReviewFeatureFlagChangeRequest[Review change request for a feature flag]""deleteIntegrationSubscription[Delete an integration subscription by ID.]" \
338
343
"getIntegrationSubscription[Get a single integration subscription by ID.]" \
339
344
"getIntegrationSubscriptions[Get a list of all configured integrations of a given kind.]" \
340
345
"getIntegrations[Get a list of all configured audit log event integrations associated with this account.]" \
0 commit comments