phrase 1.0.2 → 1.0.3

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 (122) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -3
  3. data/docs/Account.md +2 -0
  4. data/docs/AccountDetails.md +3 -3
  5. data/docs/AccountsApi.md +2 -2
  6. data/docs/AuthorizationsApi.md +2 -2
  7. data/docs/BlacklistedKeysApi.md +4 -2
  8. data/docs/BranchesApi.md +2 -2
  9. data/docs/CommentsApi.md +2 -2
  10. data/docs/DistributionsApi.md +2 -2
  11. data/docs/Document.md +23 -0
  12. data/docs/DocumentsApi.md +137 -0
  13. data/docs/GitHubSyncApi.md +130 -0
  14. data/docs/GitLabSyncApi.md +2 -2
  15. data/docs/GithubSyncExportParameters.md +17 -0
  16. data/docs/GithubSyncImportParameters.md +17 -0
  17. data/docs/GlossariesApi.md +2 -2
  18. data/docs/GlossaryTermsApi.md +2 -2
  19. data/docs/InlineResponse422.md +19 -0
  20. data/docs/InlineResponse422Errors.md +21 -0
  21. data/docs/InvitationsApi.md +2 -2
  22. data/docs/JobLocalesApi.md +2 -2
  23. data/docs/JobsApi.md +2 -2
  24. data/docs/KeysApi.md +4 -4
  25. data/docs/LocalesApi.md +2 -2
  26. data/docs/MembersApi.md +2 -2
  27. data/docs/OrdersApi.md +2 -2
  28. data/docs/Project.md +2 -0
  29. data/docs/ProjectDetails.md +2 -2
  30. data/docs/ProjectsApi.md +2 -2
  31. data/docs/ReleasesApi.md +2 -2
  32. data/docs/ScreenshotMarkersApi.md +2 -2
  33. data/docs/ScreenshotsApi.md +2 -2
  34. data/docs/SpacesApi.md +4 -4
  35. data/docs/StyleGuidesApi.md +2 -2
  36. data/docs/TagsApi.md +2 -2
  37. data/docs/TeamsApi.md +2 -2
  38. data/docs/TranslationsApi.md +8 -8
  39. data/docs/UploadsApi.md +2 -2
  40. data/docs/VersionsHistoryApi.md +2 -2
  41. data/docs/WebhooksApi.md +2 -2
  42. data/lib/phrase.rb +7 -0
  43. data/lib/phrase/api/accounts_api.rb +2 -2
  44. data/lib/phrase/api/authorizations_api.rb +2 -2
  45. data/lib/phrase/api/blacklisted_keys_api.rb +5 -2
  46. data/lib/phrase/api/branches_api.rb +2 -2
  47. data/lib/phrase/api/comments_api.rb +2 -2
  48. data/lib/phrase/api/distributions_api.rb +2 -2
  49. data/lib/phrase/api/documents_api.rb +152 -0
  50. data/lib/phrase/api/git_hub_sync_api.rb +146 -0
  51. data/lib/phrase/api/git_lab_sync_api.rb +2 -2
  52. data/lib/phrase/api/glossaries_api.rb +2 -2
  53. data/lib/phrase/api/glossary_terms_api.rb +2 -2
  54. data/lib/phrase/api/invitations_api.rb +2 -2
  55. data/lib/phrase/api/job_locales_api.rb +2 -2
  56. data/lib/phrase/api/jobs_api.rb +2 -2
  57. data/lib/phrase/api/keys_api.rb +4 -4
  58. data/lib/phrase/api/locales_api.rb +2 -2
  59. data/lib/phrase/api/members_api.rb +2 -2
  60. data/lib/phrase/api/orders_api.rb +2 -2
  61. data/lib/phrase/api/projects_api.rb +2 -2
  62. data/lib/phrase/api/releases_api.rb +2 -2
  63. data/lib/phrase/api/screenshot_markers_api.rb +2 -2
  64. data/lib/phrase/api/screenshots_api.rb +2 -2
  65. data/lib/phrase/api/spaces_api.rb +4 -4
  66. data/lib/phrase/api/style_guides_api.rb +2 -2
  67. data/lib/phrase/api/tags_api.rb +2 -2
  68. data/lib/phrase/api/teams_api.rb +2 -2
  69. data/lib/phrase/api/translations_api.rb +8 -8
  70. data/lib/phrase/api/uploads_api.rb +2 -2
  71. data/lib/phrase/api/versions_history_api.rb +2 -2
  72. data/lib/phrase/api/webhooks_api.rb +2 -2
  73. data/lib/phrase/models/account.rb +10 -1
  74. data/lib/phrase/models/account_details.rb +13 -13
  75. data/lib/phrase/models/document.rb +221 -0
  76. data/lib/phrase/models/github_sync_export_parameters.rb +195 -0
  77. data/lib/phrase/models/github_sync_import_parameters.rb +195 -0
  78. data/lib/phrase/models/inline_response422.rb +205 -0
  79. data/lib/phrase/models/inline_response422_errors.rb +212 -0
  80. data/lib/phrase/models/project.rb +10 -1
  81. data/lib/phrase/models/project_details.rb +10 -10
  82. data/lib/phrase/version.rb +1 -1
  83. data/spec/api/accounts_api_spec.rb +1 -1
  84. data/spec/api/authorizations_api_spec.rb +1 -1
  85. data/spec/api/blacklisted_keys_api_spec.rb +2 -1
  86. data/spec/api/branches_api_spec.rb +1 -1
  87. data/spec/api/comments_api_spec.rb +1 -1
  88. data/spec/api/distributions_api_spec.rb +1 -1
  89. data/spec/api/documents_api_spec.rb +52 -0
  90. data/spec/api/git_hub_sync_api_spec.rb +49 -0
  91. data/spec/api/git_lab_sync_api_spec.rb +1 -1
  92. data/spec/api/glossaries_api_spec.rb +1 -1
  93. data/spec/api/glossary_terms_api_spec.rb +1 -1
  94. data/spec/api/invitations_api_spec.rb +1 -1
  95. data/spec/api/job_locales_api_spec.rb +1 -1
  96. data/spec/api/jobs_api_spec.rb +1 -1
  97. data/spec/api/keys_api_spec.rb +2 -2
  98. data/spec/api/locales_api_spec.rb +1 -1
  99. data/spec/api/members_api_spec.rb +1 -1
  100. data/spec/api/orders_api_spec.rb +1 -1
  101. data/spec/api/projects_api_spec.rb +1 -1
  102. data/spec/api/releases_api_spec.rb +1 -1
  103. data/spec/api/screenshot_markers_api_spec.rb +1 -1
  104. data/spec/api/screenshots_api_spec.rb +1 -1
  105. data/spec/api/spaces_api_spec.rb +2 -2
  106. data/spec/api/style_guides_api_spec.rb +1 -1
  107. data/spec/api/tags_api_spec.rb +1 -1
  108. data/spec/api/teams_api_spec.rb +1 -1
  109. data/spec/api/translations_api_spec.rb +4 -4
  110. data/spec/api/uploads_api_spec.rb +1 -1
  111. data/spec/api/versions_history_api_spec.rb +1 -1
  112. data/spec/api/webhooks_api_spec.rb +1 -1
  113. data/spec/models/account_details_spec.rb +4 -4
  114. data/spec/models/account_spec.rb +6 -0
  115. data/spec/models/document_spec.rb +47 -0
  116. data/spec/models/github_sync_export_parameters_spec.rb +29 -0
  117. data/spec/models/github_sync_import_parameters_spec.rb +29 -0
  118. data/spec/models/inline_response422_errors_spec.rb +41 -0
  119. data/spec/models/inline_response422_spec.rb +35 -0
  120. data/spec/models/project_details_spec.rb +6 -6
  121. data/spec/models/project_spec.rb +6 -0
  122. metadata +181 -153
@@ -168,7 +168,7 @@ gitlab_sync_id = 'gitlab_sync_id_example' # String | Gitlab Sync ID
168
168
  opts = {
169
169
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
170
170
  page: 1, # Integer | Page number
171
- per_page: 10, # Integer | allows you to specify a page size up to 100 items, 10 by default
171
+ per_page: 25, # Integer | allows you to specify a page size up to 100 items, 25 by default
172
172
  account_id: 'abcd1234' # String | Account ID to specify the actual account the GitLab Sync should be created in. Required if the requesting user is a member of multiple accounts.
173
173
  }
174
174
 
@@ -189,7 +189,7 @@ Name | Type | Description | Notes
189
189
  **gitlab_sync_id** | **String**| Gitlab Sync ID |
190
190
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
191
191
  **page** | **Integer**| Page number | [optional]
192
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
192
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
193
193
  **account_id** | **String**| Account ID to specify the actual account the GitLab Sync should be created in. Required if the requesting user is a member of multiple accounts. | [optional]
194
194
 
195
195
  ### Return type
@@ -0,0 +1,17 @@
1
+ # Phrase::GithubSyncExportParameters
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **project_id** | **String** | Project ID to specify the actual project the GitHub export should be triggered in. | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'Phrase'
13
+
14
+ instance = Phrase::GithubSyncExportParameters.new(project_id: abcd1234)
15
+ ```
16
+
17
+
@@ -0,0 +1,17 @@
1
+ # Phrase::GithubSyncImportParameters
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **project_id** | **String** | Project ID to specify the actual project the GitHub import should be triggered in. | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'Phrase'
13
+
14
+ instance = Phrase::GithubSyncImportParameters.new(project_id: abcd1234)
15
+ ```
16
+
17
+
@@ -41,7 +41,7 @@ account_id = 'account_id_example' # String | Account ID
41
41
  opts = {
42
42
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
43
43
  page: 1, # Integer | Page number
44
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
44
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
45
45
  }
46
46
 
47
47
  begin
@@ -61,7 +61,7 @@ Name | Type | Description | Notes
61
61
  **account_id** | **String**| Account ID |
62
62
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
63
63
  **page** | **Integer**| Page number | [optional]
64
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
64
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
65
65
 
66
66
  ### Return type
67
67
 
@@ -303,7 +303,7 @@ glossary_id = 'glossary_id_example' # String | Glossary ID
303
303
  opts = {
304
304
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
305
305
  page: 1, # Integer | Page number
306
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
306
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
307
307
  }
308
308
 
309
309
  begin
@@ -324,7 +324,7 @@ Name | Type | Description | Notes
324
324
  **glossary_id** | **String**| Glossary ID |
325
325
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
326
326
  **page** | **Integer**| Page number | [optional]
327
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
327
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
328
328
 
329
329
  ### Return type
330
330
 
@@ -0,0 +1,19 @@
1
+ # Phrase::InlineResponse422
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **message** | **String** | | [optional]
8
+ **errors** | [**Array<InlineResponse422Errors>**](InlineResponse422Errors.md) | | [optional]
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'Phrase'
14
+
15
+ instance = Phrase::InlineResponse422.new(message: null,
16
+ errors: null)
17
+ ```
18
+
19
+
@@ -0,0 +1,21 @@
1
+ # Phrase::InlineResponse422Errors
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **resource** | **String** | | [optional]
8
+ **field** | **String** | | [optional]
9
+ **message** | **String** | | [optional]
10
+
11
+ ## Code Sample
12
+
13
+ ```ruby
14
+ require 'Phrase'
15
+
16
+ instance = Phrase::InlineResponse422Errors.new(resource: null,
17
+ field: null,
18
+ message: null)
19
+ ```
20
+
21
+
@@ -358,7 +358,7 @@ account_id = 'account_id_example' # String | Account ID
358
358
  opts = {
359
359
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
360
360
  page: 1, # Integer | Page number
361
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
361
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
362
362
  }
363
363
 
364
364
  begin
@@ -378,7 +378,7 @@ Name | Type | Description | Notes
378
378
  **account_id** | **String**| Account ID |
379
379
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
380
380
  **page** | **Integer**| Page number | [optional]
381
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
381
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
382
382
 
383
383
  ### Return type
384
384
 
@@ -443,7 +443,7 @@ job_id = 'job_id_example' # String | Job ID
443
443
  opts = {
444
444
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
445
445
  page: 1, # Integer | Page number
446
- per_page: 10, # Integer | allows you to specify a page size up to 100 items, 10 by default
446
+ per_page: 25, # Integer | allows you to specify a page size up to 100 items, 25 by default
447
447
  branch: 'my-feature-branch' # String | specify the branch to use
448
448
  }
449
449
 
@@ -465,7 +465,7 @@ Name | Type | Description | Notes
465
465
  **job_id** | **String**| Job ID |
466
466
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
467
467
  **page** | **Integer**| Page number | [optional]
468
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
468
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
469
469
  **branch** | **String**| specify the branch to use | [optional]
470
470
 
471
471
  ### Return type
@@ -629,7 +629,7 @@ project_id = 'project_id_example' # String | Project ID
629
629
  opts = {
630
630
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
631
631
  page: 1, # Integer | Page number
632
- per_page: 10, # Integer | allows you to specify a page size up to 100 items, 10 by default
632
+ per_page: 25, # Integer | allows you to specify a page size up to 100 items, 25 by default
633
633
  branch: 'my-feature-branch', # String | specify the branch to use
634
634
  owned_by: 'abcd1234cdef1234abcd1234cdef1234', # String | filter by user owning job
635
635
  assigned_to: 'abcd1234cdef1234abcd1234cdef1234', # String | filter by user assigned to job
@@ -653,7 +653,7 @@ Name | Type | Description | Notes
653
653
  **project_id** | **String**| Project ID |
654
654
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
655
655
  **page** | **Integer**| Page number | [optional]
656
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
656
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
657
657
  **branch** | **String**| specify the branch to use | [optional]
658
658
  **owned_by** | **String**| filter by user owning job | [optional]
659
659
  **assigned_to** | **String**| filter by user assigned to job | [optional]
@@ -369,7 +369,7 @@ project_id = 'project_id_example' # String | Project ID
369
369
  opts = {
370
370
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
371
371
  page: 1, # Integer | Page number
372
- per_page: 10, # Integer | allows you to specify a page size up to 100 items, 10 by default
372
+ per_page: 25, # Integer | allows you to specify a page size up to 100 items, 25 by default
373
373
  branch: 'my-feature-branch', # String | specify the branch to use
374
374
  sort: 'updated_at', # String | Sort by field. Can be one of: name, created_at, updated_at.
375
375
  order: 'desc', # String | Order direction. Can be one of: asc, desc.
@@ -394,7 +394,7 @@ Name | Type | Description | Notes
394
394
  **project_id** | **String**| Project ID |
395
395
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
396
396
  **page** | **Integer**| Page number | [optional]
397
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
397
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
398
398
  **branch** | **String**| specify the branch to use | [optional]
399
399
  **sort** | **String**| Sort by field. Can be one of: name, created_at, updated_at. | [optional]
400
400
  **order** | **String**| Order direction. Can be one of: asc, desc. | [optional]
@@ -445,7 +445,7 @@ keys_search_parameters = Phrase::KeysSearchParameters.new # KeysSearchParameters
445
445
  opts = {
446
446
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
447
447
  page: 1, # Integer | Page number
448
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
448
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
449
449
  }
450
450
 
451
451
  begin
@@ -466,7 +466,7 @@ Name | Type | Description | Notes
466
466
  **keys_search_parameters** | [**KeysSearchParameters**](KeysSearchParameters.md)| |
467
467
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
468
468
  **page** | **Integer**| Page number | [optional]
469
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
469
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
470
470
 
471
471
  ### Return type
472
472
 
@@ -389,7 +389,7 @@ project_id = 'project_id_example' # String | Project ID
389
389
  opts = {
390
390
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
391
391
  page: 1, # Integer | Page number
392
- per_page: 10, # Integer | allows you to specify a page size up to 100 items, 10 by default
392
+ per_page: 25, # Integer | allows you to specify a page size up to 100 items, 25 by default
393
393
  branch: 'my-feature-branch' # String | specify the branch to use
394
394
  }
395
395
 
@@ -410,7 +410,7 @@ Name | Type | Description | Notes
410
410
  **project_id** | **String**| Project ID |
411
411
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
412
412
  **page** | **Integer**| Page number | [optional]
413
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
413
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
414
414
  **branch** | **String**| specify the branch to use | [optional]
415
415
 
416
416
  ### Return type
@@ -230,7 +230,7 @@ account_id = 'account_id_example' # String | Account ID
230
230
  opts = {
231
231
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
232
232
  page: 1, # Integer | Page number
233
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
233
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
234
234
  }
235
235
 
236
236
  begin
@@ -250,7 +250,7 @@ Name | Type | Description | Notes
250
250
  **account_id** | **String**| Account ID |
251
251
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
252
252
  **page** | **Integer**| Page number | [optional]
253
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
253
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
254
254
 
255
255
  ### Return type
256
256
 
@@ -298,7 +298,7 @@ project_id = 'project_id_example' # String | Project ID
298
298
  opts = {
299
299
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
300
300
  page: 1, # Integer | Page number
301
- per_page: 10, # Integer | allows you to specify a page size up to 100 items, 10 by default
301
+ per_page: 25, # Integer | allows you to specify a page size up to 100 items, 25 by default
302
302
  branch: 'my-feature-branch' # String | specify the branch to use
303
303
  }
304
304
 
@@ -319,7 +319,7 @@ Name | Type | Description | Notes
319
319
  **project_id** | **String**| Project ID |
320
320
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
321
321
  **page** | **Integer**| Page number | [optional]
322
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
322
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
323
323
  **branch** | **String**| specify the branch to use | [optional]
324
324
 
325
325
  ### Return type
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **id** | **String** | | [optional]
8
8
  **name** | **String** | | [optional]
9
+ **slug** | **String** | | [optional]
9
10
  **main_format** | **String** | | [optional]
10
11
  **project_image_url** | **String** | | [optional]
11
12
  **account** | [**Account**](Account.md) | | [optional]
@@ -19,6 +20,7 @@ require 'Phrase'
19
20
 
20
21
  instance = Phrase::Project.new(id: null,
21
22
  name: null,
23
+ slug: null,
22
24
  main_format: null,
23
25
  project_image_url: null,
24
26
  account: null,
@@ -6,12 +6,12 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **id** | **String** | | [optional]
8
8
  **name** | **String** | | [optional]
9
+ **slug** | **String** | | [optional]
9
10
  **main_format** | **String** | | [optional]
10
11
  **project_image_url** | **String** | | [optional]
11
12
  **account** | [**Account**](Account.md) | | [optional]
12
13
  **created_at** | **DateTime** | | [optional]
13
14
  **updated_at** | **DateTime** | | [optional]
14
- **slug** | **String** | | [optional]
15
15
  **shares_translation_memory** | **Boolean** | | [optional]
16
16
 
17
17
  ## Code Sample
@@ -21,12 +21,12 @@ require 'Phrase'
21
21
 
22
22
  instance = Phrase::ProjectDetails.new(id: null,
23
23
  name: null,
24
+ slug: null,
24
25
  main_format: null,
25
26
  project_image_url: null,
26
27
  account: null,
27
28
  created_at: null,
28
29
  updated_at: null,
29
- slug: null,
30
30
  shares_translation_memory: null)
31
31
  ```
32
32
 
@@ -285,7 +285,7 @@ api_instance = Phrase::ProjectsApi.new
285
285
  opts = {
286
286
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
287
287
  page: 1, # Integer | Page number
288
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
288
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
289
289
  }
290
290
 
291
291
  begin
@@ -304,7 +304,7 @@ Name | Type | Description | Notes
304
304
  ------------- | ------------- | ------------- | -------------
305
305
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
306
306
  **page** | **Integer**| Page number | [optional]
307
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
307
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
308
308
 
309
309
  ### Return type
310
310
 
@@ -369,7 +369,7 @@ distribution_id = 'distribution_id_example' # String | Distribution ID
369
369
  opts = {
370
370
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
371
371
  page: 1, # Integer | Page number
372
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
372
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
373
373
  }
374
374
 
375
375
  begin
@@ -390,7 +390,7 @@ Name | Type | Description | Notes
390
390
  **distribution_id** | **String**| Distribution ID |
391
391
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
392
392
  **page** | **Integer**| Page number | [optional]
393
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
393
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
394
394
 
395
395
  ### Return type
396
396
 
@@ -299,7 +299,7 @@ id = 'id_example' # String | ID
299
299
  opts = {
300
300
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
301
301
  page: 1, # Integer | Page number
302
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
302
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
303
303
  }
304
304
 
305
305
  begin
@@ -320,7 +320,7 @@ Name | Type | Description | Notes
320
320
  **id** | **String**| ID |
321
321
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
322
322
  **page** | **Integer**| Page number | [optional]
323
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
323
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
324
324
 
325
325
  ### Return type
326
326
 
@@ -294,7 +294,7 @@ project_id = 'project_id_example' # String | Project ID
294
294
  opts = {
295
295
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
296
296
  page: 1, # Integer | Page number
297
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
297
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
298
298
  }
299
299
 
300
300
  begin
@@ -314,7 +314,7 @@ Name | Type | Description | Notes
314
314
  **project_id** | **String**| Project ID |
315
315
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
316
316
  **page** | **Integer**| Page number | [optional]
317
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
317
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
318
318
 
319
319
  ### Return type
320
320
 
@@ -297,7 +297,7 @@ account_id = 'account_id_example' # String | Account ID
297
297
  opts = {
298
298
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
299
299
  page: 1, # Integer | Page number
300
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
300
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
301
301
  }
302
302
 
303
303
  begin
@@ -317,7 +317,7 @@ Name | Type | Description | Notes
317
317
  **account_id** | **String**| Account ID |
318
318
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
319
319
  **page** | **Integer**| Page number | [optional]
