phrase 2.22.1 → 2.22.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d413596857f93540fb47b5802a01d8332e661f736ffacc8151ba19f0f39d67b1
4
- data.tar.gz: 875c408b3602240c376a7e2f2f632f90099249ec5c1aea5974f19b6d66f8c5bc
3
+ metadata.gz: 8ccb4f85cd722e85e531b2efd29e47a7c0b54a7414c1d4b31fc0cfa08397911c
4
+ data.tar.gz: 89c22edbd0407ff4ab36e719637498218919920bb0fceb284d10f9aad700e9f4
5
5
  SHA512:
6
- metadata.gz: 1d8517e8e68fe5cb311fa3bad5aecfcb03f660db1b8e26c97f897909f5c48950e511ac6b3fce2142094306bfc8ae69c0523ebc267b76c63e1129ec2acbfb9599
7
- data.tar.gz: dcf220de9ccc5f3b9d2a13bfee18904c8ec574d8f24e677c73c4193c7083658487b043bd252b2bdbbf38662ff8cbdcc07b4d24eaedbe19f3b889a446ff00f457
6
+ metadata.gz: fc7c4dc4359575d7a8a544625e9c51ec672360ddd075ed4bf65dd302c34c09cec189ca01dec62e74410856892cb9698fe412ba59373b8a35a338d01daa465568
7
+ data.tar.gz: 3c4b006c644deef14343a21c2806c58132226f630f08e0617fa5868b1cfa09c60a8df21e8e165b780c2bf1c1b6e60dd4f2ebddb5f85acf867fe1a22cf50d1dad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.22.2](https://github.com/phrase/openapi/compare/ruby-v2.22.1...ruby-v2.22.2) (2024-02-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **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))
9
+
3
10
  ## [2.22.1](https://github.com/phrase/openapi/compare/ruby-v2.22.0...ruby-v2.22.1) (2024-02-01)
4
11
 
5
12
 
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: 2.22.1
10
+ - Package version: 2.22.2
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-2.22.1.gem
59
+ gem install ./phrase-2.22.2.gem
60
60
  ```
61
61
 
62
- (for development, run `gem install --dev ./phrase-2.22.1.gem` to install the development dependencies)
62
+ (for development, run `gem install --dev ./phrase-2.22.2.gem` to install the development dependencies)
63
63
 
64
64
  ## Getting Started
65
65
 
@@ -35,7 +35,7 @@ instance = Phrase::KeyCreateParameters.new(branch: my-feature-branch,
35
35
  data_type: number,
36
36
  tags: awesome-feature,needs-proofreading,
37
37
  max_characters_allowed: 140,
38
- screenshot: [B@daa6654,
38
+ screenshot: [B@276038e7,
39
39
  remove_screenshot: null,
40
40
  unformatted: null,
41
41
  default_translation_content: Default translation content,
@@ -34,7 +34,7 @@ instance = Phrase::KeyUpdateParameters.new(branch: my-feature-branch,
34
34
  data_type: number,
35
35
  tags: awesome-feature,needs-proofreading,
36
36
  max_characters_allowed: 140,
37
- screenshot: [B@6fd33f5a,
37
+ screenshot: [B@4be8d40e,
38
38
  remove_screenshot: null,
39
39
  unformatted: null,
40
40
  xml_space_preserve: null,
@@ -40,7 +40,7 @@ instance = Phrase::ProjectCreateParameters.new(name: My Android Project,
40
40
  main_format: yml,
41
41
  media: Python,
42
42
  shares_translation_memory: true,
43
- project_image: [B@1c84d89e,
43
+ project_image: [B@596707f5,
44
44
  remove_project_image: null,
45
45
  account_id: abcd1234,
46
46
  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@66009368,
44
+ project_image: [B@6ec05499,
45
45
  remove_project_image: false,
46
46
  workflow: review,
47
47
  machine_translation_enabled: true,
@@ -17,7 +17,7 @@ require 'Phrase'
17
17
  instance = Phrase::ScreenshotUpdateParameters.new(branch: my-feature-branch,
18
18
  name: A screenshot name,
19
19
  description: A screenshot description,
20
- filename: [B@37500808)
20
+ filename: [B@4659d776)
21
21
  ```
22
22
 
23
23
 
@@ -57,6 +57,7 @@ module Phrase
57
57
  # List of attributes with nullable: true
58
58
  def self.openapi_nullable
59
59
  Set.new([
60
+ :'due_date',
60
61
  ])
61
62
  end
62
63
 
@@ -62,6 +62,7 @@ module Phrase
62
62
  # List of attributes with nullable: true
63
63
  def self.openapi_nullable
64
64
  Set.new([
65
+ :'due_date',
65
66
  ])
66
67
  end
67
68
 
@@ -77,6 +77,7 @@ module Phrase
77
77
  # List of attributes with nullable: true
78
78
  def self.openapi_nullable
79
79
  Set.new([
80
+ :'due_date',
80
81
  ])
81
82
  end
82
83
 
@@ -42,6 +42,7 @@ module Phrase
42
42
  # List of attributes with nullable: true
43
43
  def self.openapi_nullable
44
44
  Set.new([
45
+ :'due_date',
45
46
  ])
46
47
  end
47
48
 
@@ -1,3 +1,3 @@
1
1
  module Phrase
2
- VERSION = '2.22.1'
2
+ VERSION = '2.22.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phrase
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.22.1
4
+ version: 2.22.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phrase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-01 00:00:00.000000000 Z
11
+ date: 2024-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus