phrase 4.5.0 → 4.8.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.
Files changed (135) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +23 -0
  3. data/README.md +12 -3
  4. data/docs/BranchesApi.md +3 -3
  5. data/docs/DistributionCreateParameters.md +1 -1
  6. data/docs/DistributionUpdateParameters.md +1 -1
  7. data/docs/InvitationCreateParameters.md +2 -2
  8. data/docs/InvitationsApi.md +7 -7
  9. data/docs/JobAnnotation.md +23 -0
  10. data/docs/JobAnnotationShort.md +19 -0
  11. data/docs/JobAnnotationUpdateParameters.md +19 -0
  12. data/docs/JobAnnotationsApi.md +416 -0
  13. data/docs/JobDetails.md +3 -1
  14. data/docs/JobLocale.md +3 -1
  15. data/docs/JobLocalesApi.md +6 -2
  16. data/docs/JobsApi.md +8 -6
  17. data/docs/KeyCreateParameters.md +3 -1
  18. data/docs/KeyPreview.md +3 -1
  19. data/docs/KeyUpdateParameters.md +3 -1
  20. data/docs/KeysApi.md +4 -4
  21. data/docs/KeysExcludeParameters.md +1 -1
  22. data/docs/KeysIncludeParameters.md +1 -1
  23. data/docs/KeysSearchParameters.md +1 -1
  24. data/docs/KeysTagParameters.md +1 -1
  25. data/docs/KeysUntagParameters.md +1 -1
  26. data/docs/Locale.md +2 -0
  27. data/docs/LocaleCreateParameters.md +3 -3
  28. data/docs/LocaleDetails.md +2 -0
  29. data/docs/LocaleDownloadCreateParameters.md +7 -5
  30. data/docs/LocaleDownloadsApi.md +8 -8
  31. data/docs/LocaleUpdateParameters.md +3 -3
  32. data/docs/LocalesApi.md +17 -15
  33. data/docs/MemberUpdateParameters.md +1 -1
  34. data/docs/MembersApi.md +5 -5
  35. data/docs/OrdersApi.md +1 -1
  36. data/docs/ProjectCreateParameters.md +5 -5
  37. data/docs/ProjectUpdateParameters.md +6 -6
  38. data/docs/ReleaseTriggersApi.md +1 -1
  39. data/docs/ScreenshotMarkerCreateParameters.md +1 -1
  40. data/docs/ScreenshotMarkerUpdateParameters.md +1 -1
  41. data/docs/ScreenshotUpdateParameters.md +1 -1
  42. data/docs/SearchApi.md +1 -1
  43. data/docs/TagsApi.md +2 -0
  44. data/docs/TranslationCreateParameters.md +1 -1
  45. data/docs/TranslationKey.md +2 -0
  46. data/docs/TranslationKeyDetails.md +2 -0
  47. data/docs/TranslationUpdateParameters.md +1 -1
  48. data/docs/TranslationsApi.md +13 -13
  49. data/docs/TranslationsExcludeParameters.md +1 -1
  50. data/docs/TranslationsIncludeParameters.md +1 -1
  51. data/docs/TranslationsReviewParameters.md +1 -1
  52. data/docs/TranslationsSearchParameters.md +1 -1
  53. data/docs/TranslationsUnreviewParameters.md +1 -1
  54. data/docs/TranslationsUnverifyParameters.md +1 -1
  55. data/docs/TranslationsVerifyParameters.md +1 -1
  56. data/lib/phrase/api/branches_api.rb +6 -6
  57. data/lib/phrase/api/invitations_api.rb +14 -14
  58. data/lib/phrase/api/job_annotations_api.rb +508 -0
  59. data/lib/phrase/api/job_locales_api.rb +6 -0
  60. data/lib/phrase/api/jobs_api.rb +9 -6
  61. data/lib/phrase/api/keys_api.rb +4 -4
  62. data/lib/phrase/api/locale_downloads_api.rb +8 -8
  63. data/lib/phrase/api/locales_api.rb +17 -14
  64. data/lib/phrase/api/members_api.rb +10 -10
  65. data/lib/phrase/api/orders_api.rb +2 -2
  66. data/lib/phrase/api/release_triggers_api.rb +2 -2
  67. data/lib/phrase/api/search_api.rb +2 -2
  68. data/lib/phrase/api/tags_api.rb +3 -0
  69. data/lib/phrase/api/translations_api.rb +16 -16
  70. data/lib/phrase/models/distribution_create_parameters.rb +1 -1
  71. data/lib/phrase/models/distribution_update_parameters.rb +1 -1
  72. data/lib/phrase/models/invitation_create_parameters.rb +2 -2
  73. data/lib/phrase/models/job_annotation.rb +233 -0
  74. data/lib/phrase/models/job_annotation_short.rb +215 -0
  75. data/lib/phrase/models/job_annotation_update_parameters.rb +207 -0
  76. data/lib/phrase/models/job_details.rb +15 -4
  77. data/lib/phrase/models/job_locale.rb +15 -4
  78. data/lib/phrase/models/key_create_parameters.rb +11 -1
  79. data/lib/phrase/models/key_preview.rb +13 -4
  80. data/lib/phrase/models/key_update_parameters.rb +11 -1
  81. data/lib/phrase/models/keys_exclude_parameters.rb +1 -1
  82. data/lib/phrase/models/keys_include_parameters.rb +1 -1
  83. data/lib/phrase/models/keys_search_parameters.rb +1 -1
  84. data/lib/phrase/models/keys_tag_parameters.rb +1 -1
  85. data/lib/phrase/models/keys_untag_parameters.rb +1 -1
  86. data/lib/phrase/models/locale.rb +12 -1
  87. data/lib/phrase/models/locale_create_parameters.rb +3 -3
  88. data/lib/phrase/models/locale_details.rb +12 -1
  89. data/lib/phrase/models/locale_download_create_parameters.rb +18 -8
  90. data/lib/phrase/models/locale_update_parameters.rb +3 -3
  91. data/lib/phrase/models/member_update_parameters.rb +1 -1
  92. data/lib/phrase/models/project_create_parameters.rb +4 -4
  93. data/lib/phrase/models/project_update_parameters.rb +5 -5
  94. data/lib/phrase/models/screenshot_marker_create_parameters.rb +1 -1
  95. data/lib/phrase/models/screenshot_marker_update_parameters.rb +1 -1
  96. data/lib/phrase/models/translation_create_parameters.rb +1 -1
  97. data/lib/phrase/models/translation_key.rb +10 -1
  98. data/lib/phrase/models/translation_key_details.rb +10 -1
  99. data/lib/phrase/models/translation_update_parameters.rb +1 -1
  100. data/lib/phrase/models/translations_exclude_parameters.rb +1 -1
  101. data/lib/phrase/models/translations_include_parameters.rb +1 -1
  102. data/lib/phrase/models/translations_review_parameters.rb +1 -1
  103. data/lib/phrase/models/translations_search_parameters.rb +1 -1
  104. data/lib/phrase/models/translations_unreview_parameters.rb +1 -1
  105. data/lib/phrase/models/translations_unverify_parameters.rb +1 -1
  106. data/lib/phrase/models/translations_verify_parameters.rb +1 -1
  107. data/lib/phrase/version.rb +1 -1
  108. data/lib/phrase.rb +4 -0
  109. data/spec/api/branches_api_spec.rb +3 -3
  110. data/spec/api/invitations_api_spec.rb +7 -7
  111. data/spec/api/job_annotations_api_spec.rb +120 -0
  112. data/spec/api/job_locales_api_spec.rb +2 -0
  113. data/spec/api/jobs_api_spec.rb +4 -3
  114. data/spec/api/keys_api_spec.rb +2 -2
  115. data/spec/api/locale_downloads_api_spec.rb +4 -4
  116. data/spec/api/members_api_spec.rb +5 -5
  117. data/spec/api/orders_api_spec.rb +1 -1
  118. data/spec/api/release_triggers_api_spec.rb +1 -1
  119. data/spec/api/search_api_spec.rb +1 -1
  120. data/spec/api/tags_api_spec.rb +1 -0
  121. data/spec/api/translations_api_spec.rb +8 -8
  122. data/spec/models/job_annotation_short_spec.rb +35 -0
  123. data/spec/models/job_annotation_spec.rb +47 -0
  124. data/spec/models/job_annotation_update_parameters_spec.rb +35 -0
  125. data/spec/models/job_details_spec.rb +6 -0
  126. data/spec/models/job_locale_spec.rb +6 -0
  127. data/spec/models/key_create_parameters_spec.rb +6 -0
  128. data/spec/models/key_preview_spec.rb +6 -0
  129. data/spec/models/key_update_parameters_spec.rb +6 -0
  130. data/spec/models/locale_details_spec.rb +6 -0
  131. data/spec/models/locale_download_create_parameters_spec.rb +6 -0
  132. data/spec/models/locale_spec.rb +6 -0
  133. data/spec/models/translation_key_details_spec.rb +6 -0
  134. data/spec/models/translation_key_spec.rb +6 -0
  135. metadata +247 -231
@@ -22,7 +22,7 @@ describe 'SearchApi' do
22
22
 
23
23
  # unit tests for search_in_account
24
24
  # Search across projects
25
- # Search for keys and translations in all account projects <br><br><i>Note: Search is limited to 10000 results and may not include recently updated data depending on the project sizes.</i>
25
+ # Search for keys and translations in all account projects *Note: Search is limited to 10000 results and may not include recently updated data depending on the project sizes.*
26
26
  # @param account_id Account ID
27
27
  # @param search_in_account_parameters
28
28
  # @param [Hash] opts the optional parameters
@@ -56,6 +56,7 @@ describe 'TagsApi' do
56
56
  # @param name name
57
57
  # @param [Hash] opts the optional parameters
58
58
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
59
+ # @option opts [Boolean] :omit_statistics omit statistics in the response
59
60
  # @option opts [String] :branch specify the branch to use
60
61
  # @return [TagWithStats]
61
62
  describe 'tag_show test' do
@@ -166,7 +166,7 @@ describe 'TranslationsApi' do
166
166
  # @option opts [String] :branch specify the branch to use
167
167
  # @option opts [String] :sort Sort criteria. Can be one of: key_name, created_at, updated_at.
168
168
  # @option opts [String] :order Order direction. Can be one of: asc, desc.
169
- # @option opts [String] :q Specify a query to find translations by content (including wildcards).<br><br> The following qualifiers are supported in the query:<br> <ul> <li><code>id:translation_id,...</code> for queries on a comma-separated list of ids</li> <li><code>unverified:{true|false}</code> for verification status</li> <li><code>tags:XYZ</code> for tags on the translation</li> <li><code>excluded:{true|false}</code> for exclusion status</li> <li><code>updated_at:{>=|<=}2013-02-21T00:00:00Z</code> for date range queries</li> </ul> Find more examples <a href=\"#overview--usage-examples\">here</a>.
169
+ # @option opts [String] :q Specify a query to find translations by content (including wildcards). The following qualifiers are supported in the query: * `id:translation_id,...` for queries on a comma-separated list of ids * `unverified:{true|false}` for verification status * `tags:XYZ` for tags on the translation * `excluded:{true|false}` for exclusion status * `updated_at:{>=|<=}2013-02-21T00:00:00Z` for date range queries Find more examples [here](/en/api/strings/usage-examples).
170
170
  # @return [Array<Translation>]
171
171
  describe 'translations_by_key test' do
172
172
  it 'should work' do
@@ -176,7 +176,7 @@ describe 'TranslationsApi' do
176
176
 
177
177
  # unit tests for translations_by_locale
178
178
  # List translations by locale
179
- # List translations for a specific locale. If you want to download all translations for one locale we recommend to use the &lt;code&gt;locales#download&lt;/code&gt; endpoint.
179
+ # List translations for a specific locale. If you want to download all translations for one locale we recommend to use the &#x60;locales#download&#x60; endpoint.
180
180
  # @param project_id Project ID
181
181
  # @param locale_id Locale ID
182
182
  # @param [Hash] opts the optional parameters
@@ -186,7 +186,7 @@ describe 'TranslationsApi' do
186
186
  # @option opts [String] :branch specify the branch to use
187
187
  # @option opts [String] :sort Sort criteria. Can be one of: key_name, created_at, updated_at.
188
188
  # @option opts [String] :order Order direction. Can be one of: asc, desc.
189
- # @option opts [String] :q Specify a query to find translations by content (including wildcards).&lt;br&gt;&lt;br&gt; &lt;i&gt;Note: Search is limited to 10000 results and may not include recently updated data (depending on the project size).&lt;/i&gt;&lt;br&gt; The following qualifiers are supported in the query:&lt;br&gt; &lt;ul&gt; &lt;li&gt;&lt;code&gt;id:translation_id,...&lt;/code&gt; for queries on a comma-separated list of ids&lt;/li&gt; &lt;li&gt;&lt;code&gt;unverified:{true|false}&lt;/code&gt; for verification status&lt;/li&gt; &lt;li&gt;&lt;code&gt;tags:XYZ&lt;/code&gt; for tags on the translation&lt;/li&gt; &lt;li&gt;&lt;code&gt;excluded:{true|false}&lt;/code&gt; for exclusion status&lt;/li&gt; &lt;li&gt;&lt;code&gt;updated_at:{&gt;&#x3D;|&lt;&#x3D;}2013-02-21T00:00:00Z&lt;/code&gt; for date range queries&lt;/li&gt; &lt;/ul&gt; Find more examples &lt;a href&#x3D;\&quot;#overview--usage-examples\&quot;&gt;here&lt;/a&gt;.
189
+ # @option opts [String] :q Specify a query to find translations by content (including wildcards). *Note: Search is limited to 10000 results and may not include recently updated data (depending on the project size).* The following qualifiers are supported in the query: - &#x60;id:translation_id,...&#x60; for queries on a comma-separated list of ids - &#x60;unverified:{true|false}&#x60; for verification status - &#x60;tags:XYZ&#x60; for tags on the translation - &#x60;excluded:{true|false}&#x60; for exclusion status - &#x60;updated_at:{&gt;&#x3D;|&lt;&#x3D;}2013-02-21T00:00:00Z&#x60; for date range queries Find more examples [here](/en/api/strings/usage-examples).
190
190
  # @return [Array<Translation>]
191
191
  describe 'translations_by_locale test' do
192
192
  it 'should work' do
@@ -224,18 +224,18 @@ describe 'TranslationsApi' do
224
224
 
225
225
  # unit tests for translations_list
226
226
  # List all translations
227
- # List translations for the given project. If you want to download all translations for one locale we recommend to use the &lt;code&gt;locales#download&lt;/code&gt; endpoint.
227
+ # List translations for the given project. If you want to download all translations for one locale we recommend to use the &#x60;locales#download&#x60; endpoint.
228
228
  # @param project_id Project ID
229
229
  # @param [Hash] opts the optional parameters
230
230
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
231
- # @option opts [String] :if_modified_since Last modified condition, see &lt;a href&#x3D;\&quot;#overview--conditional-get-requests--http-caching\&quot;&gt;Conditional GET requests / HTTP Caching&lt;/a&gt; (optional)
232
- # @option opts [String] :if_none_match ETag condition, see &lt;a href&#x3D;\&quot;#overview--conditional-get-requests--http-caching\&quot;&gt;Conditional GET requests / HTTP Caching&lt;/a&gt; (optional)
231
+ # @option opts [String] :if_modified_since Last modified condition, see [Conditional GET requests / HTTP Caching](/en/api/strings/pagination#conditional-get-requests-%2F-http-caching) (optional)
232
+ # @option opts [String] :if_none_match ETag condition, see [Conditional GET requests / HTTP Caching](/en/api/strings/pagination#conditional-get-requests-%2F-http-caching) (optional)
233
233
  # @option opts [Integer] :page Page number
234
234
  # @option opts [Integer] :per_page Limit on the number of objects to be returned, between 1 and 100. 25 by default
235
235
  # @option opts [String] :branch specify the branch to use
236
236
  # @option opts [String] :sort Sort criteria. Can be one of: key_name, created_at, updated_at.
237
237
  # @option opts [String] :order Order direction. Can be one of: asc, desc.
238
- # @option opts [String] :q Specify a query to find translations by content (including wildcards).&lt;br&gt;&lt;br&gt; &lt;i&gt;Note: Search is limited to 10000 results and may not include recently updated data (depending on the project size).&lt;/i&gt;&lt;br&gt; The following qualifiers are supported in the query:&lt;br&gt; &lt;ul&gt; &lt;li&gt;&lt;code&gt;id:translation_id,...&lt;/code&gt; for queries on a comma-separated list of ids&lt;/li&gt; &lt;li&gt;&lt;code&gt;tags:XYZ&lt;/code&gt; for tags on the translation&lt;/li&gt; &lt;li&gt;&lt;code&gt;unverified:{true|false}&lt;/code&gt; for verification status&lt;/li&gt; &lt;li&gt;&lt;code&gt;excluded:{true|false}&lt;/code&gt; for exclusion status&lt;/li&gt; &lt;li&gt;&lt;code&gt;updated_at:{&gt;&#x3D;|&lt;&#x3D;}2013-02-21T00:00:00Z&lt;/code&gt; for date range queries&lt;/li&gt; &lt;li&gt;&lt;code&gt;reviewed_after:2013-02-21T00:00:00Z&lt;/code&gt; for fetching translations that were reviewed after the given timestamp&lt;/li&gt; &lt;/ul&gt; Find more examples &lt;a href&#x3D;\&quot;#overview--usage-examples\&quot;&gt;here&lt;/a&gt;.
238
+ # @option opts [String] :q Specify a query to find translations by content (including wildcards). *Note: Search is limited to 10000 results and may not include recently updated data (depending on the project size).* The following qualifiers are supported in the query: * &#x60;id:translation_id,...&#x60; for queries on a comma-separated list of ids * &#x60;tags:XYZ&#x60; for tags on the translation * &#x60;unverified:{true|false}&#x60; for verification status * &#x60;excluded:{true|false}&#x60; for exclusion status * &#x60;updated_at:{&gt;&#x3D;|&lt;&#x3D;}2013-02-21T00:00:00Z&#x60; for date range queries * &#x60;reviewed_after:2013-02-21T00:00:00Z&#x60; for fetching translations that were reviewed after the given timestamp Find more examples [here](/en/api/strings/usage-examples).
239
239
  # @return [Array<Translation>]
240
240
  describe 'translations_list test' do
241
241
  it 'should work' do
@@ -259,7 +259,7 @@ describe 'TranslationsApi' do
259
259
 
260
260
  # unit tests for translations_search
261
261
  # Search translations
262
- # Search translations for the given project. Provides the same search interface as &lt;code&gt;translations#index&lt;/code&gt; but allows POST requests to avoid limitations imposed by GET requests. If you want to download all translations for one locale we recommend to use the &lt;code&gt;locales#download&lt;/code&gt; endpoint.
262
+ # Search translations for the given project. Provides the same search interface as &#x60;translations#index&#x60; but allows POST requests to avoid limitations imposed by GET requests. If you want to download all translations for one locale we recommend to use the &#x60;locales#download&#x60; endpoint.
263
263
  # @param project_id Project ID
264
264
  # @param translations_search_parameters
265
265
  # @param [Hash] opts the optional parameters
@@ -0,0 +1,35 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::JobAnnotationShort
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'JobAnnotationShort' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::JobAnnotationShort.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of JobAnnotationShort' do
19
+ it 'should create an instance of JobAnnotationShort' do
20
+ expect(@instance).to be_instance_of(Phrase::JobAnnotationShort)
21
+ end
22
+ end
23
+ describe 'test attribute "name"' do
24
+ it 'should work' do
25
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
26
+ end
27
+ end
28
+
29
+ describe 'test attribute "value"' do
30
+ it 'should work' do
31
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
+ end
33
+ end
34
+
35
+ end
@@ -0,0 +1,47 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::JobAnnotation
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'JobAnnotation' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::JobAnnotation.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of JobAnnotation' do
19
+ it 'should create an instance of JobAnnotation' do
20
+ expect(@instance).to be_instance_of(Phrase::JobAnnotation)
21
+ end
22
+ end
23
+ describe 'test attribute "name"' do
24
+ it 'should work' do
25
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
26
+ end
27
+ end
28
+
29
+ describe 'test attribute "value"' do
30
+ it 'should work' do
31
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
+ end
33
+ end
34
+
35
+ describe 'test attribute "created_at"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "updated_at"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,35 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::JobAnnotationUpdateParameters
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'JobAnnotationUpdateParameters' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::JobAnnotationUpdateParameters.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of JobAnnotationUpdateParameters' do
19
+ it 'should create an instance of JobAnnotationUpdateParameters' do
20
+ expect(@instance).to be_instance_of(Phrase::JobAnnotationUpdateParameters)
21
+ end
22
+ end
23
+ describe 'test attribute "value"' do
24
+ it 'should work' do
25
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
26
+ end
27
+ end
28
+
29
+ describe 'test attribute "branch"' do
30
+ it 'should work' do
31
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
+ end
33
+ end
34
+
35
+ end
@@ -116,4 +116,10 @@ describe 'JobDetails' do
116
116
  end
117
117
  end
118
118
 
119
+ describe 'test attribute "annotations"' do
120
+ it 'should work' do
121
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
+ end
123
+ end
124
+
119
125
  end
@@ -68,4 +68,10 @@ describe 'JobLocale' do
68
68
  end
69
69
  end
70
70
 
71
+ describe 'test attribute "annotations"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
71
77
  end
@@ -44,6 +44,12 @@ describe 'KeyCreateParameters' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "use_ordinal_rules"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "name_plural"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -38,4 +38,10 @@ describe 'KeyPreview' do
38
38
  end
39
39
  end
40
40
 
41
+ describe 'test attribute "use_ordinal_rules"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
41
47
  end
@@ -44,6 +44,12 @@ describe 'KeyUpdateParameters' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "use_ordinal_rules"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "name_plural"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -62,6 +62,12 @@ describe 'LocaleDetails' do
62
62
  end
63
63
  end
64
64
 
65
+ describe 'test attribute "ordinal_plural_forms"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
65
71
  describe 'test attribute "source_locale"' do
66
72
  it 'should work' do
67
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -110,4 +110,10 @@ describe 'LocaleDownloadCreateParameters' do
110
110
  end
111
111
  end
112
112
 
113
+ describe 'test attribute "updated_since"' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ end
117
+ end
118
+
113
119
  end
@@ -62,6 +62,12 @@ describe 'Locale' do
62
62
  end
63
63
  end
64
64
 
65
+ describe 'test attribute "ordinal_plural_forms"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
65
71
  describe 'test attribute "source_locale"' do
66
72
  it 'should work' do
67
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -50,6 +50,12 @@ describe 'TranslationKeyDetails' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "use_ordinal_rules"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
53
59
  describe 'test attribute "tags"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -50,6 +50,12 @@ describe 'TranslationKey' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "use_ordinal_rules"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
53
59
  describe 'test attribute "tags"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers