phrase 1.0.2 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -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/Job.md +5 -1
  23. data/docs/JobCreateParameters.md +2 -0
  24. data/docs/JobDetails.md +4 -0
  25. data/docs/JobLocalesApi.md +2 -2
  26. data/docs/JobUpdateParameters.md +3 -1
  27. data/docs/JobsApi.md +74 -2
  28. data/docs/KeysApi.md +4 -4
  29. data/docs/LocalesApi.md +2 -2
  30. data/docs/MembersApi.md +2 -2
  31. data/docs/OrdersApi.md +2 -2
  32. data/docs/Project.md +2 -0
  33. data/docs/ProjectDetails.md +2 -2
  34. data/docs/ProjectsApi.md +2 -2
  35. data/docs/ReleasesApi.md +2 -2
  36. data/docs/ScreenshotMarkersApi.md +2 -2
  37. data/docs/ScreenshotsApi.md +4 -2
  38. data/docs/SpacesApi.md +4 -4
  39. data/docs/StyleGuidesApi.md +2 -2
  40. data/docs/TagsApi.md +2 -2
  41. data/docs/TeamsApi.md +2 -2
  42. data/docs/TranslationsApi.md +8 -8
  43. data/docs/UploadsApi.md +2 -2
  44. data/docs/VersionsHistoryApi.md +2 -2
  45. data/docs/WebhookCreateParameters.md +2 -0
  46. data/docs/WebhookUpdateParameters.md +2 -0
  47. data/docs/WebhooksApi.md +2 -2
  48. data/lib/phrase.rb +7 -0
  49. data/lib/phrase/api/accounts_api.rb +2 -2
  50. data/lib/phrase/api/authorizations_api.rb +2 -2
  51. data/lib/phrase/api/blacklisted_keys_api.rb +5 -2
  52. data/lib/phrase/api/branches_api.rb +2 -2
  53. data/lib/phrase/api/comments_api.rb +2 -2
  54. data/lib/phrase/api/distributions_api.rb +2 -2
  55. data/lib/phrase/api/documents_api.rb +152 -0
  56. data/lib/phrase/api/git_hub_sync_api.rb +146 -0
  57. data/lib/phrase/api/git_lab_sync_api.rb +2 -2
  58. data/lib/phrase/api/glossaries_api.rb +2 -2
  59. data/lib/phrase/api/glossary_terms_api.rb +2 -2
  60. data/lib/phrase/api/invitations_api.rb +2 -2
  61. data/lib/phrase/api/job_locales_api.rb +2 -2
  62. data/lib/phrase/api/jobs_api.rb +83 -2
  63. data/lib/phrase/api/keys_api.rb +4 -4
  64. data/lib/phrase/api/locales_api.rb +2 -2
  65. data/lib/phrase/api/members_api.rb +2 -2
  66. data/lib/phrase/api/orders_api.rb +2 -2
  67. data/lib/phrase/api/projects_api.rb +2 -2
  68. data/lib/phrase/api/releases_api.rb +2 -2
  69. data/lib/phrase/api/screenshot_markers_api.rb +2 -2
  70. data/lib/phrase/api/screenshots_api.rb +5 -2
  71. data/lib/phrase/api/spaces_api.rb +4 -4
  72. data/lib/phrase/api/style_guides_api.rb +2 -2
  73. data/lib/phrase/api/tags_api.rb +2 -2
  74. data/lib/phrase/api/teams_api.rb +2 -2
  75. data/lib/phrase/api/translations_api.rb +8 -8
  76. data/lib/phrase/api/uploads_api.rb +2 -2
  77. data/lib/phrase/api/versions_history_api.rb +2 -2
  78. data/lib/phrase/api/webhooks_api.rb +2 -2
  79. data/lib/phrase/api_client.rb +2 -2
  80. data/lib/phrase/models/account.rb +10 -1
  81. data/lib/phrase/models/account_details.rb +13 -13
  82. data/lib/phrase/models/document.rb +221 -0
  83. data/lib/phrase/models/github_sync_export_parameters.rb +195 -0
  84. data/lib/phrase/models/github_sync_import_parameters.rb +195 -0
  85. data/lib/phrase/models/inline_response422.rb +205 -0
  86. data/lib/phrase/models/inline_response422_errors.rb +212 -0
  87. data/lib/phrase/models/job.rb +22 -4
  88. data/lib/phrase/models/job_create_parameters.rb +11 -1
  89. data/lib/phrase/models/job_details.rb +19 -1
  90. data/lib/phrase/models/job_update_parameters.rb +14 -4
  91. data/lib/phrase/models/project.rb +10 -1
  92. data/lib/phrase/models/project_details.rb +10 -10
  93. data/lib/phrase/models/webhook_create_parameters.rb +11 -1
  94. data/lib/phrase/models/webhook_update_parameters.rb +11 -1
  95. data/lib/phrase/version.rb +1 -1
  96. data/spec/api/accounts_api_spec.rb +1 -1
  97. data/spec/api/authorizations_api_spec.rb +1 -1
  98. data/spec/api/blacklisted_keys_api_spec.rb +2 -1
  99. data/spec/api/branches_api_spec.rb +1 -1
  100. data/spec/api/comments_api_spec.rb +1 -1
  101. data/spec/api/distributions_api_spec.rb +1 -1
  102. data/spec/api/documents_api_spec.rb +52 -0
  103. data/spec/api/git_hub_sync_api_spec.rb +49 -0
  104. data/spec/api/git_lab_sync_api_spec.rb +1 -1
  105. data/spec/api/glossaries_api_spec.rb +1 -1
  106. data/spec/api/glossary_terms_api_spec.rb +1 -1
  107. data/spec/api/invitations_api_spec.rb +1 -1
  108. data/spec/api/job_locales_api_spec.rb +1 -1
  109. data/spec/api/jobs_api_spec.rb +19 -1
  110. data/spec/api/keys_api_spec.rb +2 -2
  111. data/spec/api/locales_api_spec.rb +1 -1
  112. data/spec/api/members_api_spec.rb +1 -1
  113. data/spec/api/orders_api_spec.rb +1 -1
  114. data/spec/api/projects_api_spec.rb +1 -1
  115. data/spec/api/releases_api_spec.rb +1 -1
  116. data/spec/api/screenshot_markers_api_spec.rb +1 -1
  117. data/spec/api/screenshots_api_spec.rb +2 -1
  118. data/spec/api/spaces_api_spec.rb +2 -2
  119. data/spec/api/style_guides_api_spec.rb +1 -1
  120. data/spec/api/tags_api_spec.rb +1 -1
  121. data/spec/api/teams_api_spec.rb +1 -1
  122. data/spec/api/translations_api_spec.rb +4 -4
  123. data/spec/api/uploads_api_spec.rb +1 -1
  124. data/spec/api/versions_history_api_spec.rb +1 -1
  125. data/spec/api/webhooks_api_spec.rb +1 -1
  126. data/spec/models/account_details_spec.rb +4 -4
  127. data/spec/models/account_spec.rb +6 -0
  128. data/spec/models/document_spec.rb +47 -0
  129. data/spec/models/github_sync_export_parameters_spec.rb +29 -0
  130. data/spec/models/github_sync_import_parameters_spec.rb +29 -0
  131. data/spec/models/inline_response422_errors_spec.rb +41 -0
  132. data/spec/models/inline_response422_spec.rb +35 -0
  133. data/spec/models/job_create_parameters_spec.rb +6 -0
  134. data/spec/models/job_details_spec.rb +12 -0
  135. data/spec/models/job_spec.rb +12 -0
  136. data/spec/models/job_update_parameters_spec.rb +6 -0
  137. data/spec/models/project_details_spec.rb +6 -6
  138. data/spec/models/project_spec.rb +6 -0
  139. data/spec/models/webhook_create_parameters_spec.rb +6 -0
  140. data/spec/models/webhook_update_parameters_spec.rb +6 -0
  141. metadata +183 -155
@@ -70,7 +70,7 @@ describe 'UploadsApi' do
70
70
  # @param [Hash] opts the optional parameters
71
71
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
72
72
  # @option opts [Integer] :page Page number
73
- # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 10 by default
73
+ # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 25 by default
74
74
  # @option opts [String] :branch specify the branch to use
75
75
  # @return [Array<Upload>]
76
76
  describe 'uploads_list test' do
@@ -44,7 +44,7 @@ describe 'VersionsHistoryApi' do
44
44
  # @param [Hash] opts the optional parameters
45
45
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
46
46
  # @option opts [Integer] :page Page number
47
- # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 10 by default
47
+ # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 25 by default
48
48
  # @option opts [String] :branch specify the branch to use
49
49
  # @return [Array<TranslationVersion>]
50
50
  describe 'versions_list test' do
@@ -98,7 +98,7 @@ describe 'WebhooksApi' do
98
98
  # @param [Hash] opts the optional parameters
99
99
  # @option opts [String] :x_phrase_app_otp Two-Factor-Authentication token (optional)
100
100
  # @option opts [Integer] :page Page number
101
- # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 10 by default
101
+ # @option opts [Integer] :per_page allows you to specify a page size up to 100 items, 25 by default
102
102
  # @return [Array<Webhook>]
103
103
  describe 'webhooks_list test' do
104
104
  it 'should work' do
@@ -32,25 +32,25 @@ describe 'AccountDetails' do
32
32
  end
33
33
  end
34
34
 
35
- describe 'test attribute "company"' do
35
+ describe 'test attribute "slug"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "created_at"' do
41
+ describe 'test attribute "company"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "updated_at"' do
47
+ describe 'test attribute "created_at"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "slug"' do
53
+ describe 'test attribute "updated_at"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
@@ -32,6 +32,12 @@ describe 'Account' do
32
32
  end
33
33
  end
34
34
 
35
+ describe 'test attribute "slug"' 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
+
35
41
  describe 'test attribute "company"' do
36
42
  it 'should work' do
37
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,47 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::Document
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'Document' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::Document.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of Document' do
19
+ it 'should create an instance of Document' do
20
+ expect(@instance).to be_instance_of(Phrase::Document)
21
+ end
22
+ end
23
+ describe 'test attribute "id"' 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 "name"' 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,29 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::GithubSyncExportParameters
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'GithubSyncExportParameters' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::GithubSyncExportParameters.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of GithubSyncExportParameters' do
19
+ it 'should create an instance of GithubSyncExportParameters' do
20
+ expect(@instance).to be_instance_of(Phrase::GithubSyncExportParameters)
21
+ end
22
+ end
23
+ describe 'test attribute "project_id"' 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
+ end
@@ -0,0 +1,29 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::GithubSyncImportParameters
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'GithubSyncImportParameters' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::GithubSyncImportParameters.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of GithubSyncImportParameters' do
19
+ it 'should create an instance of GithubSyncImportParameters' do
20
+ expect(@instance).to be_instance_of(Phrase::GithubSyncImportParameters)
21
+ end
22
+ end
23
+ describe 'test attribute "project_id"' 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
+ end
@@ -0,0 +1,41 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::InlineResponse422Errors
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'InlineResponse422Errors' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::InlineResponse422Errors.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of InlineResponse422Errors' do
19
+ it 'should create an instance of InlineResponse422Errors' do
20
+ expect(@instance).to be_instance_of(Phrase::InlineResponse422Errors)
21
+ end
22
+ end
23
+ describe 'test attribute "resource"' 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 "field"' 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 "message"' 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
+ end
@@ -0,0 +1,35 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::InlineResponse422
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'InlineResponse422' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::InlineResponse422.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of InlineResponse422' do
19
+ it 'should create an instance of InlineResponse422' do
20
+ expect(@instance).to be_instance_of(Phrase::InlineResponse422)
21
+ end
22
+ end
23
+ describe 'test attribute "message"' 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 "errors"' 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
@@ -44,6 +44,12 @@ describe 'JobCreateParameters' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "ticket_url"' 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 "tags"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -50,6 +50,12 @@ describe 'JobDetails' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "ticket_url"' 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 "created_at"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -62,6 +68,12 @@ describe 'JobDetails' do
62
68
  end
63
69
  end
64
70
 
71
+ describe 'test attribute "project"' 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
+
65
77
  describe 'test attribute "owner"' do
66
78
  it 'should work' do
67
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -50,6 +50,12 @@ describe 'Job' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "ticket_url"' 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 "created_at"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -62,4 +68,10 @@ describe 'Job' do
62
68
  end
63
69
  end
64
70
 
71
+ describe 'test attribute "project"' 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
+
65
77
  end
@@ -44,4 +44,10 @@ describe 'JobUpdateParameters' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "ticket_url"' 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
  end
@@ -32,37 +32,37 @@ describe 'ProjectDetails' do
32
32
  end
33
33
  end
34
34
 
35
- describe 'test attribute "main_format"' do
35
+ describe 'test attribute "slug"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "project_image_url"' do
41
+ describe 'test attribute "main_format"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "account"' do
47
+ describe 'test attribute "project_image_url"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "created_at"' do
53
+ describe 'test attribute "account"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "updated_at"' do
59
+ describe 'test attribute "created_at"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "slug"' do
65
+ describe 'test attribute "updated_at"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
@@ -32,6 +32,12 @@ describe 'Project' do
32
32
  end
33
33
  end
34
34
 
35
+ describe 'test attribute "slug"' 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
+
35
41
  describe 'test attribute "main_format"' do
36
42
  it 'should work' do
37
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -26,6 +26,12 @@ describe 'WebhookCreateParameters' do
26
26
  end
27
27
  end
28
28
 
29
+ describe 'test attribute "secret"' 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
+
29
35
  describe 'test attribute "description"' do
30
36
  it 'should work' do
31
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -26,6 +26,12 @@ describe 'WebhookUpdateParameters' do
26
26
  end
27
27
  end
28
28
 
29
+ describe 'test attribute "secret"' 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
+
29
35
  describe 'test attribute "description"' do
30
36
  it 'should work' do
31
37
  # 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: 1.0.2
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phrase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-03 00:00:00.000000000 Z
11
+ date: 2020-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -131,9 +131,14 @@ files:
131
131
  - docs/DistributionPreview.md
132
132
  - docs/DistributionUpdateParameters.md
133
133
  - docs/DistributionsApi.md
134
+ - docs/Document.md
135
+ - docs/DocumentsApi.md
134
136
  - docs/Format.md
135
137
  - docs/FormatsApi.md
138
+ - docs/GitHubSyncApi.md
136
139
  - docs/GitLabSyncApi.md
140
+ - docs/GithubSyncExportParameters.md
141
+ - docs/GithubSyncImportParameters.md
137
142
  - docs/GitlabSync.md
138
143
  - docs/GitlabSyncExport.md
139
144
  - docs/GitlabSyncExportParameters.md
@@ -151,6 +156,8 @@ files:
151
156
  - docs/GlossaryTermUpdateParameters.md
152
157
  - docs/GlossaryTermsApi.md
153
158
  - docs/GlossaryUpdateParameters.md
159
+ - docs/InlineResponse422.md
160
+ - docs/InlineResponse422Errors.md
154
161
  - docs/Invitation.md
155
162
  - docs/InvitationCreateParameters.md
156
163
  - docs/InvitationUpdateParameters.md
@@ -287,7 +294,9 @@ files:
287
294
  - lib/phrase/api/branches_api.rb
288
295
  - lib/phrase/api/comments_api.rb
289
296
  - lib/phrase/api/distributions_api.rb
297
+ - lib/phrase/api/documents_api.rb
290
298
  - lib/phrase/api/formats_api.rb
299
+ - lib/phrase/api/git_hub_sync_api.rb
291
300
  - lib/phrase/api/git_lab_sync_api.rb
292
301
  - lib/phrase/api/glossaries_api.rb
293
302
  - lib/phrase/api/glossary_term_translations_api.rb
@@ -344,7 +353,10 @@ files:
344
353
  - lib/phrase/models/distribution_create_parameters.rb
345
354
  - lib/phrase/models/distribution_preview.rb
346
355
  - lib/phrase/models/distribution_update_parameters.rb
356
+ - lib/phrase/models/document.rb
347
357
  - lib/phrase/models/format.rb
358
+ - lib/phrase/models/github_sync_export_parameters.rb
359
+ - lib/phrase/models/github_sync_import_parameters.rb
348
360
  - lib/phrase/models/gitlab_sync.rb
349
361
  - lib/phrase/models/gitlab_sync_export.rb
350
362
  - lib/phrase/models/gitlab_sync_export_parameters.rb
@@ -359,6 +371,8 @@ files:
359
371
  - lib/phrase/models/glossary_term_translation_update_parameters.rb
360
372
  - lib/phrase/models/glossary_term_update_parameters.rb
361
373
  - lib/phrase/models/glossary_update_parameters.rb
374
+ - lib/phrase/models/inline_response422.rb
375
+ - lib/phrase/models/inline_response422_errors.rb
362
376
  - lib/phrase/models/invitation.rb
363
377
  - lib/phrase/models/invitation_create_parameters.rb
364
378
  - lib/phrase/models/invitation_update_parameters.rb
@@ -476,7 +490,9 @@ files:
476
490
  - spec/api/branches_api_spec.rb
477
491
  - spec/api/comments_api_spec.rb
478
492
  - spec/api/distributions_api_spec.rb
493
+ - spec/api/documents_api_spec.rb
479
494
  - spec/api/formats_api_spec.rb
495
+ - spec/api/git_hub_sync_api_spec.rb
480
496
  - spec/api/git_lab_sync_api_spec.rb
481
497
  - spec/api/glossaries_api_spec.rb
482
498
  - spec/api/glossary_term_translations_api_spec.rb
@@ -532,7 +548,10 @@ files:
532
548
  - spec/models/distribution_preview_spec.rb
533
549
  - spec/models/distribution_spec.rb
534
550
  - spec/models/distribution_update_parameters_spec.rb
551
+ - spec/models/document_spec.rb
535
552
  - spec/models/format_spec.rb
553
+ - spec/models/github_sync_export_parameters_spec.rb
554
+ - spec/models/github_sync_import_parameters_spec.rb
536
555
  - spec/models/gitlab_sync_export_parameters_spec.rb
537
556
  - spec/models/gitlab_sync_export_spec.rb
538
557
  - spec/models/gitlab_sync_history_spec.rb
@@ -547,6 +566,8 @@ files:
547
566
  - spec/models/glossary_term_translation_update_parameters_spec.rb
548
567
  - spec/models/glossary_term_update_parameters_spec.rb
549
568
  - spec/models/glossary_update_parameters_spec.rb
569
+ - spec/models/inline_response422_errors_spec.rb
570
+ - spec/models/inline_response422_spec.rb
550
571
  - spec/models/invitation_create_parameters_spec.rb
551
572
  - spec/models/invitation_spec.rb
552
573
  - spec/models/invitation_update_parameters_spec.rb
@@ -684,189 +705,196 @@ summary: You can collaborate on language file translation with your team or orde
684
705
  locale files, tag keys or interact in other ways with the localization data stored
685
706
  in Phrase for your account.
686
707
  test_files:
687
- - spec/api/spaces_api_spec.rb
688
- - spec/api/glossary_terms_api_spec.rb
708
+ - spec/api/teams_api_spec.rb
689
709
  - spec/api/glossary_term_translations_api_spec.rb
690
- - spec/api/orders_api_spec.rb
691
- - spec/api/translations_api_spec.rb
692
- - spec/api/locales_api_spec.rb
710
+ - spec/api/members_api_spec.rb
711
+ - spec/api/authorizations_api_spec.rb
693
712
  - spec/api/comments_api_spec.rb
694
- - spec/api/job_locales_api_spec.rb
713
+ - spec/api/releases_api_spec.rb
714
+ - spec/api/translations_api_spec.rb
715
+ - spec/api/git_lab_sync_api_spec.rb
716
+ - spec/api/screenshots_api_spec.rb
717
+ - spec/api/style_guides_api_spec.rb
718
+ - spec/api/blacklisted_keys_api_spec.rb
695
719
  - spec/api/bitbucket_sync_api_spec.rb
696
- - spec/api/invitations_api_spec.rb
697
- - spec/api/tags_api_spec.rb
698
- - spec/api/accounts_api_spec.rb
699
- - spec/api/keys_api_spec.rb
700
- - spec/api/webhooks_api_spec.rb
720
+ - spec/api/glossaries_api_spec.rb
721
+ - spec/api/glossary_terms_api_spec.rb
722
+ - spec/api/jobs_api_spec.rb
701
723
  - spec/api/versions_history_api_spec.rb
702
- - spec/api/blacklisted_keys_api_spec.rb
703
- - spec/api/members_api_spec.rb
724
+ - spec/api/uploads_api_spec.rb
704
725
  - spec/api/distributions_api_spec.rb
705
- - spec/api/screenshots_api_spec.rb
706
- - spec/api/style_guides_api_spec.rb
707
- - spec/api/git_lab_sync_api_spec.rb
708
- - spec/api/teams_api_spec.rb
709
- - spec/api/branches_api_spec.rb
710
- - spec/api/users_api_spec.rb
711
726
  - spec/api/projects_api_spec.rb
712
- - spec/api/authorizations_api_spec.rb
713
- - spec/api/uploads_api_spec.rb
714
- - spec/api/jobs_api_spec.rb
715
- - spec/api/glossaries_api_spec.rb
727
+ - spec/api/job_locales_api_spec.rb
728
+ - spec/api/orders_api_spec.rb
729
+ - spec/api/accounts_api_spec.rb
730
+ - spec/api/webhooks_api_spec.rb
731
+ - spec/api/invitations_api_spec.rb
732
+ - spec/api/users_api_spec.rb
733
+ - spec/api/branches_api_spec.rb
734
+ - spec/api/locales_api_spec.rb
735
+ - spec/api/documents_api_spec.rb
736
+ - spec/api/keys_api_spec.rb
737
+ - spec/api/spaces_api_spec.rb
716
738
  - spec/api/screenshot_markers_api_spec.rb
739
+ - spec/api/git_hub_sync_api_spec.rb
740
+ - spec/api/tags_api_spec.rb
717
741
  - spec/api/formats_api_spec.rb
718
- - spec/api/releases_api_spec.rb
719
742
  - spec/api_client_spec.rb
720
743
  - spec/configuration_spec.rb
721
- - spec/models/translation_version_spec.rb
722
- - spec/models/job_details_spec.rb
723
- - spec/models/bitbucket_sync_export_response_spec.rb
724
- - spec/models/job_complete_parameters_spec.rb
725
- - spec/models/space_update_parameters_spec.rb
726
- - spec/models/tag_with_stats1_statistics_spec.rb
727
- - spec/models/user_preview_spec.rb
728
- - spec/models/spaces_projects_create_parameters_spec.rb
729
- - spec/models/glossary_spec.rb
730
- - spec/models/translation_version_with_user1_spec.rb
744
+ - spec/models/job_keys_create_parameters_spec.rb
745
+ - spec/models/styleguide_update_parameters_spec.rb
746
+ - spec/models/translation_details_spec.rb
747
+ - spec/models/locale_preview_spec.rb
748
+ - spec/models/translations_exclude_parameters_spec.rb
749
+ - spec/models/screenshot_marker_create_parameters_spec.rb
731
750
  - spec/models/job_locale_reopen_parameters_spec.rb
732
- - spec/models/bitbucket_sync_export_parameters_spec.rb
733
- - spec/models/distribution_spec.rb
734
- - spec/models/project_details_spec.rb
735
- - spec/models/bitbucket_sync_import_parameters_spec.rb
736
- - spec/models/locale_update_parameters_spec.rb
737
- - spec/models/account_details1_spec.rb
738
- - spec/models/distribution_create_parameters_spec.rb
751
+ - spec/models/translation_spec.rb
752
+ - spec/models/gitlab_sync_export_spec.rb
739
753
  - spec/models/upload_spec.rb
740
- - spec/models/affected_count_spec.rb
741
- - spec/models/locale_statistics_spec.rb
742
- - spec/models/gitlab_sync_history_spec.rb
754
+ - spec/models/spaces_projects_create_parameters_spec.rb
755
+ - spec/models/tag_with_stats_spec.rb
756
+ - spec/models/release_spec.rb
757
+ - spec/models/authorization_with_token1_spec.rb
758
+ - spec/models/styleguide_details1_spec.rb
759
+ - spec/models/styleguide_spec.rb
760
+ - spec/models/bitbucket_sync_export_response_spec.rb
761
+ - spec/models/webhook_update_parameters_spec.rb
743
762
  - spec/models/project_short_spec.rb
744
- - spec/models/keys_tag_parameters_spec.rb
745
- - spec/models/release_update_parameters_spec.rb
746
- - spec/models/glossary_term_create_parameters_spec.rb
747
- - spec/models/key_update_parameters_spec.rb
748
- - spec/models/gitlab_sync_import_parameters_spec.rb
749
- - spec/models/styleguide_update_parameters_spec.rb
750
- - spec/models/job_locale_complete_parameters_spec.rb
751
- - spec/models/translation_include_parameters_spec.rb
752
- - spec/models/tag_with_stats1_spec.rb
753
- - spec/models/gitlab_sync_export_spec.rb
754
- - spec/models/screenshot_create_parameters_spec.rb
755
- - spec/models/invitation_create_parameters_spec.rb
756
- - spec/models/member_update_parameters_spec.rb
757
- - spec/models/translation_update_parameters_spec.rb
758
- - spec/models/gitlab_sync_export_parameters_spec.rb
763
+ - spec/models/job_locale_spec.rb
764
+ - spec/models/order_create_parameters_spec.rb
765
+ - spec/models/translation_details1_spec.rb
766
+ - spec/models/job_start_parameters_spec.rb
759
767
  - spec/models/team_create_parameters_spec.rb
760
- - spec/models/styleguide_details_spec.rb
761
- - spec/models/glossary_create_parameters_spec.rb
762
- - spec/models/comment_mark_read_parameters_spec.rb
763
- - spec/models/bitbucket_sync_spec.rb
764
- - spec/models/branch_spec.rb
765
- - spec/models/tag_create_parameters_spec.rb
766
- - spec/models/job_locale_update_parameters_spec.rb
767
- - spec/models/translation_verify_parameters_spec.rb
768
768
  - spec/models/authorization_update_parameters_spec.rb
769
- - spec/models/styleguide_spec.rb
770
- - spec/models/tag_with_stats1_statistics1_spec.rb
771
- - spec/models/job_keys_create_parameters_spec.rb
772
- - spec/models/translation_order_spec.rb
773
- - spec/models/keys_untag_parameters_spec.rb
774
- - spec/models/screenshot_update_parameters_spec.rb
775
- - spec/models/distribution_update_parameters_spec.rb
776
- - spec/models/translations_review_parameters_spec.rb
769
+ - spec/models/translation_verify_parameters_spec.rb
770
+ - spec/models/tag_with_stats1_statistics_spec.rb
771
+ - spec/models/translation_key_details_spec.rb
777
772
  - spec/models/team_spec.rb
778
- - spec/models/blacklisted_key_update_parameters_spec.rb
773
+ - spec/models/bitbucket_sync_import_parameters_spec.rb
774
+ - spec/models/authorization_spec.rb
775
+ - spec/models/github_sync_export_parameters_spec.rb
776
+ - spec/models/affected_count_spec.rb
777
+ - spec/models/key_create_parameters_spec.rb
778
+ - spec/models/branch_create_parameters_spec.rb
779
+ - spec/models/bitbucket_sync_spec.rb
779
780
  - spec/models/team_update_parameters_spec.rb
780
- - spec/models/invitation_spec.rb
781
- - spec/models/authorization_create_parameters_spec.rb
782
- - spec/models/locale_create_parameters_spec.rb
783
- - spec/models/order_create_parameters_spec.rb
784
- - spec/models/blacklisted_key_spec.rb
781
+ - spec/models/styleguide_create_parameters_spec.rb
782
+ - spec/models/styleguide_preview_spec.rb
783
+ - spec/models/member_update_parameters_spec.rb
785
784
  - spec/models/user_spec.rb
786
- - spec/models/job_spec.rb
787
- - spec/models/tag_with_stats_spec.rb
785
+ - spec/models/translation_order_spec.rb
786
+ - spec/models/authorization_create_parameters_spec.rb
787
+ - spec/models/job_preview_spec.rb
788
+ - spec/models/gitlab_sync_export_parameters_spec.rb
788
789
  - spec/models/gitlab_sync_spec.rb
789
- - spec/models/locale_details1_spec.rb
790
- - spec/models/key_preview_spec.rb
791
- - spec/models/invitation_update_parameters_spec.rb
792
- - spec/models/translations_include_parameters_spec.rb
793
- - spec/models/screenshot_spec.rb
794
- - spec/models/locale_spec.rb
795
- - spec/models/styleguide_details1_spec.rb
796
- - spec/models/job_create_parameters_spec.rb
797
- - spec/models/glossary_term_spec.rb
798
- - spec/models/release_preview_spec.rb
799
- - spec/models/member_spec.rb
800
- - spec/models/screenshot_marker_spec.rb
801
- - spec/models/upload_create_parameters_spec.rb
802
- - spec/models/translation_spec.rb
803
- - spec/models/locale_preview_spec.rb
804
- - spec/models/styleguide_preview_spec.rb
805
- - spec/models/release_spec.rb
806
- - spec/models/keys_search_parameters_spec.rb
807
- - spec/models/translation_unverify_parameters_spec.rb
808
790
  - spec/models/job_update_parameters_spec.rb
809
- - spec/models/comment_update_parameters_spec.rb
810
- - spec/models/account_details_spec.rb
811
- - spec/models/translations_search_parameters_spec.rb
812
- - spec/models/job_details1_spec.rb
813
- - spec/models/translation_key_details_spec.rb
814
- - spec/models/translation_create_parameters_spec.rb
815
- - spec/models/format_spec.rb
816
791
  - spec/models/teams_spaces_create_parameters_spec.rb
817
- - spec/models/project_locales1_spec.rb
818
- - spec/models/job_locales_create_parameters_spec.rb
819
- - spec/models/glossary_term_translation_update_parameters_spec.rb
820
- - spec/models/webhook_spec.rb
821
- - spec/models/space_create_parameters_spec.rb
822
- - spec/models/translations_exclude_parameters_spec.rb
823
- - spec/models/comment_spec.rb
792
+ - spec/models/locale_update_parameters_spec.rb
793
+ - spec/models/comment_create_parameters_spec.rb
794
+ - spec/models/job_spec.rb
795
+ - spec/models/translations_search_parameters_spec.rb
796
+ - spec/models/translation_key_details1_spec.rb
797
+ - spec/models/teams_projects_create_parameters_spec.rb
798
+ - spec/models/branch_update_parameters_spec.rb
799
+ - spec/models/screenshot_create_parameters_spec.rb
824
800
  - spec/models/order_confirm_parameters_spec.rb
801
+ - spec/models/job_locale_complete_parameters_spec.rb
802
+ - spec/models/gitlab_sync_history_spec.rb
803
+ - spec/models/screenshot_marker_spec.rb
804
+ - spec/models/locale_statistics_spec.rb
805
+ - spec/models/styleguide_details_spec.rb
806
+ - spec/models/release_create_parameters_spec.rb
807
+ - spec/models/job_locale_update_parameters_spec.rb
808
+ - spec/models/blacklisted_key_update_parameters_spec.rb
809
+ - spec/models/distribution_spec.rb
810
+ - spec/models/comment_update_parameters_spec.rb
811
+ - spec/models/translation_version_spec.rb
812
+ - spec/models/project_update_parameters_spec.rb
825
813
  - spec/models/screenshot_marker_update_parameters_spec.rb
814
+ - spec/models/key_preview_spec.rb
815
+ - spec/models/glossary_term_translation_create_parameters_spec.rb
816
+ - spec/models/job_reopen_parameters_spec.rb
817
+ - spec/models/user_preview_spec.rb
818
+ - spec/models/translation_create_parameters_spec.rb
826
819
  - spec/models/authorization_with_token_spec.rb
827
- - spec/models/glossary_update_parameters_spec.rb
828
- - spec/models/project_update_parameters_spec.rb
820
+ - spec/models/comment_spec.rb
821
+ - spec/models/glossary_term_translation_spec.rb
829
822
  - spec/models/branch_merge_parameters_spec.rb
830
- - spec/models/teams_projects_create_parameters_spec.rb
831
- - spec/models/authorization_with_token1_spec.rb
832
- - spec/models/branch_create_parameters_spec.rb
823
+ - spec/models/blacklisted_key_spec.rb
824
+ - spec/models/screenshot_update_parameters_spec.rb
825
+ - spec/models/distribution_create_parameters_spec.rb
826
+ - spec/models/account_details_spec.rb
827
+ - spec/models/release_preview_spec.rb
828
+ - spec/models/format_spec.rb
829
+ - spec/models/translations_unverify_parameters_spec.rb
830
+ - spec/models/team_detail_spec.rb
831
+ - spec/models/translation_review_parameters_spec.rb
832
+ - spec/models/translations_verify_parameters_spec.rb
833
+ - spec/models/project_spec.rb
834
+ - spec/models/translations_review_parameters_spec.rb
835
+ - spec/models/member_spec.rb
836
+ - spec/models/inline_response422_spec.rb
837
+ - spec/models/github_sync_import_parameters_spec.rb
838
+ - spec/models/keys_untag_parameters_spec.rb
833
839
  - spec/models/project_locales_spec.rb
834
- - spec/models/translation_exclude_parameters_spec.rb
835
- - spec/models/affected_resources_spec.rb
836
- - spec/models/glossary_term_translation_spec.rb
837
- - spec/models/key_create_parameters_spec.rb
838
- - spec/models/glossary_term_translation_create_parameters_spec.rb
839
- - spec/models/job_locale_spec.rb
840
- - spec/models/release_create_parameters_spec.rb
841
- - spec/models/distribution_preview_spec.rb
840
+ - spec/models/upload_summary_spec.rb
841
+ - spec/models/locale_spec.rb
842
+ - spec/models/project_locales1_spec.rb
843
+ - spec/models/project_details1_spec.rb
844
+ - spec/models/blacklisted_key_create_parameters_spec.rb
845
+ - spec/models/translation_include_parameters_spec.rb
842
846
  - spec/models/translation_version_with_user_spec.rb
843
- - spec/models/translation_key_details1_spec.rb
844
- - spec/models/translation_details_spec.rb
845
- - spec/models/project_create_parameters_spec.rb
846
- - spec/models/project_spec.rb
847
- - spec/models/locale_details_spec.rb
848
- - spec/models/job_start_parameters_spec.rb
849
847
  - spec/models/translation_key_spec.rb
850
- - spec/models/teams_users_create_parameters_spec.rb
851
- - spec/models/translation_review_parameters_spec.rb
852
- - spec/models/job_reopen_parameters_spec.rb
853
- - spec/models/blacklisted_key_create_parameters_spec.rb
854
- - spec/models/upload_summary_spec.rb
855
- - spec/models/authorization_spec.rb
856
- - spec/models/job_preview_spec.rb
848
+ - spec/models/affected_resources_spec.rb
849
+ - spec/models/project_details_spec.rb
850
+ - spec/models/bitbucket_sync_export_parameters_spec.rb
851
+ - spec/models/account_spec.rb
852
+ - spec/models/invitation_spec.rb
853
+ - spec/models/translations_include_parameters_spec.rb
854
+ - spec/models/locale_create_parameters_spec.rb
857
855
  - spec/models/glossary_term_update_parameters_spec.rb
858
- - spec/models/translations_verify_parameters_spec.rb
856
+ - spec/models/locale_details_spec.rb
857
+ - spec/models/tag_with_stats1_statistics1_spec.rb
858
+ - spec/models/space_update_parameters_spec.rb
859
+ - spec/models/glossary_create_parameters_spec.rb
859
860
  - spec/models/tag_spec.rb
860
- - spec/models/comment_create_parameters_spec.rb
861
- - spec/models/translation_details1_spec.rb
862
- - spec/models/project_details1_spec.rb
861
+ - spec/models/account_details1_spec.rb
862
+ - spec/models/glossary_spec.rb
863
+ - spec/models/job_details_spec.rb
864
+ - spec/models/gitlab_sync_import_parameters_spec.rb
865
+ - spec/models/job_details1_spec.rb
866
+ - spec/models/space_create_parameters_spec.rb
867
+ - spec/models/document_spec.rb
868
+ - spec/models/glossary_term_translation_update_parameters_spec.rb
869
+ - spec/models/distribution_update_parameters_spec.rb
870
+ - spec/models/tag_create_parameters_spec.rb
871
+ - spec/models/translation_unverify_parameters_spec.rb
872
+ - spec/models/job_complete_parameters_spec.rb
873
+ - spec/models/translation_exclude_parameters_spec.rb
874
+ - spec/models/invitation_update_parameters_spec.rb
863
875
  - spec/models/space_spec.rb
864
- - spec/models/webhook_update_parameters_spec.rb
865
- - spec/models/styleguide_create_parameters_spec.rb
866
- - spec/models/team_detail_spec.rb
867
- - spec/models/account_spec.rb
868
- - spec/models/screenshot_marker_create_parameters_spec.rb
876
+ - spec/models/glossary_term_spec.rb
877
+ - spec/models/screenshot_spec.rb
878
+ - spec/models/locale_details1_spec.rb
879
+ - spec/models/distribution_preview_spec.rb
880
+ - spec/models/job_create_parameters_spec.rb
881
+ - spec/models/release_update_parameters_spec.rb
882
+ - spec/models/keys_tag_parameters_spec.rb
883
+ - spec/models/keys_search_parameters_spec.rb
884
+ - spec/models/project_create_parameters_spec.rb
885
+ - spec/models/webhook_spec.rb
886
+ - spec/models/branch_spec.rb
887
+ - spec/models/comment_mark_read_parameters_spec.rb
888
+ - spec/models/glossary_update_parameters_spec.rb
889
+ - spec/models/invitation_create_parameters_spec.rb
890
+ - spec/models/upload_create_parameters_spec.rb
891
+ - spec/models/key_update_parameters_spec.rb
892
+ - spec/models/teams_users_create_parameters_spec.rb
869
893
  - spec/models/webhook_create_parameters_spec.rb
870
- - spec/models/branch_update_parameters_spec.rb
871
- - spec/models/translations_unverify_parameters_spec.rb
894
+ - spec/models/glossary_term_create_parameters_spec.rb
895
+ - spec/models/inline_response422_errors_spec.rb
896
+ - spec/models/tag_with_stats1_spec.rb
897
+ - spec/models/translation_version_with_user1_spec.rb
898
+ - spec/models/translation_update_parameters_spec.rb
899
+ - spec/models/job_locales_create_parameters_spec.rb
872
900
  - spec/spec_helper.rb