Skip to content

Commit

Permalink
Deploying from phrase/openapi@c0ff7044
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Apr 13, 2023
1 parent c0ae159 commit ac82a6b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## phrase-js@1.8.0
## phrase-js@1.9.0

Phrase Strings is a translation management platform for software projects. You can collaborate on language file translation with your team or order translations through our platform. The API allows you to import locale files, download locale files, tag keys or interact in other ways with the localization data stored in Phrase Strings for your account.

## This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 2.0.0
- Package version: 1.8.0
- Package version: 1.9.0
- Build package: phrase-js
For more information, please visit [https://developers.phrase.com/api/](https://developers.phrase.com/api/)

Expand Down Expand Up @@ -47,14 +47,14 @@ _published:_


```
npm install phrase-js@1.8.0 --save
npm install phrase-js@1.9.0 --save
```

if you are using yarn


```
yarn install phrase-js@1.8.0
yarn install phrase-js@1.9.0
```

_unPublished (not recommended):_
Expand Down Expand Up @@ -104,7 +104,7 @@ here is the example package.json
"@types/node": "^14.0.1",
"form-data": "^3.0.0",
"node-fetch": "^2.6.0",
"phrase-js": "^1.8.0"
"phrase-js": "^1.9.0"
},
"devDependencies": {
"tslint": "^5.20.1",
Expand Down Expand Up @@ -243,7 +243,7 @@ Class | Method | HTTP request | Description
*JobLocalesApi* | **jobLocaleCompleteReview** | **POST** /projects/{project_id}/jobs/{job_id}/locales/{id}/complete_review | Review a job locale
*JobLocalesApi* | **jobLocaleDelete** | **DELETE** /projects/{project_id}/jobs/{job_id}/locales/{id} | Delete a job locale
*JobLocalesApi* | **jobLocaleReopen** | **POST** /projects/{project_id}/jobs/{job_id}/locales/{id}/reopen | Reopen a job locale
*JobLocalesApi* | **jobLocaleShow** | **GET** /projects/{project_id}/jobs/{job_id}/locale/{id} | Get a single job locale
*JobLocalesApi* | **jobLocaleShow** | **GET** /projects/{project_id}/jobs/{job_id}/locales/{id} | Get a single job locale
*JobLocalesApi* | **jobLocaleUpdate** | **PATCH** /projects/{project_id}/jobs/{job_id}/locales/{id} | Update a job locale
*JobLocalesApi* | **jobLocalesCreate** | **POST** /projects/{project_id}/jobs/{job_id}/locales | Create a job locale
*JobLocalesApi* | **jobLocalesList** | **GET** /projects/{project_id}/jobs/{job_id}/locales | List job locales
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phrase-js",
"version": "1.8.0",
"version": "1.9.0",
"description": "OpenAPI client for Phrase Strings",
"author": "OpenAPI-Generator",
"license" : "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/apis/JobLocalesApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ export class JobLocalesApi extends runtime.BaseAPI {
}

const response = await this.request({
path: `/projects/{project_id}/jobs/{job_id}/locale/{id}`.replace(`{${"project_id"}}`, encodeURIComponent(String(requestParameters.projectId))).replace(`{${"job_id"}}`, encodeURIComponent(String(requestParameters.jobId))).replace(`{${"id"}}`, encodeURIComponent(String(requestParameters.id))),
path: `/projects/{project_id}/jobs/{job_id}/locales/{id}`.replace(`{${"project_id"}}`, encodeURIComponent(String(requestParameters.projectId))).replace(`{${"job_id"}}`, encodeURIComponent(String(requestParameters.jobId))).replace(`{${"id"}}`, encodeURIComponent(String(requestParameters.id))),
method: 'GET',
headers: headerParameters,
query: queryParameters,
Expand Down
2 changes: 1 addition & 1 deletion src/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class Configuration {
configuration.headers = {}
}

configuration.headers["User-Agent"] = "OpenAPI-Generator/1.8.0/js"
configuration.headers["User-Agent"] = "OpenAPI-Generator/1.9.0/js"
}

get basePath(): string {
Expand Down

0 comments on commit ac82a6b

Please sign in to comment.