Skip to content

Commit a8efbce

Browse files
author
LaunchDarklyReleaseBot
committed
Version 7.0.0 automatically generated from ld-openapi.
1 parent 63f93d4 commit a8efbce

File tree

9 files changed

+1744
-1562
lines changed

9 files changed

+1744
-1562
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-SNAPSHOT
1+
5.3.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This repository contains a client library for LaunchDarkly's REST API. This clie
22
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.
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@6.0.2
5+
## launchdarkly-api-typescript@7.0.0
66

77
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:
88

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

4242
```
43-
npm install launchdarkly-api-typescript@6.0.2 --save
43+
npm install launchdarkly-api-typescript@7.0.0 --save
4444
```
4545

4646
_unPublished (not recommended):_

api.ts

Lines changed: 1726 additions & 1544 deletions
Large diffs are not rendered by default.

base.ts

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

common.ts

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

configuration.ts

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

git_push.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
33
#
4-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
4+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com"
55

66
git_user_id=$1
77
git_repo_id=$2
@@ -38,14 +38,14 @@ git add .
3838
git commit -m "$release_note"
3939

4040
# Sets the new remote
41-
git_remote=`git remote`
41+
git_remote=$(git remote)
4242
if [ "$git_remote" = "" ]; then # git remote not defined
4343

4444
if [ "$GIT_TOKEN" = "" ]; then
4545
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
4646
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
4747
else
48-
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
48+
git remote add origin https://${git_user_id}:"${GIT_TOKEN}"@${git_host}/${git_user_id}/${git_repo_id}.git
4949
fi
5050

5151
fi

index.ts

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "launchdarkly-api-typescript",
3-
"version": "6.0.2",
3+
"version": "7.0.0",
44
"description": "OpenAPI client for launchdarkly-api-typescript",
55
"author": "OpenAPI-Generator Contributors",
66
"keywords": [
@@ -18,7 +18,7 @@
1818
"prepublishOnly": "npm run build"
1919
},
2020
"dependencies": {
21-
"axios": "^0.21.1"
21+
"axios": "^0.21.4"
2222
},
2323
"devDependencies": {
2424
"@types/node": "^12.11.5",

0 commit comments

Comments
 (0)