docs/BitbucketSyncApi.md in phrase-2.8.0 vs docs/BitbucketSyncApi.md in phrase-2.8.1
- old
+ new
@@ -2,23 +2,23 @@
All URIs are relative to *https://api.phrase.com/v2*
Method | HTTP request | Description
------------- | ------------- | -------------
-[**bitbucket_sync_export**](BitbucketSyncApi.md#bitbucket_sync_export) | **POST** /bitbucket_syncs/{id}/export | Export from Phrase to Bitbucket
-[**bitbucket_sync_import**](BitbucketSyncApi.md#bitbucket_sync_import) | **POST** /bitbucket_syncs/{id}/import | Import to Phrase from Bitbucket
+[**bitbucket_sync_export**](BitbucketSyncApi.md#bitbucket_sync_export) | **POST** /bitbucket_syncs/{id}/export | Export from Phrase Strings to Bitbucket
+[**bitbucket_sync_import**](BitbucketSyncApi.md#bitbucket_sync_import) | **POST** /bitbucket_syncs/{id}/import | Import to Phrase Strings from Bitbucket
[**bitbucket_syncs_list**](BitbucketSyncApi.md#bitbucket_syncs_list) | **GET** /bitbucket_syncs | List Bitbucket syncs
## bitbucket_sync_export
> BitbucketSyncExportResponse bitbucket_sync_export(id, bitbucket_sync_export_parameters, opts)
-Export from Phrase to Bitbucket
+Export from Phrase Strings to Bitbucket
-Export translations from Phrase to Bitbucket according to the .phraseapp.yml file within the Bitbucket Repository.
+Export translations from Phrase Strings to Bitbucket according to the .phraseapp.yml file within the Bitbucket Repository.
### Example
```ruby
# load the gem
@@ -40,11 +40,11 @@
opts = {
x_phrase_app_otp: 'x_phrase_app_otp_example' # String | Two-Factor-Authentication token (optional)
}
begin
- #Export from Phrase to Bitbucket
+ #Export from Phrase Strings to Bitbucket
result = api_instance.bitbucket_sync_export(id, bitbucket_sync_export_parameters, opts)
pp result
rescue Phrase::ApiError => e
puts "Exception when calling BitbucketSyncApi->bitbucket_sync_export: #{e}"
end
@@ -75,13 +75,13 @@
## bitbucket_sync_import
> bitbucket_sync_import(id, bitbucket_sync_import_parameters, opts)
-Import to Phrase from Bitbucket
+Import to Phrase Strings from Bitbucket
-Import translations from Bitbucket to Phrase according to the .phraseapp.yml file within the Bitbucket repository.
+Import translations from Bitbucket to Phrase Strings according to the .phraseapp.yml file within the Bitbucket repository.
### Example
```ruby
# load the gem
@@ -103,11 +103,11 @@
opts = {
x_phrase_app_otp: 'x_phrase_app_otp_example' # String | Two-Factor-Authentication token (optional)
}
begin
- #Import to Phrase from Bitbucket
+ #Import to Phrase Strings from Bitbucket
api_instance.bitbucket_sync_import(id, bitbucket_sync_import_parameters, opts)
rescue Phrase::ApiError => e
puts "Exception when calling BitbucketSyncApi->bitbucket_sync_import: #{e}"
end
```
@@ -139,10 +139,10 @@
> Array<BitbucketSync> bitbucket_syncs_list(opts)
List Bitbucket syncs
-List all Bitbucket repositories for which synchronisation with Phrase is activated.
+List all Bitbucket repositories for which synchronisation with Phrase Strings is activated.
### Example
```ruby
# load the gem