sunshine-conversations-client 14.3.0 → 14.3.1

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: fd1bf065010f59c1d035554a990e21c2084e319e0554f24c7118dce5f99c7abc
4
- data.tar.gz: 97aacf16b3cd6762b306728490083aeb2cf702f5e8bde79a68626a8deda07117
3
+ metadata.gz: fd3e054871f2ea1032f9012a001a00727416e395629f37bb466f2fdb0930b92d
4
+ data.tar.gz: bb9bb33f4b23a1f917cca2cc71ce9cf0771f3275772f907439d9b495fe6f42f1
5
5
  SHA512:
6
- metadata.gz: cc75ca0051dabd0f89ea58ef2626ac77124ee529bcffa684f5650ef247ef4c111fdc2aee3eeca303994b2e4a610b1c1f976a9d7fda4259737949b6b80df974b5
7
- data.tar.gz: 7ffa2fa4444741a3fa04146ee35446d13d25036630bc83210c7b95132065ef72dce48f5af1695f2ceb30376b4852defaa29358bebbeda686ec4f41365b53e35c
6
+ metadata.gz: 10547c4274f6afc3e9bbd88be425cf7013633208b4e8715853d0d827e4cc55fbacb581ef86af353ef6d4e3710df0eeb4ae2f0364abe75b54990e6350a754dca7
7
+ data.tar.gz: cfbc4e5f3bc2fb31c5278b8ec7ed4884a2763efaa4b03499bc8a9eeb06a733ae316fa572175cc009b776fd5aa6597c52f59e5169a8726fe07841c7ee0f710b2b
data/CHANGELOG_RB.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [14.3.1] - 2025-1-7
4
+
5
+ - Fixed errors that prevented publishing language wrappers for the new version.
6
+
3
7
  ## [14.3.0] - 2024-12-30
4
8
 
5
9
  ### Added
data/README.md CHANGED
@@ -5,7 +5,7 @@ SunshineConversationsClient - the Ruby gem for the Sunshine Conversations API
5
5
  This SDK is automatically generated by the [OpenAPI Generator Codegen](https://github.com/OpenAPITools/openapi-generator) project using the [Sunshine Conversations API spec](https://github.com/zendesk/sunshine-conversations-api-spec).
6
6
 
7
7
  - API version: 14.3.0
8
- - Package version: 14.3.0
8
+ - Package version: 14.3.1
9
9
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
10
10
 
11
11
  ## Sunshine Conversations API Version
@@ -32,16 +32,16 @@ gem build sunshine-conversations-client.gemspec
32
32
  Then either install the gem locally:
33
33
 
34
34
  ```shell
35
- gem install ./sunshine-conversations-client-14.3.0.gem
35
+ gem install ./sunshine-conversations-client-14.3.1.gem
36
36
  ```
37
37
 
38
- (for development, run `gem install --dev ./sunshine-conversations-client-14.3.0.gem` to install the development dependencies)
38
+ (for development, run `gem install --dev ./sunshine-conversations-client-14.3.1.gem` to install the development dependencies)
39
39
 
40
40
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
41
41
 
42
42
  Finally add this to the Gemfile:
43
43
 
44
- gem 'sunshine-conversations-client', '~> 14.3.0'
44
+ gem 'sunshine-conversations-client', '~> 14.3.1'
45
45
 
46
46
  ### Install from Git
47
47
 
@@ -5,7 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **type** | **String** | The type of system activity that generated the message. The value of this field determines the dynamic content that is rendered to the end-user / agent when viewing this message. Each `type` value will have a set of pre-defined, localized strings that describe the activity. | [default to 'transferToEmail']
8
- **data** | [**Object**](.md) | No additional data is supplied with the \"transferToEmail\" activity type at this time. | [optional]
8
+ **data** | **Hash<String, Object>** | No additional data is supplied with the \"transferToEmail\" activity type at this time. | [optional]
9
9
 
10
10
  ## Code Sample
11
11
 
data/docs/TicketClosed.md CHANGED
@@ -5,7 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **type** | **String** | The type of system activity that generated the message. The value of this field determines the dynamic content that is rendered to the end-user / agent when viewing this message. Each `type` value will have a set of pre-defined, localized strings that describe the activity. | [default to 'ticketClosed']
8
- **data** | [**Object**](.md) | No additional data is supplied with the \"ticketClosed\" activity type at this time. | [optional] [readonly]
8
+ **data** | **Hash<String, Object>** | No additional data is supplied with the \"ticketClosed\" activity type at this time. | [optional]
9
9
 
10
10
  ## Code Sample
11
11
 
@@ -5,7 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **type** | **String** | The type of system activity that generated the message. The value of this field determines the dynamic content that is rendered to the end-user / agent when viewing this message. Each `type` value will have a set of pre-defined, localized strings that describe the activity. | [default to 'transferToEmail']
8
- **data** | [**Object**](.md) | No additional data is supplied with the \"transferToEmail\" activity type at this time. | [optional]
8
+ **data** | **Hash<String, Object>** | No additional data is supplied with the \"transferToEmail\" activity type at this time. | [optional]
9
9
 
10
10
  ## Code Sample
11
11
 
@@ -29,7 +29,7 @@ module SunshineConversationsClient
29
29
  def self.openapi_types
30
30
  {
31
31
  :'type' => :'String',
32
- :'data' => :'Object'
32
+ :'data' => :'Hash<String, Object>'
33
33
  }
34
34
  end
35
35
 
@@ -74,7 +74,6 @@ module SunshineConversationsClient
74
74
  end
75
75
 
76
76
  if attributes.key?(:'data')
77
- self.data = attributes[:'data']
78
77
  end
79
78
  end
80
79
 
@@ -29,7 +29,7 @@ module SunshineConversationsClient
29
29
  def self.openapi_types
30
30
  {
31
31
  :'type' => :'String',
32
- :'data' => :'Object'
32
+ :'data' => :'Hash<String, Object>'
33
33
  }
34
34
  end
35
35
 
@@ -61,7 +61,6 @@ module SunshineConversationsClient
61
61
  end
62
62
 
63
63
  if attributes.key?(:'data')
64
- self.data = attributes[:'data']
65
64
  end
66
65
  end
67
66
 
@@ -29,7 +29,7 @@ module SunshineConversationsClient
29
29
  def self.openapi_types
30
30
  {
31
31
  :'type' => :'String',
32
- :'data' => :'Object'
32
+ :'data' => :'Hash<String, Object>'
33
33
  }
34
34
  end
35
35
 
@@ -61,7 +61,6 @@ module SunshineConversationsClient
61
61
  end
62
62
 
63
63
  if attributes.key?(:'data')
64
- self.data = attributes[:'data']
65
64
  end
66
65
  end
67
66
 
@@ -8,5 +8,5 @@ OpenAPI Generator version: 4.3.1
8
8
  =end
9
9
 
10
10
  module SunshineConversationsClient
11
- VERSION = '14.3.0'
11
+ VERSION = '14.3.1'
12
12
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sunshine-conversations-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.3.0
4
+ version: 14.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sunshine Conversations
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-06 00:00:00.000000000 Z
11
+ date: 2025-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus