Skip to content

Commit b987a2c

Browse files
author
Phrase
committed
Deploying from phrase/openapi@b8121547
1 parent 049ee68 commit b987a2c

File tree

8 files changed

+11
-5
lines changed

8 files changed

+11
-5
lines changed

docs/KeyCreateParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ instance = Phrase::KeyCreateParameters.new(branch: my-feature-branch,
3535
data_type: number,
3636
tags: awesome-feature,needs-proofreading,
3737
max_characters_allowed: 140,
38-
screenshot: [B@19a5d711,
38+
screenshot: [B@7bb92a71,
3939
remove_screenshot: null,
4040
unformatted: null,
4141
default_translation_content: Default translation content,

docs/KeyUpdateParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ instance = Phrase::KeyUpdateParameters.new(branch: my-feature-branch,
3434
data_type: number,
3535
tags: awesome-feature,needs-proofreading,
3636
max_characters_allowed: 140,
37-
screenshot: [B@7c89133,
37+
screenshot: [B@3bbb5b2,
3838
remove_screenshot: null,
3939
unformatted: null,
4040
xml_space_preserve: null,

docs/ProjectCreateParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ instance = Phrase::ProjectCreateParameters.new(name: My Android Project,
4040
main_format: yml,
4141
media: Python,
4242
shares_translation_memory: true,
43-
project_image: [B@3a4dea70,
43+
project_image: [B@15cf663c,
4444
remove_project_image: null,
4545
account_id: abcd1234,
4646
point_of_contact: abcd1234,

docs/ProjectUpdateParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ instance = Phrase::ProjectUpdateParameters.new(account_id: abcd1234,
4141
main_format: yml,
4242
media: Python,
4343
shares_translation_memory: true,
44-
project_image: [B@b42a630,
44+
project_image: [B@3c288a4e,
4545
remove_project_image: false,
4646
workflow: review,
4747
machine_translation_enabled: true,

docs/ScreenshotUpdateParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require 'Phrase'
1717
instance = Phrase::ScreenshotUpdateParameters.new(branch: my-feature-branch,
1818
name: A screenshot name,
1919
description: A screenshot description,
20-
filename: [B@4ceeba96)
20+
filename: [B@1529406e)
2121
```
2222

2323

docs/TagsApi.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ opts = {
233233
x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
234234
page: 1, # Integer | Page number
235235
per_page: 25, # Integer | Limit on the number of objects to be returned, between 1 and 100. 25 by default
236+
exclude_system_tags: true, # Boolean | excludes tags generated by the system, e.g. job, upload or figma tags
236237
branch: 'my-feature-branch' # String | specify the branch to use
237238
}
238239

@@ -254,6 +255,7 @@ Name | Type | Description | Notes
254255
**x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
255256
**page** | **Integer**| Page number | [optional]
256257
**per_page** | **Integer**| Limit on the number of objects to be returned, between 1 and 100. 25 by default | [optional]
258+
**exclude_system_tags** | **Boolean**| excludes tags generated by the system, e.g. job, upload or figma tags | [optional]
257259
**branch** | **String**| specify the branch to use | [optional]
258260

259261
### Return type

lib/phrase/api/tags_api.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ def tag_show_with_http_info(project_id, name, opts = {})
236236
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
237237
# @option opts [Integer] :page Page number
238238
# @option opts [Integer] :per_page Limit on the number of objects to be returned, between 1 and 100. 25 by default
239+
# @option opts [Boolean] :exclude_system_tags excludes tags generated by the system, e.g. job, upload or figma tags
239240
# @option opts [String] :branch specify the branch to use
240241
# @return [Array<Tag>]
241242
def tags_list(project_id, opts = {})
@@ -250,6 +251,7 @@ def tags_list(project_id, opts = {})
250251
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
251252
# @option opts [Integer] :page Page number
252253
# @option opts [Integer] :per_page Limit on the number of objects to be returned, between 1 and 100. 25 by default
254+
# @option opts [Boolean] :exclude_system_tags excludes tags generated by the system, e.g. job, upload or figma tags
253255
# @option opts [String] :branch specify the branch to use
254256
# @return [Array<(Response<(Array<Tag>)>, Integer, Hash)>] Response<(Array<Tag>)> data, response status code and response headers
255257
def tags_list_with_http_info(project_id, opts = {})
@@ -267,6 +269,7 @@ def tags_list_with_http_info(project_id, opts = {})
267269
query_params = opts[:query_params] || {}
268270
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
269271
query_params[:'per_page'] = opts[:'per_page'] if !opts[:'per_page'].nil?
272+
query_params[:'exclude_system_tags'] = opts[:'exclude_system_tags'] if !opts[:'exclude_system_tags'].nil?
270273
query_params[:'branch'] = opts[:'branch'] if !opts[:'branch'].nil?
271274

272275
# header parameters

spec/api/tags_api_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
# @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
7373
# @option opts [Integer] :page Page number
7474
# @option opts [Integer] :per_page Limit on the number of objects to be returned, between 1 and 100. 25 by default
75+
# @option opts [Boolean] :exclude_system_tags excludes tags generated by the system, e.g. job, upload or figma tags
7576
# @option opts [String] :branch specify the branch to use
7677
# @return [Array<Tag>]
7778
describe 'tags_list test' do

0 commit comments

Comments
 (0)