docs/GitLabSyncApi.md in phrase-2.8.0 vs docs/GitLabSyncApi.md in phrase-2.8.1
- old
+ new
@@ -3,11 +3,11 @@
All URIs are relative to *https://api.phrase.com/v2*
Method | HTTP request | Description
------------- | ------------- | -------------
[**gitlab_sync_delete**](GitLabSyncApi.md#gitlab_sync_delete) | **DELETE** /gitlab_syncs/{id} | Delete single Sync Setting
-[**gitlab_sync_export**](GitLabSyncApi.md#gitlab_sync_export) | **POST** /gitlab_syncs/{gitlab_sync_id}/export | Export from Phrase to GitLab
+[**gitlab_sync_export**](GitLabSyncApi.md#gitlab_sync_export) | **POST** /gitlab_syncs/{gitlab_sync_id}/export | Export from Phrase Strings to GitLab
[**gitlab_sync_history**](GitLabSyncApi.md#gitlab_sync_history) | **GET** /gitlab_syncs/{gitlab_sync_id}/history | History of single Sync Setting
[**gitlab_sync_import**](GitLabSyncApi.md#gitlab_sync_import) | **POST** /gitlab_syncs/{gitlab_sync_id}/import | Import from GitLab to Phrase
[**gitlab_sync_list**](GitLabSyncApi.md#gitlab_sync_list) | **GET** /gitlab_syncs | List GitLab syncs
[**gitlab_sync_show**](GitLabSyncApi.md#gitlab_sync_show) | **GET** /gitlab_syncs/{id} | Get single Sync Setting
[**gitlab_sync_update**](GitLabSyncApi.md#gitlab_sync_update) | **PUT** /gitlab_syncs/{id} | Update single Sync Setting
@@ -78,13 +78,13 @@
## gitlab_sync_export
> GitlabSyncExport gitlab_sync_export(gitlab_sync_id, gitlab_sync_export_parameters, opts)
-Export from Phrase to GitLab
+Export from Phrase Strings to GitLab
-Export translations from Phrase to GitLab according to the .phraseapp.yml file within the GitLab repository.
+Export translations from Phrase Strings to GitLab according to the .phraseapp.yml file within the GitLab repository.
### Example
```ruby
# load the gem
@@ -106,11 +106,11 @@
opts = {
x_phrase_app_otp: 'x_phrase_app_otp_example' # String | Two-Factor-Authentication token (optional)
}
begin
- #Export from Phrase to GitLab
+ #Export from Phrase Strings to GitLab
result = api_instance.gitlab_sync_export(gitlab_sync_id, gitlab_sync_export_parameters, opts)
pp result
rescue Phrase::ApiError => e
puts "Exception when calling GitLabSyncApi->gitlab_sync_export: #{e}"
end
@@ -210,11 +210,11 @@
> Array<Upload> gitlab_sync_import(gitlab_sync_id, gitlab_sync_import_parameters, opts)
Import from GitLab to Phrase
-Import translations from GitLab to Phrase according to the .phraseapp.yml file within the GitLab repository.
+Import translations from GitLab to Phrase Strings according to the .phraseapp.yml file within the GitLab repository.
### Example
```ruby
# load the gem
@@ -273,11 +273,11 @@
> Array<GitlabSync> gitlab_sync_list(opts)
List GitLab syncs
-List all GitLab Sync Settings for which synchronisation with Phrase and GitLab is activated.
+List all GitLab Sync Settings for which synchronisation with Phrase Strings and GitLab is activated.
### Example
```ruby
# load the gem
@@ -420,11 +420,11 @@
api_instance = Phrase::GitLabSyncApi.new
id = 'id_example' # String | ID
opts = {
x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
account_id: 'abcd1234', # String | Account ID to specify the actual account the GitLab Sync should be created in. Required if the requesting user is a member of multiple accounts.
- phrase_project_code: '3456abcd', # String | Code of the related Phrase Project.
+ phrase_project_code: '3456abcd', # String | Code of the related Phrase Strings Project.
gitlab_project_id: 12345, # Integer | ID of the related GitLab Project.
gitlab_branch_name: 'feature-development' # String | Name of the GitLab Branch.
}
begin
@@ -442,10 +442,10 @@
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **String**| ID |
**x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
**account_id** | **String**| Account ID to specify the actual account the GitLab Sync should be created in. Required if the requesting user is a member of multiple accounts. | [optional]
- **phrase_project_code** | **String**| Code of the related Phrase Project. | [optional]
+ **phrase_project_code** | **String**| Code of the related Phrase Strings Project. | [optional]
**gitlab_project_id** | **Integer**| ID of the related GitLab Project. | [optional]
**gitlab_branch_name** | **String**| Name of the GitLab Branch. | [optional]
### Return type