phrase 4.18.0 → 4.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +3 -3
- data/docs/JobCreateParameters.md +3 -1
- data/docs/JobTemplateCreateParameters.md +3 -1
- data/docs/JobTemplateUpdateParameters.md +3 -1
- data/docs/JobUpdateParameters.md +2 -0
- data/docs/KeyCreateParameters.md +1 -1
- data/docs/KeyUpdateParameters.md +1 -1
- data/docs/ProjectCreateParameters.md +1 -1
- data/docs/ProjectUpdateParameters.md +1 -1
- data/docs/ScreenshotUpdateParameters.md +1 -1
- data/docs/Upload.md +2 -0
- data/lib/phrase/models/job_create_parameters.rb +14 -2
- data/lib/phrase/models/job_template_create_parameters.rb +14 -4
- data/lib/phrase/models/job_template_update_parameters.rb +14 -4
- data/lib/phrase/models/job_update_parameters.rb +13 -1
- data/lib/phrase/models/upload.rb +10 -1
- data/lib/phrase/version.rb +1 -1
- data/spec/models/job_create_parameters_spec.rb +6 -0
- data/spec/models/job_template_create_parameters_spec.rb +6 -0
- data/spec/models/job_template_update_parameters_spec.rb +6 -0
- data/spec/models/job_update_parameters_spec.rb +6 -0
- data/spec/models/upload_spec.rb +6 -0
- metadata +237 -237
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b0e6f5b3eb7c7630fce3338c0f888b06a806175cca76668f2948b70c1a49468
|
|
4
|
+
data.tar.gz: 465f3bad0a99690a832a877c7c392b9c898e7c6c925f3b2f107a7a9bd8a534b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd73555f4319d6eefc6a664a66e689520172ef1f49a602639d8b04801228796b4a1ea7623969ff82573deeddaf1b8594a2326b6e2a74537d57d82bc32e44d941
|
|
7
|
+
data.tar.gz: ff43f77e4d92d012158919ea37056bb778264c000f0bb3381fe5cc3fda3bd381ad910497a8da0e3bafed90a3cf5bf78d3bb43654657e8b23082b55d6c8b47b19
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.20.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.19.0...ruby-v4.20.0) (2026-04-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **API:** Add target_locale_ids to jobs create/update ([#1106](https://github.com/phrase/strings-openapi/issues/1106)) ([00140ab](https://github.com/phrase/strings-openapi/commit/00140ab96ff351bec548e4af1f271f3e60087989))
|
|
9
|
+
|
|
10
|
+
## [4.19.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.18.0...ruby-v4.19.0) (2026-04-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **API:** Add source_locale_id to job templates create/update ([#1099](https://github.com/phrase/strings-openapi/issues/1099)) ([91be019](https://github.com/phrase/strings-openapi/commit/91be0196e2777e3a9ad1065556ac357f887f04e3))
|
|
16
|
+
* **API:** Include user in uploads [SCD-857] ([#1089](https://github.com/phrase/strings-openapi/issues/1089)) ([393f47a](https://github.com/phrase/strings-openapi/commit/393f47a789a526f74d33ca8d3991035872437c43))
|
|
17
|
+
|
|
3
18
|
## [4.18.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.17.0...ruby-v4.18.0) (2026-04-02)
|
|
4
19
|
|
|
5
20
|
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Phrase Strings is a translation management platform for software projects. You c
|
|
|
7
7
|
## This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0.0
|
|
10
|
-
- Package version: 4.
|
|
10
|
+
- Package version: 4.20.0
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [https://developers.phrase.com/api/](https://developers.phrase.com/api/)
|
|
13
13
|
|
|
@@ -56,10 +56,10 @@ gem build phrase.gemspec
|
|
|
56
56
|
Then install the gem locally:
|
|
57
57
|
|
|
58
58
|
```shell
|
|
59
|
-
gem install ./phrase-4.
|
|
59
|
+
gem install ./phrase-4.20.0.gem
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
(for development, run `gem install --dev ./phrase-4.
|
|
62
|
+
(for development, run `gem install --dev ./phrase-4.20.0.gem` to install the development dependencies)
|
|
63
63
|
|
|
64
64
|
## Getting Started
|
|
65
65
|
|
data/docs/JobCreateParameters.md
CHANGED
|
@@ -12,7 +12,8 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**ticket_url** | **String** | URL to a ticket for this job (e.g. Jira, Trello) | [optional]
|
|
13
13
|
**tags** | **Array<String>** | tags of keys that should be included within the job | [optional]
|
|
14
14
|
**translation_key_ids** | **Array<String>** | ids of keys that should be included within the job | [optional]
|
|
15
|
-
**
|
|
15
|
+
**target_locale_ids** | **Array<String>** | List of target locales for the job. Mutually exclusive with `job_template_id`. | [optional]
|
|
16
|
+
**job_template_id** | **String** | id of a job template you would like to model the created job after. Any manually added parameters will take preference over template attributes. Mutually exclusive with `target_locale_ids`. | [optional]
|
|
16
17
|
**autotranslate** | **Boolean** | Automatically translate the job using machine translation. | [optional]
|
|
17
18
|
|
|
18
19
|
## Code Sample
|
|
@@ -28,6 +29,7 @@ instance = Phrase::JobCreateParameters.new(branch: my-feature-branch,
|
|
|
28
29
|
ticket_url: https://example.atlassian.net/browse/FOO,
|
|
29
30
|
tags: ["myUploadTag"],
|
|
30
31
|
translation_key_ids: ["abcd1234cdef1234abcd1234cdef1234"],
|
|
32
|
+
target_locale_ids: ["abcd1234cdef1234abcd1234cdef1234"],
|
|
31
33
|
job_template_id: abcd1234cdef1234abcd1234cdef1234,
|
|
32
34
|
autotranslate: true)
|
|
33
35
|
```
|
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**name** | **String** | Job template name |
|
|
9
9
|
**briefing** | **String** | Briefing for the translators | [optional]
|
|
10
10
|
**autotranslate** | **Boolean** | Automatically translate the job using machine translation. | [optional]
|
|
11
|
+
**source_locale_id** | **String** | The API id of the source language. This locale will be set as source locale for the job template. If not provided, the project default locale will be used. | [optional]
|
|
11
12
|
|
|
12
13
|
## Code Sample
|
|
13
14
|
|
|
@@ -17,7 +18,8 @@ require 'Phrase'
|
|
|
17
18
|
instance = Phrase::JobTemplateCreateParameters.new(branch: my-feature-branch,
|
|
18
19
|
name: template,
|
|
19
20
|
briefing: text,
|
|
20
|
-
autotranslate: true
|
|
21
|
+
autotranslate: true,
|
|
22
|
+
source_locale_id: abcd1234cdef1234abcd1234cdef1234)
|
|
21
23
|
```
|
|
22
24
|
|
|
23
25
|
|
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**name** | **String** | Job template name |
|
|
9
9
|
**briefing** | **String** | Briefing for the translators | [optional]
|
|
10
10
|
**autotranslate** | **Boolean** | Automatically translate the job using machine translation. | [optional]
|
|
11
|
+
**source_locale_id** | **String** | The API id of the source language. This locale will be set as source locale for the job template. If not provided, the project default locale will be used. | [optional]
|
|
11
12
|
|
|
12
13
|
## Code Sample
|
|
13
14
|
|
|
@@ -17,7 +18,8 @@ require 'Phrase'
|
|
|
17
18
|
instance = Phrase::JobTemplateUpdateParameters.new(branch: my-feature-branch,
|
|
18
19
|
name: template,
|
|
19
20
|
briefing: text,
|
|
20
|
-
autotranslate: true
|
|
21
|
+
autotranslate: true,
|
|
22
|
+
source_locale_id: abcd1234cdef1234abcd1234cdef1234)
|
|
21
23
|
```
|
|
22
24
|
|
|
23
25
|
|
data/docs/JobUpdateParameters.md
CHANGED
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**briefing** | **String** | Briefing for the translators | [optional]
|
|
10
10
|
**due_date** | **Time** | Date the job should be finished | [optional]
|
|
11
11
|
**ticket_url** | **String** | URL to a ticket for this job (e.g. Jira, Trello) | [optional]
|
|
12
|
+
**target_locale_ids** | **Array<String>** | List of target locales for the job. | [optional]
|
|
12
13
|
**autotranslate** | **Boolean** | Automatically translate the job using machine translation | [optional]
|
|
13
14
|
|
|
14
15
|
## Code Sample
|
|
@@ -21,6 +22,7 @@ instance = Phrase::JobUpdateParameters.new(branch: my-feature-branch,
|
|
|
21
22
|
briefing: de-DE,
|
|
22
23
|
due_date: null,
|
|
23
24
|
ticket_url: https://example.atlassian.net/browse/FOO,
|
|
25
|
+
target_locale_ids: ["abcd1234cdef1234abcd1234cdef1234"],
|
|
24
26
|
autotranslate: true)
|
|
25
27
|
```
|
|
26
28
|
|
data/docs/KeyCreateParameters.md
CHANGED
|
@@ -38,7 +38,7 @@ instance = Phrase::KeyCreateParameters.new(branch: my-feature-branch,
|
|
|
38
38
|
data_type: number,
|
|
39
39
|
tags: awesome-feature,needs-proofreading,
|
|
40
40
|
max_characters_allowed: 140,
|
|
41
|
-
screenshot: [B@
|
|
41
|
+
screenshot: [B@3bbb5b2,
|
|
42
42
|
remove_screenshot: null,
|
|
43
43
|
unformatted: null,
|
|
44
44
|
default_translation_content: Default translation content,
|
data/docs/KeyUpdateParameters.md
CHANGED
|
@@ -36,7 +36,7 @@ instance = Phrase::KeyUpdateParameters.new(branch: my-feature-branch,
|
|
|
36
36
|
data_type: number,
|
|
37
37
|
tags: awesome-feature,needs-proofreading,
|
|
38
38
|
max_characters_allowed: 140,
|
|
39
|
-
screenshot: [B@
|
|
39
|
+
screenshot: [B@37c47166,
|
|
40
40
|
remove_screenshot: null,
|
|
41
41
|
unformatted: null,
|
|
42
42
|
xml_space_preserve: null,
|
|
@@ -39,7 +39,7 @@ instance = Phrase::ProjectCreateParameters.new(name: My Android Project,
|
|
|
39
39
|
main_format: yml,
|
|
40
40
|
media: Python,
|
|
41
41
|
shares_translation_memory: true,
|
|
42
|
-
project_image: [B@
|
|
42
|
+
project_image: [B@3c288a4e,
|
|
43
43
|
remove_project_image: null,
|
|
44
44
|
account_id: abcd1234,
|
|
45
45
|
point_of_contact: abcd1234,
|
|
@@ -41,7 +41,7 @@ instance = Phrase::ProjectUpdateParameters.new(account_id: abcd1234,
|
|
|
41
41
|
main_format: yml,
|
|
42
42
|
media: Python,
|
|
43
43
|
shares_translation_memory: true,
|
|
44
|
-
project_image: [B@
|
|
44
|
+
project_image: [B@27b27f3c,
|
|
45
45
|
remove_project_image: false,
|
|
46
46
|
workflow: review,
|
|
47
47
|
machine_translation_enabled: true,
|
data/docs/Upload.md
CHANGED
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**tag** | **String** | Unique tag of the upload | [optional]
|
|
12
12
|
**tags** | **Array<String>** | List of tags that were assigned to the uploaded keys | [optional]
|
|
13
13
|
**url** | **String** | The URL to the upload in Phrase Strings app. | [optional]
|
|
14
|
+
**user** | [**UserPreview**](.md) | | [optional]
|
|
14
15
|
**summary** | [**UploadSummary**](UploadSummary.md) | | [optional]
|
|
15
16
|
**created_at** | **Time** | | [optional]
|
|
16
17
|
**updated_at** | **Time** | | [optional]
|
|
@@ -27,6 +28,7 @@ instance = Phrase::Upload.new(id: null,
|
|
|
27
28
|
tag: null,
|
|
28
29
|
tags: null,
|
|
29
30
|
url: null,
|
|
31
|
+
user: null,
|
|
30
32
|
summary: null,
|
|
31
33
|
created_at: null,
|
|
32
34
|
updated_at: null)
|
|
@@ -26,7 +26,10 @@ module Phrase
|
|
|
26
26
|
# ids of keys that should be included within the job
|
|
27
27
|
attr_accessor :translation_key_ids
|
|
28
28
|
|
|
29
|
-
#
|
|
29
|
+
# List of target locales for the job. Mutually exclusive with `job_template_id`.
|
|
30
|
+
attr_accessor :target_locale_ids
|
|
31
|
+
|
|
32
|
+
# id of a job template you would like to model the created job after. Any manually added parameters will take preference over template attributes. Mutually exclusive with `target_locale_ids`.
|
|
30
33
|
attr_accessor :job_template_id
|
|
31
34
|
|
|
32
35
|
# Automatically translate the job using machine translation.
|
|
@@ -43,6 +46,7 @@ module Phrase
|
|
|
43
46
|
:'ticket_url' => :'ticket_url',
|
|
44
47
|
:'tags' => :'tags',
|
|
45
48
|
:'translation_key_ids' => :'translation_key_ids',
|
|
49
|
+
:'target_locale_ids' => :'target_locale_ids',
|
|
46
50
|
:'job_template_id' => :'job_template_id',
|
|
47
51
|
:'autotranslate' => :'autotranslate'
|
|
48
52
|
}
|
|
@@ -59,6 +63,7 @@ module Phrase
|
|
|
59
63
|
:'ticket_url' => :'String',
|
|
60
64
|
:'tags' => :'Array<String>',
|
|
61
65
|
:'translation_key_ids' => :'Array<String>',
|
|
66
|
+
:'target_locale_ids' => :'Array<String>',
|
|
62
67
|
:'job_template_id' => :'String',
|
|
63
68
|
:'autotranslate' => :'Boolean'
|
|
64
69
|
}
|
|
@@ -122,6 +127,12 @@ module Phrase
|
|
|
122
127
|
end
|
|
123
128
|
end
|
|
124
129
|
|
|
130
|
+
if attributes.key?(:'target_locale_ids')
|
|
131
|
+
if (value = attributes[:'target_locale_ids']).is_a?(Array)
|
|
132
|
+
self.target_locale_ids = value
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
125
136
|
if attributes.key?(:'job_template_id')
|
|
126
137
|
self.job_template_id = attributes[:'job_template_id']
|
|
127
138
|
end
|
|
@@ -162,6 +173,7 @@ module Phrase
|
|
|
162
173
|
ticket_url == o.ticket_url &&
|
|
163
174
|
tags == o.tags &&
|
|
164
175
|
translation_key_ids == o.translation_key_ids &&
|
|
176
|
+
target_locale_ids == o.target_locale_ids &&
|
|
165
177
|
job_template_id == o.job_template_id &&
|
|
166
178
|
autotranslate == o.autotranslate
|
|
167
179
|
end
|
|
@@ -175,7 +187,7 @@ module Phrase
|
|
|
175
187
|
# Calculates hash code according to all attributes.
|
|
176
188
|
# @return [Integer] Hash code
|
|
177
189
|
def hash
|
|
178
|
-
[branch, name, source_locale_id, briefing, due_date, ticket_url, tags, translation_key_ids, job_template_id, autotranslate].hash
|
|
190
|
+
[branch, name, source_locale_id, briefing, due_date, ticket_url, tags, translation_key_ids, target_locale_ids, job_template_id, autotranslate].hash
|
|
179
191
|
end
|
|
180
192
|
|
|
181
193
|
# Builds the object from hash
|
|
@@ -14,13 +14,17 @@ module Phrase
|
|
|
14
14
|
# Automatically translate the job using machine translation.
|
|
15
15
|
attr_accessor :autotranslate
|
|
16
16
|
|
|
17
|
+
# The API id of the source language. This locale will be set as source locale for the job template. If not provided, the project default locale will be used.
|
|
18
|
+
attr_accessor :source_locale_id
|
|
19
|
+
|
|
17
20
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
18
21
|
def self.attribute_map
|
|
19
22
|
{
|
|
20
23
|
:'branch' => :'branch',
|
|
21
24
|
:'name' => :'name',
|
|
22
25
|
:'briefing' => :'briefing',
|
|
23
|
-
:'autotranslate' => :'autotranslate'
|
|
26
|
+
:'autotranslate' => :'autotranslate',
|
|
27
|
+
:'source_locale_id' => :'source_locale_id'
|
|
24
28
|
}
|
|
25
29
|
end
|
|
26
30
|
|
|
@@ -30,7 +34,8 @@ module Phrase
|
|
|
30
34
|
:'branch' => :'String',
|
|
31
35
|
:'name' => :'String',
|
|
32
36
|
:'briefing' => :'String',
|
|
33
|
-
:'autotranslate' => :'Boolean'
|
|
37
|
+
:'autotranslate' => :'Boolean',
|
|
38
|
+
:'source_locale_id' => :'String'
|
|
34
39
|
}
|
|
35
40
|
end
|
|
36
41
|
|
|
@@ -70,6 +75,10 @@ module Phrase
|
|
|
70
75
|
if attributes.key?(:'autotranslate')
|
|
71
76
|
self.autotranslate = attributes[:'autotranslate']
|
|
72
77
|
end
|
|
78
|
+
|
|
79
|
+
if attributes.key?(:'source_locale_id')
|
|
80
|
+
self.source_locale_id = attributes[:'source_locale_id']
|
|
81
|
+
end
|
|
73
82
|
end
|
|
74
83
|
|
|
75
84
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -98,7 +107,8 @@ module Phrase
|
|
|
98
107
|
branch == o.branch &&
|
|
99
108
|
name == o.name &&
|
|
100
109
|
briefing == o.briefing &&
|
|
101
|
-
autotranslate == o.autotranslate
|
|
110
|
+
autotranslate == o.autotranslate &&
|
|
111
|
+
source_locale_id == o.source_locale_id
|
|
102
112
|
end
|
|
103
113
|
|
|
104
114
|
# @see the `==` method
|
|
@@ -110,7 +120,7 @@ module Phrase
|
|
|
110
120
|
# Calculates hash code according to all attributes.
|
|
111
121
|
# @return [Integer] Hash code
|
|
112
122
|
def hash
|
|
113
|
-
[branch, name, briefing, autotranslate].hash
|
|
123
|
+
[branch, name, briefing, autotranslate, source_locale_id].hash
|
|
114
124
|
end
|
|
115
125
|
|
|
116
126
|
# Builds the object from hash
|
|
@@ -14,13 +14,17 @@ module Phrase
|
|
|
14
14
|
# Automatically translate the job using machine translation.
|
|
15
15
|
attr_accessor :autotranslate
|
|
16
16
|
|
|
17
|
+
# The API id of the source language. This locale will be set as source locale for the job template. If not provided, the project default locale will be used.
|
|
18
|
+
attr_accessor :source_locale_id
|
|
19
|
+
|
|
17
20
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
18
21
|
def self.attribute_map
|
|
19
22
|
{
|
|
20
23
|
:'branch' => :'branch',
|
|
21
24
|
:'name' => :'name',
|
|
22
25
|
:'briefing' => :'briefing',
|
|
23
|
-
:'autotranslate' => :'autotranslate'
|
|
26
|
+
:'autotranslate' => :'autotranslate',
|
|
27
|
+
:'source_locale_id' => :'source_locale_id'
|
|
24
28
|
}
|
|
25
29
|
end
|
|
26
30
|
|
|
@@ -30,7 +34,8 @@ module Phrase
|
|
|
30
34
|
:'branch' => :'String',
|
|
31
35
|
:'name' => :'String',
|
|
32
36
|
:'briefing' => :'String',
|
|
33
|
-
:'autotranslate' => :'Boolean'
|
|
37
|
+
:'autotranslate' => :'Boolean',
|
|
38
|
+
:'source_locale_id' => :'String'
|
|
34
39
|
}
|
|
35
40
|
end
|
|
36
41
|
|
|
@@ -70,6 +75,10 @@ module Phrase
|
|
|
70
75
|
if attributes.key?(:'autotranslate')
|
|
71
76
|
self.autotranslate = attributes[:'autotranslate']
|
|
72
77
|
end
|
|
78
|
+
|
|
79
|
+
if attributes.key?(:'source_locale_id')
|
|
80
|
+
self.source_locale_id = attributes[:'source_locale_id']
|
|
81
|
+
end
|
|
73
82
|
end
|
|
74
83
|
|
|
75
84
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -98,7 +107,8 @@ module Phrase
|
|
|
98
107
|
branch == o.branch &&
|
|
99
108
|
name == o.name &&
|
|
100
109
|
briefing == o.briefing &&
|
|
101
|
-
autotranslate == o.autotranslate
|
|
110
|
+
autotranslate == o.autotranslate &&
|
|
111
|
+
source_locale_id == o.source_locale_id
|
|
102
112
|
end
|
|
103
113
|
|
|
104
114
|
# @see the `==` method
|
|
@@ -110,7 +120,7 @@ module Phrase
|
|
|
110
120
|
# Calculates hash code according to all attributes.
|
|
111
121
|
# @return [Integer] Hash code
|
|
112
122
|
def hash
|
|
113
|
-
[branch, name, briefing, autotranslate].hash
|
|
123
|
+
[branch, name, briefing, autotranslate, source_locale_id].hash
|
|
114
124
|
end
|
|
115
125
|
|
|
116
126
|
# Builds the object from hash
|
|
@@ -17,6 +17,9 @@ module Phrase
|
|
|
17
17
|
# URL to a ticket for this job (e.g. Jira, Trello)
|
|
18
18
|
attr_accessor :ticket_url
|
|
19
19
|
|
|
20
|
+
# List of target locales for the job.
|
|
21
|
+
attr_accessor :target_locale_ids
|
|
22
|
+
|
|
20
23
|
# Automatically translate the job using machine translation
|
|
21
24
|
attr_accessor :autotranslate
|
|
22
25
|
|
|
@@ -28,6 +31,7 @@ module Phrase
|
|
|
28
31
|
:'briefing' => :'briefing',
|
|
29
32
|
:'due_date' => :'due_date',
|
|
30
33
|
:'ticket_url' => :'ticket_url',
|
|
34
|
+
:'target_locale_ids' => :'target_locale_ids',
|
|
31
35
|
:'autotranslate' => :'autotranslate'
|
|
32
36
|
}
|
|
33
37
|
end
|
|
@@ -40,6 +44,7 @@ module Phrase
|
|
|
40
44
|
:'briefing' => :'String',
|
|
41
45
|
:'due_date' => :'DateTime',
|
|
42
46
|
:'ticket_url' => :'String',
|
|
47
|
+
:'target_locale_ids' => :'Array<String>',
|
|
43
48
|
:'autotranslate' => :'Boolean'
|
|
44
49
|
}
|
|
45
50
|
end
|
|
@@ -86,6 +91,12 @@ module Phrase
|
|
|
86
91
|
self.ticket_url = attributes[:'ticket_url']
|
|
87
92
|
end
|
|
88
93
|
|
|
94
|
+
if attributes.key?(:'target_locale_ids')
|
|
95
|
+
if (value = attributes[:'target_locale_ids']).is_a?(Array)
|
|
96
|
+
self.target_locale_ids = value
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
89
100
|
if attributes.key?(:'autotranslate')
|
|
90
101
|
self.autotranslate = attributes[:'autotranslate']
|
|
91
102
|
end
|
|
@@ -114,6 +125,7 @@ module Phrase
|
|
|
114
125
|
briefing == o.briefing &&
|
|
115
126
|
due_date == o.due_date &&
|
|
116
127
|
ticket_url == o.ticket_url &&
|
|
128
|
+
target_locale_ids == o.target_locale_ids &&
|
|
117
129
|
autotranslate == o.autotranslate
|
|
118
130
|
end
|
|
119
131
|
|
|
@@ -126,7 +138,7 @@ module Phrase
|
|
|
126
138
|
# Calculates hash code according to all attributes.
|
|
127
139
|
# @return [Integer] Hash code
|
|
128
140
|
def hash
|
|
129
|
-
[branch, name, briefing, due_date, ticket_url, autotranslate].hash
|
|
141
|
+
[branch, name, briefing, due_date, ticket_url, target_locale_ids, autotranslate].hash
|
|
130
142
|
end
|
|
131
143
|
|
|
132
144
|
# Builds the object from hash
|
data/lib/phrase/models/upload.rb
CHANGED
|
@@ -19,6 +19,8 @@ module Phrase
|
|
|
19
19
|
# The URL to the upload in Phrase Strings app.
|
|
20
20
|
attr_accessor :url
|
|
21
21
|
|
|
22
|
+
attr_accessor :user
|
|
23
|
+
|
|
22
24
|
attr_accessor :summary
|
|
23
25
|
|
|
24
26
|
attr_accessor :created_at
|
|
@@ -35,6 +37,7 @@ module Phrase
|
|
|
35
37
|
:'tag' => :'tag',
|
|
36
38
|
:'tags' => :'tags',
|
|
37
39
|
:'url' => :'url',
|
|
40
|
+
:'user' => :'user',
|
|
38
41
|
:'summary' => :'summary',
|
|
39
42
|
:'created_at' => :'created_at',
|
|
40
43
|
:'updated_at' => :'updated_at'
|
|
@@ -51,6 +54,7 @@ module Phrase
|
|
|
51
54
|
:'tag' => :'String',
|
|
52
55
|
:'tags' => :'Array<String>',
|
|
53
56
|
:'url' => :'String',
|
|
57
|
+
:'user' => :'UserPreview',
|
|
54
58
|
:'summary' => :'UploadSummary',
|
|
55
59
|
:'created_at' => :'DateTime',
|
|
56
60
|
:'updated_at' => :'DateTime'
|
|
@@ -108,6 +112,10 @@ module Phrase
|
|
|
108
112
|
self.url = attributes[:'url']
|
|
109
113
|
end
|
|
110
114
|
|
|
115
|
+
if attributes.key?(:'user')
|
|
116
|
+
self.user = attributes[:'user']
|
|
117
|
+
end
|
|
118
|
+
|
|
111
119
|
if attributes.key?(:'summary')
|
|
112
120
|
self.summary = attributes[:'summary']
|
|
113
121
|
end
|
|
@@ -146,6 +154,7 @@ module Phrase
|
|
|
146
154
|
tag == o.tag &&
|
|
147
155
|
tags == o.tags &&
|
|
148
156
|
url == o.url &&
|
|
157
|
+
user == o.user &&
|
|
149
158
|
summary == o.summary &&
|
|
150
159
|
created_at == o.created_at &&
|
|
151
160
|
updated_at == o.updated_at
|
|
@@ -160,7 +169,7 @@ module Phrase
|
|
|
160
169
|
# Calculates hash code according to all attributes.
|
|
161
170
|
# @return [Integer] Hash code
|
|
162
171
|
def hash
|
|
163
|
-
[id, filename, format, state, tag, tags, url, summary, created_at, updated_at].hash
|
|
172
|
+
[id, filename, format, state, tag, tags, url, user, summary, created_at, updated_at].hash
|
|
164
173
|
end
|
|
165
174
|
|
|
166
175
|
# Builds the object from hash
|
data/lib/phrase/version.rb
CHANGED
|
@@ -68,6 +68,12 @@ describe 'JobCreateParameters' do
|
|
|
68
68
|
end
|
|
69
69
|
end
|
|
70
70
|
|
|
71
|
+
describe 'test attribute "target_locale_ids"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
71
77
|
describe 'test attribute "job_template_id"' do
|
|
72
78
|
it 'should work' do
|
|
73
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -50,6 +50,12 @@ describe 'JobUpdateParameters' do
|
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
+
describe 'test attribute "target_locale_ids"' 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 "autotranslate"' do
|
|
54
60
|
it 'should work' do
|
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/spec/models/upload_spec.rb
CHANGED
|
@@ -62,6 +62,12 @@ describe 'Upload' do
|
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
+
describe 'test attribute "user"' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
65
71
|
describe 'test attribute "summary"' do
|
|
66
72
|
it 'should work' do
|
|
67
73
|
# 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: 4.
|
|
4
|
+
version: 4.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Phrase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -961,287 +961,287 @@ summary: You can collaborate on language file translation with your team or orde
|
|
|
961
961
|
locale files, tag keys or interact in other ways with the localization data stored
|
|
962
962
|
in Phrase Strings for your account.
|
|
963
963
|
test_files:
|
|
964
|
-
- spec/api/
|
|
964
|
+
- spec/api/versions_history_api_spec.rb
|
|
965
|
+
- spec/api/keys_figma_attachments_api_spec.rb
|
|
966
|
+
- spec/api/reports_api_spec.rb
|
|
967
|
+
- spec/api/authorizations_api_spec.rb
|
|
968
|
+
- spec/api/style_guides_api_spec.rb
|
|
969
|
+
- spec/api/screenshot_markers_api_spec.rb
|
|
970
|
+
- spec/api/job_template_locales_api_spec.rb
|
|
971
|
+
- spec/api/notification_groups_api_spec.rb
|
|
965
972
|
- spec/api/formats_api_spec.rb
|
|
966
|
-
- spec/api/
|
|
973
|
+
- spec/api/comments_api_spec.rb
|
|
967
974
|
- spec/api/members_api_spec.rb
|
|
968
|
-
- spec/api/figma_attachments_api_spec.rb
|
|
969
|
-
- spec/api/custom_metadata_api_spec.rb
|
|
970
|
-
- spec/api/keys_api_spec.rb
|
|
971
975
|
- spec/api/screenshots_api_spec.rb
|
|
972
|
-
- spec/api/
|
|
973
|
-
- spec/api/
|
|
976
|
+
- spec/api/glossary_terms_api_spec.rb
|
|
977
|
+
- spec/api/webhooks_api_spec.rb
|
|
974
978
|
- spec/api/spaces_api_spec.rb
|
|
975
|
-
- spec/api/
|
|
976
|
-
- spec/api/
|
|
979
|
+
- spec/api/linked_keys_api_spec.rb
|
|
980
|
+
- spec/api/organization_job_templates_api_spec.rb
|
|
981
|
+
- spec/api/job_annotations_api_spec.rb
|
|
982
|
+
- spec/api/glossary_term_translations_api_spec.rb
|
|
983
|
+
- spec/api/repo_syncs_api_spec.rb
|
|
984
|
+
- spec/api/search_api_spec.rb
|
|
985
|
+
- spec/api/users_api_spec.rb
|
|
986
|
+
- spec/api/branches_api_spec.rb
|
|
987
|
+
- spec/api/locales_api_spec.rb
|
|
988
|
+
- spec/api/comment_replies_api_spec.rb
|
|
989
|
+
- spec/api/notifications_api_spec.rb
|
|
990
|
+
- spec/api/release_triggers_api_spec.rb
|
|
991
|
+
- spec/api/variables_api_spec.rb
|
|
992
|
+
- spec/api/translations_api_spec.rb
|
|
993
|
+
- spec/api/releases_api_spec.rb
|
|
994
|
+
- spec/api/comment_reactions_api_spec.rb
|
|
995
|
+
- spec/api/upload_batches_api_spec.rb
|
|
977
996
|
- spec/api/orders_api_spec.rb
|
|
997
|
+
- spec/api/job_comments_api_spec.rb
|
|
998
|
+
- spec/api/keys_api_spec.rb
|
|
999
|
+
- spec/api/repo_sync_events_api_spec.rb
|
|
978
1000
|
- spec/api/job_templates_api_spec.rb
|
|
979
|
-
- spec/api/upload_batches_api_spec.rb
|
|
980
1001
|
- spec/api/invitations_api_spec.rb
|
|
1002
|
+
- spec/api/tags_api_spec.rb
|
|
981
1003
|
- spec/api/uploads_api_spec.rb
|
|
982
|
-
- spec/api/
|
|
983
|
-
- spec/api/job_annotations_api_spec.rb
|
|
984
|
-
- spec/api/releases_api_spec.rb
|
|
985
|
-
- spec/api/reports_api_spec.rb
|
|
986
|
-
- spec/api/repo_syncs_api_spec.rb
|
|
1004
|
+
- spec/api/icu_api_spec.rb
|
|
987
1005
|
- spec/api/organization_job_template_locales_api_spec.rb
|
|
988
|
-
- spec/api/automations_api_spec.rb
|
|
989
|
-
- spec/api/users_api_spec.rb
|
|
990
|
-
- spec/api/tags_api_spec.rb
|
|
991
|
-
- spec/api/screenshot_markers_api_spec.rb
|
|
992
|
-
- spec/api/branches_api_spec.rb
|
|
993
|
-
- spec/api/comments_api_spec.rb
|
|
994
|
-
- spec/api/versions_history_api_spec.rb
|
|
995
1006
|
- spec/api/jobs_api_spec.rb
|
|
996
|
-
- spec/api/glossary_terms_api_spec.rb
|
|
997
|
-
- spec/api/webhooks_api_spec.rb
|
|
998
|
-
- spec/api/blacklisted_keys_api_spec.rb
|
|
999
|
-
- spec/api/distributions_api_spec.rb
|
|
1000
1007
|
- spec/api/locale_downloads_api_spec.rb
|
|
1001
|
-
- spec/api/
|
|
1008
|
+
- spec/api/automations_api_spec.rb
|
|
1009
|
+
- spec/api/documents_api_spec.rb
|
|
1010
|
+
- spec/api/figma_attachments_api_spec.rb
|
|
1011
|
+
- spec/api/quality_performance_score_api_spec.rb
|
|
1012
|
+
- spec/api/distributions_api_spec.rb
|
|
1002
1013
|
- spec/api/webhook_deliveries_api_spec.rb
|
|
1003
1014
|
- spec/api/glossaries_api_spec.rb
|
|
1004
|
-
- spec/api/
|
|
1005
|
-
- spec/api/
|
|
1006
|
-
- spec/api/release_triggers_api_spec.rb
|
|
1007
|
-
- spec/api/notifications_api_spec.rb
|
|
1008
|
-
- spec/api/locales_api_spec.rb
|
|
1015
|
+
- spec/api/blacklisted_keys_api_spec.rb
|
|
1016
|
+
- spec/api/custom_metadata_api_spec.rb
|
|
1009
1017
|
- spec/api/job_locales_api_spec.rb
|
|
1010
|
-
- spec/api/authorizations_api_spec.rb
|
|
1011
|
-
- spec/api/quality_performance_score_api_spec.rb
|
|
1012
|
-
- spec/api/variables_api_spec.rb
|
|
1013
|
-
- spec/api/job_comments_api_spec.rb
|
|
1014
|
-
- spec/api/keys_figma_attachments_api_spec.rb
|
|
1015
|
-
- spec/api/repo_sync_events_api_spec.rb
|
|
1016
|
-
- spec/api/style_guides_api_spec.rb
|
|
1017
|
-
- spec/api/glossary_term_translations_api_spec.rb
|
|
1018
|
-
- spec/api/search_api_spec.rb
|
|
1019
|
-
- spec/api/comment_replies_api_spec.rb
|
|
1020
1018
|
- spec/api/projects_api_spec.rb
|
|
1019
|
+
- spec/api/accounts_api_spec.rb
|
|
1020
|
+
- spec/api/teams_api_spec.rb
|
|
1021
1021
|
- spec/api_client_spec.rb
|
|
1022
1022
|
- spec/configuration_spec.rb
|
|
1023
|
-
- spec/models/
|
|
1024
|
-
- spec/models/
|
|
1025
|
-
- spec/models/
|
|
1026
|
-
- spec/models/
|
|
1027
|
-
- spec/models/
|
|
1028
|
-
- spec/models/
|
|
1029
|
-
- spec/models/
|
|
1030
|
-
- spec/models/
|
|
1031
|
-
- spec/models/
|
|
1032
|
-
- spec/models/job_comment_update_parameters_spec.rb
|
|
1023
|
+
- spec/models/keys_untag_parameters_spec.rb
|
|
1024
|
+
- spec/models/translation_details_spec.rb
|
|
1025
|
+
- spec/models/release_preview_spec.rb
|
|
1026
|
+
- spec/models/job_comment_spec.rb
|
|
1027
|
+
- spec/models/locale_user_preview_spec.rb
|
|
1028
|
+
- spec/models/release_update_parameters1_spec.rb
|
|
1029
|
+
- spec/models/upload_summary_spec.rb
|
|
1030
|
+
- spec/models/job_details_spec.rb
|
|
1031
|
+
- spec/models/automation_spec.rb
|
|
1033
1032
|
- spec/models/key_update_parameters_spec.rb
|
|
1034
|
-
- spec/models/
|
|
1035
|
-
- spec/models/
|
|
1036
|
-
- spec/models/locale_preview1_spec.rb
|
|
1037
|
-
- spec/models/project_locales_spec.rb
|
|
1038
|
-
- spec/models/job_locale_complete_review_parameters_spec.rb
|
|
1033
|
+
- spec/models/screenshot_update_parameters_spec.rb
|
|
1034
|
+
- spec/models/job_template_details_spec.rb
|
|
1039
1035
|
- spec/models/translation_version_with_user_spec.rb
|
|
1040
|
-
- spec/models/
|
|
1041
|
-
- spec/models/
|
|
1042
|
-
- spec/models/
|
|
1043
|
-
- spec/models/
|
|
1044
|
-
- spec/models/
|
|
1045
|
-
- spec/models/
|
|
1036
|
+
- spec/models/user_spec.rb
|
|
1037
|
+
- spec/models/organization_job_template_locales_create_parameters_spec.rb
|
|
1038
|
+
- spec/models/notification_spec.rb
|
|
1039
|
+
- spec/models/release_create_parameters1_spec.rb
|
|
1040
|
+
- spec/models/repo_sync_spec.rb
|
|
1041
|
+
- spec/models/job_locale_reopen_parameters_spec.rb
|
|
1046
1042
|
- spec/models/custom_metadata_properties_update_parameters_spec.rb
|
|
1047
|
-
- spec/models/job_comment_create_parameters_spec.rb
|
|
1048
|
-
- spec/models/space1_spec.rb
|
|
1049
|
-
- spec/models/icu_spec.rb
|
|
1050
|
-
- spec/models/comment_spec.rb
|
|
1051
1043
|
- spec/models/translation_parent_spec.rb
|
|
1052
|
-
- spec/models/
|
|
1053
|
-
- spec/models/branch_spec.rb
|
|
1054
|
-
- spec/models/project_create_parameters_spec.rb
|
|
1055
|
-
- spec/models/job_preview_spec.rb
|
|
1056
|
-
- spec/models/variable_create_parameters_spec.rb
|
|
1057
|
-
- spec/models/job_annotation_update_parameters_spec.rb
|
|
1058
|
-
- spec/models/variable_spec.rb
|
|
1059
|
-
- spec/models/invitation_update_parameters_spec.rb
|
|
1060
|
-
- spec/models/release_preview_spec.rb
|
|
1044
|
+
- spec/models/screenshot_spec.rb
|
|
1061
1045
|
- spec/models/tag_with_stats1_statistics_spec.rb
|
|
1062
|
-
- spec/models/
|
|
1063
|
-
- spec/models/
|
|
1064
|
-
- spec/models/
|
|
1065
|
-
- spec/models/
|
|
1066
|
-
- spec/models/
|
|
1046
|
+
- spec/models/member_project_detail_project_roles_inner_spec.rb
|
|
1047
|
+
- spec/models/tag_create_parameters_spec.rb
|
|
1048
|
+
- spec/models/project_create_parameters_spec.rb
|
|
1049
|
+
- spec/models/translation_order_spec.rb
|
|
1050
|
+
- spec/models/job_create_parameters_spec.rb
|
|
1051
|
+
- spec/models/organization_job_template_locale_update_parameters_spec.rb
|
|
1067
1052
|
- spec/models/account_spec.rb
|
|
1068
|
-
- spec/models/
|
|
1069
|
-
- spec/models/
|
|
1070
|
-
- spec/models/
|
|
1071
|
-
- spec/models/
|
|
1072
|
-
- spec/models/
|
|
1053
|
+
- spec/models/quality_performance_score_list200_response_any_of_spec.rb
|
|
1054
|
+
- spec/models/authorization_create_parameters_spec.rb
|
|
1055
|
+
- spec/models/webhook_update_parameters_spec.rb
|
|
1056
|
+
- spec/models/organization_job_template_spec.rb
|
|
1057
|
+
- spec/models/locale_team_preview_spec.rb
|
|
1058
|
+
- spec/models/job_comment_create_parameters_spec.rb
|
|
1059
|
+
- spec/models/automations_create_parameters_spec.rb
|
|
1060
|
+
- spec/models/repo_sync_import_parameters_spec.rb
|
|
1061
|
+
- spec/models/job_template_update_parameters_spec.rb
|
|
1062
|
+
- spec/models/comment_create_parameters_spec.rb
|
|
1063
|
+
- spec/models/notification_group_spec.rb
|
|
1064
|
+
- spec/models/custom_metadata_property_create422_response_spec.rb
|
|
1065
|
+
- spec/models/invitation_update_parameters_spec.rb
|
|
1066
|
+
- spec/models/translations_exclude_parameters_spec.rb
|
|
1067
|
+
- spec/models/comment_update_parameters_spec.rb
|
|
1068
|
+
- spec/models/format_spec.rb
|
|
1069
|
+
- spec/models/job_reopen_parameters_spec.rb
|
|
1070
|
+
- spec/models/affected_resources_spec.rb
|
|
1071
|
+
- spec/models/key_create_parameters_spec.rb
|
|
1072
|
+
- spec/models/translation_include_parameters_spec.rb
|
|
1073
|
+
- spec/models/job_locale_spec.rb
|
|
1074
|
+
- spec/models/keys_search_parameters_spec.rb
|
|
1075
|
+
- spec/models/space_update_parameters_spec.rb
|
|
1073
1076
|
- spec/models/job_annotation_spec.rb
|
|
1074
|
-
- spec/models/
|
|
1075
|
-
- spec/models/locale_download_params_spec.rb
|
|
1076
|
-
- spec/models/blacklisted_key_spec.rb
|
|
1077
|
-
- spec/models/custom_metadata_property_create422_response_errors_inner_spec.rb
|
|
1078
|
-
- spec/models/authorization_with_token_spec.rb
|
|
1079
|
-
- spec/models/release_update_parameters_spec.rb
|
|
1077
|
+
- spec/models/order_create_parameters_spec.rb
|
|
1080
1078
|
- spec/models/repo_sync_event_spec.rb
|
|
1079
|
+
- spec/models/locale_report_spec.rb
|
|
1080
|
+
- spec/models/member_update_settings_parameters_spec.rb
|
|
1081
1081
|
- spec/models/screenshot_marker_create_parameters_spec.rb
|
|
1082
|
-
- spec/models/
|
|
1082
|
+
- spec/models/member_update_parameters_spec.rb
|
|
1083
1083
|
- spec/models/subscription_spec.rb
|
|
1084
|
-
- spec/models/
|
|
1085
|
-
- spec/models/
|
|
1086
|
-
- spec/models/
|
|
1084
|
+
- spec/models/job_template_preview_spec.rb
|
|
1085
|
+
- spec/models/distribution_create_parameters_spec.rb
|
|
1086
|
+
- spec/models/order_confirm_parameters_spec.rb
|
|
1087
|
+
- spec/models/authorization_update_parameters_spec.rb
|
|
1088
|
+
- spec/models/branch_create_parameters_spec.rb
|
|
1089
|
+
- spec/models/translation_key_spec.rb
|
|
1090
|
+
- spec/models/glossary_spec.rb
|
|
1091
|
+
- spec/models/key_links_index400_response_spec.rb
|
|
1092
|
+
- spec/models/comment_create_parameters1_spec.rb
|
|
1093
|
+
- spec/models/tag_spec.rb
|
|
1094
|
+
- spec/models/blacklisted_key_create_parameters_spec.rb
|
|
1095
|
+
- spec/models/space1_spec.rb
|
|
1096
|
+
- spec/models/locale_details_spec.rb
|
|
1097
|
+
- spec/models/distribution_preview_spec.rb
|
|
1098
|
+
- spec/models/document_spec.rb
|
|
1087
1099
|
- spec/models/job_template_spec.rb
|
|
1088
|
-
- spec/models/
|
|
1089
|
-
- spec/models/
|
|
1090
|
-
- spec/models/
|
|
1091
|
-
- spec/models/
|
|
1092
|
-
- spec/models/
|
|
1093
|
-
- spec/models/
|
|
1100
|
+
- spec/models/branch_spec.rb
|
|
1101
|
+
- spec/models/styleguide_update_parameters_spec.rb
|
|
1102
|
+
- spec/models/glossary_term_update_parameters_spec.rb
|
|
1103
|
+
- spec/models/team_detail_spec.rb
|
|
1104
|
+
- spec/models/release_spec.rb
|
|
1105
|
+
- spec/models/glossary_term_translation_create_parameters_spec.rb
|
|
1106
|
+
- spec/models/teams_spaces_create_parameters_spec.rb
|
|
1094
1107
|
- spec/models/job_locales_create_parameters_spec.rb
|
|
1095
|
-
- spec/models/comment_mark_read_parameters_spec.rb
|
|
1096
|
-
- spec/models/project_spec.rb
|
|
1097
|
-
- spec/models/invitation_update_settings_parameters_spec.rb
|
|
1098
|
-
- spec/models/glossary_term_translation_update_parameters_spec.rb
|
|
1099
|
-
- spec/models/locale_update_parameters_spec.rb
|
|
1100
|
-
- spec/models/current_user_spec.rb
|
|
1101
|
-
- spec/models/icu_skeleton_parameters_spec.rb
|
|
1102
|
-
- spec/models/job_template_details_spec.rb
|
|
1103
|
-
- spec/models/notification_group_detail_spec.rb
|
|
1104
|
-
- spec/models/organization_job_template_create_parameters_spec.rb
|
|
1105
|
-
- spec/models/format_spec.rb
|
|
1106
|
-
- spec/models/quality_performance_score_list200_response_spec.rb
|
|
1107
|
-
- spec/models/space_update_parameters_spec.rb
|
|
1108
|
-
- spec/models/branch_update_parameters_spec.rb
|
|
1109
|
-
- spec/models/organization_job_template_update_parameters_spec.rb
|
|
1110
|
-
- spec/models/styleguide_spec.rb
|
|
1111
|
-
- spec/models/distribution_spec.rb
|
|
1112
|
-
- spec/models/repo_sync_import_parameters_spec.rb
|
|
1113
|
-
- spec/models/translation_key_spec.rb
|
|
1114
|
-
- spec/models/translation_version_spec.rb
|
|
1115
|
-
- spec/models/quality_performance_score_list200_response_any_of_spec.rb
|
|
1116
|
-
- spec/models/branch_create_comparison_parameters_spec.rb
|
|
1117
|
-
- spec/models/translations_unreview_parameters_spec.rb
|
|
1118
|
-
- spec/models/job_template_update_parameters_spec.rb
|
|
1119
|
-
- spec/models/authorization_spec.rb
|
|
1120
|
-
- spec/models/custom_metadata_property_spec.rb
|
|
1121
|
-
- spec/models/locale_report_spec.rb
|
|
1122
1108
|
- spec/models/quality_performance_score_list200_response_any_of_errors_inner_spec.rb
|
|
1123
|
-
- spec/models/release_spec.rb
|
|
1124
|
-
- spec/models/team_detail_spec.rb
|
|
1125
|
-
- spec/models/glossary_term_create_parameters_spec.rb
|
|
1126
|
-
- spec/models/affected_resources_spec.rb
|
|
1127
|
-
- spec/models/key_preview_spec.rb
|
|
1128
|
-
- spec/models/translation_details_spec.rb
|
|
1129
|
-
- spec/models/repo_sync_export_parameters_spec.rb
|
|
1130
|
-
- spec/models/comment_reaction_spec.rb
|
|
1131
|
-
- spec/models/glossary_spec.rb
|
|
1132
|
-
- spec/models/member_spaces_inner_spec.rb
|
|
1133
|
-
- spec/models/keys_include_parameters_spec.rb
|
|
1134
|
-
- spec/models/authorization_create_parameters_spec.rb
|
|
1135
|
-
- spec/models/release_create_parameters_spec.rb
|
|
1136
|
-
- spec/models/error_error_spec.rb
|
|
1137
|
-
- spec/models/custom_metadata_properties_create_parameters_spec.rb
|
|
1138
|
-
- spec/models/screenshot_marker_spec.rb
|
|
1139
1109
|
- spec/models/key_links_batch_destroy_parameters_spec.rb
|
|
1140
|
-
- spec/models/automations_create_parameters_spec.rb
|
|
1141
|
-
- spec/models/locale_statistics_spec.rb
|
|
1142
|
-
- spec/models/translation_order_spec.rb
|
|
1143
|
-
- spec/models/figma_attachment_spec.rb
|
|
1144
|
-
- spec/models/repo_sync_spec.rb
|
|
1145
1110
|
- spec/models/variable_update_parameters_spec.rb
|
|
1146
|
-
- spec/models/
|
|
1147
|
-
- spec/models/search_in_account_parameters_spec.rb
|
|
1148
|
-
- spec/models/figma_attachment_create_parameters_spec.rb
|
|
1149
|
-
- spec/models/authorization_update_parameters_spec.rb
|
|
1150
|
-
- spec/models/custom_metadata_property_create422_response_spec.rb
|
|
1151
|
-
- spec/models/project_details_spec.rb
|
|
1152
|
-
- spec/models/job_comment_spec.rb
|
|
1153
|
-
- spec/models/keys_untag_parameters_spec.rb
|
|
1154
|
-
- spec/models/job_spec.rb
|
|
1111
|
+
- spec/models/comment_mark_read_parameters_spec.rb
|
|
1155
1112
|
- spec/models/locale_download_create_parameters_spec.rb
|
|
1156
|
-
- spec/models/
|
|
1157
|
-
- spec/models/
|
|
1158
|
-
- spec/models/
|
|
1159
|
-
- spec/models/translation_create_parameters_spec.rb
|
|
1160
|
-
- spec/models/automation_spec.rb
|
|
1161
|
-
- spec/models/team_spec.rb
|
|
1162
|
-
- spec/models/tag_create_parameters_spec.rb
|
|
1113
|
+
- spec/models/custom_metadata_property_create422_response_errors_inner_spec.rb
|
|
1114
|
+
- spec/models/job_preview_spec.rb
|
|
1115
|
+
- spec/models/translations_search_parameters_spec.rb
|
|
1163
1116
|
- spec/models/translation_update_parameters_spec.rb
|
|
1164
|
-
- spec/models/
|
|
1165
|
-
- spec/models/
|
|
1166
|
-
- spec/models/
|
|
1117
|
+
- spec/models/styleguide_details_spec.rb
|
|
1118
|
+
- spec/models/project_details_spec.rb
|
|
1119
|
+
- spec/models/translation_version_spec.rb
|
|
1120
|
+
- spec/models/job_locale_update_parameters_spec.rb
|
|
1167
1121
|
- spec/models/job_update_parameters_spec.rb
|
|
1168
|
-
- spec/models/
|
|
1169
|
-
- spec/models/branch_sync_parameters_spec.rb
|
|
1170
|
-
- spec/models/translations_search_parameters_spec.rb
|
|
1122
|
+
- spec/models/invitation_update_settings_parameters_spec.rb
|
|
1171
1123
|
- spec/models/locale_create_parameters_spec.rb
|
|
1172
|
-
- spec/models/
|
|
1173
|
-
- spec/models/
|
|
1174
|
-
- spec/models/styleguide_preview_spec.rb
|
|
1175
|
-
- spec/models/quality_performance_score_list200_response_any_of_data_translations_inner_spec.rb
|
|
1176
|
-
- spec/models/comment_update_parameters_spec.rb
|
|
1177
|
-
- spec/models/order_confirm_parameters_spec.rb
|
|
1178
|
-
- spec/models/styleguide_details_spec.rb
|
|
1179
|
-
- spec/models/project_report_spec.rb
|
|
1180
|
-
- spec/models/member_update_settings_parameters_spec.rb
|
|
1181
|
-
- spec/models/distribution_create_parameters_spec.rb
|
|
1182
|
-
- spec/models/space_spec.rb
|
|
1124
|
+
- spec/models/locale_statistics_spec.rb
|
|
1125
|
+
- spec/models/teams_projects_create_parameters_spec.rb
|
|
1183
1126
|
- spec/models/job_start_parameters_spec.rb
|
|
1184
|
-
- spec/models/
|
|
1185
|
-
- spec/models/space_create_parameters_spec.rb
|
|
1186
|
-
- spec/models/branch_name_spec.rb
|
|
1127
|
+
- spec/models/current_user_spec.rb
|
|
1187
1128
|
- spec/models/user_preview_spec.rb
|
|
1129
|
+
- spec/models/distribution_spec.rb
|
|
1130
|
+
- spec/models/figma_attachment_spec.rb
|
|
1131
|
+
- spec/models/translation_unverify_parameters_spec.rb
|
|
1132
|
+
- spec/models/team_update_parameters_spec.rb
|
|
1133
|
+
- spec/models/branch_sync_parameters_spec.rb
|
|
1188
1134
|
- spec/models/translations_include_parameters_spec.rb
|
|
1189
|
-
- spec/models/
|
|
1190
|
-
- spec/models/
|
|
1191
|
-
- spec/models/
|
|
1192
|
-
- spec/models/
|
|
1193
|
-
- spec/models/
|
|
1194
|
-
- spec/models/
|
|
1195
|
-
- spec/models/
|
|
1196
|
-
- spec/models/
|
|
1197
|
-
- spec/models/
|
|
1135
|
+
- spec/models/locale_download_spec.rb
|
|
1136
|
+
- spec/models/error_error_spec.rb
|
|
1137
|
+
- spec/models/glossary_term_spec.rb
|
|
1138
|
+
- spec/models/teams_users_create_parameters_spec.rb
|
|
1139
|
+
- spec/models/translations_unverify_parameters_spec.rb
|
|
1140
|
+
- spec/models/locale_update_parameters_spec.rb
|
|
1141
|
+
- spec/models/job_annotation_short_spec.rb
|
|
1142
|
+
- spec/models/branch_update_parameters_spec.rb
|
|
1143
|
+
- spec/models/blacklisted_key_update_parameters_spec.rb
|
|
1144
|
+
- spec/models/tag_with_stats1_statistics1_spec.rb
|
|
1145
|
+
- spec/models/quality_performance_score_list200_response_any_of_data_translations_inner_spec.rb
|
|
1146
|
+
- spec/models/locale_download_params_spec.rb
|
|
1147
|
+
- spec/models/icu_skeleton_parameters_spec.rb
|
|
1148
|
+
- spec/models/spaces_projects_create_parameters_spec.rb
|
|
1149
|
+
- spec/models/job_annotation_update_parameters_spec.rb
|
|
1150
|
+
- spec/models/upload_batch_spec.rb
|
|
1198
1151
|
- spec/models/account_search_result_spec.rb
|
|
1199
|
-
- spec/models/
|
|
1200
|
-
- spec/models/
|
|
1152
|
+
- spec/models/figma_attachment_create_parameters_spec.rb
|
|
1153
|
+
- spec/models/upload_batches_create_parameters_spec.rb
|
|
1154
|
+
- spec/models/tag_with_stats_spec.rb
|
|
1155
|
+
- spec/models/error_spec.rb
|
|
1156
|
+
- spec/models/variable_spec.rb
|
|
1157
|
+
- spec/models/space_spec.rb
|
|
1158
|
+
- spec/models/blacklisted_key_spec.rb
|
|
1159
|
+
- spec/models/member_spec.rb
|
|
1160
|
+
- spec/models/member_project_detail_spec.rb
|
|
1201
1161
|
- spec/models/screenshot_marker_update_parameters_spec.rb
|
|
1202
|
-
- spec/models/
|
|
1203
|
-
- spec/models/
|
|
1204
|
-
- spec/models/
|
|
1205
|
-
- spec/models/
|
|
1206
|
-
- spec/models/
|
|
1162
|
+
- spec/models/job_locale_complete_review_parameters_spec.rb
|
|
1163
|
+
- spec/models/keys_tag_parameters_spec.rb
|
|
1164
|
+
- spec/models/key_link_spec.rb
|
|
1165
|
+
- spec/models/branch_create_comparison_parameters_spec.rb
|
|
1166
|
+
- spec/models/member_spaces_inner_spec.rb
|
|
1167
|
+
- spec/models/custom_metadata_data_type_spec.rb
|
|
1168
|
+
- spec/models/icu_spec.rb
|
|
1169
|
+
- spec/models/project_report_spec.rb
|
|
1170
|
+
- spec/models/invitation_spec.rb
|
|
1171
|
+
- spec/models/translation_key_details_spec.rb
|
|
1172
|
+
- spec/models/figma_attachment_update_parameters_spec.rb
|
|
1173
|
+
- spec/models/comment_reaction_spec.rb
|
|
1174
|
+
- spec/models/glossary_update_parameters_spec.rb
|
|
1175
|
+
- spec/models/quality_performance_score_list200_response_spec.rb
|
|
1207
1176
|
- spec/models/job_locale_complete_parameters_spec.rb
|
|
1208
|
-
- spec/models/
|
|
1209
|
-
- spec/models/
|
|
1210
|
-
- spec/models/
|
|
1211
|
-
- spec/models/job_create_parameters_spec.rb
|
|
1177
|
+
- spec/models/job_keys_create_parameters_spec.rb
|
|
1178
|
+
- spec/models/release_create_parameters_spec.rb
|
|
1179
|
+
- spec/models/project_spec.rb
|
|
1212
1180
|
- spec/models/branch_merge_parameters_spec.rb
|
|
1213
|
-
- spec/models/
|
|
1214
|
-
- spec/models/
|
|
1215
|
-
- spec/models/
|
|
1216
|
-
- spec/models/
|
|
1217
|
-
- spec/models/tag_spec.rb
|
|
1218
|
-
- spec/models/team_update_parameters_spec.rb
|
|
1219
|
-
- spec/models/upload_summary_spec.rb
|
|
1220
|
-
- spec/models/styleguide_update_parameters_spec.rb
|
|
1221
|
-
- spec/models/key_links_index400_response_spec.rb
|
|
1181
|
+
- spec/models/key_preview_spec.rb
|
|
1182
|
+
- spec/models/keys_include_parameters_spec.rb
|
|
1183
|
+
- spec/models/webhook_delivery_spec.rb
|
|
1184
|
+
- spec/models/locale_download_result_spec.rb
|
|
1222
1185
|
- spec/models/release_trigger_spec.rb
|
|
1223
|
-
- spec/models/
|
|
1224
|
-
- spec/models/
|
|
1225
|
-
- spec/models/notification_group_spec.rb
|
|
1226
|
-
- spec/models/locale_details_spec.rb
|
|
1227
|
-
- spec/models/job_complete_parameters_spec.rb
|
|
1228
|
-
- spec/models/keys_exclude_parameters_spec.rb
|
|
1229
|
-
- spec/models/member_project_detail_spec.rb
|
|
1230
|
-
- spec/models/translations_unverify_parameters_spec.rb
|
|
1186
|
+
- spec/models/comment_spec.rb
|
|
1187
|
+
- spec/models/webhook_create_parameters_spec.rb
|
|
1231
1188
|
- spec/models/job_keys_delete_parameters_spec.rb
|
|
1232
|
-
- spec/models/
|
|
1233
|
-
- spec/models/
|
|
1234
|
-
- spec/models/
|
|
1235
|
-
- spec/models/
|
|
1236
|
-
- spec/models/
|
|
1189
|
+
- spec/models/translation_create_parameters_spec.rb
|
|
1190
|
+
- spec/models/team_spec.rb
|
|
1191
|
+
- spec/models/distribution_update_parameters_spec.rb
|
|
1192
|
+
- spec/models/authorization_spec.rb
|
|
1193
|
+
- spec/models/webhook_spec.rb
|
|
1194
|
+
- spec/models/styleguide_preview_spec.rb
|
|
1195
|
+
- spec/models/organization_job_template_details_spec.rb
|
|
1196
|
+
- spec/models/release_update_parameters_spec.rb
|
|
1197
|
+
- spec/models/glossary_term_translation_update_parameters_spec.rb
|
|
1198
|
+
- spec/models/glossary_term_create_parameters_spec.rb
|
|
1199
|
+
- spec/models/custom_metadata_property_spec.rb
|
|
1200
|
+
- spec/models/screenshot_marker_spec.rb
|
|
1201
|
+
- spec/models/job_template_locales_create_parameters_spec.rb
|
|
1202
|
+
- spec/models/search_in_account_parameters_spec.rb
|
|
1203
|
+
- spec/models/branch_name_spec.rb
|
|
1204
|
+
- spec/models/translation_verify_parameters_spec.rb
|
|
1205
|
+
- spec/models/styleguide_spec.rb
|
|
1206
|
+
- spec/models/project_locales_spec.rb
|
|
1207
|
+
- spec/models/team_short_spec.rb
|
|
1208
|
+
- spec/models/keys_exclude_parameters_spec.rb
|
|
1209
|
+
- spec/models/translation_spec.rb
|
|
1210
|
+
- spec/models/job_template_locale_update_parameters_spec.rb
|
|
1211
|
+
- spec/models/repo_sync_export_parameters_spec.rb
|
|
1212
|
+
- spec/models/translation_unreview_parameters_spec.rb
|
|
1213
|
+
- spec/models/organization_job_template_create_parameters_spec.rb
|
|
1214
|
+
- spec/models/automations_create_parameters1_spec.rb
|
|
1215
|
+
- spec/models/translations_verify_parameters_spec.rb
|
|
1237
1216
|
- spec/models/job_template_locales_spec.rb
|
|
1217
|
+
- spec/models/project_update_parameters_spec.rb
|
|
1238
1218
|
- spec/models/quality_performance_score_list_request_spec.rb
|
|
1239
|
-
- spec/models/
|
|
1219
|
+
- spec/models/translation_review_parameters_spec.rb
|
|
1220
|
+
- spec/models/custom_metadata_properties_create_parameters_spec.rb
|
|
1240
1221
|
- spec/models/translation_exclude_parameters_spec.rb
|
|
1241
|
-
- spec/models/
|
|
1242
|
-
- spec/models/
|
|
1243
|
-
- spec/models/
|
|
1244
|
-
- spec/models/
|
|
1245
|
-
- spec/models/
|
|
1246
|
-
- spec/models/
|
|
1222
|
+
- spec/models/affected_count_spec.rb
|
|
1223
|
+
- spec/models/project_short_spec.rb
|
|
1224
|
+
- spec/models/styleguide_create_parameters_spec.rb
|
|
1225
|
+
- spec/models/key_links_create_parameters_spec.rb
|
|
1226
|
+
- spec/models/account_details_spec.rb
|
|
1227
|
+
- spec/models/variable_create_parameters_spec.rb
|
|
1228
|
+
- spec/models/invitation_create_parameters_spec.rb
|
|
1229
|
+
- spec/models/locale_spec.rb
|
|
1230
|
+
- spec/models/glossary_create_parameters_spec.rb
|
|
1231
|
+
- spec/models/job_spec.rb
|
|
1232
|
+
- spec/models/translations_review_parameters_spec.rb
|
|
1233
|
+
- spec/models/glossary_term_translation_spec.rb
|
|
1234
|
+
- spec/models/job_comment_update_parameters_spec.rb
|
|
1235
|
+
- spec/models/job_complete_parameters_spec.rb
|
|
1236
|
+
- spec/models/quality_performance_score_list200_response_any_of_data_spec.rb
|
|
1237
|
+
- spec/models/locale_preview1_spec.rb
|
|
1238
|
+
- spec/models/upload_spec.rb
|
|
1239
|
+
- spec/models/notification_group_detail_spec.rb
|
|
1240
|
+
- spec/models/team_create_parameters_spec.rb
|
|
1241
|
+
- spec/models/organization_job_template_update_parameters_spec.rb
|
|
1242
|
+
- spec/models/authorization_with_token_spec.rb
|
|
1243
|
+
- spec/models/translations_unreview_parameters_spec.rb
|
|
1244
|
+
- spec/models/space_create_parameters_spec.rb
|
|
1245
|
+
- spec/models/locale_preview_spec.rb
|
|
1246
|
+
- spec/models/job_template_create_parameters_spec.rb
|
|
1247
1247
|
- spec/spec_helper.rb
|