phrase 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,12 +14,14 @@ module Phrase
14
14
 
15
15
  attr_accessor :ticket_url
16
16
 
17
+ attr_accessor :project
18
+
19
+ attr_accessor :branch
20
+
17
21
  attr_accessor :created_at
18
22
 
19
23
  attr_accessor :updated_at
20
24
 
21
- attr_accessor :project
22
-
23
25
  attr_accessor :owner
24
26
 
25
27
  attr_accessor :job_tag_name
@@ -37,9 +39,10 @@ module Phrase
37
39
  :'due_date' => :'due_date',
38
40
  :'state' => :'state',
39
41
  :'ticket_url' => :'ticket_url',
42
+ :'project' => :'project',
43
+ :'branch' => :'branch',
40
44
  :'created_at' => :'created_at',
41
45
  :'updated_at' => :'updated_at',
42
- :'project' => :'project',
43
46
  :'owner' => :'owner',
44
47
  :'job_tag_name' => :'job_tag_name',
45
48
  :'locales' => :'locales',
@@ -56,9 +59,10 @@ module Phrase
56
59
  :'due_date' => :'DateTime',
57
60
  :'state' => :'String',
58
61
  :'ticket_url' => :'String',
62
+ :'project' => :'ProjectShort',
63
+ :'branch' => :'BranchName',
59
64
  :'created_at' => :'DateTime',
60
65
  :'updated_at' => :'DateTime',
61
- :'project' => :'ProjectShort',
62
66
  :'owner' => :'UserPreview',
63
67
  :'job_tag_name' => :'String',
64
68
  :'locales' => :'Array<LocalePreview>',
@@ -119,6 +123,14 @@ module Phrase
119
123
  self.ticket_url = attributes[:'ticket_url']
120
124
  end
121
125
 
126
+ if attributes.key?(:'project')
127
+ self.project = attributes[:'project']
128
+ end
129
+
130
+ if attributes.key?(:'branch')
131
+ self.branch = attributes[:'branch']
132
+ end
133
+
122
134
  if attributes.key?(:'created_at')
123
135
  self.created_at = attributes[:'created_at']
124
136
  end
@@ -127,10 +139,6 @@ module Phrase
127
139
  self.updated_at = attributes[:'updated_at']
128
140
  end
129
141
 
130
- if attributes.key?(:'project')
131
- self.project = attributes[:'project']
132
- end
133
-
134
142
  if attributes.key?(:'owner')
135
143
  self.owner = attributes[:'owner']
136
144
  end
@@ -176,9 +184,10 @@ module Phrase
176
184
  due_date == o.due_date &&
177
185
  state == o.state &&
178
186
  ticket_url == o.ticket_url &&
187
+ project == o.project &&
188
+ branch == o.branch &&
179
189
  created_at == o.created_at &&
180
190
  updated_at == o.updated_at &&
181
- project == o.project &&
182
191
  owner == o.owner &&
183
192
  job_tag_name == o.job_tag_name &&
184
193
  locales == o.locales &&
@@ -194,7 +203,7 @@ module Phrase
194
203
  # Calculates hash code according to all attributes.
195
204
  # @return [Integer] Hash code
196
205
  def hash
197
- [id, name, briefing, due_date, state, ticket_url, created_at, updated_at, project, owner, job_tag_name, locales, keys].hash
206
+ [id, name, briefing, due_date, state, ticket_url, project, branch, created_at, updated_at, owner, job_tag_name, locales, keys].hash
198
207
  end
199
208
 
200
209
  # Builds the object from hash
@@ -12,6 +12,8 @@ module Phrase
12
12
 
13
13
  attr_accessor :active
14
14
 
15
+ attr_accessor :include_branches
16
+
15
17
  attr_accessor :created_at
16
18
 
17
19
  attr_accessor :updated_at
@@ -24,6 +26,7 @@ module Phrase
24
26
  :'description' => :'description',
25
27
  :'events' => :'events',
26
28
  :'active' => :'active',
29
+ :'include_branches' => :'include_branches',
27
30
  :'created_at' => :'created_at',
28
31
  :'updated_at' => :'updated_at'
29
32
  }
@@ -37,6 +40,7 @@ module Phrase
37
40
  :'description' => :'String',
38
41
  :'events' => :'Array<String>',
39
42
  :'active' => :'Boolean',
43
+ :'include_branches' => :'Boolean',
40
44
  :'created_at' => :'DateTime',
41
45
  :'updated_at' => :'DateTime'
42
46
  }
@@ -85,6 +89,10 @@ module Phrase
85
89
  self.active = attributes[:'active']
86
90
  end
87
91
 
92
+ if attributes.key?(:'include_branches')
93
+ self.include_branches = attributes[:'include_branches']
94
+ end
95
+
88
96
  if attributes.key?(:'created_at')
89
97
  self.created_at = attributes[:'created_at']
90
98
  end
@@ -117,6 +125,7 @@ module Phrase
117
125
  description == o.description &&
118
126
  events == o.events &&
119
127
  active == o.active &&
128
+ include_branches == o.include_branches &&
120
129
  created_at == o.created_at &&
121
130
  updated_at == o.updated_at
122
131
  end
@@ -130,7 +139,7 @@ module Phrase
130
139
  # Calculates hash code according to all attributes.
131
140
  # @return [Integer] Hash code
132
141
  def hash
133
- [id, callback_url, description, events, active, created_at, updated_at].hash
142
+ [id, callback_url, description, events, active, include_branches, created_at, updated_at].hash
134
143
  end
135
144
 
136
145
  # Builds the object from hash
@@ -17,6 +17,9 @@ module Phrase
17
17
  # Whether webhook is active or inactive
18
18
  attr_accessor :active
19
19
 
20
+ # If enabled, webhook will also be triggered for events from branches of the project specified.
21
+ attr_accessor :include_branches
22
+
20
23
  # Attribute mapping from ruby-style variable name to JSON key.
21
24
  def self.attribute_map
22
25
  {
@@ -24,7 +27,8 @@ module Phrase
24
27
  :'secret' => :'secret',
25
28
  :'description' => :'description',
26
29
  :'events' => :'events',
27
- :'active' => :'active'
30
+ :'active' => :'active',
31
+ :'include_branches' => :'include_branches'
28
32
  }
29
33
  end
30
34
 
@@ -35,7 +39,8 @@ module Phrase
35
39
  :'secret' => :'String',
36
40
  :'description' => :'String',
37
41
  :'events' => :'String',
38
- :'active' => :'Boolean'
42
+ :'active' => :'Boolean',
43
+ :'include_branches' => :'Boolean'
39
44
  }
40
45
  end
41
46
 
@@ -79,6 +84,10 @@ module Phrase
79
84
  if attributes.key?(:'active')
80
85
  self.active = attributes[:'active']
81
86
  end
87
+
88
+ if attributes.key?(:'include_branches')
89
+ self.include_branches = attributes[:'include_branches']
90
+ end
82
91
  end
83
92
 
84
93
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -103,7 +112,8 @@ module Phrase
103
112
  secret == o.secret &&
104
113
  description == o.description &&
105
114
  events == o.events &&
106
- active == o.active
115
+ active == o.active &&
116
+ include_branches == o.include_branches
107
117
  end
108
118
 
109
119
  # @see the `==` method
@@ -115,7 +125,7 @@ module Phrase
115
125
  # Calculates hash code according to all attributes.
116
126
  # @return [Integer] Hash code
117
127
  def hash
118
- [callback_url, secret, description, events, active].hash
128
+ [callback_url, secret, description, events, active, include_branches].hash
119
129
  end
120
130
 
121
131
  # Builds the object from hash
@@ -17,6 +17,9 @@ module Phrase
17
17
  # Whether webhook is active or inactive
18
18
  attr_accessor :active
19
19
 
20
+ # If enabled, webhook will also be triggered for events from branches of the project specified.
21
+ attr_accessor :include_branches
22
+
20
23
  # Attribute mapping from ruby-style variable name to JSON key.
21
24
  def self.attribute_map
22
25
  {
@@ -24,7 +27,8 @@ module Phrase
24
27
  :'secret' => :'secret',
25
28
  :'description' => :'description',
26
29
  :'events' => :'events',
27
- :'active' => :'active'
30
+ :'active' => :'active',
31
+ :'include_branches' => :'include_branches'
28
32
  }
29
33
  end
30
34
 
@@ -35,7 +39,8 @@ module Phrase
35
39
  :'secret' => :'String',
36
40
  :'description' => :'String',
37
41
  :'events' => :'String',
38
- :'active' => :'Boolean'
42
+ :'active' => :'Boolean',
43
+ :'include_branches' => :'Boolean'
39
44
  }
40
45
  end
41
46
 
@@ -79,6 +84,10 @@ module Phrase
79
84
  if attributes.key?(:'active')
80
85
  self.active = attributes[:'active']
81
86
  end
87
+
88
+ if attributes.key?(:'include_branches')
89
+ self.include_branches = attributes[:'include_branches']
90
+ end
82
91
  end
83
92
 
84
93
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -103,7 +112,8 @@ module Phrase
103
112
  secret == o.secret &&
104
113
  description == o.description &&
105
114
  events == o.events &&
106
- active == o.active
115
+ active == o.active &&
116
+ include_branches == o.include_branches
107
117
  end
108
118
 
109
119
  # @see the `==` method
@@ -115,7 +125,7 @@ module Phrase
115
125
  # Calculates hash code according to all attributes.
116
126
  # @return [Integer] Hash code
117
127
  def hash
118
- [callback_url, secret, description, events, active].hash
128
+ [callback_url, secret, description, events, active, include_branches].hash
119
129
  end
120
130
 
121
131
  # Builds the object from hash
@@ -1,3 +1,3 @@
1
1
  module Phrase
2
- VERSION = '1.0.8'
2
+ VERSION = '1.0.9'
3
3
  end
@@ -61,6 +61,7 @@ describe 'LocalesApi' do
61
61
  # @option opts [String] :tags Limit results to keys tagged with a list of comma separated tag names.
62
62
  # @option opts [String] :tag Limit download to tagged keys. This parameter is deprecated. Please use the \&quot;tags\&quot; parameter instead
63
63
  # @option opts [Boolean] :include_empty_translations Indicates whether keys without translations should be included in the output as well.
64
+ # @option opts [Boolean] :exclude_empty_zero_forms Indicates whether zero forms should be included when empty in pluralized keys.
64
65
  # @option opts [Boolean] :include_translated_keys Include translated keys in the locale file. Use in combination with include_empty_translations to obtain only untranslated keys.
65
66
  # @option opts [Boolean] :keep_notranslate_tags Indicates whether [NOTRANSLATE] tags should be kept.
66
67
  # @option opts [Boolean] :convert_emoji This option is obsolete. Projects that were created on or after Nov 29th 2019 or that did not contain emoji by then will not require this flag any longer since emoji are now supported natively.
@@ -0,0 +1,29 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+ require 'date'
4
+
5
+ # Unit tests for Phrase::BranchName
6
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
7
+ # Please update as you see appropriate
8
+ describe 'BranchName' do
9
+ before do
10
+ # run before each test
11
+ @instance = Phrase::BranchName.new
12
+ end
13
+
14
+ after do
15
+ # run after each test
16
+ end
17
+
18
+ describe 'test an instance of BranchName' do
19
+ it 'should create an instance of BranchName' do
20
+ expect(@instance).to be_instance_of(Phrase::BranchName)
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
+ end
@@ -56,19 +56,25 @@ describe 'JobDetails' do
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "created_at"' do
59
+ describe 'test attribute "project"' 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 "updated_at"' do
65
+ describe 'test attribute "branch"' 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
69
69
  end
70
70
 
71
- describe 'test attribute "project"' do
71
+ describe 'test attribute "created_at"' 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
+
77
+ describe 'test attribute "updated_at"' do
72
78
  it 'should work' do
73
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
80
  end
@@ -56,19 +56,25 @@ describe 'Job' do
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "created_at"' do
59
+ describe 'test attribute "project"' 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 "updated_at"' do
65
+ describe 'test attribute "branch"' 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
69
69
  end
70
70
 
71
- describe 'test attribute "project"' do
71
+ describe 'test attribute "created_at"' 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
+
77
+ describe 'test attribute "updated_at"' do
72
78
  it 'should work' do
73
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
80
  end
@@ -50,4 +50,10 @@ describe 'WebhookCreateParameters' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "include_branches"' 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
  end
@@ -50,6 +50,12 @@ describe 'Webhook' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "include_branches"' 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
@@ -50,4 +50,10 @@ describe 'WebhookUpdateParameters' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "include_branches"' 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
  end
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.8
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phrase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-30 00:00:00.000000000 Z
11
+ date: 2020-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -119,6 +119,7 @@ files:
119
119
  - docs/Branch.md
120
120
  - docs/BranchCreateParameters.md
121
121
  - docs/BranchMergeParameters.md
122
+ - docs/BranchName.md
122
123
  - docs/BranchUpdateParameters.md
123
124
  - docs/BranchesApi.md
124
125
  - docs/Comment.md
@@ -344,6 +345,7 @@ files:
344
345
  - lib/phrase/models/branch.rb
345
346
  - lib/phrase/models/branch_create_parameters.rb
346
347
  - lib/phrase/models/branch_merge_parameters.rb
348
+ - lib/phrase/models/branch_name.rb
347
349
  - lib/phrase/models/branch_update_parameters.rb
348
350
  - lib/phrase/models/comment.rb
349
351
  - lib/phrase/models/comment_create_parameters.rb
@@ -538,6 +540,7 @@ files:
538
540
  - spec/models/blacklisted_key_update_parameters_spec.rb
539
541
  - spec/models/branch_create_parameters_spec.rb
540
542
  - spec/models/branch_merge_parameters_spec.rb
543
+ - spec/models/branch_name_spec.rb
541
544
  - spec/models/branch_spec.rb
542
545
  - spec/models/branch_update_parameters_spec.rb
543
546
  - spec/models/comment_create_parameters_spec.rb
@@ -705,196 +708,197 @@ summary: You can collaborate on language file translation with your team or orde
705
708
  locale files, tag keys or interact in other ways with the localization data stored
706
709
  in Phrase for your account.
707
710
  test_files:
708
- - spec/api/uploads_api_spec.rb
709
- - spec/api/glossary_terms_api_spec.rb
711
+ - spec/api/bitbucket_sync_api_spec.rb
710
712
  - spec/api/accounts_api_spec.rb
713
+ - spec/api/style_guides_api_spec.rb
714
+ - spec/api/versions_history_api_spec.rb
715
+ - spec/api/glossaries_api_spec.rb
716
+ - spec/api/jobs_api_spec.rb
717
+ - spec/api/git_lab_sync_api_spec.rb
718
+ - spec/api/members_api_spec.rb
711
719
  - spec/api/tags_api_spec.rb
712
720
  - spec/api/screenshot_markers_api_spec.rb
713
- - spec/api/glossary_term_translations_api_spec.rb
714
- - spec/api/releases_api_spec.rb
715
- - spec/api/orders_api_spec.rb
716
- - spec/api/members_api_spec.rb
717
- - spec/api/formats_api_spec.rb
718
- - spec/api/spaces_api_spec.rb
719
- - spec/api/git_lab_sync_api_spec.rb
721
+ - spec/api/blacklisted_keys_api_spec.rb
722
+ - spec/api/glossary_terms_api_spec.rb
723
+ - spec/api/invitations_api_spec.rb
720
724
  - spec/api/users_api_spec.rb
725
+ - spec/api/locales_api_spec.rb
721
726
  - spec/api/documents_api_spec.rb
722
- - spec/api/blacklisted_keys_api_spec.rb
723
- - spec/api/webhooks_api_spec.rb
724
- - spec/api/glossaries_api_spec.rb
727
+ - spec/api/uploads_api_spec.rb
728
+ - spec/api/distributions_api_spec.rb
729
+ - spec/api/git_hub_sync_api_spec.rb
725
730
  - spec/api/projects_api_spec.rb
731
+ - spec/api/formats_api_spec.rb
726
732
  - spec/api/teams_api_spec.rb
727
- - spec/api/screenshots_api_spec.rb
728
- - spec/api/versions_history_api_spec.rb
729
- - spec/api/jobs_api_spec.rb
730
- - spec/api/keys_api_spec.rb
731
- - spec/api/authorizations_api_spec.rb
732
733
  - spec/api/translations_api_spec.rb
733
- - spec/api/bitbucket_sync_api_spec.rb
734
- - spec/api/locales_api_spec.rb
734
+ - spec/api/glossary_term_translations_api_spec.rb
735
+ - spec/api/keys_api_spec.rb
736
+ - spec/api/screenshots_api_spec.rb
735
737
  - spec/api/comments_api_spec.rb
736
- - spec/api/git_hub_sync_api_spec.rb
737
- - spec/api/invitations_api_spec.rb
738
+ - spec/api/webhooks_api_spec.rb
738
739
  - spec/api/job_locales_api_spec.rb
739
- - spec/api/style_guides_api_spec.rb
740
- - spec/api/distributions_api_spec.rb
740
+ - spec/api/spaces_api_spec.rb
741
+ - spec/api/orders_api_spec.rb
742
+ - spec/api/authorizations_api_spec.rb
741
743
  - spec/api/branches_api_spec.rb
744
+ - spec/api/releases_api_spec.rb
742
745
  - spec/api_client_spec.rb
743
746
  - spec/configuration_spec.rb
744
- - spec/models/authorization_spec.rb
747
+ - spec/models/branch_merge_parameters_spec.rb
748
+ - spec/models/tag_spec.rb
749
+ - spec/models/inline_response422_spec.rb
750
+ - spec/models/team_spec.rb
751
+ - spec/models/distribution_create_parameters_spec.rb
752
+ - spec/models/translation_verify_parameters_spec.rb
753
+ - spec/models/job_locale_update_parameters_spec.rb
754
+ - spec/models/branch_spec.rb
745
755
  - spec/models/bitbucket_sync_import_parameters_spec.rb
746
- - spec/models/project_locales1_spec.rb
756
+ - spec/models/project_locales_spec.rb
757
+ - spec/models/screenshot_spec.rb
758
+ - spec/models/keys_untag_parameters_spec.rb
759
+ - spec/models/team_detail_spec.rb
760
+ - spec/models/styleguide_preview_spec.rb
761
+ - spec/models/translation_version_spec.rb
762
+ - spec/models/job_update_parameters_spec.rb
763
+ - spec/models/styleguide_details1_spec.rb
747
764
  - spec/models/styleguide_create_parameters_spec.rb
748
- - spec/models/translation_version_with_user1_spec.rb
765
+ - spec/models/job_keys_create_parameters_spec.rb
766
+ - spec/models/screenshot_marker_update_parameters_spec.rb
767
+ - spec/models/locale_update_parameters_spec.rb
768
+ - spec/models/translation_update_parameters_spec.rb
769
+ - spec/models/job_locale_complete_parameters_spec.rb
770
+ - spec/models/tag_create_parameters_spec.rb
771
+ - spec/models/job_create_parameters_spec.rb
772
+ - spec/models/invitation_spec.rb
773
+ - spec/models/gitlab_sync_import_parameters_spec.rb
774
+ - spec/models/job_details_spec.rb
775
+ - spec/models/key_preview_spec.rb
776
+ - spec/models/translation_create_parameters_spec.rb
777
+ - spec/models/translations_include_parameters_spec.rb
778
+ - spec/models/user_spec.rb
779
+ - spec/models/key_update_parameters_spec.rb
780
+ - spec/models/upload_summary_spec.rb
781
+ - spec/models/project_create_parameters_spec.rb
749
782
  - spec/models/glossary_term_translation_update_parameters_spec.rb
750
- - spec/models/translation_review_parameters_spec.rb
751
- - spec/models/branch_spec.rb
752
- - spec/models/distribution_update_parameters_spec.rb
753
- - spec/models/distribution_create_parameters_spec.rb
754
- - spec/models/member_spec.rb
755
- - spec/models/gitlab_sync_history_spec.rb
756
- - spec/models/translation_version_spec.rb
757
- - spec/models/tag_spec.rb
758
- - spec/models/team_update_parameters_spec.rb
759
- - spec/models/release_create_parameters_spec.rb
760
- - spec/models/gitlab_sync_spec.rb
761
- - spec/models/github_sync_export_parameters_spec.rb
762
- - spec/models/user_preview_spec.rb
763
- - spec/models/job_locale_spec.rb
764
- - spec/models/locale_create_parameters_spec.rb
765
- - spec/models/glossary_term_translation_spec.rb
783
+ - spec/models/project_spec.rb
784
+ - spec/models/account_details_spec.rb
785
+ - spec/models/project_update_parameters_spec.rb
786
+ - spec/models/team_create_parameters_spec.rb
787
+ - spec/models/invitation_update_parameters_spec.rb
788
+ - spec/models/translation_exclude_parameters_spec.rb
766
789
  - spec/models/glossary_term_update_parameters_spec.rb
767
- - spec/models/user_spec.rb
768
- - spec/models/comment_mark_read_parameters_spec.rb
769
- - spec/models/bitbucket_sync_export_parameters_spec.rb
770
- - spec/models/job_create_parameters_spec.rb
771
- - spec/models/keys_search_parameters_spec.rb
790
+ - spec/models/job_locale_spec.rb
772
791
  - spec/models/authorization_create_parameters_spec.rb
773
- - spec/models/translation_key_details_spec.rb
792
+ - spec/models/space_spec.rb
793
+ - spec/models/bitbucket_sync_export_response_spec.rb
774
794
  - spec/models/translations_verify_parameters_spec.rb
775
- - spec/models/blacklisted_key_create_parameters_spec.rb
776
- - spec/models/release_update_parameters_spec.rb
777
- - spec/models/key_preview_spec.rb
778
- - spec/models/distribution_preview_spec.rb
779
- - spec/models/job_reopen_parameters_spec.rb
780
- - spec/models/authorization_update_parameters_spec.rb
781
- - spec/models/screenshot_marker_spec.rb
782
- - spec/models/job_locale_update_parameters_spec.rb
783
- - spec/models/branch_merge_parameters_spec.rb
784
- - spec/models/styleguide_update_parameters_spec.rb
785
- - spec/models/screenshot_update_parameters_spec.rb
786
- - spec/models/translation_exclude_parameters_spec.rb
787
- - spec/models/translations_review_parameters_spec.rb
788
- - spec/models/comment_spec.rb
789
- - spec/models/keys_tag_parameters_spec.rb
790
- - spec/models/screenshot_create_parameters_spec.rb
795
+ - spec/models/affected_resources_spec.rb
796
+ - spec/models/account_spec.rb
791
797
  - spec/models/job_locales_create_parameters_spec.rb
798
+ - spec/models/member_spec.rb
799
+ - spec/models/release_create_parameters_spec.rb
800
+ - spec/models/screenshot_update_parameters_spec.rb
801
+ - spec/models/blacklisted_key_update_parameters_spec.rb
802
+ - spec/models/styleguide_update_parameters_spec.rb
803
+ - spec/models/job_locale_reopen_parameters_spec.rb
804
+ - spec/models/locale_details1_spec.rb
792
805
  - spec/models/github_sync_import_parameters_spec.rb
793
- - spec/models/job_locale_complete_parameters_spec.rb
794
- - spec/models/release_spec.rb
795
- - spec/models/screenshot_spec.rb
796
- - spec/models/translation_key_details1_spec.rb
797
- - spec/models/account_details_spec.rb
798
- - spec/models/invitation_update_parameters_spec.rb
799
- - spec/models/glossary_create_parameters_spec.rb
800
- - spec/models/styleguide_details1_spec.rb
801
- - spec/models/document_spec.rb
802
- - spec/models/glossary_update_parameters_spec.rb
803
- - spec/models/glossary_spec.rb
804
- - spec/models/translations_search_parameters_spec.rb
805
- - spec/models/translation_details1_spec.rb
806
- - spec/models/project_details1_spec.rb
807
- - spec/models/bitbucket_sync_spec.rb
808
- - spec/models/order_create_parameters_spec.rb
809
- - spec/models/locale_details_spec.rb
810
- - spec/models/styleguide_preview_spec.rb
806
+ - spec/models/branch_create_parameters_spec.rb
811
807
  - spec/models/tag_with_stats1_spec.rb
812
- - spec/models/project_short_spec.rb
808
+ - spec/models/gitlab_sync_export_spec.rb
809
+ - spec/models/webhook_update_parameters_spec.rb
810
+ - spec/models/authorization_update_parameters_spec.rb
811
+ - spec/models/translation_key_details1_spec.rb
812
+ - spec/models/team_update_parameters_spec.rb
813
+ - spec/models/translation_version_with_user_spec.rb
814
+ - spec/models/teams_projects_create_parameters_spec.rb
815
+ - spec/models/translations_review_parameters_spec.rb
816
+ - spec/models/release_spec.rb
813
817
  - spec/models/styleguide_details_spec.rb
814
- - spec/models/upload_summary_spec.rb
815
- - spec/models/locale_update_parameters_spec.rb
816
- - spec/models/authorization_with_token1_spec.rb
817
- - spec/models/bitbucket_sync_export_response_spec.rb
818
- - spec/models/translation_include_parameters_spec.rb
818
+ - spec/models/comment_mark_read_parameters_spec.rb
819
+ - spec/models/project_short_spec.rb
820
+ - spec/models/order_create_parameters_spec.rb
819
821
  - spec/models/upload_create_parameters_spec.rb
822
+ - spec/models/authorization_with_token_spec.rb
823
+ - spec/models/space_create_parameters_spec.rb
824
+ - spec/models/screenshot_create_parameters_spec.rb
825
+ - spec/models/document_spec.rb
826
+ - spec/models/translation_version_with_user1_spec.rb
827
+ - spec/models/glossary_term_translation_spec.rb
828
+ - spec/models/invitation_create_parameters_spec.rb
820
829
  - spec/models/gitlab_sync_export_parameters_spec.rb
830
+ - spec/models/member_update_parameters_spec.rb
831
+ - spec/models/bitbucket_sync_export_parameters_spec.rb
832
+ - spec/models/screenshot_marker_spec.rb
833
+ - spec/models/gitlab_sync_history_spec.rb
834
+ - spec/models/translation_details_spec.rb
835
+ - spec/models/affected_count_spec.rb
836
+ - spec/models/authorization_spec.rb
821
837
  - spec/models/webhook_create_parameters_spec.rb
822
- - spec/models/blacklisted_key_update_parameters_spec.rb
823
- - spec/models/translations_include_parameters_spec.rb
824
- - spec/models/comment_update_parameters_spec.rb
825
- - spec/models/translations_unverify_parameters_spec.rb
826
- - spec/models/locale_statistics_spec.rb
827
- - spec/models/invitation_create_parameters_spec.rb
828
- - spec/models/account_spec.rb
829
- - spec/models/key_update_parameters_spec.rb
830
- - spec/models/keys_untag_parameters_spec.rb
838
+ - spec/models/styleguide_spec.rb
839
+ - spec/models/keys_search_parameters_spec.rb
831
840
  - spec/models/job_details1_spec.rb
841
+ - spec/models/glossary_create_parameters_spec.rb
842
+ - spec/models/glossary_spec.rb
832
843
  - spec/models/tag_with_stats1_statistics1_spec.rb
833
- - spec/models/account_details1_spec.rb
844
+ - spec/models/translation_key_spec.rb
845
+ - spec/models/glossary_term_create_parameters_spec.rb
846
+ - spec/models/comment_create_parameters_spec.rb
847
+ - spec/models/job_preview_spec.rb
834
848
  - spec/models/inline_response422_errors_spec.rb
835
- - spec/models/team_create_parameters_spec.rb
836
- - spec/models/authorization_with_token_spec.rb
837
- - spec/models/styleguide_spec.rb
838
- - spec/models/blacklisted_key_spec.rb
839
- - spec/models/locale_spec.rb
840
- - spec/models/glossary_term_translation_create_parameters_spec.rb
841
- - spec/models/job_locale_reopen_parameters_spec.rb
842
- - spec/models/team_detail_spec.rb
843
- - spec/models/webhook_update_parameters_spec.rb
844
- - spec/models/branch_create_parameters_spec.rb
845
849
  - spec/models/upload_spec.rb
846
- - spec/models/format_spec.rb
847
- - spec/models/project_locales_spec.rb
848
- - spec/models/translation_order_spec.rb
849
- - spec/models/screenshot_marker_create_parameters_spec.rb
850
- - spec/models/translations_exclude_parameters_spec.rb
851
- - spec/models/teams_users_create_parameters_spec.rb
852
- - spec/models/translation_create_parameters_spec.rb
853
- - spec/models/translation_version_with_user_spec.rb
850
+ - spec/models/locale_details_spec.rb
851
+ - spec/models/locale_statistics_spec.rb
852
+ - spec/models/branch_name_spec.rb
853
+ - spec/models/blacklisted_key_spec.rb
854
854
  - spec/models/distribution_spec.rb
855
- - spec/models/locale_preview_spec.rb
856
- - spec/models/job_start_parameters_spec.rb
857
- - spec/models/gitlab_sync_import_parameters_spec.rb
858
- - spec/models/translation_key_spec.rb
859
- - spec/models/affected_count_spec.rb
855
+ - spec/models/spaces_projects_create_parameters_spec.rb
856
+ - spec/models/job_reopen_parameters_spec.rb
860
857
  - spec/models/teams_spaces_create_parameters_spec.rb
861
- - spec/models/space_update_parameters_spec.rb
862
- - spec/models/translation_unverify_parameters_spec.rb
863
- - spec/models/team_spec.rb
858
+ - spec/models/job_complete_parameters_spec.rb
859
+ - spec/models/tag_with_stats_spec.rb
860
+ - spec/models/translations_unverify_parameters_spec.rb
861
+ - spec/models/job_spec.rb
862
+ - spec/models/webhook_spec.rb
863
+ - spec/models/key_create_parameters_spec.rb
864
+ - spec/models/github_sync_export_parameters_spec.rb
864
865
  - spec/models/branch_update_parameters_spec.rb
865
- - spec/models/teams_projects_create_parameters_spec.rb
866
- - spec/models/space_spec.rb
867
- - spec/models/job_preview_spec.rb
868
- - spec/models/translation_verify_parameters_spec.rb
869
- - spec/models/glossary_term_spec.rb
870
- - spec/models/glossary_term_create_parameters_spec.rb
871
- - spec/models/project_details_spec.rb
872
- - spec/models/affected_resources_spec.rb
866
+ - spec/models/comment_spec.rb
867
+ - spec/models/project_details1_spec.rb
868
+ - spec/models/translation_order_spec.rb
873
869
  - spec/models/release_preview_spec.rb
874
- - spec/models/job_keys_create_parameters_spec.rb
875
- - spec/models/job_spec.rb
870
+ - spec/models/screenshot_marker_create_parameters_spec.rb
871
+ - spec/models/translation_unverify_parameters_spec.rb
872
+ - spec/models/keys_tag_parameters_spec.rb
873
+ - spec/models/project_locales1_spec.rb
874
+ - spec/models/bitbucket_sync_spec.rb
875
+ - spec/models/job_start_parameters_spec.rb
876
876
  - spec/models/translation_spec.rb
877
- - spec/models/project_create_parameters_spec.rb
877
+ - spec/models/translation_key_details_spec.rb
878
+ - spec/models/translation_review_parameters_spec.rb
879
+ - spec/models/authorization_with_token1_spec.rb
880
+ - spec/models/glossary_update_parameters_spec.rb
881
+ - spec/models/glossary_term_spec.rb
882
+ - spec/models/locale_preview_spec.rb
883
+ - spec/models/locale_create_parameters_spec.rb
884
+ - spec/models/translations_exclude_parameters_spec.rb
885
+ - spec/models/translations_search_parameters_spec.rb
886
+ - spec/models/translation_details1_spec.rb
887
+ - spec/models/project_details_spec.rb
878
888
  - spec/models/tag_with_stats1_statistics_spec.rb
879
- - spec/models/project_spec.rb
889
+ - spec/models/blacklisted_key_create_parameters_spec.rb
890
+ - spec/models/space_update_parameters_spec.rb
891
+ - spec/models/user_preview_spec.rb
892
+ - spec/models/teams_users_create_parameters_spec.rb
893
+ - spec/models/distribution_update_parameters_spec.rb
894
+ - spec/models/gitlab_sync_spec.rb
895
+ - spec/models/distribution_preview_spec.rb
896
+ - spec/models/glossary_term_translation_create_parameters_spec.rb
880
897
  - spec/models/order_confirm_parameters_spec.rb
881
- - spec/models/inline_response422_spec.rb
882
- - spec/models/job_update_parameters_spec.rb
883
- - spec/models/gitlab_sync_export_spec.rb
884
- - spec/models/space_create_parameters_spec.rb
885
- - spec/models/locale_details1_spec.rb
886
- - spec/models/job_details_spec.rb
887
- - spec/models/job_complete_parameters_spec.rb
888
- - spec/models/translation_update_parameters_spec.rb
889
- - spec/models/spaces_projects_create_parameters_spec.rb
890
- - spec/models/project_update_parameters_spec.rb
891
- - spec/models/member_update_parameters_spec.rb
892
- - spec/models/translation_details_spec.rb
893
- - spec/models/comment_create_parameters_spec.rb
894
- - spec/models/tag_with_stats_spec.rb
895
- - spec/models/key_create_parameters_spec.rb
896
- - spec/models/invitation_spec.rb
897
- - spec/models/tag_create_parameters_spec.rb
898
- - spec/models/webhook_spec.rb
899
- - spec/models/screenshot_marker_update_parameters_spec.rb
898
+ - spec/models/comment_update_parameters_spec.rb
899
+ - spec/models/locale_spec.rb
900
+ - spec/models/format_spec.rb
901
+ - spec/models/account_details1_spec.rb
902
+ - spec/models/translation_include_parameters_spec.rb
903
+ - spec/models/release_update_parameters_spec.rb
900
904
  - spec/spec_helper.rb