phrase 3.5.0 → 3.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/README.md +3 -3
- data/docs/FormatsApi.md +3 -9
- data/docs/JobsApi.md +2 -2
- data/docs/KeyCreateParameters.md +1 -1
- data/docs/KeyUpdateParameters.md +1 -1
- data/docs/LocalesApi.md +4 -0
- data/docs/ProjectCreateParameters.md +3 -9
- data/docs/ProjectUpdateParameters.md +3 -9
- data/docs/ScreenshotUpdateParameters.md +1 -1
- data/docs/UploadsApi.md +3 -1
- data/lib/phrase/api/formats_api.rb +0 -3
- data/lib/phrase/api/jobs_api.rb +2 -2
- data/lib/phrase/api/locales_api.rb +6 -0
- data/lib/phrase/api/uploads_api.rb +3 -0
- data/lib/phrase/models/project_create_parameters.rb +5 -35
- data/lib/phrase/models/project_update_parameters.rb +5 -35
- data/lib/phrase/version.rb +1 -1
- data/spec/api/formats_api_spec.rb +0 -1
- data/spec/api/jobs_api_spec.rb +1 -1
- data/spec/models/project_create_parameters_spec.rb +0 -18
- data/spec/models/project_update_parameters_spec.rb +0 -18
- metadata +244 -244
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2cbdc81f70312c5895a659e9d0edc781474fb9b8e556aae9e731b071930ab13d
|
4
|
+
data.tar.gz: 1feed72759454a8a723032f0af5f37cac81a1b3dbc7612f7c2598815f5745560
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65537e4e14c006c2dc71d541f1100eae5e8a5f894f0a2c5be55fe10c1887f51cb91f46285c5085f032cd752941e0840d9c542bfa8a60d9ba51b86b529834fb83
|
7
|
+
data.tar.gz: 1fdbd4990350fc4346907c9ceec7ee9f28ef688d89af5d1354949da610251d631412e3565027e9f7fb3da1ef16a6e26280993f26ac66b611db75344a1175c5ae
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [3.6.0](https://github.com/phrase/openapi/compare/ruby-v3.5.0...ruby-v3.6.0) (2024-10-02)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* Add translation key prefixes for upload and download ([#687](https://github.com/phrase/openapi/issues/687)) ([9c9c959](https://github.com/phrase/openapi/commit/9c9c959830631bcac8beaf1de30ab31755ac1ee5))
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* **API:** Format list is not paginated and authenticated #STRINGS-458 ([#690](https://github.com/phrase/openapi/issues/690)) ([25e90f4](https://github.com/phrase/openapi/commit/25e90f46513e70cf328be80c36ae785cead05851))
|
14
|
+
|
3
15
|
## [3.5.0](https://github.com/phrase/openapi/compare/ruby-v3.4.0...ruby-v3.5.0) (2024-09-09)
|
4
16
|
|
5
17
|
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Phrase Strings is a translation management platform for software projects. You c
|
|
7
7
|
## This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: 2.0.0
|
10
|
-
- Package version: 3.
|
10
|
+
- Package version: 3.6.0
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://developers.phrase.com/api/](https://developers.phrase.com/api/)
|
13
13
|
|
@@ -56,10 +56,10 @@ gem build phrase.gemspec
|
|
56
56
|
Then install the gem locally:
|
57
57
|
|
58
58
|
```shell
|
59
|
-
gem install ./phrase-3.
|
59
|
+
gem install ./phrase-3.6.0.gem
|
60
60
|
```
|
61
61
|
|
62
|
-
(for development, run `gem install --dev ./phrase-3.
|
62
|
+
(for development, run `gem install --dev ./phrase-3.6.0.gem` to install the development dependencies)
|
63
63
|
|
64
64
|
## Getting Started
|
65
65
|
|
data/docs/FormatsApi.md
CHANGED
@@ -10,7 +10,7 @@ Method | HTTP request | Description
|
|
10
10
|
|
11
11
|
## formats_list
|
12
12
|
|
13
|
-
> Array<Format> formats_list
|
13
|
+
> Array<Format> formats_list
|
14
14
|
|
15
15
|
List formats
|
16
16
|
|
@@ -33,13 +33,10 @@ Phrase.configure do |config|
|
|
33
33
|
end
|
34
34
|
|
35
35
|
api_instance = Phrase::FormatsApi.new
|
36
|
-
opts = {
|
37
|
-
x_phrase_app_otp: 'x_phrase_app_otp_example' # String | Two-Factor-Authentication token (optional)
|
38
|
-
}
|
39
36
|
|
40
37
|
begin
|
41
38
|
#List formats
|
42
|
-
result = api_instance.formats_list
|
39
|
+
result = api_instance.formats_list
|
43
40
|
pp result
|
44
41
|
rescue Phrase::ApiError => e
|
45
42
|
puts "Exception when calling FormatsApi->formats_list: #{e}"
|
@@ -48,10 +45,7 @@ end
|
|
48
45
|
|
49
46
|
### Parameters
|
50
47
|
|
51
|
-
|
52
|
-
Name | Type | Description | Notes
|
53
|
-
------------- | ------------- | ------------- | -------------
|
54
|
-
**x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
|
48
|
+
This endpoint does not need any parameter.
|
55
49
|
|
56
50
|
### Return type
|
57
51
|
|
data/docs/JobsApi.md
CHANGED
@@ -307,7 +307,7 @@ id = 'id_example' # String | ID
|
|
307
307
|
opts = {
|
308
308
|
x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
|
309
309
|
branch: 'my-feature-branch', # String | specify the branch to use
|
310
|
-
translation_key_ids: ['inner_example'] # Array<String> | ids of keys that should
|
310
|
+
translation_key_ids: ['inner_example'] # Array<String> | ids of keys that should be removed from the job
|
311
311
|
}
|
312
312
|
|
313
313
|
begin
|
@@ -327,7 +327,7 @@ Name | Type | Description | Notes
|
|
327
327
|
**id** | **String**| ID |
|
328
328
|
**x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
|
329
329
|
**branch** | **String**| specify the branch to use | [optional]
|
330
|
-
**translation_key_ids** | [**Array<String>**](String.md)| ids of keys that should
|
330
|
+
**translation_key_ids** | [**Array<String>**](String.md)| ids of keys that should be removed from the job | [optional]
|
331
331
|
|
332
332
|
### Return type
|
333
333
|
|
data/docs/KeyCreateParameters.md
CHANGED
@@ -35,7 +35,7 @@ instance = Phrase::KeyCreateParameters.new(branch: my-feature-branch,
|
|
35
35
|
data_type: number,
|
36
36
|
tags: awesome-feature,needs-proofreading,
|
37
37
|
max_characters_allowed: 140,
|
38
|
-
screenshot: [B@
|
38
|
+
screenshot: [B@210d1b45,
|
39
39
|
remove_screenshot: null,
|
40
40
|
unformatted: null,
|
41
41
|
default_translation_content: Default translation content,
|
data/docs/KeyUpdateParameters.md
CHANGED
@@ -34,7 +34,7 @@ instance = Phrase::KeyUpdateParameters.new(branch: my-feature-branch,
|
|
34
34
|
data_type: number,
|
35
35
|
tags: awesome-feature,needs-proofreading,
|
36
36
|
max_characters_allowed: 140,
|
37
|
-
screenshot: [B@
|
37
|
+
screenshot: [B@29862f60,
|
38
38
|
remove_screenshot: null,
|
39
39
|
unformatted: null,
|
40
40
|
xml_space_preserve: null,
|
data/docs/LocalesApi.md
CHANGED
@@ -253,6 +253,8 @@ opts = {
|
|
253
253
|
use_last_reviewed_version: true, # Boolean | If set to true the last reviewed version of a translation is used. This is only available if the review workflow is enabled for the project.
|
254
254
|
fallback_locale_id: 'fallback_locale_id_example', # String | If a key has no translation in the locale being downloaded the translation in the fallback locale will be used. Provide the ID of the locale that should be used as the fallback. Requires include_empty_translations to be set to <code>true</code>.
|
255
255
|
source_locale_id: 'source_locale_id_example', # String | Provides the source language of a corresponding job as the source language of the generated locale file. This parameter will be ignored unless used in combination with a <code>tag</code> parameter indicating a specific job.
|
256
|
+
translation_key_prefix: 'prefix_', # String | Download all translation keys, and remove the specified prefix where possible. Warning: this may create duplicate key names if other keys share the same name after the prefix is removed.
|
257
|
+
filter_by_prefix: true, # Boolean | Only download translation keys containing the specified prefix, and remove the prefix from the generated file.
|
256
258
|
custom_metadata_filters: { key: 3.56} # Object | Custom metadata filters. Provide the name of the metadata field and the value to filter by. Only keys with matching metadata will be included in the download.
|
257
259
|
}
|
258
260
|
|
@@ -291,6 +293,8 @@ Name | Type | Description | Notes
|
|
291
293
|
**use_last_reviewed_version** | **Boolean**| If set to true the last reviewed version of a translation is used. This is only available if the review workflow is enabled for the project. | [optional]
|
292
294
|
**fallback_locale_id** | **String**| If a key has no translation in the locale being downloaded the translation in the fallback locale will be used. Provide the ID of the locale that should be used as the fallback. Requires include_empty_translations to be set to <code>true</code>. | [optional]
|
293
295
|
**source_locale_id** | **String**| Provides the source language of a corresponding job as the source language of the generated locale file. This parameter will be ignored unless used in combination with a <code>tag</code> parameter indicating a specific job. | [optional]
|
296
|
+
**translation_key_prefix** | **String**| Download all translation keys, and remove the specified prefix where possible. Warning: this may create duplicate key names if other keys share the same name after the prefix is removed. | [optional]
|
297
|
+
**filter_by_prefix** | **Boolean**| Only download translation keys containing the specified prefix, and remove the prefix from the generated file. | [optional]
|
294
298
|
**custom_metadata_filters** | [**Object**](.md)| Custom metadata filters. Provide the name of the metadata field and the value to filter by. Only keys with matching metadata will be included in the download. | [optional]
|
295
299
|
|
296
300
|
### Return type
|
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
|
|
14
14
|
**point_of_contact** | **String** | (Optional) User ID of the point of contact for the project. | [optional]
|
15
15
|
**source_project_id** | **String** | When a source project ID is given, a clone of that project will be created, including all locales, keys and translations as well as the main project settings if they are not defined otherwise through the params. | [optional]
|
16
16
|
**workflow** | **String** | (Optional) Review Workflow. \"simple\" / \"review\". <a href=\"https://support.phrase.com/hc/en-us/articles/5784094755484\">Read more</a> | [optional]
|
17
|
-
**machine_translation_enabled** | **Boolean** | (Optional) Enable machine translation support in the project. Required for
|
17
|
+
**machine_translation_enabled** | **Boolean** | (Optional) Enable machine translation support in the project. Required for Pre-Translation | [optional]
|
18
18
|
**enable_branching** | **Boolean** | (Optional) Enable branching in the project | [optional]
|
19
19
|
**protect_master_branch** | **Boolean** | (Optional) Protect the master branch in project where branching is enabled | [optional]
|
20
20
|
**enable_all_data_type_translation_keys_for_translators** | **Boolean** | (Optional) Otherwise, translators are not allowed to edit translations other than strings | [optional]
|
@@ -27,9 +27,6 @@ Name | Type | Description | Notes
|
|
27
27
|
**autotranslate_mark_as_unverified** | **Boolean** | (Optional) Requires autotranslate_enabled to be true | [optional]
|
28
28
|
**autotranslate_use_machine_translation** | **Boolean** | (Optional) Requires autotranslate_enabled to be true | [optional]
|
29
29
|
**autotranslate_use_translation_memory** | **Boolean** | (Optional) Requires autotranslate_enabled to be true | [optional]
|
30
|
-
**smart_suggest_enabled** | **Boolean** | (Optional) Smart Suggest, requires machine_translation_enabled | [optional]
|
31
|
-
**smart_suggest_use_glossary** | **Boolean** | (Optional) Requires smart_suggest_enabled to be true | [optional]
|
32
|
-
**smart_suggest_use_machine_translation** | **Boolean** | (Optional) Requires smart_suggest_enabled to be true | [optional]
|
33
30
|
|
34
31
|
## Code Sample
|
35
32
|
|
@@ -40,7 +37,7 @@ instance = Phrase::ProjectCreateParameters.new(name: My Android Project,
|
|
40
37
|
main_format: yml,
|
41
38
|
media: Python,
|
42
39
|
shares_translation_memory: true,
|
43
|
-
project_image: [B@
|
40
|
+
project_image: [B@776609b,
|
44
41
|
remove_project_image: null,
|
45
42
|
account_id: abcd1234,
|
46
43
|
point_of_contact: abcd1234,
|
@@ -58,10 +55,7 @@ instance = Phrase::ProjectCreateParameters.new(name: My Android Project,
|
|
58
55
|
autotranslate_check_new_locales: true,
|
59
56
|
autotranslate_mark_as_unverified: true,
|
60
57
|
autotranslate_use_machine_translation: true,
|
61
|
-
autotranslate_use_translation_memory: true
|
62
|
-
smart_suggest_enabled: true,
|
63
|
-
smart_suggest_use_glossary: true,
|
64
|
-
smart_suggest_use_machine_translation: true)
|
58
|
+
autotranslate_use_translation_memory: true)
|
65
59
|
```
|
66
60
|
|
67
61
|
|
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
|
|
13
13
|
**project_image** | **File** | (Optional) Image to identify the project | [optional]
|
14
14
|
**remove_project_image** | **Boolean** | (Optional) Indicates whether the project image should be deleted. | [optional]
|
15
15
|
**workflow** | **String** | (Optional) Review Workflow. \"simple\" / \"review\". <a href=\"https://support.phrase.com/hc/en-us/articles/5784094755484\">Read more</a> | [optional]
|
16
|
-
**machine_translation_enabled** | **Boolean** | (Optional) Enable machine translation support in the project. Required for
|
16
|
+
**machine_translation_enabled** | **Boolean** | (Optional) Enable machine translation support in the project. Required for Pre-Translation | [optional]
|
17
17
|
**enable_branching** | **Boolean** | (Optional) Enable branching in the project | [optional]
|
18
18
|
**protect_master_branch** | **Boolean** | (Optional) Protect the master branch in project where branching is enabled | [optional]
|
19
19
|
**enable_all_data_type_translation_keys_for_translators** | **Boolean** | (Optional) Otherwise, translators are not allowed to edit translations other than strings | [optional]
|
@@ -26,9 +26,6 @@ Name | Type | Description | Notes
|
|
26
26
|
**autotranslate_mark_as_unverified** | **Boolean** | (Optional) Requires autotranslate_enabled to be true | [optional]
|
27
27
|
**autotranslate_use_machine_translation** | **Boolean** | (Optional) Requires autotranslate_enabled to be true | [optional]
|
28
28
|
**autotranslate_use_translation_memory** | **Boolean** | (Optional) Requires autotranslate_enabled to be true | [optional]
|
29
|
-
**smart_suggest_enabled** | **Boolean** | (Optional) Smart Suggest, requires machine_translation_enabled | [optional]
|
30
|
-
**smart_suggest_use_glossary** | **Boolean** | (Optional) Requires smart_suggest_enabled to be true | [optional]
|
31
|
-
**smart_suggest_use_machine_translation** | **Boolean** | (Optional) Requires smart_suggest_enabled to be true | [optional]
|
32
29
|
|
33
30
|
## Code Sample
|
34
31
|
|
@@ -41,7 +38,7 @@ instance = Phrase::ProjectUpdateParameters.new(account_id: abcd1234,
|
|
41
38
|
main_format: yml,
|
42
39
|
media: Python,
|
43
40
|
shares_translation_memory: true,
|
44
|
-
project_image: [B@
|
41
|
+
project_image: [B@58da1b27,
|
45
42
|
remove_project_image: false,
|
46
43
|
workflow: review,
|
47
44
|
machine_translation_enabled: true,
|
@@ -56,10 +53,7 @@ instance = Phrase::ProjectUpdateParameters.new(account_id: abcd1234,
|
|
56
53
|
autotranslate_check_new_locales: true,
|
57
54
|
autotranslate_mark_as_unverified: true,
|
58
55
|
autotranslate_use_machine_translation: true,
|
59
|
-
autotranslate_use_translation_memory: true
|
60
|
-
smart_suggest_enabled: true,
|
61
|
-
smart_suggest_use_glossary: true,
|
62
|
-
smart_suggest_use_machine_translation: true)
|
56
|
+
autotranslate_use_translation_memory: true)
|
63
57
|
```
|
64
58
|
|
65
59
|
|
data/docs/UploadsApi.md
CHANGED
@@ -55,7 +55,8 @@ opts = {
|
|
55
55
|
format_options: { ... }, # Object | Additional options available for specific formats. See our format guide for complete list.
|
56
56
|
autotranslate: true, # Boolean | If set, translations for the uploaded language will be fetched automatically.
|
57
57
|
mark_reviewed: true, # Boolean | Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project.
|
58
|
-
tag_only_affected_keys: true # Boolean | Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false`
|
58
|
+
tag_only_affected_keys: true, # Boolean | Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false`
|
59
|
+
translation_key_prefix: 'translation_key_prefix_example' # String | This prefix will be added to all uploaded translation key names to prevent collisions. Use a meaningful prefix related to your project or file to keep key names organized.
|
59
60
|
}
|
60
61
|
|
61
62
|
begin
|
@@ -92,6 +93,7 @@ Name | Type | Description | Notes
|
|
92
93
|
**autotranslate** | **Boolean**| If set, translations for the uploaded language will be fetched automatically. | [optional]
|
93
94
|
**mark_reviewed** | **Boolean**| Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project. | [optional]
|
94
95
|
**tag_only_affected_keys** | **Boolean**| Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false` | [optional] [default to false]
|
96
|
+
**translation_key_prefix** | **String**| This prefix will be added to all uploaded translation key names to prevent collisions. Use a meaningful prefix related to your project or file to keep key names organized. | [optional]
|
95
97
|
|
96
98
|
### Return type
|
97
99
|
|
@@ -10,7 +10,6 @@ module Phrase
|
|
10
10
|
# List formats
|
11
11
|
# Get a handy list of all localization file formats supported in Phrase.
|
12
12
|
# @param [Hash] opts the optional parameters
|
13
|
-
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
|
14
13
|
# @return [Array<Format>]
|
15
14
|
def formats_list(opts = {})
|
16
15
|
data, _status_code, _headers = formats_list_with_http_info(opts)
|
@@ -20,7 +19,6 @@ module Phrase
|
|
20
19
|
# List formats
|
21
20
|
# Get a handy list of all localization file formats supported in Phrase.
|
22
21
|
# @param [Hash] opts the optional parameters
|
23
|
-
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
|
24
22
|
# @return [Array<(Response<(Array<Format>)>, Integer, Hash)>] Response<(Array<Format>)> data, response status code and response headers
|
25
23
|
def formats_list_with_http_info(opts = {})
|
26
24
|
if @api_client.config.debugging
|
@@ -36,7 +34,6 @@ module Phrase
|
|
36
34
|
header_params = opts[:header_params] || {}
|
37
35
|
# HTTP header 'Accept' (if needed)
|
38
36
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
39
|
-
header_params[:'X-PhraseApp-OTP'] = opts[:'x_phrase_app_otp'] if !opts[:'x_phrase_app_otp'].nil?
|
40
37
|
|
41
38
|
# form parameters
|
42
39
|
form_params = opts[:form_params] || {}
|
data/lib/phrase/api/jobs_api.rb
CHANGED
@@ -321,7 +321,7 @@ module Phrase
|
|
321
321
|
# @param [Hash] opts the optional parameters
|
322
322
|
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
|
323
323
|
# @option opts [String] :branch specify the branch to use
|
324
|
-
# @option opts [Array<String>] :translation_key_ids ids of keys that should
|
324
|
+
# @option opts [Array<String>] :translation_key_ids ids of keys that should be removed from the job
|
325
325
|
# @return [nil]
|
326
326
|
def job_keys_delete(project_id, id, opts = {})
|
327
327
|
data, _status_code, _headers = job_keys_delete_with_http_info(project_id, id, opts)
|
@@ -335,7 +335,7 @@ module Phrase
|
|
335
335
|
# @param [Hash] opts the optional parameters
|
336
336
|
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
|
337
337
|
# @option opts [String] :branch specify the branch to use
|
338
|
-
# @option opts [Array<String>] :translation_key_ids ids of keys that should
|
338
|
+
# @option opts [Array<String>] :translation_key_ids ids of keys that should be removed from the job
|
339
339
|
# @return [Array<(Response, Integer, Hash)>] Response<(nil, response status code and response headers
|
340
340
|
def job_keys_delete_with_http_info(project_id, id, opts = {})
|
341
341
|
if @api_client.config.debugging
|
@@ -250,6 +250,8 @@ module Phrase
|
|
250
250
|
# @option opts [Boolean] :use_last_reviewed_version If set to true the last reviewed version of a translation is used. This is only available if the review workflow is enabled for the project.
|
251
251
|
# @option opts [String] :fallback_locale_id If a key has no translation in the locale being downloaded the translation in the fallback locale will be used. Provide the ID of the locale that should be used as the fallback. Requires include_empty_translations to be set to <code>true</code>.
|
252
252
|
# @option opts [String] :source_locale_id Provides the source language of a corresponding job as the source language of the generated locale file. This parameter will be ignored unless used in combination with a <code>tag</code> parameter indicating a specific job.
|
253
|
+
# @option opts [String] :translation_key_prefix Download all translation keys, and remove the specified prefix where possible. Warning: this may create duplicate key names if other keys share the same name after the prefix is removed.
|
254
|
+
# @option opts [Boolean] :filter_by_prefix Only download translation keys containing the specified prefix, and remove the prefix from the generated file.
|
253
255
|
# @option opts [Object] :custom_metadata_filters Custom metadata filters. Provide the name of the metadata field and the value to filter by. Only keys with matching metadata will be included in the download.
|
254
256
|
# @return [File]
|
255
257
|
def locale_download(project_id, id, opts = {})
|
@@ -281,6 +283,8 @@ module Phrase
|
|
281
283
|
# @option opts [Boolean] :use_last_reviewed_version If set to true the last reviewed version of a translation is used. This is only available if the review workflow is enabled for the project.
|
282
284
|
# @option opts [String] :fallback_locale_id If a key has no translation in the locale being downloaded the translation in the fallback locale will be used. Provide the ID of the locale that should be used as the fallback. Requires include_empty_translations to be set to <code>true</code>.
|
283
285
|
# @option opts [String] :source_locale_id Provides the source language of a corresponding job as the source language of the generated locale file. This parameter will be ignored unless used in combination with a <code>tag</code> parameter indicating a specific job.
|
286
|
+
# @option opts [String] :translation_key_prefix Download all translation keys, and remove the specified prefix where possible. Warning: this may create duplicate key names if other keys share the same name after the prefix is removed.
|
287
|
+
# @option opts [Boolean] :filter_by_prefix Only download translation keys containing the specified prefix, and remove the prefix from the generated file.
|
284
288
|
# @option opts [Object] :custom_metadata_filters Custom metadata filters. Provide the name of the metadata field and the value to filter by. Only keys with matching metadata will be included in the download.
|
285
289
|
# @return [Array<(Response<(File)>, Integer, Hash)>] Response<(File)> data, response status code and response headers
|
286
290
|
def locale_download_with_http_info(project_id, id, opts = {})
|
@@ -316,6 +320,8 @@ module Phrase
|
|
316
320
|
query_params[:'use_last_reviewed_version'] = opts[:'use_last_reviewed_version'] if !opts[:'use_last_reviewed_version'].nil?
|
317
321
|
query_params[:'fallback_locale_id'] = opts[:'fallback_locale_id'] if !opts[:'fallback_locale_id'].nil?
|
318
322
|
query_params[:'source_locale_id'] = opts[:'source_locale_id'] if !opts[:'source_locale_id'].nil?
|
323
|
+
query_params[:'translation_key_prefix'] = opts[:'translation_key_prefix'] if !opts[:'translation_key_prefix'].nil?
|
324
|
+
query_params[:'filter_by_prefix'] = opts[:'filter_by_prefix'] if !opts[:'filter_by_prefix'].nil?
|
319
325
|
query_params[:'custom_metadata_filters'] = opts[:'custom_metadata_filters'] if !opts[:'custom_metadata_filters'].nil?
|
320
326
|
|
321
327
|
# header parameters
|
@@ -30,6 +30,7 @@ module Phrase
|
|
30
30
|
# @option opts [Boolean] :autotranslate If set, translations for the uploaded language will be fetched automatically.
|
31
31
|
# @option opts [Boolean] :mark_reviewed Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project.
|
32
32
|
# @option opts [Boolean] :tag_only_affected_keys Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false` (default to false)
|
33
|
+
# @option opts [String] :translation_key_prefix This prefix will be added to all uploaded translation key names to prevent collisions. Use a meaningful prefix related to your project or file to keep key names organized.
|
33
34
|
# @return [Upload]
|
34
35
|
def upload_create(project_id, file, file_format, locale_id, opts = {})
|
35
36
|
data, _status_code, _headers = upload_create_with_http_info(project_id, file, file_format, locale_id, opts)
|
@@ -59,6 +60,7 @@ module Phrase
|
|
59
60
|
# @option opts [Boolean] :autotranslate If set, translations for the uploaded language will be fetched automatically.
|
60
61
|
# @option opts [Boolean] :mark_reviewed Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project.
|
61
62
|
# @option opts [Boolean] :tag_only_affected_keys Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false`
|
63
|
+
# @option opts [String] :translation_key_prefix This prefix will be added to all uploaded translation key names to prevent collisions. Use a meaningful prefix related to your project or file to keep key names organized.
|
62
64
|
# @return [Array<(Response<(Upload)>, Integer, Hash)>] Response<(Upload)> data, response status code and response headers
|
63
65
|
def upload_create_with_http_info(project_id, file, file_format, locale_id, opts = {})
|
64
66
|
if @api_client.config.debugging
|
@@ -114,6 +116,7 @@ module Phrase
|
|
114
116
|
form_params['autotranslate'] = opts[:'autotranslate'] if !opts[:'autotranslate'].nil?
|
115
117
|
form_params['mark_reviewed'] = opts[:'mark_reviewed'] if !opts[:'mark_reviewed'].nil?
|
116
118
|
form_params['tag_only_affected_keys'] = opts[:'tag_only_affected_keys'] if !opts[:'tag_only_affected_keys'].nil?
|
119
|
+
form_params['translation_key_prefix'] = opts[:'translation_key_prefix'] if !opts[:'translation_key_prefix'].nil?
|
117
120
|
|
118
121
|
# http body (model)
|
119
122
|
post_body = opts[:body]
|
@@ -32,7 +32,7 @@ module Phrase
|
|
32
32
|
# (Optional) Review Workflow. \"simple\" / \"review\". <a href=\"https://support.phrase.com/hc/en-us/articles/5784094755484\">Read more</a>
|
33
33
|
attr_accessor :workflow
|
34
34
|
|
35
|
-
# (Optional) Enable machine translation support in the project. Required for
|
35
|
+
# (Optional) Enable machine translation support in the project. Required for Pre-Translation
|
36
36
|
attr_accessor :machine_translation_enabled
|
37
37
|
|
38
38
|
# (Optional) Enable branching in the project
|
@@ -71,15 +71,6 @@ module Phrase
|
|
71
71
|
# (Optional) Requires autotranslate_enabled to be true
|
72
72
|
attr_accessor :autotranslate_use_translation_memory
|
73
73
|
|
74
|
-
# (Optional) Smart Suggest, requires machine_translation_enabled
|
75
|
-
attr_accessor :smart_suggest_enabled
|
76
|
-
|
77
|
-
# (Optional) Requires smart_suggest_enabled to be true
|
78
|
-
attr_accessor :smart_suggest_use_glossary
|
79
|
-
|
80
|
-
# (Optional) Requires smart_suggest_enabled to be true
|
81
|
-
attr_accessor :smart_suggest_use_machine_translation
|
82
|
-
|
83
74
|
# Attribute mapping from ruby-style variable name to JSON key.
|
84
75
|
def self.attribute_map
|
85
76
|
{
|
@@ -105,10 +96,7 @@ module Phrase
|
|
105
96
|
:'autotranslate_check_new_locales' => :'autotranslate_check_new_locales',
|
106
97
|
:'autotranslate_mark_as_unverified' => :'autotranslate_mark_as_unverified',
|
107
98
|
:'autotranslate_use_machine_translation' => :'autotranslate_use_machine_translation',
|
108
|
-
:'autotranslate_use_translation_memory' => :'autotranslate_use_translation_memory'
|
109
|
-
:'smart_suggest_enabled' => :'smart_suggest_enabled',
|
110
|
-
:'smart_suggest_use_glossary' => :'smart_suggest_use_glossary',
|
111
|
-
:'smart_suggest_use_machine_translation' => :'smart_suggest_use_machine_translation'
|
99
|
+
:'autotranslate_use_translation_memory' => :'autotranslate_use_translation_memory'
|
112
100
|
}
|
113
101
|
end
|
114
102
|
|
@@ -137,10 +125,7 @@ module Phrase
|
|
137
125
|
:'autotranslate_check_new_locales' => :'Boolean',
|
138
126
|
:'autotranslate_mark_as_unverified' => :'Boolean',
|
139
127
|
:'autotranslate_use_machine_translation' => :'Boolean',
|
140
|
-
:'autotranslate_use_translation_memory' => :'Boolean'
|
141
|
-
:'smart_suggest_enabled' => :'Boolean',
|
142
|
-
:'smart_suggest_use_glossary' => :'Boolean',
|
143
|
-
:'smart_suggest_use_machine_translation' => :'Boolean'
|
128
|
+
:'autotranslate_use_translation_memory' => :'Boolean'
|
144
129
|
}
|
145
130
|
end
|
146
131
|
|
@@ -256,18 +241,6 @@ module Phrase
|
|
256
241
|
if attributes.key?(:'autotranslate_use_translation_memory')
|
257
242
|
self.autotranslate_use_translation_memory = attributes[:'autotranslate_use_translation_memory']
|
258
243
|
end
|
259
|
-
|
260
|
-
if attributes.key?(:'smart_suggest_enabled')
|
261
|
-
self.smart_suggest_enabled = attributes[:'smart_suggest_enabled']
|
262
|
-
end
|
263
|
-
|
264
|
-
if attributes.key?(:'smart_suggest_use_glossary')
|
265
|
-
self.smart_suggest_use_glossary = attributes[:'smart_suggest_use_glossary']
|
266
|
-
end
|
267
|
-
|
268
|
-
if attributes.key?(:'smart_suggest_use_machine_translation')
|
269
|
-
self.smart_suggest_use_machine_translation = attributes[:'smart_suggest_use_machine_translation']
|
270
|
-
end
|
271
244
|
end
|
272
245
|
|
273
246
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -315,10 +288,7 @@ module Phrase
|
|
315
288
|
autotranslate_check_new_locales == o.autotranslate_check_new_locales &&
|
316
289
|
autotranslate_mark_as_unverified == o.autotranslate_mark_as_unverified &&
|
317
290
|
autotranslate_use_machine_translation == o.autotranslate_use_machine_translation &&
|
318
|
-
autotranslate_use_translation_memory == o.autotranslate_use_translation_memory
|
319
|
-
smart_suggest_enabled == o.smart_suggest_enabled &&
|
320
|
-
smart_suggest_use_glossary == o.smart_suggest_use_glossary &&
|
321
|
-
smart_suggest_use_machine_translation == o.smart_suggest_use_machine_translation
|
291
|
+
autotranslate_use_translation_memory == o.autotranslate_use_translation_memory
|
322
292
|
end
|
323
293
|
|
324
294
|
# @see the `==` method
|
@@ -330,7 +300,7 @@ module Phrase
|
|
330
300
|
# Calculates hash code according to all attributes.
|
331
301
|
# @return [Integer] Hash code
|
332
302
|
def hash
|
333
|
-
[name, main_format, media, shares_translation_memory, project_image, remove_project_image, account_id, point_of_contact, source_project_id, workflow, machine_translation_enabled, enable_branching, protect_master_branch, enable_all_data_type_translation_keys_for_translators, enable_icu_message_format, zero_plural_form_enabled, autotranslate_enabled, autotranslate_check_new_translation_keys, autotranslate_check_new_uploads, autotranslate_check_new_locales, autotranslate_mark_as_unverified, autotranslate_use_machine_translation, autotranslate_use_translation_memory
|
303
|
+
[name, main_format, media, shares_translation_memory, project_image, remove_project_image, account_id, point_of_contact, source_project_id, workflow, machine_translation_enabled, enable_branching, protect_master_branch, enable_all_data_type_translation_keys_for_translators, enable_icu_message_format, zero_plural_form_enabled, autotranslate_enabled, autotranslate_check_new_translation_keys, autotranslate_check_new_uploads, autotranslate_check_new_locales, autotranslate_mark_as_unverified, autotranslate_use_machine_translation, autotranslate_use_translation_memory].hash
|
334
304
|
end
|
335
305
|
|
336
306
|
# Builds the object from hash
|
@@ -29,7 +29,7 @@ module Phrase
|
|
29
29
|
# (Optional) Review Workflow. \"simple\" / \"review\". <a href=\"https://support.phrase.com/hc/en-us/articles/5784094755484\">Read more</a>
|
30
30
|
attr_accessor :workflow
|
31
31
|
|
32
|
-
# (Optional) Enable machine translation support in the project. Required for
|
32
|
+
# (Optional) Enable machine translation support in the project. Required for Pre-Translation
|
33
33
|
attr_accessor :machine_translation_enabled
|
34
34
|
|
35
35
|
# (Optional) Enable branching in the project
|
@@ -68,15 +68,6 @@ module Phrase
|
|
68
68
|
# (Optional) Requires autotranslate_enabled to be true
|
69
69
|
attr_accessor :autotranslate_use_translation_memory
|
70
70
|
|
71
|
-
# (Optional) Smart Suggest, requires machine_translation_enabled
|
72
|
-
attr_accessor :smart_suggest_enabled
|
73
|
-
|
74
|
-
# (Optional) Requires smart_suggest_enabled to be true
|
75
|
-
attr_accessor :smart_suggest_use_glossary
|
76
|
-
|
77
|
-
# (Optional) Requires smart_suggest_enabled to be true
|
78
|
-
attr_accessor :smart_suggest_use_machine_translation
|
79
|
-
|
80
71
|
# Attribute mapping from ruby-style variable name to JSON key.
|
81
72
|
def self.attribute_map
|
82
73
|
{
|
@@ -101,10 +92,7 @@ module Phrase
|
|
101
92
|
:'autotranslate_check_new_locales' => :'autotranslate_check_new_locales',
|
102
93
|
:'autotranslate_mark_as_unverified' => :'autotranslate_mark_as_unverified',
|
103
94
|
:'autotranslate_use_machine_translation' => :'autotranslate_use_machine_translation',
|
104
|
-
:'autotranslate_use_translation_memory' => :'autotranslate_use_translation_memory'
|
105
|
-
:'smart_suggest_enabled' => :'smart_suggest_enabled',
|
106
|
-
:'smart_suggest_use_glossary' => :'smart_suggest_use_glossary',
|
107
|
-
:'smart_suggest_use_machine_translation' => :'smart_suggest_use_machine_translation'
|
95
|
+
:'autotranslate_use_translation_memory' => :'autotranslate_use_translation_memory'
|
108
96
|
}
|
109
97
|
end
|
110
98
|
|
@@ -132,10 +120,7 @@ module Phrase
|
|
132
120
|
:'autotranslate_check_new_locales' => :'Boolean',
|
133
121
|
:'autotranslate_mark_as_unverified' => :'Boolean',
|
134
122
|
:'autotranslate_use_machine_translation' => :'Boolean',
|
135
|
-
:'autotranslate_use_translation_memory' => :'Boolean'
|
136
|
-
:'smart_suggest_enabled' => :'Boolean',
|
137
|
-
:'smart_suggest_use_glossary' => :'Boolean',
|
138
|
-
:'smart_suggest_use_machine_translation' => :'Boolean'
|
123
|
+
:'autotranslate_use_translation_memory' => :'Boolean'
|
139
124
|
}
|
140
125
|
end
|
141
126
|
|
@@ -247,18 +232,6 @@ module Phrase
|
|
247
232
|
if attributes.key?(:'autotranslate_use_translation_memory')
|
248
233
|
self.autotranslate_use_translation_memory = attributes[:'autotranslate_use_translation_memory']
|
249
234
|
end
|
250
|
-
|
251
|
-
if attributes.key?(:'smart_suggest_enabled')
|
252
|
-
self.smart_suggest_enabled = attributes[:'smart_suggest_enabled']
|
253
|
-
end
|
254
|
-
|
255
|
-
if attributes.key?(:'smart_suggest_use_glossary')
|
256
|
-
self.smart_suggest_use_glossary = attributes[:'smart_suggest_use_glossary']
|
257
|
-
end
|
258
|
-
|
259
|
-
if attributes.key?(:'smart_suggest_use_machine_translation')
|
260
|
-
self.smart_suggest_use_machine_translation = attributes[:'smart_suggest_use_machine_translation']
|
261
|
-
end
|
262
235
|
end
|
263
236
|
|
264
237
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -300,10 +273,7 @@ module Phrase
|
|
300
273
|
autotranslate_check_new_locales == o.autotranslate_check_new_locales &&
|
301
274
|
autotranslate_mark_as_unverified == o.autotranslate_mark_as_unverified &&
|
302
275
|
autotranslate_use_machine_translation == o.autotranslate_use_machine_translation &&
|
303
|
-
autotranslate_use_translation_memory == o.autotranslate_use_translation_memory
|
304
|
-
smart_suggest_enabled == o.smart_suggest_enabled &&
|
305
|
-
smart_suggest_use_glossary == o.smart_suggest_use_glossary &&
|
306
|
-
smart_suggest_use_machine_translation == o.smart_suggest_use_machine_translation
|
276
|
+
autotranslate_use_translation_memory == o.autotranslate_use_translation_memory
|
307
277
|
end
|
308
278
|
|
309
279
|
# @see the `==` method
|
@@ -315,7 +285,7 @@ module Phrase
|
|
315
285
|
# Calculates hash code according to all attributes.
|
316
286
|
# @return [Integer] Hash code
|
317
287
|
def hash
|
318
|
-
[account_id, name, point_of_contact, main_format, media, shares_translation_memory, project_image, remove_project_image, workflow, machine_translation_enabled, enable_branching, protect_master_branch, enable_all_data_type_translation_keys_for_translators, enable_icu_message_format, zero_plural_form_enabled, autotranslate_enabled, autotranslate_check_new_translation_keys, autotranslate_check_new_uploads, autotranslate_check_new_locales, autotranslate_mark_as_unverified, autotranslate_use_machine_translation, autotranslate_use_translation_memory
|
288
|
+
[account_id, name, point_of_contact, main_format, media, shares_translation_memory, project_image, remove_project_image, workflow, machine_translation_enabled, enable_branching, protect_master_branch, enable_all_data_type_translation_keys_for_translators, enable_icu_message_format, zero_plural_form_enabled, autotranslate_enabled, autotranslate_check_new_translation_keys, autotranslate_check_new_uploads, autotranslate_check_new_locales, autotranslate_mark_as_unverified, autotranslate_use_machine_translation, autotranslate_use_translation_memory].hash
|
319
289
|
end
|
320
290
|
|
321
291
|
# Builds the object from hash
|
data/lib/phrase/version.rb
CHANGED
@@ -24,7 +24,6 @@ describe 'FormatsApi' do
|
|
24
24
|
# List formats
|
25
25
|
# Get a handy list of all localization file formats supported in Phrase.
|
26
26
|
# @param [Hash] opts the optional parameters
|
27
|
-
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
|
28
27
|
# @return [Array<Format>]
|
29
28
|
describe 'formats_list test' do
|
30
29
|
it 'should work' do
|
data/spec/api/jobs_api_spec.rb
CHANGED
@@ -87,7 +87,7 @@ describe 'JobsApi' do
|
|
87
87
|
# @param [Hash] opts the optional parameters
|
88
88
|
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
|
89
89
|
# @option opts [String] :branch specify the branch to use
|
90
|
-
# @option opts [Array<String>] :translation_key_ids ids of keys that should
|
90
|
+
# @option opts [Array<String>] :translation_key_ids ids of keys that should be removed from the job
|
91
91
|
# @return [nil]
|
92
92
|
describe 'job_keys_delete test' do
|
93
93
|
it 'should work' do
|
@@ -158,22 +158,4 @@ describe 'ProjectCreateParameters' do
|
|
158
158
|
end
|
159
159
|
end
|
160
160
|
|
161
|
-
describe 'test attribute "smart_suggest_enabled"' do
|
162
|
-
it 'should work' do
|
163
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
164
|
-
end
|
165
|
-
end
|
166
|
-
|
167
|
-
describe 'test attribute "smart_suggest_use_glossary"' do
|
168
|
-
it 'should work' do
|
169
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
170
|
-
end
|
171
|
-
end
|
172
|
-
|
173
|
-
describe 'test attribute "smart_suggest_use_machine_translation"' do
|
174
|
-
it 'should work' do
|
175
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
176
|
-
end
|
177
|
-
end
|
178
|
-
|
179
161
|
end
|
@@ -152,22 +152,4 @@ describe 'ProjectUpdateParameters' do
|
|
152
152
|
end
|
153
153
|
end
|
154
154
|
|
155
|
-
describe 'test attribute "smart_suggest_enabled"' do
|
156
|
-
it 'should work' do
|
157
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
158
|
-
end
|
159
|
-
end
|
160
|
-
|
161
|
-
describe 'test attribute "smart_suggest_use_glossary"' do
|
162
|
-
it 'should work' do
|
163
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
164
|
-
end
|
165
|
-
end
|
166
|
-
|
167
|
-
describe 'test attribute "smart_suggest_use_machine_translation"' do
|
168
|
-
it 'should work' do
|
169
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
170
|
-
end
|
171
|
-
end
|
172
|
-
|
173
155
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phrase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phrase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -955,285 +955,285 @@ summary: You can collaborate on language file translation with your team or orde
|
|
955
955
|
locale files, tag keys or interact in other ways with the localization data stored
|
956
956
|
in Phrase Strings for your account.
|
957
957
|
test_files:
|
958
|
-
- spec/api/
|
959
|
-
- spec/api/
|
960
|
-
- spec/api/jobs_api_spec.rb
|
958
|
+
- spec/api/organization_job_template_locales_api_spec.rb
|
959
|
+
- spec/api/invitations_api_spec.rb
|
961
960
|
- spec/api/spaces_api_spec.rb
|
962
|
-
- spec/api/
|
961
|
+
- spec/api/reports_api_spec.rb
|
962
|
+
- spec/api/git_lab_sync_api_spec.rb
|
963
|
+
- spec/api/job_template_locales_api_spec.rb
|
964
|
+
- spec/api/glossary_terms_api_spec.rb
|
965
|
+
- spec/api/linked_keys_api_spec.rb
|
966
|
+
- spec/api/jobs_api_spec.rb
|
967
|
+
- spec/api/projects_api_spec.rb
|
963
968
|
- spec/api/distributions_api_spec.rb
|
964
|
-
- spec/api/
|
969
|
+
- spec/api/accounts_api_spec.rb
|
965
970
|
- spec/api/repo_syncs_api_spec.rb
|
966
|
-
- spec/api/
|
967
|
-
- spec/api/
|
971
|
+
- spec/api/teams_api_spec.rb
|
972
|
+
- spec/api/formats_api_spec.rb
|
973
|
+
- spec/api/authorizations_api_spec.rb
|
974
|
+
- spec/api/release_triggers_api_spec.rb
|
975
|
+
- spec/api/uploads_api_spec.rb
|
968
976
|
- spec/api/blacklisted_keys_api_spec.rb
|
969
|
-
- spec/api/
|
970
|
-
- spec/api/
|
971
|
-
- spec/api/
|
972
|
-
- spec/api/
|
973
|
-
- spec/api/
|
974
|
-
- spec/api/
|
977
|
+
- spec/api/search_api_spec.rb
|
978
|
+
- spec/api/documents_api_spec.rb
|
979
|
+
- spec/api/releases_api_spec.rb
|
980
|
+
- spec/api/git_hub_sync_api_spec.rb
|
981
|
+
- spec/api/glossaries_api_spec.rb
|
982
|
+
- spec/api/custom_metadata_api_spec.rb
|
975
983
|
- spec/api/keys_api_spec.rb
|
976
|
-
- spec/api/webhook_deliveries_api_spec.rb
|
977
|
-
- spec/api/users_api_spec.rb
|
978
|
-
- spec/api/webhooks_api_spec.rb
|
979
984
|
- spec/api/comment_reactions_api_spec.rb
|
980
|
-
- spec/api/
|
981
|
-
- spec/api/
|
982
|
-
- spec/api/
|
985
|
+
- spec/api/comment_replies_api_spec.rb
|
986
|
+
- spec/api/figma_attachments_api_spec.rb
|
987
|
+
- spec/api/users_api_spec.rb
|
988
|
+
- spec/api/locale_downloads_api_spec.rb
|
989
|
+
- spec/api/translations_api_spec.rb
|
990
|
+
- spec/api/versions_history_api_spec.rb
|
991
|
+
- spec/api/organization_job_templates_api_spec.rb
|
992
|
+
- spec/api/webhook_deliveries_api_spec.rb
|
993
|
+
- spec/api/bitbucket_sync_api_spec.rb
|
983
994
|
- spec/api/glossary_term_translations_api_spec.rb
|
995
|
+
- spec/api/variables_api_spec.rb
|
984
996
|
- spec/api/job_locales_api_spec.rb
|
985
|
-
- spec/api/
|
986
|
-
- spec/api/
|
987
|
-
- spec/api/documents_api_spec.rb
|
988
|
-
- spec/api/releases_api_spec.rb
|
989
|
-
- spec/api/accounts_api_spec.rb
|
997
|
+
- spec/api/style_guides_api_spec.rb
|
998
|
+
- spec/api/webhooks_api_spec.rb
|
990
999
|
- spec/api/orders_api_spec.rb
|
991
|
-
- spec/api/members_api_spec.rb
|
992
|
-
- spec/api/icu_api_spec.rb
|
993
|
-
- spec/api/projects_api_spec.rb
|
994
|
-
- spec/api/translations_api_spec.rb
|
995
|
-
- spec/api/reports_api_spec.rb
|
996
|
-
- spec/api/bitbucket_sync_api_spec.rb
|
997
|
-
- spec/api/git_lab_sync_api_spec.rb
|
998
|
-
- spec/api/uploads_api_spec.rb
|
999
|
-
- spec/api/quality_performance_score_api_spec.rb
|
1000
|
-
- spec/api/invitations_api_spec.rb
|
1001
|
-
- spec/api/locale_downloads_api_spec.rb
|
1002
|
-
- spec/api/job_template_locales_api_spec.rb
|
1003
|
-
- spec/api/organization_job_template_locales_api_spec.rb
|
1004
1000
|
- spec/api/keys_figma_attachments_api_spec.rb
|
1005
|
-
- spec/api/
|
1001
|
+
- spec/api/locales_api_spec.rb
|
1002
|
+
- spec/api/notifications_api_spec.rb
|
1003
|
+
- spec/api/icu_api_spec.rb
|
1004
|
+
- spec/api/members_api_spec.rb
|
1005
|
+
- spec/api/branches_api_spec.rb
|
1006
|
+
- spec/api/job_comments_api_spec.rb
|
1007
|
+
- spec/api/screenshots_api_spec.rb
|
1008
|
+
- spec/api/tags_api_spec.rb
|
1006
1009
|
- spec/api/screenshot_markers_api_spec.rb
|
1007
|
-
- spec/api/
|
1008
|
-
- spec/api/
|
1010
|
+
- spec/api/comments_api_spec.rb
|
1011
|
+
- spec/api/quality_performance_score_api_spec.rb
|
1009
1012
|
- spec/api/job_templates_api_spec.rb
|
1010
|
-
- spec/api/
|
1011
|
-
- spec/api/versions_history_api_spec.rb
|
1012
|
-
- spec/api/glossaries_api_spec.rb
|
1013
|
-
- spec/api/style_guides_api_spec.rb
|
1013
|
+
- spec/api/notification_groups_api_spec.rb
|
1014
1014
|
- spec/api_client_spec.rb
|
1015
1015
|
- spec/configuration_spec.rb
|
1016
|
-
- spec/models/
|
1017
|
-
- spec/models/
|
1018
|
-
- spec/models/
|
1019
|
-
- spec/models/
|
1020
|
-
- spec/models/
|
1021
|
-
- spec/models/
|
1022
|
-
- spec/models/
|
1023
|
-
- spec/models/
|
1024
|
-
- spec/models/
|
1025
|
-
- spec/models/
|
1026
|
-
- spec/models/
|
1027
|
-
- spec/models/branch_spec.rb
|
1028
|
-
- spec/models/member_update_settings_parameters_spec.rb
|
1029
|
-
- spec/models/screenshot_marker_create_parameters_spec.rb
|
1030
|
-
- spec/models/glossary_term_spec.rb
|
1031
|
-
- spec/models/tag_with_stats1_statistics_spec.rb
|
1032
|
-
- spec/models/locale_spec.rb
|
1033
|
-
- spec/models/custom_metadata_property_spec.rb
|
1034
|
-
- spec/models/teams_users_create_parameters_spec.rb
|
1035
|
-
- spec/models/icu_spec.rb
|
1036
|
-
- spec/models/translation_order_spec.rb
|
1037
|
-
- spec/models/job_template_locales_create_parameters_spec.rb
|
1038
|
-
- spec/models/teams_projects_create_parameters_spec.rb
|
1039
|
-
- spec/models/replies_list_parameters_spec.rb
|
1040
|
-
- spec/models/invitation_update_parameters_spec.rb
|
1041
|
-
- spec/models/user_spec.rb
|
1042
|
-
- spec/models/spaces_projects_create_parameters_spec.rb
|
1043
|
-
- spec/models/styleguide_create_parameters_spec.rb
|
1044
|
-
- spec/models/job_keys_create_parameters_spec.rb
|
1045
|
-
- spec/models/bitbucket_sync_spec.rb
|
1046
|
-
- spec/models/blacklisted_key_create_parameters_spec.rb
|
1047
|
-
- spec/models/space1_spec.rb
|
1048
|
-
- spec/models/organization_job_template_update_parameters_spec.rb
|
1016
|
+
- spec/models/release_trigger_spec.rb
|
1017
|
+
- spec/models/translation_parent_spec.rb
|
1018
|
+
- spec/models/job_locales_create_parameters_spec.rb
|
1019
|
+
- spec/models/project_create_parameters_spec.rb
|
1020
|
+
- spec/models/translation_version_spec.rb
|
1021
|
+
- spec/models/locale_statistics_spec.rb
|
1022
|
+
- spec/models/webhook_create_parameters_spec.rb
|
1023
|
+
- spec/models/job_template_spec.rb
|
1024
|
+
- spec/models/document_spec.rb
|
1025
|
+
- spec/models/order_create_parameters_spec.rb
|
1026
|
+
- spec/models/job_locale_spec.rb
|
1049
1027
|
- spec/models/locale_update_parameters_spec.rb
|
1050
|
-
- spec/models/
|
1051
|
-
- spec/models/
|
1052
|
-
- spec/models/
|
1053
|
-
- spec/models/
|
1054
|
-
- spec/models/
|
1055
|
-
- spec/models/
|
1056
|
-
- spec/models/release_preview_spec.rb
|
1028
|
+
- spec/models/subscription_spec.rb
|
1029
|
+
- spec/models/screenshot_marker_spec.rb
|
1030
|
+
- spec/models/translations_review_parameters_spec.rb
|
1031
|
+
- spec/models/job_template_create_parameters_spec.rb
|
1032
|
+
- spec/models/glossary_spec.rb
|
1033
|
+
- spec/models/variable_spec.rb
|
1057
1034
|
- spec/models/authorization_with_token_spec.rb
|
1058
|
-
- spec/models/
|
1059
|
-
- spec/models/
|
1060
|
-
- spec/models/
|
1061
|
-
- spec/models/gitlab_sync_history_spec.rb
|
1062
|
-
- spec/models/translation_unverify_parameters_spec.rb
|
1063
|
-
- spec/models/job_template_locales_spec.rb
|
1064
|
-
- spec/models/webhook_spec.rb
|
1065
|
-
- spec/models/error_error_spec.rb
|
1066
|
-
- spec/models/translation_exclude_parameters_spec.rb
|
1067
|
-
- spec/models/translation_include_parameters_spec.rb
|
1068
|
-
- spec/models/project_update_parameters_spec.rb
|
1069
|
-
- spec/models/distribution_update_parameters_spec.rb
|
1070
|
-
- spec/models/blacklisted_key_update_parameters_spec.rb
|
1071
|
-
- spec/models/distribution_create_parameters_spec.rb
|
1072
|
-
- spec/models/translations_exclude_parameters_spec.rb
|
1073
|
-
- spec/models/key_update_parameters_spec.rb
|
1074
|
-
- spec/models/glossary_update_parameters_spec.rb
|
1075
|
-
- spec/models/search_in_account_parameters_spec.rb
|
1076
|
-
- spec/models/organization_job_template_locale_update_parameters_spec.rb
|
1035
|
+
- spec/models/job_comment_update_parameters_spec.rb
|
1036
|
+
- spec/models/variable_update_parameters_spec.rb
|
1037
|
+
- spec/models/keys_include_parameters_spec.rb
|
1077
1038
|
- spec/models/branch_update_parameters_spec.rb
|
1078
|
-
- spec/models/
|
1079
|
-
- spec/models/
|
1080
|
-
- spec/models/
|
1081
|
-
- spec/models/
|
1082
|
-
- spec/models/glossary_term_update_parameters_spec.rb
|
1083
|
-
- spec/models/organization_job_template_create_parameters_spec.rb
|
1039
|
+
- spec/models/screenshot_update_parameters_spec.rb
|
1040
|
+
- spec/models/organization_job_template_details_spec.rb
|
1041
|
+
- spec/models/job_comment_spec.rb
|
1042
|
+
- spec/models/locale_download_params_spec.rb
|
1084
1043
|
- spec/models/branch_merge_parameters_spec.rb
|
1085
|
-
- spec/models/
|
1086
|
-
- spec/models/
|
1087
|
-
- spec/models/
|
1044
|
+
- spec/models/translation_unverify_parameters_spec.rb
|
1045
|
+
- spec/models/projects_quality_performance_score200_response_any_of_data_spec.rb
|
1046
|
+
- spec/models/key_create_parameters_spec.rb
|
1047
|
+
- spec/models/translation_spec.rb
|
1048
|
+
- spec/models/gitlab_sync_history_errors_inner_spec.rb
|
1049
|
+
- spec/models/projects_quality_performance_score200_response_any_of_data_translations_inner_spec.rb
|
1050
|
+
- spec/models/job_update_parameters_spec.rb
|
1051
|
+
- spec/models/authorization_spec.rb
|
1052
|
+
- spec/models/translation_create_parameters_spec.rb
|
1053
|
+
- spec/models/glossary_term_spec.rb
|
1054
|
+
- spec/models/team_short_spec.rb
|
1055
|
+
- spec/models/member_update_settings_parameters_spec.rb
|
1056
|
+
- spec/models/tag_with_stats_spec.rb
|
1088
1057
|
- spec/models/styleguide_details_spec.rb
|
1089
|
-
- spec/models/
|
1090
|
-
- spec/models/
|
1058
|
+
- spec/models/job_locale_complete_review_parameters_spec.rb
|
1059
|
+
- spec/models/translations_include_parameters_spec.rb
|
1060
|
+
- spec/models/organization_job_template_update_parameters_spec.rb
|
1061
|
+
- spec/models/translation_version_with_user_spec.rb
|
1091
1062
|
- spec/models/notification_group_spec.rb
|
1092
|
-
- spec/models/
|
1093
|
-
- spec/models/
|
1094
|
-
- spec/models/locale_user_preview_spec.rb
|
1095
|
-
- spec/models/tag_with_stats1_statistics1_spec.rb
|
1096
|
-
- spec/models/translations_verify_parameters_spec.rb
|
1097
|
-
- spec/models/styleguide_update_parameters_spec.rb
|
1098
|
-
- spec/models/locale_details_spec.rb
|
1063
|
+
- spec/models/team_spec.rb
|
1064
|
+
- spec/models/glossary_term_translation_spec.rb
|
1099
1065
|
- spec/models/locale_download_spec.rb
|
1100
|
-
- spec/models/
|
1101
|
-
- spec/models/keys_untag_parameters_spec.rb
|
1102
|
-
- spec/models/translations_search_parameters_spec.rb
|
1103
|
-
- spec/models/space_spec.rb
|
1104
|
-
- spec/models/styleguide_preview_spec.rb
|
1105
|
-
- spec/models/member_spaces_inner_spec.rb
|
1106
|
-
- spec/models/error_spec.rb
|
1107
|
-
- spec/models/translation_parent_spec.rb
|
1108
|
-
- spec/models/job_comment_create_parameters_spec.rb
|
1109
|
-
- spec/models/account_details_spec.rb
|
1110
|
-
- spec/models/repo_sync_spec.rb
|
1111
|
-
- spec/models/blacklisted_key_spec.rb
|
1112
|
-
- spec/models/teams_spaces_create_parameters_spec.rb
|
1113
|
-
- spec/models/screenshot_spec.rb
|
1114
|
-
- spec/models/distribution_preview_spec.rb
|
1115
|
-
- spec/models/tag_spec.rb
|
1116
|
-
- spec/models/project_locales_spec.rb
|
1117
|
-
- spec/models/webhook_update_parameters_spec.rb
|
1118
|
-
- spec/models/invitation_spec.rb
|
1119
|
-
- spec/models/member_update_parameters_spec.rb
|
1120
|
-
- spec/models/member_spec.rb
|
1121
|
-
- spec/models/figma_attachment_update_parameters_spec.rb
|
1122
|
-
- spec/models/release_spec.rb
|
1123
|
-
- spec/models/release_trigger_spec.rb
|
1124
|
-
- spec/models/glossary_term_translation_create_parameters_spec.rb
|
1125
|
-
- spec/models/release_update_parameters_spec.rb
|
1126
|
-
- spec/models/locale_statistics_spec.rb
|
1127
|
-
- spec/models/translation_create_parameters_spec.rb
|
1128
|
-
- spec/models/member_project_detail_spec.rb
|
1129
|
-
- spec/models/current_user_spec.rb
|
1130
|
-
- spec/models/organization_job_template_details_spec.rb
|
1131
|
-
- spec/models/figma_attachment_create_parameters_spec.rb
|
1132
|
-
- spec/models/notification_spec.rb
|
1133
|
-
- spec/models/authorization_spec.rb
|
1066
|
+
- spec/models/job_locale_complete_parameters_spec.rb
|
1134
1067
|
- spec/models/team_create_parameters_spec.rb
|
1135
|
-
- spec/models/
|
1136
|
-
- spec/models/
|
1137
|
-
- spec/models/
|
1138
|
-
- spec/models/
|
1139
|
-
- spec/models/
|
1140
|
-
- spec/models/
|
1141
|
-
- spec/models/
|
1142
|
-
- spec/models/
|
1143
|
-
- spec/models/
|
1144
|
-
- spec/models/
|
1068
|
+
- spec/models/job_template_locales_spec.rb
|
1069
|
+
- spec/models/upload_spec.rb
|
1070
|
+
- spec/models/current_user_spec.rb
|
1071
|
+
- spec/models/teams_spaces_create_parameters_spec.rb
|
1072
|
+
- spec/models/invitation_update_settings_parameters_spec.rb
|
1073
|
+
- spec/models/project_update_parameters_spec.rb
|
1074
|
+
- spec/models/affected_resources_spec.rb
|
1075
|
+
- spec/models/gitlab_sync_export_parameters_spec.rb
|
1076
|
+
- spec/models/distribution_update_parameters_spec.rb
|
1077
|
+
- spec/models/format_spec.rb
|
1078
|
+
- spec/models/team_update_parameters_spec.rb
|
1145
1079
|
- spec/models/gitlab_sync_export_spec.rb
|
1146
|
-
- spec/models/
|
1147
|
-
- spec/models/translation_version_with_user_spec.rb
|
1148
|
-
- spec/models/screenshot_marker_spec.rb
|
1149
|
-
- spec/models/team_spec.rb
|
1150
|
-
- spec/models/bitbucket_sync_export_parameters_spec.rb
|
1151
|
-
- spec/models/locale_preview_spec.rb
|
1152
|
-
- spec/models/subscription_spec.rb
|
1153
|
-
- spec/models/translations_review_parameters_spec.rb
|
1154
|
-
- spec/models/order_create_parameters_spec.rb
|
1155
|
-
- spec/models/projects_quality_performance_score200_response_any_of_errors_inner_spec.rb
|
1080
|
+
- spec/models/teams_projects_create_parameters_spec.rb
|
1156
1081
|
- spec/models/notification_group_detail_spec.rb
|
1157
|
-
- spec/models/
|
1082
|
+
- spec/models/key_preview_spec.rb
|
1083
|
+
- spec/models/styleguide_preview_spec.rb
|
1084
|
+
- spec/models/screenshot_marker_create_parameters_spec.rb
|
1085
|
+
- spec/models/distribution_create_parameters_spec.rb
|
1086
|
+
- spec/models/locale_preview_spec.rb
|
1087
|
+
- spec/models/glossary_term_update_parameters_spec.rb
|
1088
|
+
- spec/models/translation_key_details_spec.rb
|
1089
|
+
- spec/models/job_reopen_parameters_spec.rb
|
1090
|
+
- spec/models/affected_count_spec.rb
|
1091
|
+
- spec/models/webhook_delivery_spec.rb
|
1092
|
+
- spec/models/project_short_spec.rb
|
1093
|
+
- spec/models/search_in_account_parameters_spec.rb
|
1158
1094
|
- spec/models/tag_create_parameters_spec.rb
|
1159
|
-
- spec/models/
|
1160
|
-
- spec/models/
|
1161
|
-
- spec/models/
|
1162
|
-
- spec/models/
|
1163
|
-
- spec/models/
|
1095
|
+
- spec/models/space1_spec.rb
|
1096
|
+
- spec/models/styleguide_create_parameters_spec.rb
|
1097
|
+
- spec/models/member_spec.rb
|
1098
|
+
- spec/models/release_spec.rb
|
1099
|
+
- spec/models/bitbucket_sync_export_response_spec.rb
|
1100
|
+
- spec/models/variable_create_parameters_spec.rb
|
1101
|
+
- spec/models/space_spec.rb
|
1102
|
+
- spec/models/release_update_parameters_spec.rb
|
1103
|
+
- spec/models/screenshot_marker_update_parameters_spec.rb
|
1104
|
+
- spec/models/bitbucket_sync_import_parameters_spec.rb
|
1105
|
+
- spec/models/locale_report_spec.rb
|
1106
|
+
- spec/models/spaces_projects_create_parameters_spec.rb
|
1107
|
+
- spec/models/locale_download_result_spec.rb
|
1108
|
+
- spec/models/styleguide_update_parameters_spec.rb
|
1109
|
+
- spec/models/release_preview_spec.rb
|
1110
|
+
- spec/models/job_locale_update_parameters_spec.rb
|
1111
|
+
- spec/models/tag_with_stats1_statistics1_spec.rb
|
1112
|
+
- spec/models/repo_sync_event_errors_inner_spec.rb
|
1113
|
+
- spec/models/job_details_spec.rb
|
1114
|
+
- spec/models/key_links_batch_destroy_parameters_spec.rb
|
1164
1115
|
- spec/models/key_link_spec.rb
|
1165
|
-
- spec/models/
|
1166
|
-
- spec/models/
|
1167
|
-
- spec/models/
|
1168
|
-
- spec/models/
|
1169
|
-
- spec/models/
|
1170
|
-
- spec/models/project_short_spec.rb
|
1171
|
-
- spec/models/tag_with_stats_spec.rb
|
1172
|
-
- spec/models/member_project_detail_project_roles_inner_spec.rb
|
1173
|
-
- spec/models/job_template_update_parameters_spec.rb
|
1116
|
+
- spec/models/release_create_parameters1_spec.rb
|
1117
|
+
- spec/models/comment_reaction_spec.rb
|
1118
|
+
- spec/models/job_template_locales_create_parameters_spec.rb
|
1119
|
+
- spec/models/key_update_parameters_spec.rb
|
1120
|
+
- spec/models/authorization_update_parameters_spec.rb
|
1174
1121
|
- spec/models/translations_unverify_parameters_spec.rb
|
1175
|
-
- spec/models/
|
1176
|
-
- spec/models/
|
1177
|
-
- spec/models/
|
1178
|
-
- spec/models/
|
1122
|
+
- spec/models/job_template_update_parameters_spec.rb
|
1123
|
+
- spec/models/user_spec.rb
|
1124
|
+
- spec/models/member_update_parameters_spec.rb
|
1125
|
+
- spec/models/keys_exclude_parameters_spec.rb
|
1126
|
+
- spec/models/github_sync_import_parameters_spec.rb
|
1127
|
+
- spec/models/notification_spec.rb
|
1179
1128
|
- spec/models/invitation_create_parameters_spec.rb
|
1180
|
-
- spec/models/
|
1181
|
-
- spec/models/
|
1182
|
-
- spec/models/translation_version_spec.rb
|
1183
|
-
- spec/models/team_short_spec.rb
|
1184
|
-
- spec/models/job_preview_spec.rb
|
1185
|
-
- spec/models/screenshot_update_parameters_spec.rb
|
1129
|
+
- spec/models/teams_users_create_parameters_spec.rb
|
1130
|
+
- spec/models/translation_key_spec.rb
|
1186
1131
|
- spec/models/job_create_parameters_spec.rb
|
1187
|
-
- spec/models/
|
1188
|
-
- spec/models/
|
1189
|
-
- spec/models/
|
1190
|
-
- spec/models/translation_details_spec.rb
|
1191
|
-
- spec/models/screenshot_marker_update_parameters_spec.rb
|
1192
|
-
- spec/models/job_locale_complete_parameters_spec.rb
|
1193
|
-
- spec/models/projects_quality_performance_score200_response_spec.rb
|
1132
|
+
- spec/models/gitlab_sync_import_parameters_spec.rb
|
1133
|
+
- spec/models/job_template_preview_spec.rb
|
1134
|
+
- spec/models/translations_exclude_parameters_spec.rb
|
1194
1135
|
- spec/models/translation_review_parameters_spec.rb
|
1195
|
-
- spec/models/
|
1196
|
-
- spec/models/
|
1197
|
-
- spec/models/
|
1136
|
+
- spec/models/bitbucket_sync_spec.rb
|
1137
|
+
- spec/models/account_search_result_spec.rb
|
1138
|
+
- spec/models/comment_spec.rb
|
1139
|
+
- spec/models/custom_metadata_property_spec.rb
|
1140
|
+
- spec/models/error_error_spec.rb
|
1141
|
+
- spec/models/member_project_detail_spec.rb
|
1142
|
+
- spec/models/user_preview_spec.rb
|
1143
|
+
- spec/models/translation_update_parameters_spec.rb
|
1144
|
+
- spec/models/gitlab_sync_history_spec.rb
|
1145
|
+
- spec/models/translation_exclude_parameters_spec.rb
|
1146
|
+
- spec/models/job_complete_parameters_spec.rb
|
1198
1147
|
- spec/models/upload_summary_spec.rb
|
1199
|
-
- spec/models/
|
1200
|
-
- spec/models/
|
1201
|
-
- spec/models/
|
1148
|
+
- spec/models/projects_quality_performance_score200_response_spec.rb
|
1149
|
+
- spec/models/custom_metadata_properties_update_parameters_spec.rb
|
1150
|
+
- spec/models/comments_list_parameters_spec.rb
|
1151
|
+
- spec/models/tag_with_stats1_statistics_spec.rb
|
1152
|
+
- spec/models/comment_create_parameters_spec.rb
|
1153
|
+
- spec/models/icu_spec.rb
|
1154
|
+
- spec/models/project_locales_spec.rb
|
1155
|
+
- spec/models/projects_quality_performance_score200_response_any_of_spec.rb
|
1156
|
+
- spec/models/tag_spec.rb
|
1202
1157
|
- spec/models/figma_attachment_spec.rb
|
1203
|
-
- spec/models/
|
1204
|
-
- spec/models/
|
1205
|
-
- spec/models/organization_job_template_spec.rb
|
1206
|
-
- spec/models/project_report_spec.rb
|
1207
|
-
- spec/models/translation_spec.rb
|
1208
|
-
- spec/models/webhook_create_parameters_spec.rb
|
1209
|
-
- spec/models/bitbucket_sync_import_parameters_spec.rb
|
1210
|
-
- spec/models/translation_key_spec.rb
|
1158
|
+
- spec/models/order_confirm_parameters_spec.rb
|
1159
|
+
- spec/models/job_comment_create_parameters_spec.rb
|
1211
1160
|
- spec/models/keys_tag_parameters_spec.rb
|
1212
|
-
- spec/models/
|
1161
|
+
- spec/models/projects_quality_performance_score_request_spec.rb
|
1162
|
+
- spec/models/custom_metadata_data_type_spec.rb
|
1213
1163
|
- spec/models/styleguide_spec.rb
|
1214
|
-
- spec/models/
|
1215
|
-
- spec/models/
|
1216
|
-
- spec/models/
|
1164
|
+
- spec/models/figma_attachment_create_parameters_spec.rb
|
1165
|
+
- spec/models/member_spaces_inner_spec.rb
|
1166
|
+
- spec/models/job_locale_reopen_parameters_spec.rb
|
1167
|
+
- spec/models/release_update_parameters1_spec.rb
|
1168
|
+
- spec/models/invitation_update_parameters_spec.rb
|
1169
|
+
- spec/models/blacklisted_key_create_parameters_spec.rb
|
1170
|
+
- spec/models/branch_name_spec.rb
|
1217
1171
|
- spec/models/space_create_parameters_spec.rb
|
1172
|
+
- spec/models/icu_skeleton_parameters_spec.rb
|
1173
|
+
- spec/models/repo_sync_event_spec.rb
|
1174
|
+
- spec/models/branch_create_parameters_spec.rb
|
1175
|
+
- spec/models/custom_metadata_properties_create_parameters_spec.rb
|
1176
|
+
- spec/models/project_details_spec.rb
|
1177
|
+
- spec/models/authorization_create_parameters_spec.rb
|
1178
|
+
- spec/models/release_create_parameters_spec.rb
|
1179
|
+
- spec/models/distribution_spec.rb
|
1180
|
+
- spec/models/error_spec.rb
|
1218
1181
|
- spec/models/translation_verify_parameters_spec.rb
|
1219
|
-
- spec/models/
|
1220
|
-
- spec/models/
|
1221
|
-
- spec/models/
|
1222
|
-
- spec/models/variable_create_parameters_spec.rb
|
1223
|
-
- spec/models/comment_spec.rb
|
1224
|
-
- spec/models/job_locale_reopen_parameters_spec.rb
|
1225
|
-
- spec/models/job_template_spec.rb
|
1226
|
-
- spec/models/space_update_parameters_spec.rb
|
1227
|
-
- spec/models/key_create_parameters_spec.rb
|
1228
|
-
- spec/models/job_template_preview_spec.rb
|
1229
|
-
- spec/models/comments_list_parameters_spec.rb
|
1182
|
+
- spec/models/organization_job_template_locale_update_parameters_spec.rb
|
1183
|
+
- spec/models/webhook_update_parameters_spec.rb
|
1184
|
+
- spec/models/project_spec.rb
|
1230
1185
|
- spec/models/job_template_details_spec.rb
|
1231
|
-
- spec/models/
|
1186
|
+
- spec/models/gitlab_sync_spec.rb
|
1187
|
+
- spec/models/translations_verify_parameters_spec.rb
|
1188
|
+
- spec/models/github_sync_export_parameters_spec.rb
|
1189
|
+
- spec/models/repo_sync_spec.rb
|
1190
|
+
- spec/models/job_start_parameters_spec.rb
|
1191
|
+
- spec/models/member_project_detail_project_roles_inner_spec.rb
|
1192
|
+
- spec/models/job_preview_spec.rb
|
1193
|
+
- spec/models/organization_job_template_spec.rb
|
1232
1194
|
- spec/models/comment_update_parameters_spec.rb
|
1233
|
-
- spec/models/gitlab_sync_import_parameters_spec.rb
|
1234
|
-
- spec/models/release_update_parameters1_spec.rb
|
1235
|
-
- spec/models/key_links_index400_response_spec.rb
|
1236
|
-
- spec/models/glossary_term_translation_spec.rb
|
1237
1195
|
- spec/models/locale_download_create_parameters_spec.rb
|
1238
|
-
- spec/models/
|
1196
|
+
- spec/models/locale_details_spec.rb
|
1197
|
+
- spec/models/projects_quality_performance_score200_response_any_of_errors_inner_spec.rb
|
1198
|
+
- spec/models/job_template_locale_update_parameters_spec.rb
|
1199
|
+
- spec/models/bitbucket_sync_export_parameters_spec.rb
|
1200
|
+
- spec/models/translation_include_parameters_spec.rb
|
1201
|
+
- spec/models/custom_metadata_property_create422_response_spec.rb
|
1202
|
+
- spec/models/key_links_create_parameters_spec.rb
|
1203
|
+
- spec/models/key_links_index400_response_spec.rb
|
1204
|
+
- spec/models/blacklisted_key_spec.rb
|
1205
|
+
- spec/models/branch_spec.rb
|
1206
|
+
- spec/models/glossary_update_parameters_spec.rb
|
1207
|
+
- spec/models/locale_create_parameters_spec.rb
|
1208
|
+
- spec/models/locale_preview1_spec.rb
|
1209
|
+
- spec/models/glossary_term_translation_update_parameters_spec.rb
|
1210
|
+
- spec/models/glossary_create_parameters_spec.rb
|
1211
|
+
- spec/models/translation_order_spec.rb
|
1212
|
+
- spec/models/account_details_spec.rb
|
1213
|
+
- spec/models/figma_attachment_update_parameters_spec.rb
|
1214
|
+
- spec/models/blacklisted_key_update_parameters_spec.rb
|
1215
|
+
- spec/models/organization_job_template_locales_create_parameters_spec.rb
|
1216
|
+
- spec/models/replies_list_parameters_spec.rb
|
1217
|
+
- spec/models/locale_team_preview_spec.rb
|
1218
|
+
- spec/models/locale_user_preview_spec.rb
|
1219
|
+
- spec/models/distribution_preview_spec.rb
|
1220
|
+
- spec/models/job_keys_create_parameters_spec.rb
|
1221
|
+
- spec/models/organization_job_template_create_parameters_spec.rb
|
1222
|
+
- spec/models/locale_spec.rb
|
1223
|
+
- spec/models/custom_metadata_property_create422_response_errors_inner_spec.rb
|
1224
|
+
- spec/models/glossary_term_create_parameters_spec.rb
|
1225
|
+
- spec/models/glossary_term_translation_create_parameters_spec.rb
|
1226
|
+
- spec/models/space_update_parameters_spec.rb
|
1227
|
+
- spec/models/webhook_spec.rb
|
1228
|
+
- spec/models/project_report_spec.rb
|
1229
|
+
- spec/models/translation_details_spec.rb
|
1230
|
+
- spec/models/account_spec.rb
|
1231
|
+
- spec/models/screenshot_spec.rb
|
1232
|
+
- spec/models/job_spec.rb
|
1233
|
+
- spec/models/translations_search_parameters_spec.rb
|
1234
|
+
- spec/models/team_detail_spec.rb
|
1235
|
+
- spec/models/keys_search_parameters_spec.rb
|
1236
|
+
- spec/models/comment_mark_read_parameters_spec.rb
|
1237
|
+
- spec/models/invitation_spec.rb
|
1238
|
+
- spec/models/keys_untag_parameters_spec.rb
|
1239
1239
|
- spec/spec_helper.rb
|