ultracart_api 3.11.28 → 3.11.29

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: 2e2b4677a03b2103fa194b40ebb76de6d6a3e1f73f8fdba966fb3933746d7be4
4
- data.tar.gz: e8e4d31945bfd34d06c080aad8fa06a441f2d4f2c9818bd7ec094815676d97ea
3
+ metadata.gz: f15a4bee3ec313c9824b1419c462687d1167a8f6ec4c3b9fb4d256a0f3cb1e0d
4
+ data.tar.gz: bb7f59b2db18ae492701e9f46d9267e841f6ae494f71f423e782253ad896b632
5
5
  SHA512:
6
- metadata.gz: 9186c2fe6a2abf34ca8e44c79486d50c19273158b0a72cbdda7e484a8aae6bc1a3c5a84c2004580c23532aba8e1c02051880551ac4ee7c33a606eb08ff2145c7
7
- data.tar.gz: 600e0b573b33e0116ddf9a7d7e963dcdbb5f0bd070123b6141870db6c8d2b6f45f0f7d22bd11ab557ab7833f7fb613d0cf1cb40bb5f2a961fd3665f8b3f67936
6
+ metadata.gz: 0ee18dc4801f6372ceecd60a6243a720032206e85c90935aa4907e5156a678490592704cbfbad7e01e7c222e1b01dd0e8fedea0723dee1c57fb29af18b30615a
7
+ data.tar.gz: f3e4ef905dc9a0743c5a71380b119ba115430fde5299a8a794352fb3e6c849dc7eff2b4f544cd52cbbd0907997e5220790b5f292a939a61b7065f21ee49dca94
data/README.md CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 3.11.28
10
+ - Package version: 3.11.29
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
13
13
 
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./ultracart_api-3.11.28.gem
27
+ gem install ./ultracart_api-3.11.29.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.11.28.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.11.29.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'ultracart_api', '~> 3.11.28'
35
+ gem 'ultracart_api', '~> 3.11.29'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1591,6 +1591,7 @@ Not every change is committed to every SDK.
1591
1591
 
1592
1592
  | Version | Date | Comments |
1593
1593
  | --: | :-: | --- |
1594
+ | 3.11.29 | 11/13/2025 | conversations - AI capabilities flag for generate coupon |
1594
1595
  | 3.11.28 | 11/07/2025 | OrderApi.assignToAffiliate |
1595
1596
  | 3.11.27 | 11/06/2025 | conversation ai knowledge base changes |
1596
1597
  | 3.11.26 | 10/20/2025 | conversation api bug fixes |
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **merchant_id** | **String** | | [optional]
15
15
  **message_dts** | **String** | Message date/time | [optional]
16
16
  **message_epoch** | **Integer** | Message epoch milliseconds | [optional]
17
+ **message_type** | **String** | | [optional]
17
18
  **translations** | [**Array<ConversationMessageTranslation>**](ConversationMessageTranslation.md) | | [optional]
18
19
  **transport_statuses** | [**Array<ConversationMessageTransportStatus>**](ConversationMessageTransportStatus.md) | | [optional]
19
20
  **type** | **String** | Message type | [optional]
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  **access_storefront_and_item** | **BOOLEAN** | Permission flag to allow this Agent access to the storefront and item information. | [optional]
7
7
  **cancel_subscription** | **BOOLEAN** | | [optional]
8
8
  **delay_subscription** | **BOOLEAN** | | [optional]
9
+ **generate_coupon** | **BOOLEAN** | Permission flag to allow this Agent to generate coupons based upon the agent prompt instructions | [optional]
9
10
  **lookup_order_information** | **BOOLEAN** | | [optional]
10
11
  **lookup_subscription_information** | **BOOLEAN** | | [optional]
11
12
  **open_support_ticket** | **BOOLEAN** | | [optional]
@@ -39,6 +39,8 @@ module UltracartClient
39
39
  # Message epoch milliseconds
40
40
  attr_accessor :message_epoch
41
41
 
42
+ attr_accessor :message_type
43
+
42
44
  attr_accessor :translations
43
45
 
44
46
  attr_accessor :transport_statuses
@@ -84,6 +86,7 @@ module UltracartClient
84
86
  :'merchant_id' => :'merchant_id',
85
87
  :'message_dts' => :'message_dts',
86
88
  :'message_epoch' => :'message_epoch',
89
+ :'message_type' => :'message_type',
87
90
  :'translations' => :'translations',
88
91
  :'transport_statuses' => :'transport_statuses',
89
92
  :'type' => :'type',
@@ -105,6 +108,7 @@ module UltracartClient
105
108
  :'merchant_id' => :'String',
106
109
  :'message_dts' => :'String',
107
110
  :'message_epoch' => :'Integer',
111
+ :'message_type' => :'String',
108
112
  :'translations' => :'Array<ConversationMessageTranslation>',
109
113
  :'transport_statuses' => :'Array<ConversationMessageTransportStatus>',
110
114
  :'type' => :'String',
@@ -166,6 +170,10 @@ module UltracartClient
166
170
  self.message_epoch = attributes[:'message_epoch']
167
171
  end
168
172
 
