phrase 2.5.0 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -10
- data/docs/AccountsApi.md +2 -8
- data/docs/AuthorizationsApi.md +5 -20
- data/docs/BitbucketSyncApi.md +3 -12
- data/docs/BlacklistedKeysApi.md +5 -20
- data/docs/BranchesApi.md +7 -28
- data/docs/CommentsApi.md +8 -32
- data/docs/DistributionsApi.md +5 -20
- data/docs/DocumentsApi.md +2 -8
- data/docs/FormatsApi.md +1 -4
- data/docs/GitHubSyncApi.md +2 -8
- data/docs/GitLabSyncApi.md +7 -28
- data/docs/GlossariesApi.md +5 -20
- data/docs/GlossaryTermTranslationsApi.md +3 -12
- data/docs/GlossaryTermsApi.md +5 -20
- data/docs/ICUApi.md +1 -4
- data/docs/Invitation.md +2 -0
- data/docs/InvitationsApi.md +7 -28
- data/docs/JobLocalesApi.md +8 -32
- data/docs/JobTemplateLocalesApi.md +5 -20
- data/docs/JobTemplatesApi.md +5 -20
- data/docs/JobsApi.md +11 -44
- data/docs/KeysApi.md +11 -44
- data/docs/LocalesApi.md +7 -28
- data/docs/MembersApi.md +5 -20
- data/docs/NotificationGroupsApi.md +3 -12
- data/docs/NotificationsApi.md +3 -12
- data/docs/OrdersApi.md +5 -20
- data/docs/ProjectLocales.md +2 -0
- data/docs/ProjectMemberSpecific.md +27 -0
- data/docs/ProjectsApi.md +5 -20
- data/docs/ReleasesApi.md +6 -24
- data/docs/ScreenshotMarkersApi.md +5 -20
- data/docs/ScreenshotsApi.md +5 -20
- data/docs/SearchApi.md +1 -4
- data/docs/SpacesApi.md +8 -32
- data/docs/StyleGuidesApi.md +5 -20
- data/docs/TagsApi.md +4 -16
- data/docs/TeamsApi.md +11 -44
- data/docs/TranslationsApi.md +17 -68
- data/docs/UploadsApi.md +3 -12
- data/docs/UsersApi.md +1 -4
- data/docs/VariablesApi.md +5 -20
- data/docs/VersionsHistoryApi.md +2 -8
- data/docs/WebhooksApi.md +6 -24
- data/lib/phrase/api/accounts_api.rb +2 -2
- data/lib/phrase/api/authorizations_api.rb +5 -5
- data/lib/phrase/api/bitbucket_sync_api.rb +3 -3
- data/lib/phrase/api/blacklisted_keys_api.rb +5 -5
- data/lib/phrase/api/branches_api.rb +7 -7
- data/lib/phrase/api/comments_api.rb +8 -8
- data/lib/phrase/api/distributions_api.rb +5 -5
- data/lib/phrase/api/documents_api.rb +2 -2
- data/lib/phrase/api/formats_api.rb +1 -1
- data/lib/phrase/api/git_hub_sync_api.rb +2 -2
- data/lib/phrase/api/git_lab_sync_api.rb +7 -7
- data/lib/phrase/api/glossaries_api.rb +5 -5
- data/lib/phrase/api/glossary_term_translations_api.rb +3 -3
- data/lib/phrase/api/glossary_terms_api.rb +5 -5
- data/lib/phrase/api/icu_api.rb +1 -1
- data/lib/phrase/api/invitations_api.rb +7 -7
- data/lib/phrase/api/job_locales_api.rb +8 -8
- data/lib/phrase/api/job_template_locales_api.rb +5 -5
- data/lib/phrase/api/job_templates_api.rb +5 -5
- data/lib/phrase/api/jobs_api.rb +11 -11
- data/lib/phrase/api/keys_api.rb +11 -11
- data/lib/phrase/api/locales_api.rb +7 -7
- data/lib/phrase/api/members_api.rb +5 -5
- data/lib/phrase/api/notification_groups_api.rb +3 -3
- data/lib/phrase/api/notifications_api.rb +3 -3
- data/lib/phrase/api/orders_api.rb +5 -5
- data/lib/phrase/api/projects_api.rb +5 -5
- data/lib/phrase/api/releases_api.rb +6 -6
- data/lib/phrase/api/screenshot_markers_api.rb +5 -5
- data/lib/phrase/api/screenshots_api.rb +5 -5
- data/lib/phrase/api/search_api.rb +1 -1
- data/lib/phrase/api/spaces_api.rb +8 -8
- data/lib/phrase/api/style_guides_api.rb +5 -5
- data/lib/phrase/api/tags_api.rb +4 -4
- data/lib/phrase/api/teams_api.rb +11 -11
- data/lib/phrase/api/translations_api.rb +17 -17
- data/lib/phrase/api/uploads_api.rb +3 -3
- data/lib/phrase/api/users_api.rb +1 -1
- data/lib/phrase/api/variables_api.rb +5 -5
- data/lib/phrase/api/versions_history_api.rb +2 -2
- data/lib/phrase/api/webhooks_api.rb +6 -6
- data/lib/phrase/configuration.rb +0 -8
- data/lib/phrase/models/invitation.rb +12 -1
- data/lib/phrase/models/project_locales.rb +11 -2
- data/lib/phrase/models/project_member_specific.rb +239 -0
- data/lib/phrase/version.rb +1 -1
- data/lib/phrase.rb +1 -0
- data/spec/models/invitation_spec.rb +6 -0
- data/spec/models/project_locales_spec.rb +6 -0
- data/spec/models/project_member_specific_spec.rb +59 -0
- metadata +6 -2
data/docs/VariablesApi.md
CHANGED
@@ -34,9 +34,6 @@ Phrase.configure do |config|
|
|
34
34
|
# Configure API key authorization: Token
|
35
35
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
36
36
|
config.api_key_prefix['Authorization'] = 'token'
|
37
|
-
|
38
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
39
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
40
37
|
end
|
41
38
|
|
42
39
|
api_instance = Phrase::VariablesApi.new
|
@@ -70,7 +67,7 @@ Response<([**Variable**](Variable.md))>
|
|
70
67
|
|
71
68
|
### Authorization
|
72
69
|
|
73
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
70
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
74
71
|
|
75
72
|
### HTTP request headers
|
76
73
|
|
@@ -100,9 +97,6 @@ Phrase.configure do |config|
|
|
100
97
|
# Configure API key authorization: Token
|
101
98
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
102
99
|
config.api_key_prefix['Authorization'] = 'token'
|
103
|
-
|
104
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
105
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
106
100
|
end
|
107
101
|
|
108
102
|
api_instance = Phrase::VariablesApi.new
|
@@ -135,7 +129,7 @@ Response<(nil (empty response body))>
|
|
135
129
|
|
136
130
|
### Authorization
|
137
131
|
|
138
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
132
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
139
133
|
|
140
134
|
### HTTP request headers
|
141
135
|
|
@@ -165,9 +159,6 @@ Phrase.configure do |config|
|
|
165
159
|
# Configure API key authorization: Token
|
166
160
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
167
161
|
config.api_key_prefix['Authorization'] = 'token'
|
168
|
-
|
169
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
170
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
171
162
|
end
|
172
163
|
|
173
164
|
api_instance = Phrase::VariablesApi.new
|
@@ -201,7 +192,7 @@ Response<([**Variable**](Variable.md))>
|
|
201
192
|
|
202
193
|
### Authorization
|
203
194
|
|
204
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
195
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
205
196
|
|
206
197
|
### HTTP request headers
|
207
198
|
|
@@ -231,9 +222,6 @@ Phrase.configure do |config|
|
|
231
222
|
# Configure API key authorization: Token
|
232
223
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
233
224
|
config.api_key_prefix['Authorization'] = 'token'
|
234
|
-
|
235
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
236
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
237
225
|
end
|
238
226
|
|
239
227
|
api_instance = Phrase::VariablesApi.new
|
@@ -269,7 +257,7 @@ Response<([**Variable**](Variable.md))>
|
|
269
257
|
|
270
258
|
### Authorization
|
271
259
|
|
272
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
260
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
273
261
|
|
274
262
|
### HTTP request headers
|
275
263
|
|
@@ -299,9 +287,6 @@ Phrase.configure do |config|
|
|
299
287
|
# Configure API key authorization: Token
|
300
288
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
301
289
|
config.api_key_prefix['Authorization'] = 'token'
|
302
|
-
|
303
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
304
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
305
290
|
end
|
306
291
|
|
307
292
|
api_instance = Phrase::VariablesApi.new
|
@@ -337,7 +322,7 @@ Response<([**Array<Variable>**](Variable.md))>
|
|
337
322
|
|
338
323
|
### Authorization
|
339
324
|
|
340
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
325
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
341
326
|
|
342
327
|
### HTTP request headers
|
343
328
|
|
data/docs/VersionsHistoryApi.md
CHANGED
@@ -31,9 +31,6 @@ Phrase.configure do |config|
|
|
31
31
|
# Configure API key authorization: Token
|
32
32
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
33
33
|
config.api_key_prefix['Authorization'] = 'token'
|
34
|
-
|
35
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
36
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
37
34
|
end
|
38
35
|
|
39
36
|
api_instance = Phrase::VersionsHistoryApi.new
|
@@ -71,7 +68,7 @@ Response<([**TranslationVersionWithUser**](TranslationVersionWithUser.md))>
|
|
71
68
|
|
72
69
|
### Authorization
|
73
70
|
|
74
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
71
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
75
72
|
|
76
73
|
### HTTP request headers
|
77
74
|
|
@@ -101,9 +98,6 @@ Phrase.configure do |config|
|
|
101
98
|
# Configure API key authorization: Token
|
102
99
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
103
100
|
config.api_key_prefix['Authorization'] = 'token'
|
104
|
-
|
105
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
106
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
107
101
|
end
|
108
102
|
|
109
103
|
api_instance = Phrase::VersionsHistoryApi.new
|
@@ -143,7 +137,7 @@ Response<([**Array<TranslationVersion>**](TranslationVersion.md))>
|
|
143
137
|
|
144
138
|
### Authorization
|
145
139
|
|
146
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
140
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
147
141
|
|
148
142
|
### HTTP request headers
|
149
143
|
|
data/docs/WebhooksApi.md
CHANGED
@@ -35,9 +35,6 @@ Phrase.configure do |config|
|
|
35
35
|
# Configure API key authorization: Token
|
36
36
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
37
37
|
config.api_key_prefix['Authorization'] = 'token'
|
38
|
-
|
39
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
40
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
41
38
|
end
|
42
39
|
|
43
40
|
api_instance = Phrase::WebhooksApi.new
|
@@ -71,7 +68,7 @@ Response<([**Webhook**](Webhook.md))>
|
|
71
68
|
|
72
69
|
### Authorization
|
73
70
|
|
74
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
71
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
75
72
|
|
76
73
|
### HTTP request headers
|
77
74
|
|
@@ -101,9 +98,6 @@ Phrase.configure do |config|
|
|
101
98
|
# Configure API key authorization: Token
|
102
99
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
103
100
|
config.api_key_prefix['Authorization'] = 'token'
|
104
|
-
|
105
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
106
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
107
101
|
end
|
108
102
|
|
109
103
|
api_instance = Phrase::WebhooksApi.new
|
@@ -136,7 +130,7 @@ Response<(nil (empty response body))>
|
|
136
130
|
|
137
131
|
### Authorization
|
138
132
|
|
139
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
133
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
140
134
|
|
141
135
|
### HTTP request headers
|
142
136
|
|
@@ -166,9 +160,6 @@ Phrase.configure do |config|
|
|
166
160
|
# Configure API key authorization: Token
|
167
161
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
168
162
|
config.api_key_prefix['Authorization'] = 'token'
|
169
|
-
|
170
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
171
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
172
163
|
end
|
173
164
|
|
174
165
|
api_instance = Phrase::WebhooksApi.new
|
@@ -202,7 +193,7 @@ Response<([**Webhook**](Webhook.md))>
|
|
202
193
|
|
203
194
|
### Authorization
|
204
195
|
|
205
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
196
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
206
197
|
|
207
198
|
### HTTP request headers
|
208
199
|
|
@@ -232,9 +223,6 @@ Phrase.configure do |config|
|
|
232
223
|
# Configure API key authorization: Token
|
233
224
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
234
225
|
config.api_key_prefix['Authorization'] = 'token'
|
235
|
-
|
236
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
237
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
238
226
|
end
|
239
227
|
|
240
228
|
api_instance = Phrase::WebhooksApi.new
|
@@ -267,7 +255,7 @@ Response<(nil (empty response body))>
|
|
267
255
|
|
268
256
|
### Authorization
|
269
257
|
|
270
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
258
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
271
259
|
|
272
260
|
### HTTP request headers
|
273
261
|
|
@@ -297,9 +285,6 @@ Phrase.configure do |config|
|
|
297
285
|
# Configure API key authorization: Token
|
298
286
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
299
287
|
config.api_key_prefix['Authorization'] = 'token'
|
300
|
-
|
301
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
302
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
303
288
|
end
|
304
289
|
|
305
290
|
api_instance = Phrase::WebhooksApi.new
|
@@ -335,7 +320,7 @@ Response<([**Webhook**](Webhook.md))>
|
|
335
320
|
|
336
321
|
### Authorization
|
337
322
|
|
338
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
323
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
339
324
|
|
340
325
|
### HTTP request headers
|
341
326
|
|
@@ -365,9 +350,6 @@ Phrase.configure do |config|
|
|
365
350
|
# Configure API key authorization: Token
|
366
351
|
config.api_key['Authorization'] = 'YOUR API KEY'
|
367
352
|
config.api_key_prefix['Authorization'] = 'token'
|
368
|
-
|
369
|
-
# Configure Bearer authorization (JWT): bearerAuth
|
370
|
-
config.access_token = 'YOUR_BEARER_TOKEN'
|
371
353
|
end
|
372
354
|
|
373
355
|
api_instance = Phrase::WebhooksApi.new
|
@@ -403,7 +385,7 @@ Response<([**Array<Webhook>**](Webhook.md))>
|
|
403
385
|
|
404
386
|
### Authorization
|
405
387
|
|
406
|
-
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
388
|
+
[Basic](../README.md#Basic), [Token](../README.md#Token)
|
407
389
|
|
408
390
|
### HTTP request headers
|
409
391
|
|
@@ -54,7 +54,7 @@ module Phrase
|
|
54
54
|
return_type = opts[:return_type] || 'AccountDetails'
|
55
55
|
|
56
56
|
# auth_names
|
57
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
57
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
58
58
|
|
59
59
|
new_options = opts.merge(
|
60
60
|
:header_params => header_params,
|
@@ -120,7 +120,7 @@ module Phrase
|
|
120
120
|
return_type = opts[:return_type] || 'Array<Account>'
|
121
121
|
|
122
122
|
# auth_names
|
123
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
123
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
124
124
|
|
125
125
|
new_options = opts.merge(
|
126
126
|
:header_params => header_params,
|
@@ -56,7 +56,7 @@ module Phrase
|
|
56
56
|
return_type = opts[:return_type] || 'AuthorizationWithToken'
|
57
57
|
|
58
58
|
# auth_names
|
59
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
59
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
60
60
|
|
61
61
|
new_options = opts.merge(
|
62
62
|
:header_params => header_params,
|
@@ -120,7 +120,7 @@ module Phrase
|
|
120
120
|
return_type = opts[:return_type]
|
121
121
|
|
122
122
|
# auth_names
|
123
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
123
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
124
124
|
|
125
125
|
new_options = opts.merge(
|
126
126
|
:header_params => header_params,
|
@@ -186,7 +186,7 @@ module Phrase
|
|
186
186
|
return_type = opts[:return_type] || 'Authorization'
|
187
187
|
|
188
188
|
# auth_names
|
189
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
189
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
190
190
|
|
191
191
|
new_options = opts.merge(
|
192
192
|
:header_params => header_params,
|
@@ -260,7 +260,7 @@ module Phrase
|
|
260
260
|
return_type = opts[:return_type] || 'Authorization'
|
261
261
|
|
262
262
|
# auth_names
|
263
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
263
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
264
264
|
|
265
265
|
new_options = opts.merge(
|
266
266
|
:header_params => header_params,
|
@@ -326,7 +326,7 @@ module Phrase
|
|
326
326
|
return_type = opts[:return_type] || 'Array<Authorization>'
|
327
327
|
|
328
328
|
# auth_names
|
329
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
329
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
330
330
|
|
331
331
|
new_options = opts.merge(
|
332
332
|
:header_params => header_params,
|
@@ -62,7 +62,7 @@ module Phrase
|
|
62
62
|
return_type = opts[:return_type] || 'BitbucketSyncExportResponse'
|
63
63
|
|
64
64
|
# auth_names
|
65
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
65
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
66
66
|
|
67
67
|
new_options = opts.merge(
|
68
68
|
:header_params => header_params,
|
@@ -134,7 +134,7 @@ module Phrase
|
|
134
134
|
return_type = opts[:return_type]
|
135
135
|
|
136
136
|
# auth_names
|
137
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
137
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
138
138
|
|
139
139
|
new_options = opts.merge(
|
140
140
|
:header_params => header_params,
|
@@ -197,7 +197,7 @@ module Phrase
|
|
197
197
|
return_type = opts[:return_type] || 'Array<BitbucketSync>'
|
198
198
|
|
199
199
|
# auth_names
|
200
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
200
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
201
201
|
|
202
202
|
new_options = opts.merge(
|
203
203
|
:header_params => header_params,
|
@@ -62,7 +62,7 @@ module Phrase
|
|
62
62
|
return_type = opts[:return_type] || 'BlacklistedKey'
|
63
63
|
|
64
64
|
# auth_names
|
65
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
65
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
66
66
|
|
67
67
|
new_options = opts.merge(
|
68
68
|
:header_params => header_params,
|
@@ -132,7 +132,7 @@ module Phrase
|
|
132
132
|
return_type = opts[:return_type]
|
133
133
|
|
134
134
|
# auth_names
|
135
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
135
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
136
136
|
|
137
137
|
new_options = opts.merge(
|
138
138
|
:header_params => header_params,
|
@@ -204,7 +204,7 @@ module Phrase
|
|
204
204
|
return_type = opts[:return_type] || 'BlacklistedKey'
|
205
205
|
|
206
206
|
# auth_names
|
207
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
207
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
208
208
|
|
209
209
|
new_options = opts.merge(
|
210
210
|
:header_params => header_params,
|
@@ -284,7 +284,7 @@ module Phrase
|
|
284
284
|
return_type = opts[:return_type] || 'BlacklistedKey'
|
285
285
|
|
286
286
|
# auth_names
|
287
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
287
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
288
288
|
|
289
289
|
new_options = opts.merge(
|
290
290
|
:header_params => header_params,
|
@@ -359,7 +359,7 @@ module Phrase
|
|
359
359
|
return_type = opts[:return_type] || 'Array<BlacklistedKey>'
|
360
360
|
|
361
361
|
# auth_names
|
362
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
362
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
363
363
|
|
364
364
|
new_options = opts.merge(
|
365
365
|
:header_params => header_params,
|
@@ -58,7 +58,7 @@ module Phrase
|
|
58
58
|
return_type = opts[:return_type]
|
59
59
|
|
60
60
|
# auth_names
|
61
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
61
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
62
62
|
|
63
63
|
new_options = opts.merge(
|
64
64
|
:header_params => header_params,
|
@@ -132,7 +132,7 @@ module Phrase
|
|
132
132
|
return_type = opts[:return_type] || 'Branch'
|
133
133
|
|
134
134
|
# auth_names
|
135
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
135
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
136
136
|
|
137
137
|
new_options = opts.merge(
|
138
138
|
:header_params => header_params,
|
@@ -202,7 +202,7 @@ module Phrase
|
|
202
202
|
return_type = opts[:return_type]
|
203
203
|
|
204
204
|
# auth_names
|
205
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
205
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
206
206
|
|
207
207
|
new_options = opts.merge(
|
208
208
|
:header_params => header_params,
|
@@ -280,7 +280,7 @@ module Phrase
|
|
280
280
|
return_type = opts[:return_type]
|
281
281
|
|
282
282
|
# auth_names
|
283
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
283
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
284
284
|
|
285
285
|
new_options = opts.merge(
|
286
286
|
:header_params => header_params,
|
@@ -352,7 +352,7 @@ module Phrase
|
|
352
352
|
return_type = opts[:return_type] || 'Branch'
|
353
353
|
|
354
354
|
# auth_names
|
355
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
355
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
356
356
|
|
357
357
|
new_options = opts.merge(
|
358
358
|
:header_params => header_params,
|
@@ -432,7 +432,7 @@ module Phrase
|
|
432
432
|
return_type = opts[:return_type] || 'Branch'
|
433
433
|
|
434
434
|
# auth_names
|
435
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
435
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
436
436
|
|
437
437
|
new_options = opts.merge(
|
438
438
|
:header_params => header_params,
|
@@ -504,7 +504,7 @@ module Phrase
|
|
504
504
|
return_type = opts[:return_type] || 'Array<Branch>'
|
505
505
|
|
506
506
|
# auth_names
|
507
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
507
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
508
508
|
|
509
509
|
new_options = opts.merge(
|
510
510
|
:header_params => header_params,
|
@@ -68,7 +68,7 @@ module Phrase
|
|
68
68
|
return_type = opts[:return_type] || 'Comment'
|
69
69
|
|
70
70
|
# auth_names
|
71
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
71
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
72
72
|
|
73
73
|
new_options = opts.merge(
|
74
74
|
:header_params => header_params,
|
@@ -147,7 +147,7 @@ module Phrase
|
|
147
147
|
return_type = opts[:return_type]
|
148
148
|
|
149
149
|
# auth_names
|
150
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
150
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
151
151
|
|
152
152
|
new_options = opts.merge(
|
153
153
|
:header_params => header_params,
|
@@ -226,7 +226,7 @@ module Phrase
|
|
226
226
|
return_type = opts[:return_type]
|
227
227
|
|
228
228
|
# auth_names
|
229
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
229
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
230
230
|
|
231
231
|
new_options = opts.merge(
|
232
232
|
:header_params => header_params,
|
@@ -310,7 +310,7 @@ module Phrase
|
|
310
310
|
return_type = opts[:return_type]
|
311
311
|
|
312
312
|
# auth_names
|
313
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
313
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
314
314
|
|
315
315
|
new_options = opts.merge(
|
316
316
|
:header_params => header_params,
|
@@ -389,7 +389,7 @@ module Phrase
|
|
389
389
|
return_type = opts[:return_type]
|
390
390
|
|
391
391
|
# auth_names
|
392
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
392
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
393
393
|
|
394
394
|
new_options = opts.merge(
|
395
395
|
:header_params => header_params,
|
@@ -470,7 +470,7 @@ module Phrase
|
|
470
470
|
return_type = opts[:return_type] || 'Comment'
|
471
471
|
|
472
472
|
# auth_names
|
473
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
473
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
474
474
|
|
475
475
|
new_options = opts.merge(
|
476
476
|
:header_params => header_params,
|
@@ -556,7 +556,7 @@ module Phrase
|
|
556
556
|
return_type = opts[:return_type] || 'Comment'
|
557
557
|
|
558
558
|
# auth_names
|
559
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
559
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
560
560
|
|
561
561
|
new_options = opts.merge(
|
562
562
|
:header_params => header_params,
|
@@ -637,7 +637,7 @@ module Phrase
|
|
637
637
|
return_type = opts[:return_type] || 'Array<Comment>'
|
638
638
|
|
639
639
|
# auth_names
|
640
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
640
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
641
641
|
|
642
642
|
new_options = opts.merge(
|
643
643
|
:header_params => header_params,
|
@@ -62,7 +62,7 @@ module Phrase
|
|
62
62
|
return_type = opts[:return_type] || 'Distribution'
|
63
63
|
|
64
64
|
# auth_names
|
65
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
65
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
66
66
|
|
67
67
|
new_options = opts.merge(
|
68
68
|
:header_params => header_params,
|
@@ -132,7 +132,7 @@ module Phrase
|
|
132
132
|
return_type = opts[:return_type]
|
133
133
|
|
134
134
|
# auth_names
|
135
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
135
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
136
136
|
|
137
137
|
new_options = opts.merge(
|
138
138
|
:header_params => header_params,
|
@@ -204,7 +204,7 @@ module Phrase
|
|
204
204
|
return_type = opts[:return_type] || 'Distribution'
|
205
205
|
|
206
206
|
# auth_names
|
207
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
207
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
208
208
|
|
209
209
|
new_options = opts.merge(
|
210
210
|
:header_params => header_params,
|
@@ -284,7 +284,7 @@ module Phrase
|
|
284
284
|
return_type = opts[:return_type] || 'Distribution'
|
285
285
|
|
286
286
|
# auth_names
|
287
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
287
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
288
288
|
|
289
289
|
new_options = opts.merge(
|
290
290
|
:header_params => header_params,
|
@@ -356,7 +356,7 @@ module Phrase
|
|
356
356
|
return_type = opts[:return_type] || 'Array<DistributionPreview>'
|
357
357
|
|
358
358
|
# auth_names
|
359
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
359
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
360
360
|
|
361
361
|
new_options = opts.merge(
|
362
362
|
:header_params => header_params,
|
@@ -58,7 +58,7 @@ module Phrase
|
|
58
58
|
return_type = opts[:return_type]
|
59
59
|
|
60
60
|
# auth_names
|
61
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
61
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
62
62
|
|
63
63
|
new_options = opts.merge(
|
64
64
|
:header_params => header_params,
|
@@ -130,7 +130,7 @@ module Phrase
|
|
130
130
|
return_type = opts[:return_type] || 'Array<Document>'
|
131
131
|
|
132
132
|
# auth_names
|
133
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
133
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
134
134
|
|
135
135
|
new_options = opts.merge(
|
136
136
|
:header_params => header_params,
|
@@ -48,7 +48,7 @@ module Phrase
|
|
48
48
|
return_type = opts[:return_type] || 'Array<Format>'
|
49
49
|
|
50
50
|
# auth_names
|
51
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
51
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
52
52
|
|
53
53
|
new_options = opts.merge(
|
54
54
|
:header_params => header_params,
|
@@ -56,7 +56,7 @@ module Phrase
|
|
56
56
|
return_type = opts[:return_type]
|
57
57
|
|
58
58
|
# auth_names
|
59
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
59
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
60
60
|
|
61
61
|
new_options = opts.merge(
|
62
62
|
:header_params => header_params,
|
@@ -124,7 +124,7 @@ module Phrase
|
|
124
124
|
return_type = opts[:return_type]
|
125
125
|
|
126
126
|
# auth_names
|
127
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
127
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
128
128
|
|
129
129
|
new_options = opts.merge(
|
130
130
|
:header_params => header_params,
|
@@ -55,7 +55,7 @@ module Phrase
|
|
55
55
|
return_type = opts[:return_type]
|
56
56
|
|
57
57
|
# auth_names
|
58
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
58
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
59
59
|
|
60
60
|
new_options = opts.merge(
|
61
61
|
:header_params => header_params,
|
@@ -129,7 +129,7 @@ module Phrase
|
|
129
129
|
return_type = opts[:return_type] || 'GitlabSyncExport'
|
130
130
|
|
131
131
|
# auth_names
|
132
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
132
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
133
133
|
|
134
134
|
new_options = opts.merge(
|
135
135
|
:header_params => header_params,
|
@@ -204,7 +204,7 @@ module Phrase
|
|
204
204
|
return_type = opts[:return_type] || 'Array<GitlabSyncHistory>'
|
205
205
|
|
206
206
|
# auth_names
|
207
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
207
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
208
208
|
|
209
209
|
new_options = opts.merge(
|
210
210
|
:header_params => header_params,
|
@@ -278,7 +278,7 @@ module Phrase
|
|
278
278
|
return_type = opts[:return_type] || 'Array<Upload>'
|
279
279
|
|
280
280
|
# auth_names
|
281
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
281
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
282
282
|
|
283
283
|
new_options = opts.merge(
|
284
284
|
:header_params => header_params,
|
@@ -341,7 +341,7 @@ module Phrase
|
|
341
341
|
return_type = opts[:return_type] || 'Array<GitlabSync>'
|
342
342
|
|
343
343
|
# auth_names
|
344
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
344
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
345
345
|
|
346
346
|
new_options = opts.merge(
|
347
347
|
:header_params => header_params,
|
@@ -410,7 +410,7 @@ module Phrase
|
|
410
410
|
return_type = opts[:return_type] || 'GitlabSync'
|
411
411
|
|
412
412
|
# auth_names
|
413
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
413
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
414
414
|
|
415
415
|
new_options = opts.merge(
|
416
416
|
:header_params => header_params,
|
@@ -488,7 +488,7 @@ module Phrase
|
|
488
488
|
return_type = opts[:return_type] || 'GitlabSync'
|
489
489
|
|
490
490
|
# auth_names
|
491
|
-
auth_names = opts[:auth_names] || ['Basic', 'Token'
|
491
|
+
auth_names = opts[:auth_names] || ['Basic', 'Token']
|
492
492
|
|
493
493
|
new_options = opts.merge(
|
494
494
|
:header_params => header_params,
|