320
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
320
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
321
321
 
322
322
  ### Return type
323
323
 
@@ -491,7 +491,7 @@ space_id = 'space_id_example' # String | Space ID
491
491
  opts = {
492
492
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
493
493
  page: 1, # Integer | Page number
494
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
494
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
495
495
  }
496
496
 
497
497
  begin
@@ -512,7 +512,7 @@ Name | Type | Description | Notes
512
512
  **space_id** | **String**| Space ID |
513
513
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
514
514
  **page** | **Integer**| Page number | [optional]
515
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
515
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
516
516
 
517
517
  ### Return type
518
518
 
@@ -294,7 +294,7 @@ project_id = 'project_id_example' # String | Project ID
294
294
  opts = {
295
295
  x_phrase_app_otp: 'x_phrase_app_otp_example', # String | Two-Factor-Authentication token (optional)
296
296
  page: 1, # Integer | Page number
297
- per_page: 10 # Integer | allows you to specify a page size up to 100 items, 10 by default
297
+ per_page: 25 # Integer | allows you to specify a page size up to 100 items, 25 by default
298
298
  }
299
299
 
300
300
  begin
@@ -314,7 +314,7 @@ Name | Type | Description | Notes
314
314
  **project_id** | **String**| Project ID |
315
315
  **x_phrase_app_otp** | **String**| Two-Factor-Authentication token (optional) | [optional]
316
316
  **page** | **Integer**| Page number | [optional]
317
- **per_page** | **Integer**| allows you to specify a page size up to 100 items, 10 by default | [optional]
317
+ **per_page** | **Integer**| allows you to specify a page size up to 100 items, 25 by default | [optional]
318
318
 
319
319
  ### Return type
320
320