Skip to content

Commit 10489c9

Browse files
author
LaunchDarklyReleaseBot
committed
Version 10.0.0 automatically generated from ld-openapi.
1 parent a99a0d5 commit 10489c9

File tree

9 files changed

+3385
-1684
lines changed

9 files changed

+3385
-1684
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.3.0
1+
6.0.0

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
This repository contains a client library for LaunchDarkly's REST API. This client was automatically
2-
generated from our [OpenAPI specification](https://app.launchdarkly.com/api/v2/openapi.json) using a [code generation library](https://github.com/launchdarkly/ld-openapi). View our [sample code](#sample-code) for example usage.
2+
generated from our [OpenAPI specification](https://app.launchdarkly.com/api/v2/openapi.json) using a [code generation library](https://github.com/launchdarkly/ld-openapi). View our [sample code](#getting-started) for example usage.
33

44
This REST API is for custom integrations, data export, or automating your feature flag workflows. *DO NOT* use this client library to include feature flags in your web or mobile application. To integrate feature flags with your application, read the [SDK documentation](https://docs.launchdarkly.com/sdk).
5-
## launchdarkly-api-typescript@9.0.1
5+
6+
This client library is only compatible with the latest version of our REST API, version `20220603`. Previous versions of this client library, prior to version 10.0.0, are only 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+
## launchdarkly-api-typescript@10.0.0
68

79
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:
810

@@ -40,7 +42,7 @@ navigate to the folder of your consuming project and run one of the following co
4042
_published:_
4143

4244
```
43-
npm install launchdarkly-api-typescript@9.0.1 --save
45+
npm install launchdarkly-api-typescript@10.0.0 --save
4446
```
4547

4648
_unPublished (not recommended):_

api.ts

Lines changed: 3362 additions & 1668 deletions
Large diffs are not rendered by default.

base.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

common.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

configuration.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

index.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"name": "launchdarkly-api-typescript",
3-
"version": "9.0.1",
3+
"version": "10.0.0",
44
"description": "OpenAPI client for launchdarkly-api-typescript",
55
"author": "OpenAPI-Generator Contributors",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/launchdarkly/api-client-typescript-axios.git"
9+
},
610
"keywords": [
711
"axios",
812
"typescript",
@@ -15,13 +19,13 @@
1519
"typings": "./dist/index.d.ts",
1620
"scripts": {
1721
"build": "tsc --outDir dist/",
18-
"prepublishOnly": "npm run build"
22+
"prepare": "npm run build"
1923
},
2024
"dependencies": {
21-
"axios": "^0.21.4"
25+
"axios": "^0.26.1"
2226
},
2327
"devDependencies": {
2428
"@types/node": "^12.11.5",
25-
"typescript": "^3.6.4"
29+
"typescript": "^4.0"
2630
}
2731
}

tsconfig.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
{
22
"compilerOptions": {
33
"declaration": true,
4-
"target": "es6",
5-
"module": "commonjs",
4+
"target": "ES6",
5+
"module": "CommonJS",
66
"noImplicitAny": true,
77
"outDir": "dist",
88
"rootDir": ".",
99
"typeRoots": [
1010
"node_modules/@types"
11-
]
11+
],
12+
"moduleResolution": "node"
1213
},
1314
"exclude": [
1415
"dist",
1516
"node_modules"
1617
]
17-
}
18+
}

0 commit comments

Comments
 (0)