Skip to content

Commit c505795

Browse files
author
LaunchDarklyCI
committed
Version 3.5.0 automatically generated from ld-openapi@807f032.
1 parent 975b80a commit c505795

File tree

232 files changed

+789
-527
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

232 files changed

+789
-527
lines changed

README.md

Lines changed: 175 additions & 174 deletions
Large diffs are not rendered by default.

docs/ClientSideAvailability.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# LaunchDarklyApi.ClientSideAvailability
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**usingEnvironmentId** | **Boolean** | When set to true, this flag will be available to SDKs using the client-side id. | [optional]
7+
**usingMobileKey** | **Boolean** | When set to true, this flag will be available to SDKS using a mobile key. | [optional]
8+
9+

docs/FeatureFlag.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
2121
**environments** | [**{String: FeatureFlagConfig}**](FeatureFlagConfig.md) | | [optional]
2222
**archivedDate** | **Number** | A unix epoch time in milliseconds specifying the archived time of this flag. | [optional]
2323
**archived** | **Boolean** | Whether or not this flag is archived. | [optional]
24+
**clientSideAvailability** | [**ClientSideAvailability**](ClientSideAvailability.md) | | [optional]
2425
**defaults** | [**Defaults**](Defaults.md) | | [optional]
2526

2627

docs/FeatureFlagBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**temporary** | **Boolean** | Whether or not the flag is a temporary flag. | [optional]
1111
**tags** | **[String]** | Tags for the feature flag. | [optional]
1212
**includeInSnippet** | **Boolean** | Whether or not this flag should be made available to the client-side JavaScript SDK. | [optional]
13+
**clientSideAvailability** | [**ClientSideAvailability**](ClientSideAvailability.md) | | [optional]
1314
**defaults** | [**Defaults**](Defaults.md) | | [optional]
1415

1516

docs/Project.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ Name | Type | Description | Notes
1010
**includeInSnippetByDefault** | **Boolean** | | [optional]
1111
**environments** | [**[Environment]**](Environment.md) | | [optional]
1212
**tags** | **[String]** | An array of tags for this project. | [optional]
13+
**defaultClientSideAvailability** | [**ClientSideAvailability**](ClientSideAvailability.md) | | [optional]
1314

1415

docs/ProjectBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ Name | Type | Description | Notes
88
**includeInSnippetByDefault** | **Boolean** | | [optional]
99
**tags** | **[String]** | | [optional]
1010
**environments** | [**[EnvironmentPost]**](EnvironmentPost.md) | | [optional]
11+
**defaultClientSideAvailability** | [**ClientSideAvailability**](ClientSideAvailability.md) | | [optional]
1112

1213

openapi.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ info:
1010
license:
1111
name: Apache 2.0
1212
url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
13-
version: 3.4.0
13+
version: 3.5.0
1414
host: app.launchdarkly.com
1515
basePath: /api/v2
1616
schemes:
@@ -1519,6 +1519,8 @@ definitions:
15191519
type: boolean
15201520
description: Whether or not this flag is archived.
15211521
example: false
1522+
clientSideAvailability:
1523+
$ref: '#/definitions/ClientSideAvailability'
15221524
defaults:
15231525
$ref: '#/definitions/Defaults'
15241526
FeatureFlags:
@@ -1721,6 +1723,19 @@ definitions:
17211723
type: string
17221724
variation:
17231725
type: integer
1726+
ClientSideAvailability:
1727+
type: object
1728+
properties:
1729+
usingEnvironmentId:
1730+
type: boolean
1731+
description: >-
1732+
When set to true, this flag will be available to SDKs using the
1733+
client-side id.
1734+
usingMobileKey:
1735+
type: boolean
1736+
description: >-
1737+
When set to true, this flag will be available to SDKS using a mobile
1738+
key.
17241739
FeatureFlagStatus:
17251740
type: object
17261741
properties:
@@ -1991,6 +2006,8 @@ definitions:
19912006
items:
19922007
type: string
19932008
description: An array of tags for this project.
2009+
defaultClientSideAvailability:
2010+
$ref: '#/definitions/ClientSideAvailability'
19942011
Projects:
19952012
type: object
19962013
properties:
@@ -3031,6 +3048,8 @@ parameters:
30313048
description: >-
30323049
Whether or not this flag should be made available to the client-side
30333050
JavaScript SDK.
3051+
clientSideAvailability:
3052+
$ref: '#/definitions/ClientSideAvailability'
30343053
defaults:
30353054
$ref: '#/definitions/Defaults'
30363055
required:
@@ -3134,6 +3153,8 @@ parameters:
31343153
items:
31353154
$ref: '#/definitions/EnvironmentPost'
31363155
minLength: 1
3156+
defaultClientSideAvailability:
3157+
$ref: '#/definitions/ClientSideAvailability'
31373158
required:
31383159
- name
31393160
- key

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "launchdarkly-api",
3-
"version": "3.4.0",
3+
"version": "3.5.0",
44
"description": "Build_custom_integrations_with_the_LaunchDarkly_REST_API",
55
"license": "Apache 2.0",
66
"main": "src/index.js",

src/ApiClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* LaunchDarkly REST API
33
* Build custom integrations with the LaunchDarkly REST API
44
*
5-
* OpenAPI spec version: 3.4.0
5+
* OpenAPI spec version: 3.5.0
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by the swagger code generator program.
@@ -33,7 +33,7 @@
3333

3434
/**
3535
* @module ApiClient
36-
* @version 3.4.0
36+
* @version 3.5.0
3737
*/
3838

3939
/**

src/api/AccessTokensApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* LaunchDarkly REST API
33
* Build custom integrations with the LaunchDarkly REST API
44
*
5-
* OpenAPI spec version: 3.4.0
5+
* OpenAPI spec version: 3.5.0
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by the swagger code generator program.
@@ -34,7 +34,7 @@
3434
/**
3535
* AccessTokens service.
3636
* @module api/AccessTokensApi
37-
* @version 3.4.0
37+
* @version 3.5.0
3838
*/
3939

4040
/**

0 commit comments

Comments
 (0)