ultracart_api 4.1.43 → 4.1.44

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b5be4e83294986018fcf1b28a119d5faabd60ebfc33c2ac6ffcd19da37f75c5
4
- data.tar.gz: 858d0f8222143ff75e606f9f5f568880be04c179fcf40b87196582a6f2d3306a
3
+ metadata.gz: 5204aca912292678d6b81b7361d1e9c0bf6ff88c576e0fa93c78ea5aa021c610
4
+ data.tar.gz: 36b83d66f597d17e4b31a842a66326e0d54372085b2e7c5bbd2b1b2606689260
5
5
  SHA512:
6
- metadata.gz: 0f53accc7bc75142f38d3cb6fa7e09e6243b5427c08639614527c9640e3312669db8dfb6979c99378d08525117d5a3f718ba4025f1f5e47911c9e934053d6226
7
- data.tar.gz: 55d1f763e38fd26e1edbd952d9ee45c095b6a26509644b047ff4a3eedadf071438e65224dfa1507a3f66fed359cba9c1b807b0dc9f8f5816808c08ea3a79d55e
6
+ metadata.gz: 9fd145bd2259c13f039a9d7d0846395bf4396283c22470a5cd65015666a8ecfb9210693af0156c2292666116537ead72f70415cb15f1e89b6a81674b8fcbde98
7
+ data.tar.gz: b83797890f5d065150ec75c8c5b054495228256dbc27c53af0dcb9fdb3b401bd1a69d3821f68200ca8f41afea938f7b7fa9db85d81e21916fc533633d3ce1849
data/README.md CHANGED
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
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.1.43
10
+ - Package version: 4.1.44
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  - For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
13
13
 
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
16
16
  gemfile:
17
17
 
18
18
  ```shell
19
- gem 'ultracart_api', '4.1.43'
19
+ gem 'ultracart_api', '4.1.44'
20
20
  ```
21
21
 
22
22
  install:
@@ -1621,6 +1621,7 @@ Not every change is committed to every SDK.
1621
1621
 
1622
1622
  | Version | Date | Comments |
1623
1623
  | --: | :-: | --- |
1624
+ | 4.1.44 | 01/26/2026 | conversations - ConversationDepartmentMember expose a flag for if the agent is AI |
1624
1625
  | 4.1.43 | 01/14/2026 | coupons - generate one time coupons prefix support (optional) |
1625
1626
  | 4.1.42 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
1626
1627
  | 4.1.41 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
@@ -4,6 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **ai** | **Boolean** | | [optional] |
7
8
  | **member** | **Boolean** | | [optional] |
8
9
  | **name** | **String** | | [optional] |
9
10
  | **user_id** | **Integer** | | [optional] |
@@ -14,6 +15,7 @@
14
15
  require 'ultracart_api'
15
16
 
16
17
  instance = UltracartClient::ConversationDepartmentMember.new(
18
+ ai: null,
17
19
  member: null,
18
20
  name: null,
19
21
  user_id: null
@@ -15,6 +15,8 @@ require 'time'
15
15
 
16
16
  module UltracartClient
17
17
  class ConversationDepartmentMember
18
+ attr_accessor :ai
19
+
18
20
  attr_accessor :member
19
21
 
20
22
  attr_accessor :name
@@ -24,6 +26,7 @@ module UltracartClient
24
26
  # Attribute mapping from ruby-style variable name to JSON key.
25
27
  def self.attribute_map
26
28
  {
29
+ :'ai' => :'ai',
27
30
  :'member' => :'member',
28
31
  :'name' => :'name',
29
32
  :'user_id' => :'user_id'
@@ -38,6 +41,7 @@ module UltracartClient
38
41
  # Attribute type mapping.
39
42
  def self.openapi_types
40
43
  {
44
+ :'ai' => :'Boolean',
41
45
  :'member' => :'Boolean',
42
46
  :'name' => :'String',
43
47
  :'user_id' => :'Integer'
@@ -65,6 +69,10 @@ module UltracartClient
65
69
  h[k.to_sym] = v
66
70
  }
67
71
 
72
+ if attributes.key?(:'ai')
73
+ self.ai = attributes[:'ai']
74
+ end
75
+
68
76
  if attributes.key?(:'member')
69
77
  self.member = attributes[:'member']
70
78
  end
@@ -96,6 +104,7 @@ module UltracartClient
96
104
  def ==(o)
97
105
  return true if self.equal?(o)
98
106
  self.class == o.class &&
107
+ ai == o.ai &&
99
108
  member == o.member &&
100
109
  name == o.name &&
101
110
  user_id == o.user_id
@@ -110,7 +119,7 @@ module UltracartClient
110
119
  # Calculates hash code according to all attributes.
111
120
  # @return [Integer] Hash code
112
121
  def hash
113
- [member, name, user_id].hash
122
+ [ai, member, name, user_id].hash
114
123
  end
115
124
 
116
125
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.43'
14
+ VERSION = '4.1.44'
15
15
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.43
4
+ version: 4.1.44
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-14 00:00:00.000000000 Z
11
+ date: 2026-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus