phrase 4.16.1 → 4.18.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 +148 -123
- data/README.md +8 -3
- data/docs/JobCreateParameters.md +3 -1
- data/docs/JobTemplateCreateParameters.md +3 -1
- data/docs/JobTemplateUpdateParameters.md +3 -1
- data/docs/JobUpdateParameters.md +3 -1
- data/docs/KeyCreateParameters.md +1 -1
- data/docs/KeyUpdateParameters.md +1 -1
- data/docs/LocaleDownloadCreateParameters.md +2 -2
- data/docs/LocalePreview1.md +1 -3
- data/docs/OrganizationJobTemplateCreateParameters.md +3 -1
- data/docs/OrganizationJobTemplateUpdateParameters.md +3 -1
- data/docs/ProjectCreateParameters.md +6 -2
- data/docs/ProjectDetails.md +7 -1
- data/docs/ProjectUpdateParameters.md +6 -2
- data/docs/RepoSyncExportParameters.md +19 -0
- data/docs/RepoSyncImportParameters.md +19 -0
- data/docs/RepoSyncsApi.md +8 -4
- data/docs/ScreenshotUpdateParameters.md +1 -1
- data/docs/UploadBatch.md +29 -0
- data/docs/UploadBatchesApi.md +72 -0
- data/docs/UploadBatchesCreateParameters.md +21 -0
- data/docs/VersionsHistoryApi.md +5 -3
- data/lib/phrase/api/repo_syncs_api.rb +10 -2
- data/lib/phrase/api/upload_batches_api.rb +84 -0
- data/lib/phrase/api/versions_history_api.rb +6 -3
- data/lib/phrase/configuration.rb +5 -1
- data/lib/phrase/models/job_create_parameters.rb +14 -4
- 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 +14 -4
- data/lib/phrase/models/locale_download_create_parameters.rb +1 -1
- data/lib/phrase/models/locale_preview1.rb +4 -13
- data/lib/phrase/models/organization_job_template_create_parameters.rb +14 -4
- data/lib/phrase/models/organization_job_template_update_parameters.rb +14 -4
- data/lib/phrase/models/project_create_parameters.rb +26 -4
- data/lib/phrase/models/project_details.rb +33 -4
- data/lib/phrase/models/project_update_parameters.rb +26 -4
- data/lib/phrase/models/repo_sync_export_parameters.rb +207 -0
- data/lib/phrase/models/repo_sync_import_parameters.rb +207 -0
- data/lib/phrase/models/upload_batch.rb +288 -0
- data/lib/phrase/models/upload_batches_create_parameters.rb +224 -0
- data/lib/phrase/version.rb +1 -1
- data/lib/phrase.rb +5 -0
- data/spec/api/repo_syncs_api_spec.rb +2 -0
- data/spec/api/upload_batches_api_spec.rb +37 -0
- data/spec/api/versions_history_api_spec.rb +2 -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/locale_preview1_spec.rb +0 -6
- data/spec/models/organization_job_template_create_parameters_spec.rb +6 -0
- data/spec/models/organization_job_template_update_parameters_spec.rb +6 -0
- data/spec/models/project_create_parameters_spec.rb +12 -0
- data/spec/models/project_details_spec.rb +18 -0
- data/spec/models/project_update_parameters_spec.rb +12 -0
- data/spec/models/repo_sync_export_parameters_spec.rb +35 -0
- data/spec/models/repo_sync_import_parameters_spec.rb +35 -0
- data/spec/models/upload_batch_spec.rb +69 -0
- data/spec/models/upload_batches_create_parameters_spec.rb +41 -0
- metadata +258 -238
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d625e06267b61b36035d9c02895f5cf6375985dc277014e902b9f97248d56252
|
|
4
|
+
data.tar.gz: 51b65c3b1a57c8b0438197c46c398578a03bfe3294c7652b38ba96a4ff2fb2c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb05ec0160783fe9aa6d2769b27fcbceb02d3c20d4c8ce10af322a9c8c4a8c894f95e576cf3c56f537a224c8d7b2f43c6e34c875c7cd716fa85e436b0e83671d
|
|
7
|
+
data.tar.gz: f9dfe594fb561b594ba9ffc3609c90dfdf35c8e6f30c7876ea71d078af7d3160a750dc52b237dcd5db05ab9cd7e70b64c426761e6074d0fd45bd8adefc3460a1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.18.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.17.0...ruby-v4.18.0) (2026-04-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **API:** Add missing project & job params ([#1065](https://github.com/phrase/strings-openapi/issues/1065)) ([0df6013](https://github.com/phrase/strings-openapi/commit/0df6013f919fdb763c15a1192372e1e5dc743a58))
|
|
9
|
+
* **API:** Extend exposed project settings ([#1071](https://github.com/phrase/strings-openapi/issues/1071)) ([b93ce3b](https://github.com/phrase/strings-openapi/commit/b93ce3be6194f8e7df2170aa3bab6c6d0578d7ec))
|
|
10
|
+
* **API:** RepoSync export: optional branch parameter ([#1050](https://github.com/phrase/strings-openapi/issues/1050)) ([07b3182](https://github.com/phrase/strings-openapi/commit/07b31825bfa648d7c7578c86a31c2dd31583090d))
|
|
11
|
+
|
|
12
|
+
## [4.17.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.16.1...ruby-v4.17.0) (2026-03-13)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **API:** Accept branch param in RepoSyncs#import ([#1035](https://github.com/phrase/strings-openapi/issues/1035)) ([fdfd542](https://github.com/phrase/strings-openapi/commit/fdfd54203510f94d546d771e1eeb6f4cc40f9b06))
|
|
18
|
+
* **API:** Add only_content_updates on translations versions ([#977](https://github.com/phrase/strings-openapi/issues/977)) ([57df730](https://github.com/phrase/strings-openapi/commit/57df730023ee736307b619e366bf9c87d9fe0db2))
|
|
19
|
+
* **API:** add pr_branch param to repo-sync export #SCD-594 ([#978](https://github.com/phrase/strings-openapi/issues/978)) ([7c3c19f](https://github.com/phrase/strings-openapi/commit/7c3c19fa6b7254315ce48a1ad420b97d529dbd9a))
|
|
20
|
+
* **API:** creating upload batches #SCD-687 ([#1022](https://github.com/phrase/strings-openapi/issues/1022)) ([83f5a41](https://github.com/phrase/strings-openapi/commit/83f5a411f1ebc63d26cdce0729093aa517d79b62))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* Add repo url to package.json to fix npm publish ([#1058](https://github.com/phrase/strings-openapi/issues/1058)) ([f021f13](https://github.com/phrase/strings-openapi/commit/f021f1305d1f203033a520e8b7e2f92da00b2fd2))
|
|
26
|
+
* remove project from account locales ([#1025](https://github.com/phrase/strings-openapi/issues/1025)) ([06b780f](https://github.com/phrase/strings-openapi/commit/06b780f91d2fe22a22ec821aa18968ed3b50510a))
|
|
27
|
+
|
|
3
28
|
## [4.16.1](https://github.com/phrase/strings-openapi/compare/ruby-v4.16.0...ruby-v4.16.1) (2026-01-16)
|
|
4
29
|
|
|
5
30
|
|
|
@@ -7,399 +32,399 @@
|
|
|
7
32
|
|
|
8
33
|
* **API:** Add linked_translation to translation type ([#1005](https://github.com/phrase/strings-openapi/issues/1005)) ([b18e64c](https://github.com/phrase/strings-openapi/commit/b18e64c948d40a9e5f996e8fdf6dee07d1812b02))
|
|
9
34
|
|
|
10
|
-
## [4.16.0](https://github.com/phrase/openapi/compare/ruby-v4.15.0...ruby-v4.16.0) (2026-01-09)
|
|
35
|
+
## [4.16.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.15.0...ruby-v4.16.0) (2026-01-09)
|
|
11
36
|
|
|
12
37
|
|
|
13
38
|
### Features
|
|
14
39
|
|
|
15
|
-
* **API:** Add missing project flags to project details schema #SCD-141 ([#993](https://github.com/phrase/openapi/issues/993)) ([93fbdd7](https://github.com/phrase/openapi/commit/93fbdd76150ed94374ef888ac92c0c9b626de7c8))
|
|
40
|
+
* **API:** Add missing project flags to project details schema #SCD-141 ([#993](https://github.com/phrase/strings-openapi/issues/993)) ([93fbdd7](https://github.com/phrase/strings-openapi/commit/93fbdd76150ed94374ef888ac92c0c9b626de7c8))
|
|
16
41
|
|
|
17
42
|
|
|
18
43
|
### Bug Fixes
|
|
19
44
|
|
|
20
|
-
* **API:** drop invalid account locale params ([#992](https://github.com/phrase/openapi/issues/992)) ([87af83c](https://github.com/phrase/openapi/commit/87af83c94fd7e47340b5393847e93a31127abbe8))
|
|
45
|
+
* **API:** drop invalid account locale params ([#992](https://github.com/phrase/strings-openapi/issues/992)) ([87af83c](https://github.com/phrase/strings-openapi/commit/87af83c94fd7e47340b5393847e93a31127abbe8))
|
|
21
46
|
|
|
22
|
-
## [4.15.0](https://github.com/phrase/openapi/compare/ruby-v4.14.1...ruby-v4.15.0) (2025-12-11)
|
|
47
|
+
## [4.15.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.14.1...ruby-v4.15.0) (2025-12-11)
|
|
23
48
|
|
|
24
49
|
|
|
25
50
|
### Features
|
|
26
51
|
|
|
27
|
-
* **API:** Add create comparison endpoint for branches [SCD-549] ([#966](https://github.com/phrase/openapi/issues/966)) ([4099e32](https://github.com/phrase/openapi/commit/4099e32d42744f9d73346077ef30b0f4bd5c849e))
|
|
28
|
-
* **API:** add manual triggering of automations #SCM-953 ([#968](https://github.com/phrase/openapi/issues/968)) ([ebe1c68](https://github.com/phrase/openapi/commit/ebe1c68e472d87ea6c6cd2f76bb421406c30a274))
|
|
29
|
-
* **API:** add use_locale_fallback option to download #SCD-620 ([#976](https://github.com/phrase/openapi/issues/976)) ([9266c68](https://github.com/phrase/openapi/commit/9266c680d8717bb736aed83625858f0b3419da54))
|
|
52
|
+
* **API:** Add create comparison endpoint for branches [SCD-549] ([#966](https://github.com/phrase/strings-openapi/issues/966)) ([4099e32](https://github.com/phrase/strings-openapi/commit/4099e32d42744f9d73346077ef30b0f4bd5c849e))
|
|
53
|
+
* **API:** add manual triggering of automations #SCM-953 ([#968](https://github.com/phrase/strings-openapi/issues/968)) ([ebe1c68](https://github.com/phrase/strings-openapi/commit/ebe1c68e472d87ea6c6cd2f76bb421406c30a274))
|
|
54
|
+
* **API:** add use_locale_fallback option to download #SCD-620 ([#976](https://github.com/phrase/strings-openapi/issues/976)) ([9266c68](https://github.com/phrase/strings-openapi/commit/9266c680d8717bb736aed83625858f0b3419da54))
|
|
30
55
|
|
|
31
|
-
## [4.14.1](https://github.com/phrase/openapi/compare/ruby-v4.14.0...ruby-v4.14.1) (2025-11-10)
|
|
56
|
+
## [4.14.1](https://github.com/phrase/strings-openapi/compare/ruby-v4.14.0...ruby-v4.14.1) (2025-11-10)
|
|
32
57
|
|
|
33
58
|
|
|
34
59
|
### Bug Fixes
|
|
35
60
|
|
|
36
|
-
* **API:** Add omit_translation_keys to Jobs#show endpoint ([#957](https://github.com/phrase/openapi/issues/957)) ([23ece66](https://github.com/phrase/openapi/commit/23ece66b05fc748a4598ce876cb2954ed1a385cc))
|
|
61
|
+
* **API:** Add omit_translation_keys to Jobs#show endpoint ([#957](https://github.com/phrase/strings-openapi/issues/957)) ([23ece66](https://github.com/phrase/strings-openapi/commit/23ece66b05fc748a4598ce876cb2954ed1a385cc))
|
|
37
62
|
|
|
38
|
-
## [4.14.0](https://github.com/phrase/openapi/compare/ruby-v4.13.0...ruby-v4.14.0) (2025-10-27)
|
|
63
|
+
## [4.14.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.13.0...ruby-v4.14.0) (2025-10-27)
|
|
39
64
|
|
|
40
65
|
|
|
41
66
|
### Features
|
|
42
67
|
|
|
43
|
-
* **API:** Support omit_translation_keys param in Jobs#show ([#944](https://github.com/phrase/openapi/issues/944)) ([690a2ce](https://github.com/phrase/openapi/commit/690a2ce992359e7920367699145d2d4ff3a206fa))
|
|
68
|
+
* **API:** Support omit_translation_keys param in Jobs#show ([#944](https://github.com/phrase/strings-openapi/issues/944)) ([690a2ce](https://github.com/phrase/strings-openapi/commit/690a2ce992359e7920367699145d2d4ff3a206fa))
|
|
44
69
|
|
|
45
|
-
## [4.13.0](https://github.com/phrase/openapi/compare/ruby-v4.12.0...ruby-v4.13.0) (2025-10-23)
|
|
70
|
+
## [4.13.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.12.0...ruby-v4.13.0) (2025-10-23)
|
|
46
71
|
|
|
47
72
|
|
|
48
73
|
### Features
|
|
49
74
|
|
|
50
|
-
* **API:** Support source_locale_id param in uploads ([#935](https://github.com/phrase/openapi/issues/935)) ([304a406](https://github.com/phrase/openapi/commit/304a4061aaac8001a3a9e10c5cf985b04c31dab2))
|
|
75
|
+
* **API:** Support source_locale_id param in uploads ([#935](https://github.com/phrase/strings-openapi/issues/935)) ([304a406](https://github.com/phrase/strings-openapi/commit/304a4061aaac8001a3a9e10c5cf985b04c31dab2))
|
|
51
76
|
|
|
52
|
-
## [4.12.0](https://github.com/phrase/openapi/compare/ruby-v4.11.0...ruby-v4.12.0) (2025-10-16)
|
|
77
|
+
## [4.12.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.11.0...ruby-v4.12.0) (2025-10-16)
|
|
53
78
|
|
|
54
79
|
|
|
55
80
|
### Features
|
|
56
81
|
|
|
57
|
-
* List child branches ([#926](https://github.com/phrase/openapi/issues/926)) ([31d3b57](https://github.com/phrase/openapi/commit/31d3b57e0d1381149409b77c3e236b226cde22a1))
|
|
82
|
+
* List child branches ([#926](https://github.com/phrase/strings-openapi/issues/926)) ([31d3b57](https://github.com/phrase/strings-openapi/commit/31d3b57e0d1381149409b77c3e236b226cde22a1))
|
|
58
83
|
|
|
59
|
-
## [4.11.0](https://github.com/phrase/openapi/compare/ruby-v4.10.0...ruby-v4.11.0) (2025-10-01)
|
|
84
|
+
## [4.11.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.10.0...ruby-v4.11.0) (2025-10-01)
|
|
60
85
|
|
|
61
86
|
|
|
62
87
|
### Features
|
|
63
88
|
|
|
64
|
-
* add branch sync endpoint ([#912](https://github.com/phrase/openapi/issues/912)) ([3293917](https://github.com/phrase/openapi/commit/329391757b3f81574448b1b87506b85bfdeb6761))
|
|
89
|
+
* add branch sync endpoint ([#912](https://github.com/phrase/strings-openapi/issues/912)) ([3293917](https://github.com/phrase/strings-openapi/commit/329391757b3f81574448b1b87506b85bfdeb6761))
|
|
65
90
|
|
|
66
|
-
## [4.10.0](https://github.com/phrase/openapi/compare/ruby-v4.9.0...ruby-v4.10.0) (2025-09-30)
|
|
91
|
+
## [4.10.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.9.0...ruby-v4.10.0) (2025-09-30)
|
|
67
92
|
|
|
68
93
|
|
|
69
94
|
### Features
|
|
70
95
|
|
|
71
|
-
* **API:** Add "reviewed" param for tanslations#update ([#891](https://github.com/phrase/openapi/issues/891)) ([3f77286](https://github.com/phrase/openapi/commit/3f7728669fa68d5911dfca39a9e39c24cd20c0a4))
|
|
72
|
-
* **SCM-732:** expose Automation API ([#910](https://github.com/phrase/openapi/issues/910)) ([6eea53d](https://github.com/phrase/openapi/commit/6eea53d06aca8f43623ba90e2e0a8cd6761c9a13))
|
|
96
|
+
* **API:** Add "reviewed" param for tanslations#update ([#891](https://github.com/phrase/strings-openapi/issues/891)) ([3f77286](https://github.com/phrase/strings-openapi/commit/3f7728669fa68d5911dfca39a9e39c24cd20c0a4))
|
|
97
|
+
* **SCM-732:** expose Automation API ([#910](https://github.com/phrase/strings-openapi/issues/910)) ([6eea53d](https://github.com/phrase/strings-openapi/commit/6eea53d06aca8f43623ba90e2e0a8cd6761c9a13))
|
|
73
98
|
|
|
74
|
-
## [4.9.0](https://github.com/phrase/openapi/compare/ruby-v4.8.0...ruby-v4.9.0) (2025-08-01)
|
|
99
|
+
## [4.9.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.8.0...ruby-v4.9.0) (2025-08-01)
|
|
75
100
|
|
|
76
101
|
|
|
77
102
|
### Features
|
|
78
103
|
|
|
79
|
-
* **API:** Add support for `update_custom_metadata` option on upload ([#882](https://github.com/phrase/openapi/issues/882)) ([5b486ea](https://github.com/phrase/openapi/commit/5b486eabf30c84402a8e31911a5ba6fe3b343a89))
|
|
104
|
+
* **API:** Add support for `update_custom_metadata` option on upload ([#882](https://github.com/phrase/strings-openapi/issues/882)) ([5b486ea](https://github.com/phrase/strings-openapi/commit/5b486eabf30c84402a8e31911a5ba6fe3b343a89))
|
|
80
105
|
|
|
81
|
-
## [4.8.0](https://github.com/phrase/openapi/compare/ruby-v4.7.0...ruby-v4.8.0) (2025-07-23)
|
|
106
|
+
## [4.8.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.7.0...ruby-v4.8.0) (2025-07-23)
|
|
82
107
|
|
|
83
108
|
|
|
84
109
|
### Features
|
|
85
110
|
|
|
86
|
-
* **API:** Job and job locale annotations #SCD-145 ([#867](https://github.com/phrase/openapi/issues/867)) ([95b6c2a](https://github.com/phrase/openapi/commit/95b6c2a2ab798d01f9bc0d53a22dbf817a5eb0ee))
|
|
111
|
+
* **API:** Job and job locale annotations #SCD-145 ([#867](https://github.com/phrase/strings-openapi/issues/867)) ([95b6c2a](https://github.com/phrase/strings-openapi/commit/95b6c2a2ab798d01f9bc0d53a22dbf817a5eb0ee))
|
|
87
112
|
|
|
88
|
-
## [4.7.0](https://github.com/phrase/openapi/compare/ruby-v4.6.0...ruby-v4.7.0) (2025-07-18)
|
|
113
|
+
## [4.7.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.6.0...ruby-v4.7.0) (2025-07-18)
|
|
89
114
|
|
|
90
115
|
|
|
91
116
|
### Features
|
|
92
117
|
|
|
93
|
-
* **API:** add updated_since param for downloads ([#858](https://github.com/phrase/openapi/issues/858)) ([db4196b](https://github.com/phrase/openapi/commit/db4196bfb1a45f628577bebb99aad7da1179c241))
|
|
94
|
-
* **API:** Add use_ordinal_rules attribute to request body for create/update Keys endpoints ([#868](https://github.com/phrase/openapi/issues/868)) ([29410b5](https://github.com/phrase/openapi/commit/29410b5d4edee9645f449d2d7de53fb953c1f0c2))
|
|
95
|
-
* **API:** Add use_ordinal_rules boolean [STRINGS-2273] ([#846](https://github.com/phrase/openapi/issues/846)) ([450ce0c](https://github.com/phrase/openapi/commit/450ce0cce6bb2064758c44b130b39dd5539c2681))
|
|
118
|
+
* **API:** add updated_since param for downloads ([#858](https://github.com/phrase/strings-openapi/issues/858)) ([db4196b](https://github.com/phrase/strings-openapi/commit/db4196bfb1a45f628577bebb99aad7da1179c241))
|
|
119
|
+
* **API:** Add use_ordinal_rules attribute to request body for create/update Keys endpoints ([#868](https://github.com/phrase/strings-openapi/issues/868)) ([29410b5](https://github.com/phrase/strings-openapi/commit/29410b5d4edee9645f449d2d7de53fb953c1f0c2))
|
|
120
|
+
* **API:** Add use_ordinal_rules boolean [STRINGS-2273] ([#846](https://github.com/phrase/strings-openapi/issues/846)) ([450ce0c](https://github.com/phrase/strings-openapi/commit/450ce0cce6bb2064758c44b130b39dd5539c2681))
|
|
96
121
|
|
|
97
|
-
## [4.6.0](https://github.com/phrase/openapi/compare/ruby-v4.5.0...ruby-v4.6.0) (2025-05-23)
|
|
122
|
+
## [4.6.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.5.0...ruby-v4.6.0) (2025-05-23)
|
|
98
123
|
|
|
99
124
|
|
|
100
125
|
### Features
|
|
101
126
|
|
|
102
|
-
* **API:** Add omit_statistics param to tags#show ([#834](https://github.com/phrase/openapi/issues/834)) ([2058b18](https://github.com/phrase/openapi/commit/2058b18297133075885ac99770aee2e171811cd6))
|
|
127
|
+
* **API:** Add omit_statistics param to tags#show ([#834](https://github.com/phrase/strings-openapi/issues/834)) ([2058b18](https://github.com/phrase/strings-openapi/commit/2058b18297133075885ac99770aee2e171811cd6))
|
|
103
128
|
|
|
104
|
-
## [4.5.0](https://github.com/phrase/openapi/compare/ruby-v4.4.0...ruby-v4.5.0) (2025-05-16)
|
|
129
|
+
## [4.5.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.4.0...ruby-v4.5.0) (2025-05-16)
|
|
105
130
|
|
|
106
131
|
|
|
107
132
|
### Features
|
|
108
133
|
|
|
109
|
-
* **API:** Add "verify_mentioned_translations" parameter to uploads ([#830](https://github.com/phrase/openapi/issues/830)) ([f2fdf60](https://github.com/phrase/openapi/commit/f2fdf60dd97c3908293cd457a765dafde603bd9b))
|
|
110
|
-
* **API:** Add processed & upload total translations on upload summary ([#824](https://github.com/phrase/openapi/issues/824)) ([081db68](https://github.com/phrase/openapi/commit/081db68d2ffcf5d66a81e07eec0a9572a1f9d633))
|
|
111
|
-
* **API:** Translations unreview & batch unreview ([#831](https://github.com/phrase/openapi/issues/831)) ([6a696db](https://github.com/phrase/openapi/commit/6a696db00d80d8acaf5887a08a7a97997566eb8f))
|
|
134
|
+
* **API:** Add "verify_mentioned_translations" parameter to uploads ([#830](https://github.com/phrase/strings-openapi/issues/830)) ([f2fdf60](https://github.com/phrase/strings-openapi/commit/f2fdf60dd97c3908293cd457a765dafde603bd9b))
|
|
135
|
+
* **API:** Add processed & upload total translations on upload summary ([#824](https://github.com/phrase/strings-openapi/issues/824)) ([081db68](https://github.com/phrase/strings-openapi/commit/081db68d2ffcf5d66a81e07eec0a9572a1f9d633))
|
|
136
|
+
* **API:** Translations unreview & batch unreview ([#831](https://github.com/phrase/strings-openapi/issues/831)) ([6a696db](https://github.com/phrase/strings-openapi/commit/6a696db00d80d8acaf5887a08a7a97997566eb8f))
|
|
112
137
|
|
|
113
138
|
|
|
114
139
|
### Bug Fixes
|
|
115
140
|
|
|
116
|
-
* **API:** Remove request body from GET comments ([#817](https://github.com/phrase/openapi/issues/817)) ([2646001](https://github.com/phrase/openapi/commit/264600132e80ac03983e0ae86e99db3d6fb9080d))
|
|
141
|
+
* **API:** Remove request body from GET comments ([#817](https://github.com/phrase/strings-openapi/issues/817)) ([2646001](https://github.com/phrase/strings-openapi/commit/264600132e80ac03983e0ae86e99db3d6fb9080d))
|
|
117
142
|
|
|
118
|
-
## [4.4.0](https://github.com/phrase/openapi/compare/ruby-v4.3.0...ruby-v4.4.0) (2025-03-04)
|
|
143
|
+
## [4.4.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.3.0...ruby-v4.4.0) (2025-03-04)
|
|
119
144
|
|
|
120
145
|
|
|
121
146
|
### Features
|
|
122
147
|
|
|
123
|
-
* **API:** Include roles in account response ([#811](https://github.com/phrase/openapi/issues/811)) ([dc27ee5](https://github.com/phrase/openapi/commit/dc27ee5117762222b6e1e6abb639f8e00c6a9101))
|
|
148
|
+
* **API:** Include roles in account response ([#811](https://github.com/phrase/strings-openapi/issues/811)) ([dc27ee5](https://github.com/phrase/strings-openapi/commit/dc27ee5117762222b6e1e6abb639f8e00c6a9101))
|
|
124
149
|
|
|
125
|
-
## [4.3.0](https://github.com/phrase/openapi/compare/ruby-v4.2.0...ruby-v4.3.0) (2025-02-21)
|
|
150
|
+
## [4.3.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.2.0...ruby-v4.3.0) (2025-02-21)
|
|
126
151
|
|
|
127
152
|
|
|
128
153
|
### Features
|
|
129
154
|
|
|
130
|
-
* **API:** add updated_since filter to job list #STRINGS-1555 ([#799](https://github.com/phrase/openapi/issues/799)) ([dc9b6ed](https://github.com/phrase/openapi/commit/dc9b6ed12e013231d397820449086c87fea2f8ba))
|
|
155
|
+
* **API:** add updated_since filter to job list #STRINGS-1555 ([#799](https://github.com/phrase/strings-openapi/issues/799)) ([dc9b6ed](https://github.com/phrase/strings-openapi/commit/dc9b6ed12e013231d397820449086c87fea2f8ba))
|
|
131
156
|
|
|
132
|
-
## [4.2.0](https://github.com/phrase/openapi/compare/ruby-v4.1.0...ruby-v4.2.0) (2025-02-17)
|
|
157
|
+
## [4.2.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.1.0...ruby-v4.2.0) (2025-02-17)
|
|
133
158
|
|
|
134
159
|
|
|
135
160
|
### Features
|
|
136
161
|
|
|
137
|
-
* **API:** document tags attribute of an upload #STRINGS-1221 ([#790](https://github.com/phrase/openapi/issues/790)) ([fff505b](https://github.com/phrase/openapi/commit/fff505bdff35a0033fee06e505c42fe794c88562))
|
|
162
|
+
* **API:** document tags attribute of an upload #STRINGS-1221 ([#790](https://github.com/phrase/strings-openapi/issues/790)) ([fff505b](https://github.com/phrase/strings-openapi/commit/fff505bdff35a0033fee06e505c42fe794c88562))
|
|
138
163
|
|
|
139
|
-
## [4.1.0](https://github.com/phrase/openapi/compare/ruby-v4.0.3...ruby-v4.1.0) (2025-02-17)
|
|
164
|
+
## [4.1.0](https://github.com/phrase/strings-openapi/compare/ruby-v4.0.3...ruby-v4.1.0) (2025-02-17)
|
|
140
165
|
|
|
141
166
|
|
|
142
167
|
### Features
|
|
143
168
|
|
|
144
|
-
* **API:** Add locale_ids param to synchronous download endpoint [STRINGS-1492] ([#780](https://github.com/phrase/openapi/issues/780)) ([47186a4](https://github.com/phrase/openapi/commit/47186a44fc8c0b8e466636acf3d49413b1f29f30))
|
|
145
|
-
* **API:** Add source last updated at information on job details ([#777](https://github.com/phrase/openapi/issues/777)) ([c9b8423](https://github.com/phrase/openapi/commit/c9b8423766b4138980d0553502b3e18ca524f34e))
|
|
169
|
+
* **API:** Add locale_ids param to synchronous download endpoint [STRINGS-1492] ([#780](https://github.com/phrase/strings-openapi/issues/780)) ([47186a4](https://github.com/phrase/strings-openapi/commit/47186a44fc8c0b8e466636acf3d49413b1f29f30))
|
|
170
|
+
* **API:** Add source last updated at information on job details ([#777](https://github.com/phrase/strings-openapi/issues/777)) ([c9b8423](https://github.com/phrase/strings-openapi/commit/c9b8423766b4138980d0553502b3e18ca524f34e))
|
|
146
171
|
|
|
147
|
-
## [4.0.3](https://github.com/phrase/openapi/compare/ruby-v4.0.2...ruby-v4.0.3) (2025-01-29)
|
|
172
|
+
## [4.0.3](https://github.com/phrase/strings-openapi/compare/ruby-v4.0.2...ruby-v4.0.3) (2025-01-29)
|
|
148
173
|
|
|
149
174
|
|
|
150
175
|
### Bug Fixes
|
|
151
176
|
|
|
152
|
-
* **API:** pass translation_key_ids when removing keys from job ([#771](https://github.com/phrase/openapi/issues/771)) ([f670e27](https://github.com/phrase/openapi/commit/f670e2763b1112fefd1812109b3c09def42b7bd2))
|
|
177
|
+
* **API:** pass translation_key_ids when removing keys from job ([#771](https://github.com/phrase/strings-openapi/issues/771)) ([f670e27](https://github.com/phrase/strings-openapi/commit/f670e2763b1112fefd1812109b3c09def42b7bd2))
|
|
153
178
|
|
|
154
|
-
## [4.0.2](https://github.com/phrase/openapi/compare/ruby-v4.0.1...ruby-v4.0.2) (2025-01-06)
|
|
179
|
+
## [4.0.2](https://github.com/phrase/strings-openapi/compare/ruby-v4.0.1...ruby-v4.0.2) (2025-01-06)
|
|
155
180
|
|
|
156
181
|
|
|
157
182
|
### Bug Fixes
|
|
158
183
|
|
|
159
|
-
* **CLI:** Adjust operationId for quality_performance_score #STRINGS-1104 ([#721](https://github.com/phrase/openapi/issues/721)) ([7aa3b9b](https://github.com/phrase/openapi/commit/7aa3b9b508d1d24a4af7f4977b1a2fead8bfda78))
|
|
184
|
+
* **CLI:** Adjust operationId for quality_performance_score #STRINGS-1104 ([#721](https://github.com/phrase/strings-openapi/issues/721)) ([7aa3b9b](https://github.com/phrase/strings-openapi/commit/7aa3b9b508d1d24a4af7f4977b1a2fead8bfda78))
|
|
160
185
|
|
|
161
|
-
## [4.0.1](https://github.com/phrase/openapi/compare/ruby-v4.0.0...ruby-v4.0.1) (2024-12-20)
|
|
186
|
+
## [4.0.1](https://github.com/phrase/strings-openapi/compare/ruby-v4.0.0...ruby-v4.0.1) (2024-12-20)
|
|
162
187
|
|
|
163
188
|
|
|
164
189
|
### Bug Fixes
|
|
165
190
|
|
|
166
|
-
* **API:** Repo Sync Event errors field type #STRINGS-1074 ([#756](https://github.com/phrase/openapi/issues/756)) ([c7670e0](https://github.com/phrase/openapi/commit/c7670e04810f95359d72ba6346b5f626bfb77b6f))
|
|
167
|
-
* **API:** Repo Sync schema fixes #STRINGS-1074 ([#748](https://github.com/phrase/openapi/issues/748)) ([033be10](https://github.com/phrase/openapi/commit/033be1003fe01b5115de1f8ba2336d32b4862bfd))
|
|
191
|
+
* **API:** Repo Sync Event errors field type #STRINGS-1074 ([#756](https://github.com/phrase/strings-openapi/issues/756)) ([c7670e0](https://github.com/phrase/strings-openapi/commit/c7670e04810f95359d72ba6346b5f626bfb77b6f))
|
|
192
|
+
* **API:** Repo Sync schema fixes #STRINGS-1074 ([#748](https://github.com/phrase/strings-openapi/issues/748)) ([033be10](https://github.com/phrase/strings-openapi/commit/033be1003fe01b5115de1f8ba2336d32b4862bfd))
|
|
168
193
|
|
|
169
|
-
## [4.0.0](https://github.com/phrase/openapi/compare/ruby-v3.7.1...ruby-v4.0.0) (2024-12-18)
|
|
194
|
+
## [4.0.0](https://github.com/phrase/strings-openapi/compare/ruby-v3.7.1...ruby-v4.0.0) (2024-12-18)
|
|
170
195
|
|
|
171
196
|
|
|
172
197
|
### ⚠ BREAKING CHANGES
|
|
173
198
|
|
|
174
|
-
* Remove old Git sync endpoints. Replaced with new repo sync ([#735](https://github.com/phrase/openapi/issues/735))
|
|
199
|
+
* Remove old Git sync endpoints. Replaced with new repo sync ([#735](https://github.com/phrase/strings-openapi/issues/735))
|
|
175
200
|
|
|
176
201
|
### Features
|
|
177
202
|
|
|
178
|
-
* **API:** Add 'default_encoding' documentation ([#733](https://github.com/phrase/openapi/issues/733)) ([0139c51](https://github.com/phrase/openapi/commit/0139c51da747fbe7bc9929bcf3534aad7f22f39a))
|
|
179
|
-
* Remove old Git sync endpoints. Replaced with new repo sync ([#735](https://github.com/phrase/openapi/issues/735)) ([c3bd8ec](https://github.com/phrase/openapi/commit/c3bd8eccaabcfa1b1066ea4438971ac59833af46))
|
|
203
|
+
* **API:** Add 'default_encoding' documentation ([#733](https://github.com/phrase/strings-openapi/issues/733)) ([0139c51](https://github.com/phrase/strings-openapi/commit/0139c51da747fbe7bc9929bcf3534aad7f22f39a))
|
|
204
|
+
* Remove old Git sync endpoints. Replaced with new repo sync ([#735](https://github.com/phrase/strings-openapi/issues/735)) ([c3bd8ec](https://github.com/phrase/strings-openapi/commit/c3bd8eccaabcfa1b1066ea4438971ac59833af46))
|
|
180
205
|
|
|
181
|
-
## [3.7.1](https://github.com/phrase/openapi/compare/ruby-v3.7.0...ruby-v3.7.1) (2024-12-09)
|
|
206
|
+
## [3.7.1](https://github.com/phrase/strings-openapi/compare/ruby-v3.7.0...ruby-v3.7.1) (2024-12-09)
|
|
182
207
|
|
|
183
208
|
|
|
184
209
|
### Bug Fixes
|
|
185
210
|
|
|
186
|
-
* **API:** Add missing branch parameter to job comment endpoints #STRINGS-988 ([#724](https://github.com/phrase/openapi/issues/724)) ([64d399c](https://github.com/phrase/openapi/commit/64d399ced0980ac2a48366f91110047287a0c590))
|
|
211
|
+
* **API:** Add missing branch parameter to job comment endpoints #STRINGS-988 ([#724](https://github.com/phrase/strings-openapi/issues/724)) ([64d399c](https://github.com/phrase/strings-openapi/commit/64d399ced0980ac2a48366f91110047287a0c590))
|
|
187
212
|
|
|
188
|
-
## [3.7.0](https://github.com/phrase/openapi/compare/ruby-v3.6.0...ruby-v3.7.0) (2024-12-03)
|
|
213
|
+
## [3.7.0](https://github.com/phrase/strings-openapi/compare/ruby-v3.6.0...ruby-v3.7.0) (2024-12-03)
|
|
189
214
|
|
|
190
215
|
|
|
191
216
|
### Features
|
|
192
217
|
|
|
193
|
-
* **API:** Add Pagination header to POST search endpoints [[#457](https://github.com/phrase/openapi/issues/457)] ([#706](https://github.com/phrase/openapi/issues/706)) ([9a79fa3](https://github.com/phrase/openapi/commit/9a79fa31bb3b9d58272fa2f4e82d72d0d44a93a0))
|
|
194
|
-
* **API:** autotranslate param in key creation [STRINGS-786] ([#713](https://github.com/phrase/openapi/issues/713)) ([581d0ff](https://github.com/phrase/openapi/commit/581d0ff5f1d06757e5ddd9603b78fc8d435d68ee))
|
|
218
|
+
* **API:** Add Pagination header to POST search endpoints [[#457](https://github.com/phrase/strings-openapi/issues/457)] ([#706](https://github.com/phrase/strings-openapi/issues/706)) ([9a79fa3](https://github.com/phrase/strings-openapi/commit/9a79fa31bb3b9d58272fa2f4e82d72d0d44a93a0))
|
|
219
|
+
* **API:** autotranslate param in key creation [STRINGS-786] ([#713](https://github.com/phrase/strings-openapi/issues/713)) ([581d0ff](https://github.com/phrase/strings-openapi/commit/581d0ff5f1d06757e5ddd9603b78fc8d435d68ee))
|
|
195
220
|
|
|
196
221
|
|
|
197
222
|
### Bug Fixes
|
|
198
223
|
|
|
199
|
-
* **API:** Comment creation schema fix #STRINGS-866 ([#718](https://github.com/phrase/openapi/issues/718)) ([e201d13](https://github.com/phrase/openapi/commit/e201d1360c89698dd8d3642cc28f89dd0e50a1fb))
|
|
224
|
+
* **API:** Comment creation schema fix #STRINGS-866 ([#718](https://github.com/phrase/strings-openapi/issues/718)) ([e201d13](https://github.com/phrase/strings-openapi/commit/e201d1360c89698dd8d3642cc28f89dd0e50a1fb))
|
|
200
225
|
|
|
201
|
-
## [3.6.0](https://github.com/phrase/openapi/compare/ruby-v3.5.0...ruby-v3.6.0) (2024-10-02)
|
|
226
|
+
## [3.6.0](https://github.com/phrase/strings-openapi/compare/ruby-v3.5.0...ruby-v3.6.0) (2024-10-02)
|
|
202
227
|
|
|
203
228
|
|
|
204
229
|
### Features
|
|
205
230
|
|
|
206
|
-
* Add translation key prefixes for upload and download ([#687](https://github.com/phrase/openapi/issues/687)) ([9c9c959](https://github.com/phrase/openapi/commit/9c9c959830631bcac8beaf1de30ab31755ac1ee5))
|
|
231
|
+
* Add translation key prefixes for upload and download ([#687](https://github.com/phrase/strings-openapi/issues/687)) ([9c9c959](https://github.com/phrase/strings-openapi/commit/9c9c959830631bcac8beaf1de30ab31755ac1ee5))
|
|
207
232
|
|
|
208
233
|
|
|
209
234
|
### Bug Fixes
|
|
210
235
|
|
|
211
|
-
* **API:** Format list is not paginated and authenticated #STRINGS-458 ([#690](https://github.com/phrase/openapi/issues/690)) ([25e90f4](https://github.com/phrase/openapi/commit/25e90f46513e70cf328be80c36ae785cead05851))
|
|
236
|
+
* **API:** Format list is not paginated and authenticated #STRINGS-458 ([#690](https://github.com/phrase/strings-openapi/issues/690)) ([25e90f4](https://github.com/phrase/strings-openapi/commit/25e90f46513e70cf328be80c36ae785cead05851))
|
|
212
237
|
|
|
213
|
-
## [3.5.0](https://github.com/phrase/openapi/compare/ruby-v3.4.0...ruby-v3.5.0) (2024-09-09)
|
|
238
|
+
## [3.5.0](https://github.com/phrase/strings-openapi/compare/ruby-v3.4.0...ruby-v3.5.0) (2024-09-09)
|
|
214
239
|
|
|
215
240
|
|
|
216
241
|
### Features
|
|
217
242
|
|
|
218
|
-
* Add update_translations_on_source_match ([#670](https://github.com/phrase/openapi/issues/670)) ([11003ac](https://github.com/phrase/openapi/commit/11003ace7353bf99893482ca4aa32214abf3e581))
|
|
243
|
+
* Add update_translations_on_source_match ([#670](https://github.com/phrase/strings-openapi/issues/670)) ([11003ac](https://github.com/phrase/strings-openapi/commit/11003ace7353bf99893482ca4aa32214abf3e581))
|
|
219
244
|
|
|
220
|
-
## [3.4.0](https://github.com/phrase/openapi/compare/ruby-v3.3.0...ruby-v3.4.0) (2024-07-25)
|
|
245
|
+
## [3.4.0](https://github.com/phrase/strings-openapi/compare/ruby-v3.3.0...ruby-v3.4.0) (2024-07-25)
|
|
221
246
|
|
|
222
247
|
|
|
223
248
|
### Features
|
|
224
249
|
|
|
225
|
-
* **ruby:** Remove dependency version constraints ([#659](https://github.com/phrase/openapi/issues/659)) ([1cf052b](https://github.com/phrase/openapi/commit/1cf052b3d22642c41d0d43a35288ef4fc134ae08))
|
|
250
|
+
* **ruby:** Remove dependency version constraints ([#659](https://github.com/phrase/strings-openapi/issues/659)) ([1cf052b](https://github.com/phrase/strings-openapi/commit/1cf052b3d22642c41d0d43a35288ef4fc134ae08))
|
|
226
251
|
|
|
227
|
-
## [3.3.0](https://github.com/phrase/openapi/compare/ruby-v3.2.1...ruby-v3.3.0) (2024-07-02)
|
|
252
|
+
## [3.3.0](https://github.com/phrase/strings-openapi/compare/ruby-v3.2.1...ruby-v3.3.0) (2024-07-02)
|
|
228
253
|
|
|
229
254
|
|
|
230
255
|
### Features
|
|
231
256
|
|
|
232
|
-
* add repo sync events show endpoint ([#641](https://github.com/phrase/openapi/issues/641)) ([e1d9cfb](https://github.com/phrase/openapi/commit/e1d9cfb23e079fea2d9e5475dff9a4137f1f0154))
|
|
233
|
-
* **API:** Async downloads [TSI-2515] ([#642](https://github.com/phrase/openapi/issues/642)) ([6fcab5d](https://github.com/phrase/openapi/commit/6fcab5d4719f64e8e5dd49c327dc9348b384de4c))
|
|
257
|
+
* add repo sync events show endpoint ([#641](https://github.com/phrase/strings-openapi/issues/641)) ([e1d9cfb](https://github.com/phrase/strings-openapi/commit/e1d9cfb23e079fea2d9e5475dff9a4137f1f0154))
|
|
258
|
+
* **API:** Async downloads [TSI-2515] ([#642](https://github.com/phrase/strings-openapi/issues/642)) ([6fcab5d](https://github.com/phrase/strings-openapi/commit/6fcab5d4719f64e8e5dd49c327dc9348b384de4c))
|
|
234
259
|
|
|
235
|
-
## [3.2.1](https://github.com/phrase/openapi/compare/ruby-v3.2.0...ruby-v3.2.1) (2024-06-18)
|
|
260
|
+
## [3.2.1](https://github.com/phrase/strings-openapi/compare/ruby-v3.2.0...ruby-v3.2.1) (2024-06-18)
|
|
236
261
|
|
|
237
262
|
|
|
238
263
|
### Bug Fixes
|
|
239
264
|
|
|
240
|
-
* add app_min_version and app_max_version param to releases ([#633](https://github.com/phrase/openapi/issues/633)) ([b384301](https://github.com/phrase/openapi/commit/b3843012460ace4c1d34c4373e5158595466adcb))
|
|
265
|
+
* add app_min_version and app_max_version param to releases ([#633](https://github.com/phrase/strings-openapi/issues/633)) ([b384301](https://github.com/phrase/strings-openapi/commit/b3843012460ace4c1d34c4373e5158595466adcb))
|
|
241
266
|
|
|
242
|
-
## [3.2.0](https://github.com/phrase/openapi/compare/ruby-v3.1.1...ruby-v3.2.0) (2024-06-12)
|
|
267
|
+
## [3.2.0](https://github.com/phrase/strings-openapi/compare/ruby-v3.1.1...ruby-v3.2.0) (2024-06-12)
|
|
243
268
|
|
|
244
269
|
|
|
245
270
|
### Features
|
|
246
271
|
|
|
247
|
-
* **API:** Add OTA Release Triggers API [TSI-2485] ([#622](https://github.com/phrase/openapi/issues/622)) ([8cb91dc](https://github.com/phrase/openapi/commit/8cb91dcce2c19ca700cf9d0713fa74f28ad59434))
|
|
272
|
+
* **API:** Add OTA Release Triggers API [TSI-2485] ([#622](https://github.com/phrase/strings-openapi/issues/622)) ([8cb91dc](https://github.com/phrase/strings-openapi/commit/8cb91dcce2c19ca700cf9d0713fa74f28ad59434))
|
|
248
273
|
|
|
249
|
-
## [3.1.1](https://github.com/phrase/openapi/compare/ruby-v3.1.0...ruby-v3.1.1) (2024-05-31)
|
|
274
|
+
## [3.1.1](https://github.com/phrase/strings-openapi/compare/ruby-v3.1.0...ruby-v3.1.1) (2024-05-31)
|
|
250
275
|
|
|
251
276
|
|
|
252
277
|
### Bug Fixes
|
|
253
278
|
|
|
254
|
-
* **CLI:** use id instead of repo_sync_id as param ([#618](https://github.com/phrase/openapi/issues/618)) ([7a1a0d9](https://github.com/phrase/openapi/commit/7a1a0d9115262dc7fa3065ee7cc76bec7a381ddb))
|
|
255
|
-
* **PHP:** Fix deserializing custom metadata values in key response ([#607](https://github.com/phrase/openapi/issues/607)) ([b6eeeba](https://github.com/phrase/openapi/commit/b6eeeba223e3eabec268a8f3d372afcb6abd09dd))
|
|
279
|
+
* **CLI:** use id instead of repo_sync_id as param ([#618](https://github.com/phrase/strings-openapi/issues/618)) ([7a1a0d9](https://github.com/phrase/strings-openapi/commit/7a1a0d9115262dc7fa3065ee7cc76bec7a381ddb))
|
|
280
|
+
* **PHP:** Fix deserializing custom metadata values in key response ([#607](https://github.com/phrase/strings-openapi/issues/607)) ([b6eeeba](https://github.com/phrase/strings-openapi/commit/b6eeeba223e3eabec268a8f3d372afcb6abd09dd))
|
|
256
281
|
|
|
257
|
-
## [3.1.0](https://github.com/phrase/openapi/compare/ruby-v3.0.0...ruby-v3.1.0) (2024-04-29)
|
|
282
|
+
## [3.1.0](https://github.com/phrase/strings-openapi/compare/ruby-v3.0.0...ruby-v3.1.0) (2024-04-29)
|
|
258
283
|
|
|
259
284
|
|
|
260
285
|
### Features
|
|
261
286
|
|
|
262
|
-
* **API:** Add 'update_translation_keys' for Uploads [TSI-2292] ([#578](https://github.com/phrase/openapi/issues/578)) ([4492ec0](https://github.com/phrase/openapi/commit/4492ec0a7c62f9de9ab1c1125071615bddcc26ce))
|
|
287
|
+
* **API:** Add 'update_translation_keys' for Uploads [TSI-2292] ([#578](https://github.com/phrase/strings-openapi/issues/578)) ([4492ec0](https://github.com/phrase/strings-openapi/commit/4492ec0a7c62f9de9ab1c1125071615bddcc26ce))
|
|
263
288
|
|
|
264
|
-
## [3.0.0](https://github.com/phrase/openapi/compare/ruby-v2.26.0...ruby-v3.0.0) (2024-04-23)
|
|
289
|
+
## [3.0.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.26.0...ruby-v3.0.0) (2024-04-23)
|
|
265
290
|
|
|
266
291
|
|
|
267
292
|
### ⚠ BREAKING CHANGES
|
|
268
293
|
|
|
269
|
-
* add missing required params ([#571](https://github.com/phrase/openapi/issues/571))
|
|
294
|
+
* add missing required params ([#571](https://github.com/phrase/strings-openapi/issues/571))
|
|
270
295
|
|
|
271
296
|
### Code Refactoring
|
|
272
297
|
|
|
273
|
-
* add missing required params ([#571](https://github.com/phrase/openapi/issues/571)) ([d810e9e](https://github.com/phrase/openapi/commit/d810e9ebc767e14ba9e56106de8c5774d9d6d178))
|
|
298
|
+
* add missing required params ([#571](https://github.com/phrase/strings-openapi/issues/571)) ([d810e9e](https://github.com/phrase/strings-openapi/commit/d810e9ebc767e14ba9e56106de8c5774d9d6d178))
|
|
274
299
|
|
|
275
|
-
## [2.26.0](https://github.com/phrase/openapi/compare/ruby-v2.25.0...ruby-v2.26.0) (2024-04-22)
|
|
300
|
+
## [2.26.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.25.0...ruby-v2.26.0) (2024-04-22)
|
|
276
301
|
|
|
277
302
|
|
|
278
303
|
### Features
|
|
279
304
|
|
|
280
|
-
* Add linked-parent to translation details ([#570](https://github.com/phrase/openapi/issues/570)) ([2c6f432](https://github.com/phrase/openapi/commit/2c6f43253e24b670b71ac810c85dce0759c29403))
|
|
305
|
+
* Add linked-parent to translation details ([#570](https://github.com/phrase/strings-openapi/issues/570)) ([2c6f432](https://github.com/phrase/strings-openapi/commit/2c6f43253e24b670b71ac810c85dce0759c29403))
|
|
281
306
|
|
|
282
|
-
## [2.25.0](https://github.com/phrase/openapi/compare/ruby-v2.24.0...ruby-v2.25.0) (2024-04-17)
|
|
307
|
+
## [2.25.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.24.0...ruby-v2.25.0) (2024-04-17)
|
|
283
308
|
|
|
284
309
|
|
|
285
310
|
### Features
|
|
286
311
|
|
|
287
|
-
* **API:** Add Repo Sync [TSI-1923] ([#569](https://github.com/phrase/openapi/issues/569)) ([0bd1756](https://github.com/phrase/openapi/commit/0bd17562018cb045ff41cc1ff5008b9419a0ed12))
|
|
312
|
+
* **API:** Add Repo Sync [TSI-1923] ([#569](https://github.com/phrase/strings-openapi/issues/569)) ([0bd1756](https://github.com/phrase/strings-openapi/commit/0bd17562018cb045ff41cc1ff5008b9419a0ed12))
|
|
288
313
|
|
|
289
|
-
## [2.24.0](https://github.com/phrase/openapi/compare/ruby-v2.23.0...ruby-v2.24.0) (2024-04-10)
|
|
314
|
+
## [2.24.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.23.0...ruby-v2.24.0) (2024-04-10)
|
|
290
315
|
|
|
291
316
|
|
|
292
317
|
### Features
|
|
293
318
|
|
|
294
|
-
* **API:** add Linked Keys endpoints ([#555](https://github.com/phrase/openapi/issues/555)) ([4935dac](https://github.com/phrase/openapi/commit/4935dac58c787eaade2f1f65ce649f466b5e3a60))
|
|
319
|
+
* **API:** add Linked Keys endpoints ([#555](https://github.com/phrase/strings-openapi/issues/555)) ([4935dac](https://github.com/phrase/strings-openapi/commit/4935dac58c787eaade2f1f65ce649f466b5e3a60))
|
|
295
320
|
|
|
296
321
|
|
|
297
322
|
### Bug Fixes
|
|
298
323
|
|
|
299
|
-
* (API) Add mandatory params to linked keys endpoints ([#564](https://github.com/phrase/openapi/issues/564)) ([08d9846](https://github.com/phrase/openapi/commit/08d9846bc224d349e2ade9abf28d733afb1e8be3))
|
|
324
|
+
* (API) Add mandatory params to linked keys endpoints ([#564](https://github.com/phrase/strings-openapi/issues/564)) ([08d9846](https://github.com/phrase/strings-openapi/commit/08d9846bc224d349e2ade9abf28d733afb1e8be3))
|
|
300
325
|
|
|
301
|
-
## [2.23.0](https://github.com/phrase/openapi/compare/ruby-v2.22.2...ruby-v2.23.0) (2024-02-07)
|
|
326
|
+
## [2.23.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.22.2...ruby-v2.23.0) (2024-02-07)
|
|
302
327
|
|
|
303
328
|
|
|
304
329
|
### Features
|
|
305
330
|
|
|
306
|
-
* add query param for properties ([#542](https://github.com/phrase/openapi/issues/542)) ([b4e12d0](https://github.com/phrase/openapi/commit/b4e12d04fd2916351f9201e1e6de504143ecc9aa))
|
|
331
|
+
* add query param for properties ([#542](https://github.com/phrase/strings-openapi/issues/542)) ([b4e12d0](https://github.com/phrase/strings-openapi/commit/b4e12d04fd2916351f9201e1e6de504143ecc9aa))
|
|
307
332
|
|
|
308
|
-
## [2.22.2](https://github.com/phrase/openapi/compare/ruby-v2.22.1...ruby-v2.22.2) (2024-02-05)
|
|
333
|
+
## [2.22.2](https://github.com/phrase/strings-openapi/compare/ruby-v2.22.1...ruby-v2.22.2) (2024-02-05)
|
|
309
334
|
|
|
310
335
|
|
|
311
336
|
### Bug Fixes
|
|
312
337
|
|
|
313
|
-
* **API:** allow nullable value for job's due_date ([#534](https://github.com/phrase/openapi/issues/534)) ([38b51b5](https://github.com/phrase/openapi/commit/38b51b51095394f8ce769873140038abba628514))
|
|
338
|
+
* **API:** allow nullable value for job's due_date ([#534](https://github.com/phrase/strings-openapi/issues/534)) ([38b51b5](https://github.com/phrase/strings-openapi/commit/38b51b51095394f8ce769873140038abba628514))
|
|
314
339
|
|
|
315
|
-
## [2.22.1](https://github.com/phrase/openapi/compare/ruby-v2.22.0...ruby-v2.22.1) (2024-02-01)
|
|
340
|
+
## [2.22.1](https://github.com/phrase/strings-openapi/compare/ruby-v2.22.0...ruby-v2.22.1) (2024-02-01)
|
|
316
341
|
|
|
317
342
|
|
|
318
343
|
### Bug Fixes
|
|
319
344
|
|
|
320
|
-
* **API:** Adjust documentation of QPS endpoint ([#525](https://github.com/phrase/openapi/issues/525)) ([4b4f1ac](https://github.com/phrase/openapi/commit/4b4f1acf28fbd13b3d16c37162cdccfa05c38ffa))
|
|
345
|
+
* **API:** Adjust documentation of QPS endpoint ([#525](https://github.com/phrase/strings-openapi/issues/525)) ([4b4f1ac](https://github.com/phrase/strings-openapi/commit/4b4f1acf28fbd13b3d16c37162cdccfa05c38ffa))
|
|
321
346
|
|
|
322
|
-
## [2.22.0](https://github.com/phrase/openapi/compare/ruby-v2.21.0...ruby-v2.22.0) (2024-01-17)
|
|
347
|
+
## [2.22.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.21.0...ruby-v2.22.0) (2024-01-17)
|
|
323
348
|
|
|
324
349
|
|
|
325
350
|
### Features
|
|
326
351
|
|
|
327
|
-
* **api:** Add QPS endpoint and documentation ([#521](https://github.com/phrase/openapi/issues/521)) ([d22c558](https://github.com/phrase/openapi/commit/d22c558adfbb7fcd13759e388c038744914e42fa))
|
|
352
|
+
* **api:** Add QPS endpoint and documentation ([#521](https://github.com/phrase/strings-openapi/issues/521)) ([d22c558](https://github.com/phrase/strings-openapi/commit/d22c558adfbb7fcd13759e388c038744914e42fa))
|
|
328
353
|
|
|
329
354
|
|
|
330
355
|
### Bug Fixes
|
|
331
356
|
|
|
332
|
-
* **API:** Create Custom Metadata endpoint fix [TSI-2222] ([#499](https://github.com/phrase/openapi/issues/499)) ([ce2ed94](https://github.com/phrase/openapi/commit/ce2ed9488e111fb5d9bc3810a78c47d23553c8b7))
|
|
357
|
+
* **API:** Create Custom Metadata endpoint fix [TSI-2222] ([#499](https://github.com/phrase/strings-openapi/issues/499)) ([ce2ed94](https://github.com/phrase/strings-openapi/commit/ce2ed9488e111fb5d9bc3810a78c47d23553c8b7))
|
|
333
358
|
|
|
334
|
-
## [2.21.0](https://github.com/phrase/openapi/compare/ruby-v2.20.0...ruby-v2.21.0) (2023-12-13)
|
|
359
|
+
## [2.21.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.20.0...ruby-v2.21.0) (2023-12-13)
|
|
335
360
|
|
|
336
361
|
|
|
337
362
|
### Features
|
|
338
363
|
|
|
339
|
-
* Add reports locales endpoint to API [TSS-2439] ([#465](https://github.com/phrase/openapi/issues/465)) ([e03aa9f](https://github.com/phrase/openapi/commit/e03aa9f49f031517b36db715fe70e8e0b65a438b))
|
|
340
|
-
* **API:** add Custom Metadata endpoints ([#474](https://github.com/phrase/openapi/issues/474)) ([d407d8b](https://github.com/phrase/openapi/commit/d407d8be5ccddec1afde14a12804a7a616f77d7a))
|
|
341
|
-
* **API:** Add custom_metadata_filters param to locale download endpoint [TSI-2174] ([#478](https://github.com/phrase/openapi/issues/478)) ([3623478](https://github.com/phrase/openapi/commit/3623478fc1518b457ab018b5630a693081637d6e))
|
|
342
|
-
* **API:** Add url field to uploads ([#481](https://github.com/phrase/openapi/issues/481)) ([7332a84](https://github.com/phrase/openapi/commit/7332a84f9958346f2fb28dee4b0353519ef466d5))
|
|
364
|
+
* Add reports locales endpoint to API [TSS-2439] ([#465](https://github.com/phrase/strings-openapi/issues/465)) ([e03aa9f](https://github.com/phrase/strings-openapi/commit/e03aa9f49f031517b36db715fe70e8e0b65a438b))
|
|
365
|
+
* **API:** add Custom Metadata endpoints ([#474](https://github.com/phrase/strings-openapi/issues/474)) ([d407d8b](https://github.com/phrase/strings-openapi/commit/d407d8be5ccddec1afde14a12804a7a616f77d7a))
|
|
366
|
+
* **API:** Add custom_metadata_filters param to locale download endpoint [TSI-2174] ([#478](https://github.com/phrase/strings-openapi/issues/478)) ([3623478](https://github.com/phrase/strings-openapi/commit/3623478fc1518b457ab018b5630a693081637d6e))
|
|
367
|
+
* **API:** Add url field to uploads ([#481](https://github.com/phrase/strings-openapi/issues/481)) ([7332a84](https://github.com/phrase/strings-openapi/commit/7332a84f9958346f2fb28dee4b0353519ef466d5))
|
|
343
368
|
|
|
344
|
-
## [2.20.0](https://github.com/phrase/openapi/compare/ruby-v2.19.0...ruby-v2.20.0) (2023-11-03)
|
|
369
|
+
## [2.20.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.19.0...ruby-v2.20.0) (2023-11-03)
|
|
345
370
|
|
|
346
371
|
|
|
347
372
|
### Features
|
|
348
373
|
|
|
349
|
-
* [TSI-2083] enable format_options argument for java-client ([#426](https://github.com/phrase/openapi/issues/426)) ([faa8cb3](https://github.com/phrase/openapi/commit/faa8cb353ba9f1030b9f7cfd46b894b4d6d26e70))
|
|
374
|
+
* [TSI-2083] enable format_options argument for java-client ([#426](https://github.com/phrase/strings-openapi/issues/426)) ([faa8cb3](https://github.com/phrase/strings-openapi/commit/faa8cb353ba9f1030b9f7cfd46b894b4d6d26e70))
|
|
350
375
|
|
|
351
|
-
## [2.19.0](https://github.com/phrase/openapi/compare/ruby-v2.18.0...ruby-v2.19.0) (2023-10-30)
|
|
376
|
+
## [2.19.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.18.0...ruby-v2.19.0) (2023-10-30)
|
|
352
377
|
|
|
353
378
|
|
|
354
379
|
### Features
|
|
355
380
|
|
|
356
|
-
* Update openapi-generator to v7 ([#418](https://github.com/phrase/openapi/issues/418)) ([524626f](https://github.com/phrase/openapi/commit/524626f5e914bfef6025d0e1c2cbc7a728d08f56))
|
|
381
|
+
* Update openapi-generator to v7 ([#418](https://github.com/phrase/strings-openapi/issues/418)) ([524626f](https://github.com/phrase/strings-openapi/commit/524626f5e914bfef6025d0e1c2cbc7a728d08f56))
|
|
357
382
|
|
|
358
|
-
## [2.18.0](https://github.com/phrase/openapi/compare/ruby-v2.17.0...ruby-v2.18.0) (2023-10-23)
|
|
383
|
+
## [2.18.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.17.0...ruby-v2.18.0) (2023-10-23)
|
|
359
384
|
|
|
360
385
|
|
|
361
386
|
### Features
|
|
362
387
|
|
|
363
|
-
* **API:** Add order param to comment list endpoints ([#441](https://github.com/phrase/openapi/issues/441)) ([441c9c4](https://github.com/phrase/openapi/commit/441c9c46169f8c5ac4e71ade09a95dab136314ef))
|
|
388
|
+
* **API:** Add order param to comment list endpoints ([#441](https://github.com/phrase/strings-openapi/issues/441)) ([441c9c4](https://github.com/phrase/strings-openapi/commit/441c9c46169f8c5ac4e71ade09a95dab136314ef))
|
|
364
389
|
|
|
365
|
-
## [2.17.0](https://github.com/phrase/openapi/compare/ruby-v2.16.0...ruby-v2.17.0) (2023-10-13)
|
|
390
|
+
## [2.17.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.16.0...ruby-v2.17.0) (2023-10-13)
|
|
366
391
|
|
|
367
392
|
|
|
368
393
|
### Features
|
|
369
394
|
|
|
370
|
-
* **API:** Implement figma attachments endpoints ([#415](https://github.com/phrase/openapi/issues/415)) ([970e612](https://github.com/phrase/openapi/commit/970e612fda620ca882a221ef541036b8d200b675))
|
|
395
|
+
* **API:** Implement figma attachments endpoints ([#415](https://github.com/phrase/strings-openapi/issues/415)) ([970e612](https://github.com/phrase/strings-openapi/commit/970e612fda620ca882a221ef541036b8d200b675))
|
|
371
396
|
|
|
372
|
-
## [2.16.0](https://github.com/phrase/openapi/compare/ruby-v2.15.0...ruby-v2.16.0) (2023-09-12)
|
|
397
|
+
## [2.16.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.15.0...ruby-v2.16.0) (2023-09-12)
|
|
373
398
|
|
|
374
399
|
|
|
375
400
|
### Features
|
|
376
401
|
|
|
377
|
-
* Optionally tag only affected keys on upload [TSI-2041] ([#412](https://github.com/phrase/openapi/issues/412)) ([e8f958e](https://github.com/phrase/openapi/commit/e8f958e91469c2542f44ab68469c933688958383))
|
|
378
|
-
* **TSI-1946:** Add reviewed_at to translations ([#396](https://github.com/phrase/openapi/issues/396)) ([3e663d9](https://github.com/phrase/openapi/commit/3e663d971a99a816f0165dd6653a9a1e8a87c95e))
|
|
402
|
+
* Optionally tag only affected keys on upload [TSI-2041] ([#412](https://github.com/phrase/strings-openapi/issues/412)) ([e8f958e](https://github.com/phrase/strings-openapi/commit/e8f958e91469c2542f44ab68469c933688958383))
|
|
403
|
+
* **TSI-1946:** Add reviewed_at to translations ([#396](https://github.com/phrase/strings-openapi/issues/396)) ([3e663d9](https://github.com/phrase/strings-openapi/commit/3e663d971a99a816f0165dd6653a9a1e8a87c95e))
|
|
379
404
|
|
|
380
|
-
## [2.15.0](https://github.com/phrase/openapi/compare/ruby-v2.14.0...ruby-v2.15.0) (2023-08-28)
|
|
405
|
+
## [2.15.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.14.0...ruby-v2.15.0) (2023-08-28)
|
|
381
406
|
|
|
382
407
|
|
|
383
408
|
### Features
|
|
384
409
|
|
|
385
|
-
* **API:** Document new query parameters ([#393](https://github.com/phrase/openapi/issues/393)) ([770515a](https://github.com/phrase/openapi/commit/770515a9628122955bb3919405babf9392684eb9))
|
|
410
|
+
* **API:** Document new query parameters ([#393](https://github.com/phrase/strings-openapi/issues/393)) ([770515a](https://github.com/phrase/strings-openapi/commit/770515a9628122955bb3919405babf9392684eb9))
|
|
386
411
|
|
|
387
|
-
## [2.14.0](https://github.com/phrase/openapi/compare/ruby-v2.13.0...ruby-v2.14.0) (2023-08-24)
|
|
412
|
+
## [2.14.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.13.0...ruby-v2.14.0) (2023-08-24)
|
|
388
413
|
|
|
389
414
|
|
|
390
415
|
### Features
|
|
391
416
|
|
|
392
|
-
* **API:** Introduce comment replies endpoints ([#383](https://github.com/phrase/openapi/issues/383)) ([71351ac](https://github.com/phrase/openapi/commit/71351ac285f4f49976092e176c77b09f3485eb65))
|
|
417
|
+
* **API:** Introduce comment replies endpoints ([#383](https://github.com/phrase/strings-openapi/issues/383)) ([71351ac](https://github.com/phrase/strings-openapi/commit/71351ac285f4f49976092e176c77b09f3485eb65))
|
|
393
418
|
|
|
394
|
-
## [2.13.0](https://github.com/phrase/openapi/compare/ruby-v2.12.0...ruby-v2.13.0) (2023-08-22)
|
|
419
|
+
## [2.13.0](https://github.com/phrase/strings-openapi/compare/ruby-v2.12.0...ruby-v2.13.0) (2023-08-22)
|
|
395
420
|
|
|
396
421
|
|
|
397
422
|
### Features
|
|
398
423
|
|
|
399
|
-
* **TSE-950:** Document comment_reactions endpoints ([#380](https://github.com/phrase/openapi/issues/380)) ([f230244](https://github.com/phrase/openapi/commit/f230244e6e9c069b18edc4c35dd5e290fd14793b))
|
|
424
|
+
* **TSE-950:** Document comment_reactions endpoints ([#380](https://github.com/phrase/strings-openapi/issues/380)) ([f230244](https://github.com/phrase/strings-openapi/commit/f230244e6e9c069b18edc4c35dd5e290fd14793b))
|
|
400
425
|
|
|
401
426
|
|
|
402
427
|
### Bug Fixes
|
|
403
428
|
|
|
404
|
-
* Fix gitlab_sync history status type mismatch ([#363](https://github.com/phrase/openapi/issues/363)) ([ebcaa4e](https://github.com/phrase/openapi/commit/ebcaa4e5dfcb2f73559a56c78b0f2512ca798375))
|
|
405
|
-
* **schemas:** Fix gitlab_sync type mismatch ([#373](https://github.com/phrase/openapi/issues/373)) ([1cb1f65](https://github.com/phrase/openapi/commit/1cb1f650598c68afee6e2cd7c3c4ede1484aba35))
|
|
429
|
+
* Fix gitlab_sync history status type mismatch ([#363](https://github.com/phrase/strings-openapi/issues/363)) ([ebcaa4e](https://github.com/phrase/strings-openapi/commit/ebcaa4e5dfcb2f73559a56c78b0f2512ca798375))
|
|
430
|
+
* **schemas:** Fix gitlab_sync type mismatch ([#373](https://github.com/phrase/strings-openapi/issues/373)) ([1cb1f65](https://github.com/phrase/strings-openapi/commit/1cb1f650598c68afee6e2cd7c3c4ede1484aba35))
|