ultracart_api 3.11.62 → 3.11.63

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +21 -4
  3. data/docs/AutoOrder.md +1 -0
  4. data/docs/AutoOrderAddonItemsUpdateRequest.md +8 -0
  5. data/docs/AutoOrderApi.md +180 -0
  6. data/docs/AutoOrderItem.md +2 -0
  7. data/docs/AutoOrderPropertiesUpdateRequest.md +8 -0
  8. data/docs/AutoOrderProperty.md +9 -0
  9. data/docs/ConversationApi.md +51 -0
  10. data/docs/EmailCommseqPostcard.md +1 -1
  11. data/docs/ItemApi.md +166 -0
  12. data/docs/ItemInventoryUpdate.md +10 -0
  13. data/docs/ItemInventoryUpdateRequest.md +8 -0
  14. data/docs/ItemShipping.md +1 -0
  15. data/docs/ItemShippingDistributionCenterResponse.md +12 -0
  16. data/docs/OrderAddItemsAndReleaseRequest.md +8 -0
  17. data/docs/OrderApi.md +113 -0
  18. data/lib/ultracart_api/api/auto_order_api.rb +204 -0
  19. data/lib/ultracart_api/api/conversation_api.rb +55 -0
  20. data/lib/ultracart_api/api/item_api.rb +187 -0
  21. data/lib/ultracart_api/api/order_api.rb +122 -0
  22. data/lib/ultracart_api/models/auto_order.rb +13 -1
  23. data/lib/ultracart_api/models/auto_order_addon_items_update_request.rb +187 -0
  24. data/lib/ultracart_api/models/auto_order_item.rb +25 -1
  25. data/lib/ultracart_api/models/auto_order_properties_update_request.rb +187 -0
  26. data/lib/ultracart_api/models/auto_order_property.rb +195 -0
  27. data/lib/ultracart_api/models/email_commseq_postcard.rb +1 -1
  28. data/lib/ultracart_api/models/item_inventory_update.rb +205 -0
  29. data/lib/ultracart_api/models/item_inventory_update_request.rb +187 -0
  30. data/lib/ultracart_api/models/item_shipping.rb +11 -1
  31. data/lib/ultracart_api/models/item_shipping_distribution_center_response.rb +221 -0
  32. data/lib/ultracart_api/models/order_add_items_and_release_request.rb +187 -0
  33. data/lib/ultracart_api/version.rb +1 -1
  34. data/lib/ultracart_api.rb +7 -0
  35. metadata +15 -1
@@ -0,0 +1,221 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ OpenAPI spec version: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.15-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module UltracartClient
16
+ class ItemShippingDistributionCenterResponse
17
+ attr_accessor :error
18
+
19
+ attr_accessor :item_shipping_distribution_center
20
+
21
+ attr_accessor :metadata
22
+
23
+ # Indicates if API call was successful
24
+ attr_accessor :success
25
+
26
+ attr_accessor :warning
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'error' => :'error',
32
+ :'item_shipping_distribution_center' => :'itemShippingDistributionCenter',
33
+ :'metadata' => :'metadata',
34
+ :'success' => :'success',
35
+ :'warning' => :'warning'
36
+ }
37
+ end
38
+
39
+ # Attribute type mapping.
40
+ def self.swagger_types
41
+ {
42
+ :'error' => :'Error',
43
+ :'item_shipping_distribution_center' => :'ItemShippingDistributionCenter',
44
+ :'metadata' => :'ResponseMetadata',
45
+ :'success' => :'BOOLEAN',
46
+ :'warning' => :'Warning'
47
+ }
48
+ end
49
+
50
+ # Initializes the object
51
+ # @param [Hash] attributes Model attributes in the form of hash
52
+ def initialize(attributes = {})
53
+ return unless attributes.is_a?(Hash)
54
+
55
+ # convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
57
+
58
+ if attributes.has_key?(:'error')
59
+ self.error = attributes[:'error']
60
+ end
61
+
62
+ if attributes.has_key?(:'itemShippingDistributionCenter')
63
+ self.item_shipping_distribution_center = attributes[:'itemShippingDistributionCenter']
64
+ end
65
+
66
+ if attributes.has_key?(:'metadata')
67
+ self.metadata = attributes[:'metadata']
68
+ end
69
+
70
+ if attributes.has_key?(:'success')
71
+ self.success = attributes[:'success']
72
+ end
73
+
74
+ if attributes.has_key?(:'warning')
75
+ self.warning = attributes[:'warning']
76
+ end
77
+ end
78
+
79
+ # Show invalid properties with the reasons. Usually used together with valid?
80
+ # @return Array for valid properties with the reasons
81
+ def list_invalid_properties
82
+ invalid_properties = Array.new
83
+ invalid_properties
84
+ end
85
+
86
+ # Check to see if the all the properties in the model are valid
87
+ # @return true if the model is valid
88
+ def valid?
89
+ true
90
+ end
91
+
92
+ # Checks equality by comparing each attribute.
93
+ # @param [Object] Object to be compared
94
+ def ==(o)
95
+ return true if self.equal?(o)
96
+ self.class == o.class &&
97
+ error == o.error &&
98
+ item_shipping_distribution_center == o.item_shipping_distribution_center &&
99
+ metadata == o.metadata &&
100
+ success == o.success &&
101
+ warning == o.warning
102
+ end
103
+
104
+ # @see the `==` method
105
+ # @param [Object] Object to be compared
106
+ def eql?(o)
107
+ self == o
108
+ end
109
+
110
+ # Calculates hash code according to all attributes.
111
+ # @return [Fixnum] Hash code
112
+ def hash
113
+ [error, item_shipping_distribution_center, metadata, success, warning].hash
114
+ end
115
+
116
+ # Builds the object from hash
117
+ # @param [Hash] attributes Model attributes in the form of hash
118
+ # @return [Object] Returns the model itself
119
+ def build_from_hash(attributes)
120
+ return nil unless attributes.is_a?(Hash)
121
+ self.class.swagger_types.each_pair do |key, type|
122
+ if type =~ /\AArray<(.*)>/i
123
+ # check to ensure the input is an array given that the attribute
124
+ # is documented as an array but the input is not
125
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
126
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
127
+ end
128
+ elsif !attributes[self.class.attribute_map[key]].nil?
129
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
130
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
131
+ end
132
+
133
+ self
134
+ end
135
+
136
+ # Deserializes the data based on type
137
+ # @param string type Data type
138
+ # @param string value Value to be deserialized
139
+ # @return [Object] Deserialized data
140
+ def _deserialize(type, value)
141
+ case type.to_sym
142
+ when :DateTime
143
+ DateTime.parse(value)
144
+ when :Date
145
+ Date.parse(value)
146
+ when :String
147
+ value.to_s
148
+ when :Integer
149
+ value.to_i
150
+ when :Float
151
+ value.to_f
152
+ when :BOOLEAN
153
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
154
+ true
155
+ else
156
+ false
157
+ end
158
+ when :Object
159
+ # generic object (usually a Hash), return directly
160
+ value
161
+ when /\AArray<(?<inner_type>.+)>\z/
162
+ inner_type = Regexp.last_match[:inner_type]
163
+ value.map { |v| _deserialize(inner_type, v) }
164
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
165
+ k_type = Regexp.last_match[:k_type]
166
+ v_type = Regexp.last_match[:v_type]
167
+ {}.tap do |hash|
168
+ value.each do |k, v|
169
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
170
+ end
171
+ end
172
+ else # model
173
+ temp_model = UltracartClient.const_get(type).new
174
+ temp_model.build_from_hash(value)
175
+ end
176
+ end
177
+
178
+ # Returns the string representation of the object
179
+ # @return [String] String presentation of the object
180
+ def to_s
181
+ to_hash.to_s
182
+ end
183
+
184
+ # to_body is an alias to to_hash (backward compatibility)
185
+ # @return [Hash] Returns the object in the form of hash
186
+ def to_body
187
+ to_hash
188
+ end
189
+
190
+ # Returns the object in the form of hash
191
+ # @return [Hash] Returns the object in the form of hash
192
+ def to_hash
193
+ hash = {}
194
+ self.class.attribute_map.each_pair do |attr, param|
195
+ value = self.send(attr)
196
+ next if value.nil?
197
+ hash[param] = _to_hash(value)
198
+ end
199
+ hash
200
+ end
201
+
202
+ # Outputs non-array value in the form of hash
203
+ # For object, use to_hash. Otherwise, just return the value
204
+ # @param [Object] value Any valid value
205
+ # @return [Hash] Returns the value in the form of hash
206
+ def _to_hash(value)
207
+ if value.is_a?(Array)
208
+ value.compact.map { |v| _to_hash(v) }
209
+ elsif value.is_a?(Hash)
210
+ {}.tap do |hash|
211
+ value.each { |k, v| hash[k] = _to_hash(v) }
212
+ end
213
+ elsif value.respond_to? :to_hash
214
+ value.to_hash
215
+ else
216
+ value
217
+ end
218
+ end
219
+
220
+ end
221
+ end
@@ -0,0 +1,187 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ OpenAPI spec version: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.15-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module UltracartClient
16
+ class OrderAddItemsAndReleaseRequest
17
+ # Items to add to the order. Must have at least the item id and quantity specified. These will be FREE items on the order since we are post payment on this method.
18
+ attr_accessor :items
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :'items' => :'items'
24
+ }
25
+ end
26
+
27
+ # Attribute type mapping.
28
+ def self.swagger_types
29
+ {
30
+ :'items' => :'Array<OrderItem>'
31
+ }
32
+ end
33
+
34
+ # Initializes the object
35
+ # @param [Hash] attributes Model attributes in the form of hash
36
+ def initialize(attributes = {})
37
+ return unless attributes.is_a?(Hash)
38
+
39
+ # convert string to symbol for hash key
40
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
41
+
42
+ if attributes.has_key?(:'items')
43
+ if (value = attributes[:'items']).is_a?(Array)
44
+ self.items = value
45
+ end
46
+ end
47
+ end
48
+
49
+ # Show invalid properties with the reasons. Usually used together with valid?
50
+ # @return Array for valid properties with the reasons
51
+ def list_invalid_properties
52
+ invalid_properties = Array.new
53
+ invalid_properties
54
+ end
55
+
56
+ # Check to see if the all the properties in the model are valid
57
+ # @return true if the model is valid
58
+ def valid?
59
+ true
60
+ end
61
+
62
+ # Checks equality by comparing each attribute.
63
+ # @param [Object] Object to be compared
64
+ def ==(o)
65
+ return true if self.equal?(o)
66
+ self.class == o.class &&
67
+ items == o.items
68
+ end
69
+
70
+ # @see the `==` method
71
+ # @param [Object] Object to be compared
72
+ def eql?(o)
73
+ self == o
74
+ end
75
+
76
+ # Calculates hash code according to all attributes.
77
+ # @return [Fixnum] Hash code
78
+ def hash
79
+ [items].hash
80
+ end
81
+
82
+ # Builds the object from hash
83
+ # @param [Hash] attributes Model attributes in the form of hash
84
+ # @return [Object] Returns the model itself
85
+ def build_from_hash(attributes)
86
+ return nil unless attributes.is_a?(Hash)
87
+ self.class.swagger_types.each_pair do |key, type|
88
+ if type =~ /\AArray<(.*)>/i
89
+ # check to ensure the input is an array given that the attribute
90
+ # is documented as an array but the input is not
91
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
92
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
93
+ end
94
+ elsif !attributes[self.class.attribute_map[key]].nil?
95
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
96
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
97
+ end
98
+
99
+ self
100
+ end
101
+
102
+ # Deserializes the data based on type
103
+ # @param string type Data type
104
+ # @param string value Value to be deserialized
105
+ # @return [Object] Deserialized data
106
+ def _deserialize(type, value)
107
+ case type.to_sym
108
+ when :DateTime
109
+ DateTime.parse(value)
110
+ when :Date
111
+ Date.parse(value)
112
+ when :String
113
+ value.to_s
114
+ when :Integer
115
+ value.to_i
116
+ when :Float
117
+ value.to_f
118
+ when :BOOLEAN
119
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
120
+ true
121
+ else
122
+ false
123
+ end
124
+ when :Object
125
+ # generic object (usually a Hash), return directly
126
+ value
127
+ when /\AArray<(?<inner_type>.+)>\z/
128
+ inner_type = Regexp.last_match[:inner_type]
129
+ value.map { |v| _deserialize(inner_type, v) }
130
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
131
+ k_type = Regexp.last_match[:k_type]
132
+ v_type = Regexp.last_match[:v_type]
133
+ {}.tap do |hash|
134
+ value.each do |k, v|
135
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
136
+ end
137
+ end
138
+ else # model
139
+ temp_model = UltracartClient.const_get(type).new
140
+ temp_model.build_from_hash(value)
141
+ end
142
+ end
143
+
144
+ # Returns the string representation of the object
145
+ # @return [String] String presentation of the object
146
+ def to_s
147
+ to_hash.to_s
148
+ end
149
+
150
+ # to_body is an alias to to_hash (backward compatibility)
151
+ # @return [Hash] Returns the object in the form of hash
152
+ def to_body
153
+ to_hash
154
+ end
155
+
156
+ # Returns the object in the form of hash
157
+ # @return [Hash] Returns the object in the form of hash
158
+ def to_hash
159
+ hash = {}
160
+ self.class.attribute_map.each_pair do |attr, param|
161
+ value = self.send(attr)
162
+ next if value.nil?
163
+ hash[param] = _to_hash(value)
164
+ end
165
+ hash
166
+ end
167
+
168
+ # Outputs non-array value in the form of hash
169
+ # For object, use to_hash. Otherwise, just return the value
170
+ # @param [Object] value Any valid value
171
+ # @return [Hash] Returns the value in the form of hash
172
+ def _to_hash(value)
173
+ if value.is_a?(Array)
174
+ value.compact.map { |v| _to_hash(v) }
175
+ elsif value.is_a?(Hash)
176
+ {}.tap do |hash|
177
+ value.each { |k, v| hash[k] = _to_hash(v) }
178
+ end
179
+ elsif value.respond_to? :to_hash
180
+ value.to_hash
181
+ else
182
+ value
183
+ end
184
+ end
185
+
186
+ end
187
+ end
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.11.62'
14
+ VERSION = '3.11.63'
15
15
  end
data/lib/ultracart_api.rb CHANGED
@@ -42,6 +42,7 @@ require 'ultracart_api/models/apply_library_item_response'
42
42
  require 'ultracart_api/models/auto_order'
43
43
  require 'ultracart_api/models/auto_order_addon_item'
44
44
  require 'ultracart_api/models/auto_order_addon_item_option'
45
+ require 'ultracart_api/models/auto_order_addon_items_update_request'
45
46
  require 'ultracart_api/models/auto_order_consolidate'
46
47
  require 'ultracart_api/models/auto_order_item'
47
48
  require 'ultracart_api/models/auto_order_item_future_schedule'
@@ -49,6 +50,8 @@ require 'ultracart_api/models/auto_order_item_option'
49
50
  require 'ultracart_api/models/auto_order_item_simple_schedule'
50
51
  require 'ultracart_api/models/auto_order_log'
51
52
  require 'ultracart_api/models/auto_order_management'
53
+ require 'ultracart_api/models/auto_order_properties_update_request'
54
+ require 'ultracart_api/models/auto_order_property'
52
55
  require 'ultracart_api/models/auto_order_query'
53
56
  require 'ultracart_api/models/auto_order_query_batch'
54
57
  require 'ultracart_api/models/auto_order_response'
@@ -640,6 +643,8 @@ require 'ultracart_api/models/item_internal'
640
643
  require 'ultracart_api/models/item_inventory_snapshot'
641
644
  require 'ultracart_api/models/item_inventory_snapshot_distribution_center'
642
645
  require 'ultracart_api/models/item_inventory_snapshot_response'
646
+ require 'ultracart_api/models/item_inventory_update'
647
+ require 'ultracart_api/models/item_inventory_update_request'
643
648
  require 'ultracart_api/models/item_kit_component'
644
649
  require 'ultracart_api/models/item_kit_definition'
645
650
  require 'ultracart_api/models/item_option'
@@ -671,6 +676,7 @@ require 'ultracart_api/models/item_shipping_case'
671
676
  require 'ultracart_api/models/item_shipping_destination_markup'
672
677
  require 'ultracart_api/models/item_shipping_destination_restriction'
673
678
  require 'ultracart_api/models/item_shipping_distribution_center'
679
+ require 'ultracart_api/models/item_shipping_distribution_center_response'
674
680
  require 'ultracart_api/models/item_shipping_method'
675
681
  require 'ultracart_api/models/item_shipping_package_requirement'
676
682
  require 'ultracart_api/models/item_tag'
@@ -708,6 +714,7 @@ require 'ultracart_api/models/notification'
708
714
  require 'ultracart_api/models/oauth_revoke_success_response'
709
715
  require 'ultracart_api/models/oauth_token_response'
710
716
  require 'ultracart_api/models/order'
717
+ require 'ultracart_api/models/order_add_items_and_release_request'
711
718
  require 'ultracart_api/models/order_affiliate'
712
719
  require 'ultracart_api/models/order_affiliate_ledger'
713
720
  require 'ultracart_api/models/order_assign_to_affiliate_request'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.62
4
+ version: 3.11.63
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
@@ -247,6 +247,7 @@ files:
247
247
  - docs/AutoOrder.md
248
248
  - docs/AutoOrderAddonItem.md
249
249
  - docs/AutoOrderAddonItemOption.md
250
+ - docs/AutoOrderAddonItemsUpdateRequest.md
250
251
  - docs/AutoOrderApi.md
251
252
  - docs/AutoOrderConsolidate.md
252
253
  - docs/AutoOrderItem.md
@@ -255,6 +256,8 @@ files:
255
256
  - docs/AutoOrderItemSimpleSchedule.md
256
257
  - docs/AutoOrderLog.md
257
258
  - docs/AutoOrderManagement.md
259
+ - docs/AutoOrderPropertiesUpdateRequest.md
260
+ - docs/AutoOrderProperty.md
258
261
  - docs/AutoOrderQuery.md
259
262
  - docs/AutoOrderQueryBatch.md
260
263
  - docs/AutoOrderResponse.md
@@ -856,6 +859,8 @@ files:
856
859
  - docs/ItemInventorySnapshot.md
857
860
  - docs/ItemInventorySnapshotDistributionCenter.md
858
861
  - docs/ItemInventorySnapshotResponse.md
862
+ - docs/ItemInventoryUpdate.md
863
+ - docs/ItemInventoryUpdateRequest.md
859
864
  - docs/ItemKitComponent.md
860
865
  - docs/ItemKitDefinition.md
861
866
  - docs/ItemOption.md
@@ -887,6 +892,7 @@ files:
887
892
  - docs/ItemShippingDestinationMarkup.md
888
893
  - docs/ItemShippingDestinationRestriction.md
889
894
  - docs/ItemShippingDistributionCenter.md
895
+ - docs/ItemShippingDistributionCenterResponse.md
890
896
  - docs/ItemShippingMethod.md
891
897
  - docs/ItemShippingPackageRequirement.md
892
898
  - docs/ItemTag.md
@@ -925,6 +931,7 @@ files:
925
931
  - docs/OauthRevokeSuccessResponse.md
926
932
  - docs/OauthTokenResponse.md
927
933
  - docs/Order.md
934
+ - docs/OrderAddItemsAndReleaseRequest.md
928
935
  - docs/OrderAffiliate.md
929
936
  - docs/OrderAffiliateLedger.md
930
937
  - docs/OrderApi.md
@@ -1233,6 +1240,7 @@ files:
1233
1240
  - lib/ultracart_api/models/auto_order.rb
1234
1241
  - lib/ultracart_api/models/auto_order_addon_item.rb
1235
1242
  - lib/ultracart_api/models/auto_order_addon_item_option.rb
1243
+ - lib/ultracart_api/models/auto_order_addon_items_update_request.rb
1236
1244
  - lib/ultracart_api/models/auto_order_consolidate.rb
1237
1245
  - lib/ultracart_api/models/auto_order_item.rb
1238
1246
  - lib/ultracart_api/models/auto_order_item_future_schedule.rb
@@ -1240,6 +1248,8 @@ files:
1240
1248
  - lib/ultracart_api/models/auto_order_item_simple_schedule.rb
1241
1249
  - lib/ultracart_api/models/auto_order_log.rb
1242
1250
  - lib/ultracart_api/models/auto_order_management.rb
1251
+ - lib/ultracart_api/models/auto_order_properties_update_request.rb
1252
+ - lib/ultracart_api/models/auto_order_property.rb
1243
1253
  - lib/ultracart_api/models/auto_order_query.rb
1244
1254
  - lib/ultracart_api/models/auto_order_query_batch.rb
1245
1255
  - lib/ultracart_api/models/auto_order_response.rb
@@ -1831,6 +1841,8 @@ files:
1831
1841
  - lib/ultracart_api/models/item_inventory_snapshot.rb
1832
1842
  - lib/ultracart_api/models/item_inventory_snapshot_distribution_center.rb
1833
1843
  - lib/ultracart_api/models/item_inventory_snapshot_response.rb
1844
+ - lib/ultracart_api/models/item_inventory_update.rb
1845
+ - lib/ultracart_api/models/item_inventory_update_request.rb
1834
1846
  - lib/ultracart_api/models/item_kit_component.rb
1835
1847
  - lib/ultracart_api/models/item_kit_definition.rb
1836
1848
  - lib/ultracart_api/models/item_option.rb
@@ -1862,6 +1874,7 @@ files:
1862
1874
  - lib/ultracart_api/models/item_shipping_destination_markup.rb
1863
1875
  - lib/ultracart_api/models/item_shipping_destination_restriction.rb
1864
1876
  - lib/ultracart_api/models/item_shipping_distribution_center.rb
1877
+ - lib/ultracart_api/models/item_shipping_distribution_center_response.rb
1865
1878
  - lib/ultracart_api/models/item_shipping_method.rb
1866
1879
  - lib/ultracart_api/models/item_shipping_package_requirement.rb
1867
1880
  - lib/ultracart_api/models/item_tag.rb
@@ -1899,6 +1912,7 @@ files:
1899
1912
  - lib/ultracart_api/models/oauth_revoke_success_response.rb
1900
1913
  - lib/ultracart_api/models/oauth_token_response.rb
1901
1914
  - lib/ultracart_api/models/order.rb
1915
+ - lib/ultracart_api/models/order_add_items_and_release_request.rb
1902
1916
  - lib/ultracart_api/models/order_affiliate.rb
1903
1917
  - lib/ultracart_api/models/order_affiliate_ledger.rb
1904
1918
  - lib/ultracart_api/models/order_assign_to_affiliate_request.rb