Skip to content

Commit

Permalink
Deploying from phrase/openapi@5272a03a
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Oct 27, 2022
1 parent a43358b commit 700cfb5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ script:
- bundle install --path vendor/bundle
- bundle exec rspec
- gem build phrase.gemspec
- gem install ./phrase-2.8.1.gem
- gem install ./phrase-2.8.2.gem
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Phrase Strings is a translation management platform for software projects. You c
## This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 2.0.0
- Package version: 2.8.1
- Package version: 2.8.2
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
For more information, please visit [https://developers.phrase.com/api/](https://developers.phrase.com/api/)

Expand Down Expand Up @@ -56,10 +56,10 @@ gem build phrase.gemspec
Then install the gem locally:

```shell
gem install ./phrase-2.8.1.gem
gem install ./phrase-2.8.2.gem
```

(for development, run `gem install --dev ./phrase-2.8.1.gem` to install the development dependencies)
(for development, run `gem install --dev ./phrase-2.8.2.gem` to install the development dependencies)

## Getting Started

Expand Down Expand Up @@ -245,7 +245,7 @@ Class | Method | HTTP request | Description
*Phrase::KeysApi* | [**keys_search**](docs/KeysApi.md#keys_search) | **POST** /projects/{project_id}/keys/search | Search keys
*Phrase::KeysApi* | [**keys_tag**](docs/KeysApi.md#keys_tag) | **PATCH** /projects/{project_id}/keys/tag | Add tags to collection of keys
*Phrase::KeysApi* | [**keys_untag**](docs/KeysApi.md#keys_untag) | **PATCH** /projects/{project_id}/keys/untag | Remove tags from collection of keys
*Phrase::LocalesApi* | [**account_locales**](docs/LocalesApi.md#account_locales) | **GET** /accounts/{account_id}/locales | List locales used in account
*Phrase::LocalesApi* | [**account_locales**](docs/LocalesApi.md#account_locales) | **GET** /accounts/{id}/locales | List locales used in account
*Phrase::LocalesApi* | [**locale_create**](docs/LocalesApi.md#locale_create) | **POST** /projects/{project_id}/locales | Create a locale
*Phrase::LocalesApi* | [**locale_delete**](docs/LocalesApi.md#locale_delete) | **DELETE** /projects/{project_id}/locales/{id} | Delete a locale
*Phrase::LocalesApi* | [**locale_download**](docs/LocalesApi.md#locale_download) | **GET** /projects/{project_id}/locales/{id}/download | Download a locale
Expand Down
2 changes: 1 addition & 1 deletion docs/LocalesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All URIs are relative to *https://api.phrase.com/v2*

Method | HTTP request | Description
------------- | ------------- | -------------
[**account_locales**](LocalesApi.md#account_locales) | **GET** /accounts/{account_id}/locales | List locales used in account
[**account_locales**](LocalesApi.md#account_locales) | **GET** /accounts/{id}/locales | List locales used in account
[**locale_create**](LocalesApi.md#locale_create) | **POST** /projects/{project_id}/locales | Create a locale
[**locale_delete**](LocalesApi.md#locale_delete) | **DELETE** /projects/{project_id}/locales/{id} | Delete a locale
[**locale_download**](LocalesApi.md#locale_download) | **GET** /projects/{project_id}/locales/{id}/download | Download a locale
Expand Down
2 changes: 1 addition & 1 deletion lib/phrase/api/locales_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def account_locales_with_http_info(id, opts = {})
fail ArgumentError, "Missing the required parameter 'id' when calling LocalesApi.account_locales"
end
# resource path
local_var_path = '/accounts/{account_id}/locales'.sub('{' + 'id' + '}', CGI.escape(id.to_s))
local_var_path = '/accounts/{id}/locales'.sub('{' + 'id' + '}', CGI.escape(id.to_s))

# query parameters
query_params = opts[:query_params] || {}
Expand Down
2 changes: 1 addition & 1 deletion lib/phrase/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Phrase
VERSION = '2.8.1'
VERSION = '2.8.2'
end

0 comments on commit 700cfb5

Please sign in to comment.