phrase 4.23.0 → 4.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c2d7f86f0f7dbfbe61925040d04386a68efb04c1d5e20483bf7200eea44c9ca
4
- data.tar.gz: 96947f9a1ec1f0665202e8d8a17a5f48d29a0b362e1b556d1c5495bef65b76a5
3
+ metadata.gz: 8d213192723604fbb4ef7a90d6a9f29acc732851fef5f2aca3fd4ca40b12c15d
4
+ data.tar.gz: 187feac87a11747ede044a04da9d66304dc683e66d6055c83091a570a2342e77
5
5
  SHA512:
6
- metadata.gz: ea5aa89229b25f9f7a019ed5f7222ce47d7f030b95b94f2db0ee70e42649c9840c161102d1c13c2f55e332ff9b1a4d3f2bb61f87d46a0d4ac66be38855d04eaa
7
- data.tar.gz: 9bacde9214b062e0aec9aeb7ff320e17f0afb823d36f314a06d3ae2d0dd72676ea6e44ddda55cc421b26317f32b9dd2bc533bec561da834a76bfa1a4140e5a42
6
+ metadata.gz: 1c2184c4658be521ee20da21c7e10545aa9be346d993e2f35424188686e2584ade0e47d950f84f7c5116ea3098b177c829c8598281851ca9e03b78a716c6777d
7
+ data.tar.gz: 633b174f29f95e59035fdc6a7beb8fbc789cc9b79ddd314c4dcbd640e2a2a198d950281d0e05265812126f3871f35a6e4d6572150727211fa718c51c2718b123
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.24.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.23.0...ruby-v4.24.0) (2026-06-11)
4
+
5
+
6
+ ### Features
7
+
8
+ * **API:** add fallback_for_unverified_translations param to locale d… ([#1148](https://github.com/phrase/strings-openapi/issues/1148)) ([9ef6248](https://github.com/phrase/strings-openapi/commit/9ef6248aae14d9bd65eee9ea3554f03c6f9331cb))
9
+
3
10
  ## [4.23.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.22.0...ruby-v4.23.0) (2026-06-04)
4
11
 
5
12
 
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: 4.23.0
10
+ - Package version: 4.24.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-4.23.0.gem
59
+ gem install ./phrase-4.24.0.gem
60
60
  ```
61
61
 
62
- (for development, run `gem install --dev ./phrase-4.23.0.gem` to install the development dependencies)
62
+ (for development, run `gem install --dev ./phrase-4.24.0.gem` to install the development dependencies)
63
63
 
64
64
  ## Getting Started
65
65
 
@@ -40,7 +40,7 @@ instance = Phrase::KeyCreateParameters.new(branch: my-feature-branch,
40
40
  data_type: number,
41
41
  tags: awesome-feature,needs-proofreading,
42
42
  max_characters_allowed: 140,
43
- screenshot: [B@6e0576da,
43
+ screenshot: [B@5db553f9,
44
44
  remove_screenshot: null,
45
45
  unformatted: null,
46
46
  default_translation_content: Default translation content,
@@ -38,7 +38,7 @@ instance = Phrase::KeyUpdateParameters.new(branch: my-feature-branch,
38
38
  data_type: number,
39
39
  tags: awesome-feature,needs-proofreading,
40
40
  max_characters_allowed: 140,
41
- screenshot: [B@20b6e853,
41
+ screenshot: [B@264e6ac3,
42
42
  remove_screenshot: null,
43
43
  unformatted: null,
44
44
  xml_space_preserve: null,
@@ -16,8 +16,9 @@ Name | Type | Description | Notes
16
16
  **include_unverified_translations** | **Boolean** | if set to false unverified translations are excluded | [optional]
17
17
  **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]
18
18
  **locale_ids** | **Array<String>** | Locale IDs or locale names | [optional]
19
- **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 `true`. Mutually exclusive with `use_locale_fallback`. | [optional]
20
- **use_locale_fallback** | **Boolean** | If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true`. Mutually exclusive with `fallback_locale_id`. | [optional]
19
+ **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 `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `use_locale_fallback`. | [optional]
20
+ **use_locale_fallback** | **Boolean** | If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `fallback_locale_id`. | [optional]
21
+ **fallback_for_unverified_translations** | **Boolean** | If set to `true`, translations in a non-final state are replaced by the fallback locale's translation at export time. In the simple workflow, \"non-final\" means `unverified`. In the review workflow, it additionally includes `translated` (awaiting review). No stored translations are modified. Requires `fallback_locale_id` or `use_locale_fallback` to be set; a `422` validation error is returned otherwise. | [optional]
21
22
  **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 `tag` parameter indicating a specific job. | [optional]
22
23
  **custom_metadata_filters** | **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. | [optional]
23
24
  **updated_since** | **String** | Only include translations and keys that have been updated since the given date. The date must be in ISO 8601 format (e.g., `2023-01-01T00:00:00Z`). | [optional]
@@ -41,6 +42,7 @@ instance = Phrase::LocaleDownloadCreateParameters.new(file_format: yml,
41
42
  locale_ids: ["de","en"],
42
43
  fallback_locale_id: abcd1234abcd1234abcd1234abcd1234,
43
44
  use_locale_fallback: false,
45
+ fallback_for_unverified_translations: false,
44
46
  source_locale_id: abcd1234abcd1234abcd1234abcd1234,
45
47
  custom_metadata_filters: null,
46
48
  updated_since: 2023-01-01T00:00:00Z)
data/docs/LocalesApi.md CHANGED
@@ -251,8 +251,9 @@ opts = {
251
251
  skip_unverified_translations: true, # Boolean | Indicates whether the locale file should skip all unverified translations. This parameter is deprecated and should be replaced with `include_unverified_translations`.
252
252
  include_unverified_translations: true, # Boolean | if set to false unverified translations are excluded
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
- 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 `true`. Mutually exclusive with `use_locale_fallback`.
255
- use_locale_fallback: true, # Boolean | If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true`. Mutually exclusive with `fallback_locale_id`.
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 `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `use_locale_fallback`.
255
+ use_locale_fallback: true, # Boolean | If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `fallback_locale_id`.
256
+ fallback_for_unverified_translations: true, # Boolean | If set to `true`, translations in a non-final state are replaced by the fallback locale's translation at export time. In the simple workflow, \"non-final\" means `unverified`. In the review workflow, it additionally includes `translated` (awaiting review). No stored translations are modified. Requires `fallback_locale_id` or `use_locale_fallback` to be set; a `422` validation error is returned otherwise.
256
257
  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 `tag` parameter indicating a specific job.
257
258
  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.
258
259
  filter_by_prefix: true, # Boolean | Only download translation keys containing the specified prefix, and remove the prefix from the generated file.
@@ -294,8 +295,9 @@ Name | Type | Description | Notes
294
295
  **skip_unverified_translations** | **Boolean**| Indicates whether the locale file should skip all unverified translations. This parameter is deprecated and should be replaced with `include_unverified_translations`. | [optional]
295
296
  **include_unverified_translations** | **Boolean**| if set to false unverified translations are excluded | [optional]
296
297
  **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]
297
- **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 `true`. Mutually exclusive with `use_locale_fallback`. | [optional]
298
- **use_locale_fallback** | **Boolean**| If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true`. Mutually exclusive with `fallback_locale_id`. | [optional]
298
+ **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 `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `use_locale_fallback`. | [optional]
299
+ **use_locale_fallback** | **Boolean**| If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `fallback_locale_id`. | [optional]
300
+ **fallback_for_unverified_translations** | **Boolean**| If set to `true`, translations in a non-final state are replaced by the fallback locale's translation at export time. In the simple workflow, \"non-final\" means `unverified`. In the review workflow, it additionally includes `translated` (awaiting review). No stored translations are modified. Requires `fallback_locale_id` or `use_locale_fallback` to be set; a `422` validation error is returned otherwise. | [optional]
299
301
  **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 `tag` parameter indicating a specific job. | [optional]
300
302
  **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]
301
303
  **filter_by_prefix** | **Boolean**| Only download translation keys containing the specified prefix, and remove the prefix from the generated file. | [optional]
@@ -47,7 +47,7 @@ instance = Phrase::ProjectCreateParameters.new(name: My Android Project,
47
47
  main_format: yml,
48
48
  media: Python,
49
49
  shares_translation_memory: true,
50
- project_image: [B@35afca01,
50
+ project_image: [B@592bc6a7,
51
51
  remove_project_image: null,
52
52
  account_id: abcd1234,
53
53
  point_of_contact: abcd1234,
@@ -48,7 +48,7 @@ instance = Phrase::ProjectUpdateParameters.new(account_id: abcd1234,
48
48
  main_format: yml,
49
49
  media: Python,
50
50
  shares_translation_memory: true,
51
- project_image: [B@2c4c5627,
51
+ project_image: [B@519552ae,
52
52
  remove_project_image: false,
53
53
  workflow: review,
54
54
  machine_translation_enabled: true,
@@ -17,7 +17,7 @@ require 'Phrase'
17
17
  instance = Phrase::ScreenshotUpdateParameters.new(branch: my-feature-branch,
18
18
  name: A screenshot name,
19
19
  description: A screenshot description,
20
- filename: [B@25b14faf)
20
+ filename: [B@5a2cb8e5)
21
21
  ```
22
22
 
23
23
 
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
7
7
  **locales_created** | **Integer** | | [optional]
8
8
  **translation_keys_created** | **Integer** | | [optional]
9
9
  **translation_keys_updated** | **Integer** | | [optional]
10
- **translation_keys_unmentioned** | **Integer** | The number of translation keys in the project that were not mentioned in the upload. Note: this field is not calculated (and shows 0) if the upload contains more than 10,000 keys. | [optional]
10
+ **translation_keys_unmentioned** | **Integer** | The number of translation keys in the project that were not mentioned in the upload. Note: this field is not calculated (and shows 0) if the upload contains more than 100,000 keys. | [optional]
11
11
  **translations_created** | **Integer** | | [optional]
12
12
  **translations_updated** | **Integer** | | [optional]
13
13
  **tags_created** | **Integer** | | [optional]
@@ -250,8 +250,9 @@ module Phrase
250
250
  # @option opts [Boolean] :skip_unverified_translations Indicates whether the locale file should skip all unverified translations. This parameter is deprecated and should be replaced with `include_unverified_translations`.
251
251
  # @option opts [Boolean] :include_unverified_translations if set to false unverified translations are excluded
252
252
  # @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.
253
- # @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 `true`. Mutually exclusive with `use_locale_fallback`.
254
- # @option opts [Boolean] :use_locale_fallback If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true`. Mutually exclusive with `fallback_locale_id`.
253
+ # @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 `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `use_locale_fallback`.
254
+ # @option opts [Boolean] :use_locale_fallback If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `fallback_locale_id`.
255
+ # @option opts [Boolean] :fallback_for_unverified_translations If set to `true`, translations in a non-final state are replaced by the fallback locale's translation at export time. In the simple workflow, \"non-final\" means `unverified`. In the review workflow, it additionally includes `translated` (awaiting review). No stored translations are modified. Requires `fallback_locale_id` or `use_locale_fallback` to be set; a `422` validation error is returned otherwise.
255
256
  # @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 `tag` parameter indicating a specific job.
256
257
  # @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.
257
258
  # @option opts [Boolean] :filter_by_prefix Only download translation keys containing the specified prefix, and remove the prefix from the generated file.
@@ -286,8 +287,9 @@ module Phrase
286
287
  # @option opts [Boolean] :skip_unverified_translations Indicates whether the locale file should skip all unverified translations. This parameter is deprecated and should be replaced with `include_unverified_translations`.
287
288
  # @option opts [Boolean] :include_unverified_translations if set to false unverified translations are excluded
288
289
  # @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.
289
- # @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 `true`. Mutually exclusive with `use_locale_fallback`.
290
- # @option opts [Boolean] :use_locale_fallback If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true`. Mutually exclusive with `fallback_locale_id`.
290
+ # @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 `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `use_locale_fallback`.
291
+ # @option opts [Boolean] :use_locale_fallback If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `fallback_locale_id`.
292
+ # @option opts [Boolean] :fallback_for_unverified_translations If set to `true`, translations in a non-final state are replaced by the fallback locale's translation at export time. In the simple workflow, \"non-final\" means `unverified`. In the review workflow, it additionally includes `translated` (awaiting review). No stored translations are modified. Requires `fallback_locale_id` or `use_locale_fallback` to be set; a `422` validation error is returned otherwise.
291
293
  # @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 `tag` parameter indicating a specific job.
292
294
  # @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.
293
295
  # @option opts [Boolean] :filter_by_prefix Only download translation keys containing the specified prefix, and remove the prefix from the generated file.
@@ -328,6 +330,7 @@ module Phrase
328
330
  query_params[:'use_last_reviewed_version'] = opts[:'use_last_reviewed_version'] if !opts[:'use_last_reviewed_version'].nil?
329
331
  query_params[:'fallback_locale_id'] = opts[:'fallback_locale_id'] if !opts[:'fallback_locale_id'].nil?
330
332
  query_params[:'use_locale_fallback'] = opts[:'use_locale_fallback'] if !opts[:'use_locale_fallback'].nil?
333
+ query_params[:'fallback_for_unverified_translations'] = opts[:'fallback_for_unverified_translations'] if !opts[:'fallback_for_unverified_translations'].nil?
331
334
  query_params[:'source_locale_id'] = opts[:'source_locale_id'] if !opts[:'source_locale_id'].nil?
332
335
  query_params[:'translation_key_prefix'] = opts[:'translation_key_prefix'] if !opts[:'translation_key_prefix'].nil?
333
336
  query_params[:'filter_by_prefix'] = opts[:'filter_by_prefix'] if !opts[:'filter_by_prefix'].nil?
@@ -38,12 +38,15 @@ module Phrase
38
38
  # Locale IDs or locale names
39
39
  attr_accessor :locale_ids
40
40
 
41
- # 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 `true`. Mutually exclusive with `use_locale_fallback`.
41
+ # 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 `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `use_locale_fallback`.
42
42
  attr_accessor :fallback_locale_id
43
43
 
44
- # If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true`. Mutually exclusive with `fallback_locale_id`.
44
+ # If a key has no translation in the locale being downloaded, the translation in the fallback locale will be used. Fallback locale is defined in [locale's settings](/en/api/strings/locales/update-a-locale#body-fallback-locale-id). Requires `include_empty_translations` to be set to `true` unless `fallback_for_unverified_translations` is also set to `true`. Mutually exclusive with `fallback_locale_id`.
45
45
  attr_accessor :use_locale_fallback
46
46
 
47
+ # If set to `true`, translations in a non-final state are replaced by the fallback locale's translation at export time. In the simple workflow, \"non-final\" means `unverified`. In the review workflow, it additionally includes `translated` (awaiting review). No stored translations are modified. Requires `fallback_locale_id` or `use_locale_fallback` to be set; a `422` validation error is returned otherwise.
48
+ attr_accessor :fallback_for_unverified_translations
49
+
47
50
  # 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 `tag` parameter indicating a specific job.
48
51
  attr_accessor :source_locale_id
49
52
 
@@ -70,6 +73,7 @@ module Phrase
70
73
  :'locale_ids' => :'locale_ids',
71
74
  :'fallback_locale_id' => :'fallback_locale_id',
72
75
  :'use_locale_fallback' => :'use_locale_fallback',
76
+ :'fallback_for_unverified_translations' => :'fallback_for_unverified_translations',
73
77
  :'source_locale_id' => :'source_locale_id',
74
78
  :'custom_metadata_filters' => :'custom_metadata_filters',
75
79
  :'updated_since' => :'updated_since'
@@ -93,6 +97,7 @@ module Phrase
93
97
  :'locale_ids' => :'Array<String>',
94
98
  :'fallback_locale_id' => :'String',
95
99
  :'use_locale_fallback' => :'Boolean',
100
+ :'fallback_for_unverified_translations' => :'Boolean',
96
101
  :'source_locale_id' => :'String',
97
102
  :'custom_metadata_filters' => :'Object',
98
103
  :'updated_since' => :'String'
@@ -178,6 +183,10 @@ module Phrase
178
183
  self.use_locale_fallback = attributes[:'use_locale_fallback']
179
184
  end
180
185
 
186
+ if attributes.key?(:'fallback_for_unverified_translations')
187
+ self.fallback_for_unverified_translations = attributes[:'fallback_for_unverified_translations']
188
+ end
189
+
181
190
  if attributes.key?(:'source_locale_id')
182
191
  self.source_locale_id = attributes[:'source_locale_id']
183
192
  end
@@ -228,6 +237,7 @@ module Phrase
228
237
  locale_ids == o.locale_ids &&
229
238
  fallback_locale_id == o.fallback_locale_id &&
230
239
  use_locale_fallback == o.use_locale_fallback &&
240
+ fallback_for_unverified_translations == o.fallback_for_unverified_translations &&
231
241
  source_locale_id == o.source_locale_id &&
232
242
  custom_metadata_filters == o.custom_metadata_filters &&
233
243
  updated_since == o.updated_since
@@ -242,7 +252,7 @@ module Phrase
242
252
  # Calculates hash code according to all attributes.
243
253
  # @return [Integer] Hash code
244
254
  def hash
245
- [file_format, branch, tags, include_empty_translations, exclude_empty_zero_forms, include_translated_keys, keep_notranslate_tags, format_options, encoding, include_unverified_translations, use_last_reviewed_version, locale_ids, fallback_locale_id, use_locale_fallback, source_locale_id, custom_metadata_filters, updated_since].hash
255
+ [file_format, branch, tags, include_empty_translations, exclude_empty_zero_forms, include_translated_keys, keep_notranslate_tags, format_options, encoding, include_unverified_translations, use_last_reviewed_version, locale_ids, fallback_locale_id, use_locale_fallback, fallback_for_unverified_translations, source_locale_id, custom_metadata_filters, updated_since].hash
246
256
  end
247
257
 
248
258
  # Builds the object from hash
@@ -8,7 +8,7 @@ module Phrase
8
8
 
9
9
  attr_accessor :translation_keys_updated
10
10
 
11
- # The number of translation keys in the project that were not mentioned in the upload. Note: this field is not calculated (and shows 0) if the upload contains more than 10,000 keys.
11
+ # The number of translation keys in the project that were not mentioned in the upload. Note: this field is not calculated (and shows 0) if the upload contains more than 100,000 keys.
12
12
  attr_accessor :translation_keys_unmentioned
13
13
 
14
14
  attr_accessor :translations_created
@@ -1,3 +1,3 @@
1
1
  module Phrase
2
- VERSION = '4.23.0'
2
+ VERSION = '4.24.0'
3
3
  end
@@ -104,6 +104,12 @@ describe 'LocaleDownloadCreateParameters' do
104
104
  end
105
105
  end
106
106
 
107
+ describe 'test attribute "fallback_for_unverified_translations"' do
108
+ it 'should work' do
109
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
+ end
111
+ end
112
+
107
113
  describe 'test attribute "source_locale_id"' do
108
114
  it 'should work' do
109
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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: 4.23.0
4
+ version: 4.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phrase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-04 00:00:00.000000000 Z
11
+ date: 2026-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -970,290 +970,290 @@ summary: You can collaborate on language file translation with your team or orde
970
970
  locale files, tag keys or interact in other ways with the localization data stored
971
971
  in Phrase Strings for your account.
972
972
  test_files:
973
- - spec/api/figma_attachments_api_spec.rb
974
- - spec/api/webhook_deliveries_api_spec.rb
975
- - spec/api/distributions_api_spec.rb
976
- - spec/api/translations_api_spec.rb
977
- - spec/api/tags_api_spec.rb
973
+ - spec/api/orders_api_spec.rb
974
+ - spec/api/repo_syncs_api_spec.rb
975
+ - spec/api/screenshot_markers_api_spec.rb
976
+ - spec/api/glossary_term_translations_api_spec.rb
978
977
  - spec/api/notification_groups_api_spec.rb
979
- - spec/api/notifications_api_spec.rb
980
- - spec/api/quality_performance_score_api_spec.rb
981
- - spec/api/documents_api_spec.rb
978
+ - spec/api/webhooks_api_spec.rb
982
979
  - spec/api/comment_replies_api_spec.rb
983
- - spec/api/uploads_api_spec.rb
980
+ - spec/api/notifications_api_spec.rb
981
+ - spec/api/organization_job_templates_api_spec.rb
982
+ - spec/api/accounts_api_spec.rb
983
+ - spec/api/blacklisted_keys_api_spec.rb
984
+ - spec/api/tags_api_spec.rb
985
+ - spec/api/job_comments_api_spec.rb
986
+ - spec/api/style_guides_api_spec.rb
987
+ - spec/api/release_triggers_api_spec.rb
988
+ - spec/api/variables_api_spec.rb
989
+ - spec/api/webhook_deliveries_api_spec.rb
990
+ - spec/api/custom_metadata_api_spec.rb
984
991
  - spec/api/invitations_api_spec.rb
992
+ - spec/api/keys_api_spec.rb
993
+ - spec/api/linked_keys_api_spec.rb
985
994
  - spec/api/glossary_terms_api_spec.rb
986
- - spec/api/repo_syncs_api_spec.rb
995
+ - spec/api/job_annotations_api_spec.rb
996
+ - spec/api/spaces_api_spec.rb
987
997
  - spec/api/job_template_locales_api_spec.rb
988
- - spec/api/job_comments_api_spec.rb
989
998
  - spec/api/icu_api_spec.rb
990
- - spec/api/releases_api_spec.rb
991
- - spec/api/job_templates_api_spec.rb
992
- - spec/api/jobs_api_spec.rb
993
- - spec/api/job_annotations_api_spec.rb
994
999
  - spec/api/upload_batches_api_spec.rb
995
- - spec/api/screenshots_api_spec.rb
996
- - spec/api/accounts_api_spec.rb
997
- - spec/api/webhooks_api_spec.rb
998
- - spec/api/locales_api_spec.rb
999
- - spec/api/teams_api_spec.rb
1000
+ - spec/api/users_api_spec.rb
1001
+ - spec/api/organization_job_template_locales_api_spec.rb
1002
+ - spec/api/keys_figma_attachments_api_spec.rb
1000
1003
  - spec/api/glossaries_api_spec.rb
1001
1004
  - spec/api/branches_api_spec.rb
1002
- - spec/api/authorizations_api_spec.rb
1003
- - spec/api/organization_job_templates_api_spec.rb
1004
- - spec/api/orders_api_spec.rb
1005
- - spec/api/custom_metadata_api_spec.rb
1006
- - spec/api/glossary_term_translations_api_spec.rb
1007
- - spec/api/job_locales_api_spec.rb
1008
- - spec/api/release_triggers_api_spec.rb
1009
- - spec/api/linked_keys_api_spec.rb
1010
- - spec/api/versions_history_api_spec.rb
1005
+ - spec/api/automations_api_spec.rb
1006
+ - spec/api/teams_api_spec.rb
1011
1007
  - spec/api/members_api_spec.rb
1012
- - spec/api/blacklisted_keys_api_spec.rb
1008
+ - spec/api/quality_performance_score_api_spec.rb
1013
1009
  - spec/api/projects_api_spec.rb
1014
- - spec/api/search_api_spec.rb
1015
- - spec/api/variables_api_spec.rb
1016
- - spec/api/organization_job_template_locales_api_spec.rb
1017
- - spec/api/users_api_spec.rb
1018
- - spec/api/screenshot_markers_api_spec.rb
1019
- - spec/api/automations_api_spec.rb
1020
- - spec/api/keys_api_spec.rb
1021
- - spec/api/comment_reactions_api_spec.rb
1022
- - spec/api/spaces_api_spec.rb
1023
- - spec/api/comments_api_spec.rb
1024
- - spec/api/keys_figma_attachments_api_spec.rb
1010
+ - spec/api/releases_api_spec.rb
1011
+ - spec/api/screenshots_api_spec.rb
1025
1012
  - spec/api/locale_downloads_api_spec.rb
1026
- - spec/api/style_guides_api_spec.rb
1013
+ - spec/api/job_locales_api_spec.rb
1014
+ - spec/api/uploads_api_spec.rb
1015
+ - spec/api/locales_api_spec.rb
1016
+ - spec/api/figma_attachments_api_spec.rb
1017
+ - spec/api/documents_api_spec.rb
1018
+ - spec/api/distributions_api_spec.rb
1019
+ - spec/api/translations_api_spec.rb
1020
+ - spec/api/comment_reactions_api_spec.rb
1027
1021
  - spec/api/formats_api_spec.rb
1028
1022
  - spec/api/reports_api_spec.rb
1023
+ - spec/api/job_templates_api_spec.rb
1024
+ - spec/api/jobs_api_spec.rb
1025
+ - spec/api/search_api_spec.rb
1026
+ - spec/api/authorizations_api_spec.rb
1029
1027
  - spec/api/repo_sync_events_api_spec.rb
1028
+ - spec/api/versions_history_api_spec.rb
1029
+ - spec/api/comments_api_spec.rb
1030
1030
  - spec/api_client_spec.rb
1031
1031
  - spec/configuration_spec.rb
1032
- - spec/models/member_project_detail_spec.rb
1033
- - spec/models/job_reopen_parameters_spec.rb
1032
+ - spec/models/affected_count_spec.rb
1033
+ - spec/models/translations_exclude_parameters_spec.rb
1034
+ - spec/models/order_confirm_parameters_spec.rb
1035
+ - spec/models/invitation_spec.rb
1036
+ - spec/models/member_update_settings_parameters_spec.rb
1037
+ - spec/models/custom_metadata_data_type_spec.rb
1038
+ - spec/models/locale_update_parameters_spec.rb
1039
+ - spec/models/translation_key_details_spec.rb
1040
+ - spec/models/distribution_update_parameters_spec.rb
1041
+ - spec/models/glossary_update_parameters_spec.rb
1042
+ - spec/models/key_links_index400_response_spec.rb
1043
+ - spec/models/repo_sync_export_parameters_spec.rb
1044
+ - spec/models/job_template_locale_update_parameters_spec.rb
1045
+ - spec/models/organization_job_template_details_spec.rb
1046
+ - spec/models/subscription_spec.rb
1047
+ - spec/models/key_preview_spec.rb
1048
+ - spec/models/upload_summary_spec.rb
1049
+ - spec/models/job_locale_complete_review_parameters_spec.rb
1050
+ - spec/models/organization_job_template_locales_create_parameters_spec.rb
1051
+ - spec/models/search_in_account_parameters_spec.rb
1052
+ - spec/models/job_create_parameters_spec.rb
1053
+ - spec/models/upload_spec.rb
1054
+ - spec/models/order_create_parameters_spec.rb
1055
+ - spec/models/glossary_term_translation_spec.rb
1056
+ - spec/models/webhook_delivery_spec.rb
1057
+ - spec/models/translation_create_parameters_spec.rb
1058
+ - spec/models/translation_update_parameters_spec.rb
1059
+ - spec/models/space_update_parameters_spec.rb
1034
1060
  - spec/models/tag_spec.rb
1035
- - spec/models/release_create_parameters1_spec.rb
1061
+ - spec/models/keys_search_parameters_spec.rb
1062
+ - spec/models/repo_sync_import_parameters_spec.rb
1063
+ - spec/models/automations_create_parameters_spec.rb
1064
+ - spec/models/member_project_detail_spec.rb
1065
+ - spec/models/member_spec.rb
1066
+ - spec/models/job_locale_complete_parameters_spec.rb
1067
+ - spec/models/job_comment_create_parameters_spec.rb
1068
+ - spec/models/webhook_create_parameters_spec.rb
1036
1069
  - spec/models/key_link_spec.rb
1037
- - spec/models/webhook_delivery_spec.rb
1038
- - spec/models/custom_metadata_property_spec.rb
1070
+ - spec/models/job_annotation_short_spec.rb
1071
+ - spec/models/member_project_detail_project_roles_inner_spec.rb
1072
+ - spec/models/translation_key_spec.rb
1073
+ - spec/models/webhook_spec.rb
1074
+ - spec/models/affected_resources_spec.rb
1075
+ - spec/models/figma_attachment_spec.rb
1076
+ - spec/models/error_error_spec.rb
1077
+ - spec/models/organization_job_template_locale_update_parameters_spec.rb
1078
+ - spec/models/locale_download_spec.rb
1079
+ - spec/models/icu_spec.rb
1080
+ - spec/models/comment_reaction_spec.rb
1081
+ - spec/models/user_preview_spec.rb
1082
+ - spec/models/account_spec.rb
1083
+ - spec/models/upload_batches_create_parameters_spec.rb
1084
+ - spec/models/release_create_parameters1_spec.rb
1085
+ - spec/models/space_create_parameters_spec.rb
1086
+ - spec/models/blacklisted_key_spec.rb
1087
+ - spec/models/project_locales_spec.rb
1088
+ - spec/models/job_template_update_parameters_spec.rb
1089
+ - spec/models/figma_attachment_create_parameters_spec.rb
1090
+ - spec/models/project_report_spec.rb
1091
+ - spec/models/screenshot_marker_presentation_spec.rb
1092
+ - spec/models/teams_projects_create_parameters_spec.rb
1093
+ - spec/models/repo_sync_spec.rb
1094
+ - spec/models/branch_name_spec.rb
1095
+ - spec/models/locale_details_spec.rb
1096
+ - spec/models/locale_create_parameters_spec.rb
1097
+ - spec/models/comment_mark_read_parameters_spec.rb
1098
+ - spec/models/team_create_parameters_spec.rb
1099
+ - spec/models/organization_job_template_update_parameters_spec.rb
1100
+ - spec/models/blacklisted_key_create_parameters_spec.rb
1101
+ - spec/models/translation_parent_spec.rb
1102
+ - spec/models/quality_performance_score_list200_response_any_of_data_spec.rb
1103
+ - spec/models/translation_verify_parameters_spec.rb
1104
+ - spec/models/project_spec.rb
1105
+ - spec/models/tag_with_stats1_statistics1_spec.rb
1106
+ - spec/models/comment_update_parameters_spec.rb
1039
1107
  - spec/models/variable_create_parameters_spec.rb
1108
+ - spec/models/space_spec.rb
1109
+ - spec/models/translations_search_parameters_spec.rb
1110
+ - spec/models/space1_spec.rb
1111
+ - spec/models/glossary_term_translation_update_parameters_spec.rb
1112
+ - spec/models/glossary_term_update_parameters_spec.rb
1113
+ - spec/models/branch_sync_parameters_spec.rb
1114
+ - spec/models/job_template_details_spec.rb
1115
+ - spec/models/release_update_parameters_spec.rb
1116
+ - spec/models/figma_attachment_update_parameters_spec.rb
1117
+ - spec/models/locale_preview_spec.rb
1040
1118
  - spec/models/screenshot_marker_spec.rb
1041
- - spec/models/job_template_spec.rb
1042
- - spec/models/job_locales_create_parameters_spec.rb
1043
- - spec/models/translation_create_parameters_spec.rb
1044
- - spec/models/distribution_details_spec.rb
1119
+ - spec/models/screenshot_spec.rb
1120
+ - spec/models/job_template_create_parameters_spec.rb
1121
+ - spec/models/translation_version_with_user_spec.rb
1045
1122
  - spec/models/custom_metadata_properties_update_parameters_spec.rb
1046
- - spec/models/locale_preview_spec.rb
1047
1123
  - spec/models/glossary_term_translation_create_parameters_spec.rb
1048
- - spec/models/job_annotation_update_parameters_spec.rb
1049
- - spec/models/branch_name_spec.rb
1050
- - spec/models/comment_create_parameters_spec.rb
1051
- - spec/models/job_details_spec.rb
1052
- - spec/models/job_locale_reopen_parameters_spec.rb
1053
- - spec/models/glossary_term_update_parameters_spec.rb
1054
- - spec/models/project_short_spec.rb
1055
- - spec/models/job_locale_update_parameters_spec.rb
1056
- - spec/models/project_details_spec.rb
1057
- - spec/models/organization_job_template_locales_create_parameters_spec.rb
1058
- - spec/models/document_delete422_response_spec.rb
1059
- - spec/models/job_template_locale_update_parameters_spec.rb
1060
- - spec/models/tag_with_stats_spec.rb
1061
- - spec/models/styleguide_details_spec.rb
1062
- - spec/models/comment_reaction_spec.rb
1063
- - spec/models/keys_include_parameters_spec.rb
1064
- - spec/models/space_spec.rb
1065
- - spec/models/release_preview_spec.rb
1066
- - spec/models/locale_download_spec.rb
1067
- - spec/models/styleguide_create_parameters_spec.rb
1068
- - spec/models/authorization_update_parameters_spec.rb
1069
- - spec/models/key_links_batch_destroy_parameters_spec.rb
1070
- - spec/models/teams_projects_create_parameters_spec.rb
1071
- - spec/models/authorization_spec.rb
1072
- - spec/models/screenshot_marker_presentation_spec.rb
1073
- - spec/models/icu_spec.rb
1074
- - spec/models/repo_sync_create_parameters_spec.rb
1075
- - spec/models/release_update_parameters1_spec.rb
1124
+ - spec/models/team_short_spec.rb
1125
+ - spec/models/translations_include_parameters_spec.rb
1126
+ - spec/models/job_comment_spec.rb
1127
+ - spec/models/tag_create_parameters_spec.rb
1128
+ - spec/models/webhook_update_parameters_spec.rb
1129
+ - spec/models/quality_performance_score_list200_response_any_of_errors_inner_spec.rb
1130
+ - spec/models/account_details_spec.rb
1131
+ - spec/models/team_detail_spec.rb
1132
+ - spec/models/repo_sync_event_spec.rb
1133
+ - spec/models/distribution_spec.rb
1134
+ - spec/models/job_complete_parameters_spec.rb
1135
+ - spec/models/automation_spec.rb
1136
+ - spec/models/screenshot_marker_update_parameters_spec.rb
1137
+ - spec/models/document_delete422_response_errors_inner_spec.rb
1138
+ - spec/models/key_create_parameters_spec.rb
1139
+ - spec/models/translation_unreview_parameters_spec.rb
1140
+ - spec/models/locale_statistics_spec.rb
1076
1141
  - spec/models/invitation_create_parameters_spec.rb
1077
- - spec/models/locale_download_params_spec.rb
1142
+ - spec/models/job_annotation_update_parameters_spec.rb
1143
+ - spec/models/screenshot_marker_create_parameters_spec.rb
1144
+ - spec/models/tag_with_stats1_statistics_spec.rb
1145
+ - spec/models/team_spec.rb
1146
+ - spec/models/job_reopen_parameters_spec.rb
1147
+ - spec/models/job_start_parameters_spec.rb
1148
+ - spec/models/translation_include_parameters_spec.rb
1149
+ - spec/models/error_spec.rb
1150
+ - spec/models/translation_review_parameters_spec.rb
1078
1151
  - spec/models/project_create_parameters_spec.rb
1152
+ - spec/models/glossary_term_spec.rb
1153
+ - spec/models/release_update_parameters1_spec.rb
1154
+ - spec/models/styleguide_create_parameters_spec.rb
1155
+ - spec/models/glossary_spec.rb
1156
+ - spec/models/invitation_update_parameters_spec.rb
1157
+ - spec/models/locale_spec.rb
1158
+ - spec/models/job_keys_delete_parameters_spec.rb
1159
+ - spec/models/translations_unverify_parameters_spec.rb
1160
+ - spec/models/notification_spec.rb
1161
+ - spec/models/project_update_parameters_spec.rb
1162
+ - spec/models/job_details_spec.rb
1163
+ - spec/models/keys_untag_parameters_spec.rb
1164
+ - spec/models/custom_metadata_properties_create_parameters_spec.rb
1165
+ - spec/models/custom_metadata_property_spec.rb
1079
1166
  - spec/models/invitation_update_settings_parameters_spec.rb
1167
+ - spec/models/project_short_spec.rb
1080
1168
  - spec/models/job_keys_create_parameters_spec.rb
1081
- - spec/models/job_template_locales_spec.rb
1082
- - spec/models/figma_attachment_create_parameters_spec.rb
1083
- - spec/models/affected_resources_spec.rb
1084
- - spec/models/comment_create_parameters1_spec.rb
1085
- - spec/models/upload_batches_create_parameters_spec.rb
1086
- - spec/models/subscription_spec.rb
1087
- - spec/models/invitation_update_parameters_spec.rb
1088
- - spec/models/job_update_parameters_spec.rb
1089
- - spec/models/tag_create_parameters_spec.rb
1090
- - spec/models/repo_sync_export_parameters_spec.rb
1169
+ - spec/models/variable_update_parameters_spec.rb
1170
+ - spec/models/locale_user_preview_spec.rb
1171
+ - spec/models/quality_performance_score_list200_response_any_of_data_translations_inner_spec.rb
1172
+ - spec/models/release_spec.rb
1173
+ - spec/models/styleguide_update_parameters_spec.rb
1091
1174
  - spec/models/styleguide_preview_spec.rb
1092
- - spec/models/document_delete422_response_errors_inner_spec.rb
1093
- - spec/models/translation_key_spec.rb
1094
- - spec/models/space1_spec.rb
1095
- - spec/models/translations_include_parameters_spec.rb
1096
- - spec/models/branch_sync_parameters_spec.rb
1097
- - spec/models/glossary_term_glossary_spec.rb
1098
- - spec/models/distribution_create_parameters_spec.rb
1099
- - spec/models/translation_unreview_parameters_spec.rb
1175
+ - spec/models/current_user_spec.rb
1176
+ - spec/models/variable_spec.rb
1177
+ - spec/models/authorization_update_parameters_spec.rb
1178
+ - spec/models/release_preview_spec.rb
1179
+ - spec/models/job_update_parameters_spec.rb
1180
+ - spec/models/authorization_create_parameters_spec.rb
1181
+ - spec/models/translations_review_parameters_spec.rb
1182
+ - spec/models/tag_with_stats_spec.rb
1183
+ - spec/models/job_comment_update_parameters_spec.rb
1184
+ - spec/models/organization_job_template_create_parameters_spec.rb
1185
+ - spec/models/teams_spaces_create_parameters_spec.rb
1100
1186
  - spec/models/spaces_projects_create_parameters_spec.rb
1101
- - spec/models/team_update_parameters_spec.rb
1102
- - spec/models/job_locale_complete_parameters_spec.rb
1187
+ - spec/models/member_spaces_inner_spec.rb
1188
+ - spec/models/document_delete422_response_spec.rb
1103
1189
  - spec/models/translation_details_spec.rb
1104
- - spec/models/key_preview_spec.rb
1105
- - spec/models/account_search_result_spec.rb
1106
- - spec/models/job_template_preview_spec.rb
1107
- - spec/models/branch_spec.rb
1108
- - spec/models/account_details_spec.rb
1109
- - spec/models/key_create_parameters_spec.rb
1110
- - spec/models/team_detail_spec.rb
1111
- - spec/models/screenshot_marker_create_parameters_spec.rb
1112
- - spec/models/distribution_update_parameters_spec.rb
1190
+ - spec/models/repo_sync_create_parameters_spec.rb
1191
+ - spec/models/translation_exclude_parameters_spec.rb
1192
+ - spec/models/translation_spec.rb
1113
1193
  - spec/models/release_create_parameters_spec.rb
1114
- - spec/models/job_comment_create_parameters_spec.rb
1115
- - spec/models/user_preview_spec.rb
1116
- - spec/models/member_spec.rb
1117
- - spec/models/blacklisted_key_spec.rb
1118
- - spec/models/project_spec.rb
1119
- - spec/models/quality_performance_score_list_request_spec.rb
1120
- - spec/models/automations_create_parameters_spec.rb
1121
- - spec/models/quality_performance_score_list200_response_any_of_spec.rb
1122
- - spec/models/project_locales_spec.rb
1123
- - spec/models/automation_spec.rb
1124
- - spec/models/upload_batch_spec.rb
1125
- - spec/models/screenshot_spec.rb
1126
- - spec/models/repo_sync_import_parameters_spec.rb
1127
- - spec/models/job_create_parameters_spec.rb
1128
- - spec/models/translation_parent_spec.rb
1194
+ - spec/models/glossary_term_create_parameters_spec.rb
1129
1195
  - spec/models/key_update_parameters_spec.rb
1130
- - spec/models/organization_job_template_details_spec.rb
1131
- - spec/models/organization_job_template_update_parameters_spec.rb
1132
- - spec/models/screenshot_update_parameters_spec.rb
1133
- - spec/models/tag_with_stats1_statistics_spec.rb
1134
- - spec/models/job_comment_spec.rb
1135
- - spec/models/job_preview_spec.rb
1136
- - spec/models/translation_include_parameters_spec.rb
1137
- - spec/models/locale_statistics_spec.rb
1196
+ - spec/models/account_search_result_spec.rb
1197
+ - spec/models/branch_create_comparison_parameters_spec.rb
1198
+ - spec/models/document_spec.rb
1199
+ - spec/models/job_template_preview_spec.rb
1200
+ - spec/models/locale_download_params_spec.rb
1201
+ - spec/models/styleguide_spec.rb
1202
+ - spec/models/automations_create_parameters1_spec.rb
1203
+ - spec/models/locale_download_create_parameters_spec.rb
1204
+ - spec/models/notification_group_detail_spec.rb
1205
+ - spec/models/translation_unverify_parameters_spec.rb
1138
1206
  - spec/models/locale_download_result_spec.rb
1139
- - spec/models/keys_untag_parameters_spec.rb
1140
- - spec/models/key_links_create_parameters_spec.rb
1207
+ - spec/models/job_locale_spec.rb
1208
+ - spec/models/format_spec.rb
1209
+ - spec/models/blacklisted_key_update_parameters_spec.rb
1210
+ - spec/models/screenshot_update_parameters_spec.rb
1211
+ - spec/models/job_spec.rb
1212
+ - spec/models/keys_tag_parameters_spec.rb
1213
+ - spec/models/job_locales_create_parameters_spec.rb
1214
+ - spec/models/branch_spec.rb
1215
+ - spec/models/glossary_create_parameters_spec.rb
1141
1216
  - spec/models/organization_job_template_spec.rb
1217
+ - spec/models/job_preview_spec.rb
1142
1218
  - spec/models/translation_order_spec.rb
1143
- - spec/models/affected_count_spec.rb
1144
- - spec/models/repo_sync_event_spec.rb
1145
- - spec/models/notification_group_detail_spec.rb
1146
- - spec/models/organization_job_template_create_parameters_spec.rb
1147
- - spec/models/screenshot_marker_update_parameters_spec.rb
1148
- - spec/models/comment_mark_read_parameters_spec.rb
1149
- - spec/models/job_template_locales_create_parameters_spec.rb
1150
- - spec/models/team_short_spec.rb
1151
- - spec/models/member_project_detail_project_roles_inner_spec.rb
1152
- - spec/models/job_complete_parameters_spec.rb
1219
+ - spec/models/upload_batch_spec.rb
1220
+ - spec/models/authorization_spec.rb
1153
1221
  - spec/models/comment_spec.rb
1154
- - spec/models/glossary_create_parameters_spec.rb
1155
- - spec/models/keys_search_parameters_spec.rb
1156
- - spec/models/glossary_term_translation_update_parameters_spec.rb
1157
- - spec/models/translations_unreview_parameters_spec.rb
1158
- - spec/models/custom_metadata_data_type_spec.rb
1159
- - spec/models/figma_attachment_spec.rb
1222
+ - spec/models/distribution_details_spec.rb
1223
+ - spec/models/branch_update_parameters_spec.rb
1224
+ - spec/models/comment_create_parameters1_spec.rb
1225
+ - spec/models/branch_merge_parameters_spec.rb
1226
+ - spec/models/quality_performance_score_list200_response_spec.rb
1227
+ - spec/models/job_template_locales_spec.rb
1228
+ - spec/models/release_trigger_spec.rb
1229
+ - spec/models/team_update_parameters_spec.rb
1160
1230
  - spec/models/teams_users_create_parameters_spec.rb
1161
- - spec/models/space_create_parameters_spec.rb
1162
- - spec/models/project_update_parameters_spec.rb
1163
- - spec/models/member_update_parameters_spec.rb
1164
- - spec/models/job_start_parameters_spec.rb
1165
- - spec/models/quality_performance_score_list200_response_any_of_errors_inner_spec.rb
1166
- - spec/models/job_keys_delete_parameters_spec.rb
1167
- - spec/models/translation_unverify_parameters_spec.rb
1168
- - spec/models/icu_skeleton_parameters_spec.rb
1169
- - spec/models/member_spaces_inner_spec.rb
1170
- - spec/models/error_spec.rb
1171
- - spec/models/notification_spec.rb
1231
+ - spec/models/job_locale_update_parameters_spec.rb
1232
+ - spec/models/quality_performance_score_list200_response_any_of_spec.rb
1233
+ - spec/models/quality_performance_score_list_request_spec.rb
1234
+ - spec/models/locale_team_preview_spec.rb
1235
+ - spec/models/job_template_locales_create_parameters_spec.rb
1236
+ - spec/models/locale_report_spec.rb
1172
1237
  - spec/models/authorization_with_token_spec.rb
1173
- - spec/models/translations_verify_parameters_spec.rb
1174
- - spec/models/translations_unverify_parameters_spec.rb
1175
- - spec/models/job_template_create_parameters_spec.rb
1176
- - spec/models/current_user_spec.rb
1177
- - spec/models/quality_performance_score_list200_response_spec.rb
1238
+ - spec/models/comment_create_parameters_spec.rb
1239
+ - spec/models/locale_preview1_spec.rb
1240
+ - spec/models/member_update_parameters_spec.rb
1241
+ - spec/models/key_links_create_parameters_spec.rb
1178
1242
  - spec/models/job_annotation_spec.rb
1179
- - spec/models/locale_spec.rb
1180
- - spec/models/webhook_spec.rb
1181
- - spec/models/variable_spec.rb
1182
- - spec/models/automations_create_parameters1_spec.rb
1183
- - spec/models/release_update_parameters_spec.rb
1184
- - spec/models/upload_spec.rb
1185
- - spec/models/release_trigger_spec.rb
1186
- - spec/models/invitation_spec.rb
1187
- - spec/models/glossary_term_translation_spec.rb
1188
- - spec/models/job_spec.rb
1189
- - spec/models/webhook_update_parameters_spec.rb
1190
- - spec/models/keys_exclude_parameters_spec.rb
1191
- - spec/models/keys_tag_parameters_spec.rb
1192
- - spec/models/format_spec.rb
1193
- - spec/models/translation_exclude_parameters_spec.rb
1194
- - spec/models/glossary_term_create_parameters_spec.rb
1195
- - spec/models/locale_create_parameters_spec.rb
1196
- - spec/models/organization_job_template_locale_update_parameters_spec.rb
1243
+ - spec/models/project_details_spec.rb
1244
+ - spec/models/translations_unreview_parameters_spec.rb
1245
+ - spec/models/keys_include_parameters_spec.rb
1197
1246
  - spec/models/user_spec.rb
1198
- - spec/models/glossary_term_spec.rb
1199
- - spec/models/translation_spec.rb
1200
- - spec/models/figma_attachment_update_parameters_spec.rb
1201
- - spec/models/variable_update_parameters_spec.rb
1202
- - spec/models/team_create_parameters_spec.rb
1203
- - spec/models/space_update_parameters_spec.rb
1204
- - spec/models/quality_performance_score_list200_response_any_of_data_translations_inner_spec.rb
1205
- - spec/models/locale_team_preview_spec.rb
1206
- - spec/models/distribution_spec.rb
1207
- - spec/models/locale_update_parameters_spec.rb
1208
- - spec/models/project_report_spec.rb
1209
- - spec/models/branch_update_parameters_spec.rb
1210
- - spec/models/locale_details_spec.rb
1211
- - spec/models/tag_with_stats1_statistics1_spec.rb
1212
- - spec/models/search_in_account_parameters_spec.rb
1213
- - spec/models/translations_review_parameters_spec.rb
1214
- - spec/models/translations_exclude_parameters_spec.rb
1215
- - spec/models/locale_download_create_parameters_spec.rb
1216
- - spec/models/blacklisted_key_update_parameters_spec.rb
1217
- - spec/models/job_template_update_parameters_spec.rb
1218
- - spec/models/key_links_index400_response_spec.rb
1219
- - spec/models/comment_update_parameters_spec.rb
1220
- - spec/models/team_spec.rb
1247
+ - spec/models/key_links_batch_destroy_parameters_spec.rb
1248
+ - spec/models/job_template_spec.rb
1249
+ - spec/models/translations_verify_parameters_spec.rb
1250
+ - spec/models/styleguide_details_spec.rb
1251
+ - spec/models/glossary_term_glossary_spec.rb
1221
1252
  - spec/models/translation_version_spec.rb
1222
- - spec/models/repo_sync_spec.rb
1223
- - spec/models/translation_verify_parameters_spec.rb
1224
- - spec/models/document_spec.rb
1225
- - spec/models/branch_create_parameters_spec.rb
1226
- - spec/models/upload_summary_spec.rb
1227
- - spec/models/job_template_details_spec.rb
1228
- - spec/models/branch_create_comparison_parameters_spec.rb
1229
- - spec/models/translations_search_parameters_spec.rb
1230
- - spec/models/glossary_update_parameters_spec.rb
1231
- - spec/models/translation_review_parameters_spec.rb
1232
- - spec/models/teams_spaces_create_parameters_spec.rb
1233
- - spec/models/job_locale_spec.rb
1234
- - spec/models/authorization_create_parameters_spec.rb
1235
- - spec/models/locale_preview1_spec.rb
1236
- - spec/models/job_annotation_short_spec.rb
1237
- - spec/models/glossary_spec.rb
1238
- - spec/models/release_spec.rb
1239
- - spec/models/account_spec.rb
1240
- - spec/models/webhook_create_parameters_spec.rb
1241
- - spec/models/order_confirm_parameters_spec.rb
1242
- - spec/models/locale_report_spec.rb
1253
+ - spec/models/job_locale_reopen_parameters_spec.rb
1243
1254
  - spec/models/notification_group_spec.rb
1244
- - spec/models/styleguide_update_parameters_spec.rb
1245
- - spec/models/error_error_spec.rb
1246
- - spec/models/translation_update_parameters_spec.rb
1247
- - spec/models/custom_metadata_properties_create_parameters_spec.rb
1248
- - spec/models/locale_user_preview_spec.rb
1249
- - spec/models/blacklisted_key_create_parameters_spec.rb
1250
- - spec/models/branch_merge_parameters_spec.rb
1251
- - spec/models/quality_performance_score_list200_response_any_of_data_spec.rb
1252
- - spec/models/job_locale_complete_review_parameters_spec.rb
1253
- - spec/models/translation_key_details_spec.rb
1254
- - spec/models/translation_version_with_user_spec.rb
1255
- - spec/models/member_update_settings_parameters_spec.rb
1256
- - spec/models/styleguide_spec.rb
1257
- - spec/models/job_comment_update_parameters_spec.rb
1258
- - spec/models/order_create_parameters_spec.rb
1255
+ - spec/models/keys_exclude_parameters_spec.rb
1256
+ - spec/models/distribution_create_parameters_spec.rb
1257
+ - spec/models/icu_skeleton_parameters_spec.rb
1258
+ - spec/models/branch_create_parameters_spec.rb
1259
1259
  - spec/spec_helper.rb