173
+ if attributes.has_key?(:'message_type')
174
+ self.message_type = attributes[:'message_type']
175
+ end
176
+
169
177
  if attributes.has_key?(:'translations')
170
178
  if (value = attributes[:'translations']).is_a?(Array)
171
179
  self.translations = value
@@ -230,6 +238,7 @@ module UltracartClient
230
238
  merchant_id == o.merchant_id &&
231
239
  message_dts == o.message_dts &&
232
240
  message_epoch == o.message_epoch &&
241
+ message_type == o.message_type &&
233
242
  translations == o.translations &&
234
243
  transport_statuses == o.transport_statuses &&
235
244
  type == o.type &&
@@ -245,7 +254,7 @@ module UltracartClient
245
254
  # Calculates hash code according to all attributes.
246
255
  # @return [Fixnum] Hash code
247
256
  def hash
248
- [author_conversation_participant_arn, author_conversation_participant_name, body, client_message_id, conversation_message_uuid, delay_until_dts, language_iso_code, media_urls, merchant_id, message_dts, message_epoch, translations, transport_statuses, type, upload_keys].hash
257
+ [author_conversation_participant_arn, author_conversation_participant_name, body, client_message_id, conversation_message_uuid, delay_until_dts, language_iso_code, media_urls, merchant_id, message_dts, message_epoch, message_type, translations, transport_statuses, type, upload_keys].hash
249
258
  end
250
259
 
251
260
  # Builds the object from hash
@@ -21,6 +21,9 @@ module UltracartClient
21
21
 
22
22
  attr_accessor :delay_subscription
23
23
 
24
+ # Permission flag to allow this Agent to generate coupons based upon the agent prompt instructions
25
+ attr_accessor :generate_coupon
26
+
24
27
  attr_accessor :lookup_order_information
25
28
 
26
29
  attr_accessor :lookup_subscription_information
@@ -78,6 +81,7 @@ module UltracartClient
78
81
  :'access_storefront_and_item' => :'access_storefront_and_item',
79
82
  :'cancel_subscription' => :'cancel_subscription',
80
83
  :'delay_subscription' => :'delay_subscription',
84
+ :'generate_coupon' => :'generate_coupon',
81
85
  :'lookup_order_information' => :'lookup_order_information',
82
86
  :'lookup_subscription_information' => :'lookup_subscription_information',
83
87
  :'open_support_ticket' => :'open_support_ticket',
@@ -99,6 +103,7 @@ module UltracartClient
99
103
  :'access_storefront_and_item' => :'BOOLEAN',
100
104
  :'cancel_subscription' => :'BOOLEAN',
101
105
  :'delay_subscription' => :'BOOLEAN',
106
+ :'generate_coupon' => :'BOOLEAN',
102
107
  :'lookup_order_information' => :'BOOLEAN',
103
108
  :'lookup_subscription_information' => :'BOOLEAN',
104
109
  :'open_support_ticket' => :'BOOLEAN',
@@ -134,6 +139,10 @@ module UltracartClient
134
139
  self.delay_subscription = attributes[:'delay_subscription']
135
140
  end
136
141
 
142
+ if attributes.has_key?(:'generate_coupon')
143
+ self.generate_coupon = attributes[:'generate_coupon']
144
+ end
145
+
137
146
  if attributes.has_key?(:'lookup_order_information')
138
147
  self.lookup_order_information = attributes[:'lookup_order_information']
139
148
  end
@@ -218,6 +227,7 @@ module UltracartClient
218
227
  access_storefront_and_item == o.access_storefront_and_item &&
219
228
  cancel_subscription == o.cancel_subscription &&
220
229
  delay_subscription == o.delay_subscription &&
230
+ generate_coupon == o.generate_coupon &&
221
231
  lookup_order_information == o.lookup_order_information &&
222
232
  lookup_subscription_information == o.lookup_subscription_information &&
223
233
  open_support_ticket == o.open_support_ticket &&
@@ -241,7 +251,7 @@ module UltracartClient
241
251
  # Calculates hash code according to all attributes.
242
252
  # @return [Fixnum] Hash code
243
253
  def hash
244
- [access_storefront_and_item, cancel_subscription, delay_subscription, lookup_order_information, lookup_subscription_information, open_support_ticket, open_support_ticket_channel, open_support_ticket_channel_email, open_support_ticket_zoho_desk_department_id, pause_subscription, resume_subscription, transfer_chat_to_live_agent, update_subscription_credit_card, zoho_desk_available, zoho_desk_departments].hash
254
+ [access_storefront_and_item, cancel_subscription, delay_subscription, generate_coupon, lookup_order_information, lookup_subscription_information, open_support_ticket, open_support_ticket_channel, open_support_ticket_channel_email, open_support_ticket_zoho_desk_department_id, pause_subscription, resume_subscription, transfer_chat_to_live_agent, update_subscription_credit_card, zoho_desk_available, zoho_desk_departments].hash
245
255
  end
246
256
 
247
257
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.11.28'
14
+ VERSION = '3.11.29'
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: 3.11.28
4
+ version: 3.11.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-07 00:00:00.000000000 Z
11
+ date: 2025-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus