ultracart_api 3.11.23 → 3.11.24

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: 4d356bfbcf996d166f3d334b55be71dbbbaaa13139a36eaa759331ce1c2b9d35
4
- data.tar.gz: 83f41899f0a03f69e5529730303708de70a67e48fa5133d98bf8418987dd6dc9
3
+ metadata.gz: d34d852ef406cbb9c9feab711ed3a9eee80412995da5dcf2187cb09641d1100a
4
+ data.tar.gz: 8a1740348d1b1a73907221a4f5b5b9667c743f94b3213b3c5e1113d3df8da871
5
5
  SHA512:
6
- metadata.gz: b4b46d4945a4b3949971494c25f8b447391e93ac4f35633b7deeb79603d9d2d60e0bcd07068e40b50e558803b7574675dac539c830cfdbe2308f21c0dfa589d7
7
- data.tar.gz: 1108d0d048cf84bc46738bf736cf43d6072acb386f0e68c9e381aa6cdac4d3408a9bc3590b45a4c9aa3a21e210a9a0f5cef9043f91880223c4a86ac67a1f7a9f
6
+ metadata.gz: 071ec25d19e16e54f7d35dfa56b153d4a8bdaf3ae9bec3da35f70316d09b1dd170435aad53b061ee1c8083d88cd14a5f9bdcb45ec4d08cb0581568ae6939d6fc
7
+ data.tar.gz: 43686907f5671717343f451cdac89eb66faf49b1a0ed3a0f9f13456858cfd5468d76e6235102f8fafbfbddd89b76e26db1e262e80f5171989b9b184c5f9c0c8e
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.23
10
+ - Package version: 3.11.24
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.23.gem
27
+ gem install ./ultracart_api-3.11.24.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.11.23.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.11.24.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.23'
35
+ gem 'ultracart_api', '~> 3.11.24'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1589,6 +1589,7 @@ Not every change is committed to every SDK.
1589
1589
 
1590
1590
  | Version | Date | Comments |
1591
1591
  | --: | :-: | --- |
1592
+ | 3.11.24 | 10/20/2025 | new perm flag on conversation virtual agent capabilities |
1592
1593
  | 3.11.23 | 10/14/2025 | CustomerApi.deleteWishlistItem bug fix for bad response type |
1593
1594
  | 3.11.22 | 10/06/2025 | added Customer.fax back into object model |
1594
1595
  | 3.11.21 | 09/09/2025 | added OrderRestApi.replaceOrderItemMerchantItemId |
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **access_storefront_and_item** | **BOOLEAN** | Permission flag to allow this Agent access to the storefront and item information. | [optional]
6
7
  **cancel_subscription** | **BOOLEAN** | | [optional]
7
8
  **delay_subscription** | **BOOLEAN** | | [optional]
8
9
  **lookup_order_information** | **BOOLEAN** | | [optional]
@@ -8,6 +8,9 @@ Name | Type | Description | Notes
8
8
  **internal_gift_certificate_balance** | **String** | Loyalty Cashback / Store credit balance (internal gift certificate balance) | [optional]
9
9
  **internal_gift_certificate_oid** | **Integer** | Internal gift certificate oid used to tracking loyalty cashback / store credit. | [optional]
10
10
  **ledger_entries** | [**Array<CustomerLoyaltyLedger>**](CustomerLoyaltyLedger.md) | Ledger entries | [optional]
11
+ **loyalty_tier_expiration_dts** | **String** | Loyalty tier expiration date (read only because of SDK addition) | [optional]
12
+ **loyalty_tier_name** | **String** | Loyalty tier name | [optional]
13
+ **loyalty_tier_oid** | **Integer** | Loyalty tier oid (set to zero to remove the tier) | [optional]
11
14
  **pending_points** | **Integer** | Pending Points | [optional]
12
15
  **redemptions** | [**Array<CustomerLoyaltyRedemption>**](CustomerLoyaltyRedemption.md) | Redemptions | [optional]
13
16
 
@@ -14,6 +14,9 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class ConversationVirtualAgentCapabilities
17
+ # Permission flag to allow this Agent access to the storefront and item information.
18
+ attr_accessor :access_storefront_and_item
19
+
17
20
  attr_accessor :cancel_subscription
18
21
 
19
22
  attr_accessor :delay_subscription
@@ -72,6 +75,7 @@ module UltracartClient
72
75
  # Attribute mapping from ruby-style variable name to JSON key.
73
76
  def self.attribute_map
74
77
  {
78
+ :'access_storefront_and_item' => :'access_storefront_and_item',
75
79
  :'cancel_subscription' => :'cancel_subscription',
76
80
  :'delay_subscription' => :'delay_subscription',
77
81
  :'lookup_order_information' => :'lookup_order_information',
@@ -92,6 +96,7 @@ module UltracartClient
92
96
  # Attribute type mapping.
93
97
  def self.swagger_types
94
98
  {
99
+ :'access_storefront_and_item' => :'BOOLEAN',
95
100
  :'cancel_subscription' => :'BOOLEAN',
96
101
  :'delay_subscription' => :'BOOLEAN',
97
102
  :'lookup_order_information' => :'BOOLEAN',
@@ -117,6 +122,10 @@ module UltracartClient
117
122
  # convert string to symbol for hash key
118
123
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
119
124
 
125
+ if attributes.has_key?(:'access_storefront_and_item')
126
+ self.access_storefront_and_item = attributes[:'access_storefront_and_item']
127
+ end
128
+
120
129
  if attributes.has_key?(:'cancel_subscription')
121
130
  self.cancel_subscription = attributes[:'cancel_subscription']
122
131
  end
@@ -206,6 +215,7 @@ module UltracartClient
206
215
  def ==(o)
207
216
  return true if self.equal?(o)
208
217
  self.class == o.class &&
218
+ access_storefront_and_item == o.access_storefront_and_item &&
209
219
  cancel_subscription == o.cancel_subscription &&
210
220
  delay_subscription == o.delay_subscription &&
211
221
  lookup_order_information == o.lookup_order_information &&
@@ -231,7 +241,7 @@ module UltracartClient
231
241
  # Calculates hash code according to all attributes.
232
242
  # @return [Fixnum] Hash code
233
243
  def hash
234
- [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
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
235
245
  end
236
246
 
237
247
  # Builds the object from hash
@@ -28,6 +28,15 @@ module UltracartClient
28
28
  # Ledger entries
29
29
  attr_accessor :ledger_entries
30
30
 
31
+ # Loyalty tier expiration date (read only because of SDK addition)
32
+ attr_accessor :loyalty_tier_expiration_dts
33
+
34
+ # Loyalty tier name
35
+ attr_accessor :loyalty_tier_name
36
+
37
+ # Loyalty tier oid (set to zero to remove the tier)
38
+ attr_accessor :loyalty_tier_oid
39
+
31
40
  # Pending Points
32
41
  attr_accessor :pending_points
33
42
 
@@ -42,6 +51,9 @@ module UltracartClient
42
51
  :'internal_gift_certificate_balance' => :'internal_gift_certificate_balance',
43
52
  :'internal_gift_certificate_oid' => :'internal_gift_certificate_oid',
44
53
  :'ledger_entries' => :'ledger_entries',
54
+ :'loyalty_tier_expiration_dts' => :'loyalty_tier_expiration_dts',
55
+ :'loyalty_tier_name' => :'loyalty_tier_name',
56
+ :'loyalty_tier_oid' => :'loyalty_tier_oid',
45
57
  :'pending_points' => :'pending_points',
46
58
  :'redemptions' => :'redemptions'
47
59
  }
@@ -55,6 +67,9 @@ module UltracartClient
55
67
  :'internal_gift_certificate_balance' => :'String',
56
68
  :'internal_gift_certificate_oid' => :'Integer',
57
69
  :'ledger_entries' => :'Array<CustomerLoyaltyLedger>',
70
+ :'loyalty_tier_expiration_dts' => :'String',
71
+ :'loyalty_tier_name' => :'String',
72
+ :'loyalty_tier_oid' => :'Integer',
58
73
  :'pending_points' => :'Integer',
59
74
  :'redemptions' => :'Array<CustomerLoyaltyRedemption>'
60
75
  }
@@ -90,6 +105,18 @@ module UltracartClient
90
105
  end
91
106
  end
92
107
 
108
+ if attributes.has_key?(:'loyalty_tier_expiration_dts')
109
+ self.loyalty_tier_expiration_dts = attributes[:'loyalty_tier_expiration_dts']
110
+ end
111
+
112
+ if attributes.has_key?(:'loyalty_tier_name')
113
+ self.loyalty_tier_name = attributes[:'loyalty_tier_name']
114
+ end
115
+
116
+ if attributes.has_key?(:'loyalty_tier_oid')
117
+ self.loyalty_tier_oid = attributes[:'loyalty_tier_oid']
118
+ end
119
+
93
120
  if attributes.has_key?(:'pending_points')
94
121
  self.pending_points = attributes[:'pending_points']
95
122
  end
@@ -124,6 +151,9 @@ module UltracartClient
124
151
  internal_gift_certificate_balance == o.internal_gift_certificate_balance &&
125
152
  internal_gift_certificate_oid == o.internal_gift_certificate_oid &&
126
153
  ledger_entries == o.ledger_entries &&
154
+ loyalty_tier_expiration_dts == o.loyalty_tier_expiration_dts &&
155
+ loyalty_tier_name == o.loyalty_tier_name &&
156
+ loyalty_tier_oid == o.loyalty_tier_oid &&
127
157
  pending_points == o.pending_points &&
128
158
  redemptions == o.redemptions
129
159
  end
@@ -137,7 +167,7 @@ module UltracartClient
137
167
  # Calculates hash code according to all attributes.
138
168
  # @return [Fixnum] Hash code
139
169
  def hash
140
- [current_points, internal_gift_certificate, internal_gift_certificate_balance, internal_gift_certificate_oid, ledger_entries, pending_points, redemptions].hash
170
+ [current_points, internal_gift_certificate, internal_gift_certificate_balance, internal_gift_certificate_oid, ledger_entries, loyalty_tier_expiration_dts, loyalty_tier_name, loyalty_tier_oid, pending_points, redemptions].hash
141
171
  end
142
172
 
143
173
  # 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.23'
14
+ VERSION = '3.11.24'
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.23
4
+ version: 3.11.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-14 00:00:00.000000000 Z
11
+ date: 2025-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus