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
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This REST API is for custom integrations, data export, or automating your featur
6
6
This client library is only compatible with the latest version of our REST API. Previous versions of this client library are compatible with earlier versions of our REST API. When you create an access token, you can set the REST API version associated with the token. By default, API requests you send using the token will use the specified API version. To learn more, read [Versioning](https://apidocs.launchdarkly.com/#section/Overview/Versioning).
7
7
View our [sample code](#sample-code) for example usage.
8
8
9
-
## launchdarkly-api-typescript@18.1.0
9
+
## launchdarkly-api-typescript@19.0.0
10
10
11
11
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
12
12
@@ -44,7 +44,7 @@ navigate to the folder of your consuming project and run one of the following co
Copy file name to clipboardExpand all lines: docs/AiConfigsMetricListingRep.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ Name | Type | Description | Notes
37
37
**analysisType** | **string** | The method for analyzing metric events | [optional][default to undefined]
38
38
**percentileValue** | **number** | The percentile for the analysis method. An integer denoting the target percentile between 0 and 100. Required when <code>analysisType</code> is <code>percentile</code>. | [optional][default to undefined]
39
39
**eventDefault** | [**AiConfigsMetricEventDefaultRep**](AiConfigsMetricEventDefaultRep.md) | | [optional][default to undefined]
40
-
**dataSource** | [**AiConfigsMetricDataSourceRefRep**](AiConfigsMetricDataSourceRefRep.md) | | [optional][default to undefined]
40
+
**dataSource** | [**AiConfigsMetricDataSourceRefRep**](AiConfigsMetricDataSourceRefRep.md) | | [default to undefined]
41
41
**archived** | **boolean** | Whether the metric version is archived | [optional][default to undefined]
42
42
**archivedAt** | **number** | | [optional][default to undefined]
43
43
**selector** | **string** | For click metrics, the CSS selectors | [optional][default to undefined]
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
|**projKey**|[**string**]| The project key | defaults to undefined|
343
+
|**envKey**|[**string**]| The environment key | defaults to undefined|
344
+
345
+
346
+
### Return type
347
+
348
+
**GenerateTrustPolicyPostRep**
349
+
350
+
### Authorization
351
+
352
+
[ApiKey](../README.md#ApiKey)
353
+
354
+
### HTTP request headers
355
+
356
+
-**Content-Type**: Not defined
357
+
-**Accept**: application/json
358
+
359
+
360
+
### HTTP response details
361
+
| Status code | Description | Response headers |
362
+
|-------------|-------------|------------------|
363
+
|**201**| Generate trust policy response | - |
364
+
|**400**| Invalid request | - |
365
+
|**401**| Invalid access token | - |
366
+
|**403**| Forbidden | - |
367
+
|**409**| Status conflict | - |
368
+
|**429**| Rate limited | - |
369
+
370
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/FeatureFlagsApi.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -528,7 +528,7 @@ let tag: string; //Filter feature flags by tag (optional) (default to undefined)
528
528
let limit:number; //The number of feature flags to return. Defaults to 20. (optional) (default to undefined)
529
529
let offset:number; //Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query `limit`. (optional) (default to undefined)
530
530
let archived:boolean; //Deprecated, use `filter=archived:true` instead. A boolean to filter the list to archived flags. When this is absent, only unarchived flags will be returned (optional) (default to undefined)
531
-
let summary:boolean; //By default, flags do _not_ include their lists of prerequisites, targets, or rules for each environment. Set `summary=0` to include these fields for each flag returned. (optional) (default to undefined)
531
+
let summary:boolean; //By default, flags do _not_ include their lists of prerequisites, targets, or rules for each environment. Set `summary=0` and include the `env` query parameter to include these fields for each flag returned. (optional) (default to undefined)
532
532
let filter:string; //A comma-separated list of filters. Each filter is of the form field:value. Read the endpoint description for a full list of available filter fields. (optional) (default to undefined)
533
533
let sort:string; //A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. Read the endpoint description for a full list of available sort fields. (optional) (default to undefined)
534
534
let compare:boolean; //Deprecated, unavailable in API version `20240415`. A boolean to filter results by only flags that have differences between environments. (optional) (default to undefined)
|**limit**|[**number**]| The number of feature flags to return. Defaults to 20. | (optional) defaults to undefined|
560
560
|**offset**|[**number**]| Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query `limit`. | (optional) defaults to undefined|
561
561
|**archived**|[**boolean**]| Deprecated, use `filter=archived:true` instead. A boolean to filter the list to archived flags. When this is absent, only unarchived flags will be returned | (optional) defaults to undefined|
562
-
|**summary**|[**boolean**]| By default, flags do _not_ include their lists of prerequisites, targets, or rules for each environment. Set `summary=0` to include these fields for each flag returned. | (optional) defaults to undefined|
562
+
|**summary**|[**boolean**]| By default, flags do _not_ include their lists of prerequisites, targets, or rules for each environment. Set `summary=0`and include the `env` query parameter to include these fields for each flag returned. | (optional) defaults to undefined|
563
563
|**filter**|[**string**]| A comma-separated list of filters. Each filter is of the form field:value. Read the endpoint description for a full list of available filter fields. | (optional) defaults to undefined|
564
564
|**sort**|[**string**]| A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. Read the endpoint description for a full list of available sort fields. | (optional) defaults to undefined|
565
565
|**compare**|[**boolean**]| Deprecated, unavailable in API version `20240415`. A boolean to filter results by only flags that have differences between environments. | (optional) defaults to undefined|
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments