tremendous_ruby 5.9.0 → 5.10.0

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 (40) hide show
  1. checksums.yaml +4 -4
  2. data/lib/tremendous/api/tremendous_api.rb +522 -53
  3. data/lib/tremendous/models/connected_organization.rb +287 -0
  4. data/lib/tremendous/models/connected_organization_member.rb +330 -0
  5. data/lib/tremendous/models/connected_organization_member_member.rb +366 -0
  6. data/lib/tremendous/models/connected_organization_member_session.rb +311 -0
  7. data/lib/tremendous/models/connected_organization_organization.rb +324 -0
  8. data/lib/tremendous/models/create_campaign200_response.rb +221 -0
  9. data/lib/tremendous/models/create_connected_organization200_response.rb +221 -0
  10. data/lib/tremendous/models/create_connected_organization_member200_response.rb +221 -0
  11. data/lib/tremendous/models/create_connected_organization_member_request.rb +222 -0
  12. data/lib/tremendous/models/create_connected_organization_member_session200_response.rb +221 -0
  13. data/lib/tremendous/models/create_connected_organization_member_session200_response_connected_organization_member_session.rb +311 -0
  14. data/lib/tremendous/models/create_connected_organization_member_session_request.rb +222 -0
  15. data/lib/tremendous/models/create_connected_organization_request.rb +222 -0
  16. data/lib/tremendous/models/create_order200_response_order_rewards_inner_delivery.rb +1 -1
  17. data/lib/tremendous/models/create_organization_request_copy_settings.rb +16 -4
  18. data/lib/tremendous/models/create_report200_response.rb +231 -0
  19. data/lib/tremendous/models/create_report200_response_report.rb +291 -0
  20. data/lib/tremendous/models/delivery_details.rb +1 -1
  21. data/lib/tremendous/models/delivery_details_with_link.rb +1 -1
  22. data/lib/tremendous/models/funding_source.rb +35 -1
  23. data/lib/tremendous/models/list_connected_organization_members200_response.rb +240 -0
  24. data/lib/tremendous/models/list_connected_organization_members200_response_connected_organization_members_inner.rb +330 -0
  25. data/lib/tremendous/models/list_connected_organization_members200_response_connected_organization_members_inner_member.rb +366 -0
  26. data/lib/tremendous/models/list_connected_organizations200_response.rb +240 -0
  27. data/lib/tremendous/models/list_connected_organizations200_response_connected_organizations_inner.rb +287 -0
  28. data/lib/tremendous/models/list_connected_organizations200_response_connected_organizations_inner_organization.rb +324 -0
  29. data/lib/tremendous/models/list_funding_sources200_response_funding_sources_inner.rb +35 -1
  30. data/lib/tremendous/models/list_products_response_products_inner.rb +27 -7
  31. data/lib/tremendous/models/list_products_response_products_inner_documents.rb +236 -0
  32. data/lib/tremendous/models/list_products_response_products_inner_images_inner.rb +15 -4
  33. data/lib/tremendous/models/list_rewards200_response_rewards_inner_delivery.rb +1 -1
  34. data/lib/tremendous/models/product.rb +27 -7
  35. data/lib/tremendous/models/product_documents.rb +236 -0
  36. data/lib/tremendous/models/reward_with_link_delivery.rb +1 -1
  37. data/lib/tremendous/models/reward_without_link_delivery.rb +1 -1
  38. data/lib/tremendous/version.rb +1 -1
  39. data/lib/tremendous.rb +23 -5
  40. metadata +26 -7
@@ -0,0 +1,236 @@
1
+ =begin
2
+ #API Endpoints
3
+
4
+ #Deliver monetary rewards and incentives to employees, customers, survey participants, and more through the Tremendous API. For organizational tasks, like managing your organization and its members within Tremendous, please see the Tremendous Organizational API.
5
+
6
+ The version of the OpenAPI document: 2
7
+ Contact: developers@tremendous.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.8.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Tremendous
17
+ # URLs and files related to product documentation.
18
+ class ProductDocuments
19
+ # URL to the cardholder agreement PDF file.
20
+ attr_accessor :cardholder_agreement_pdf
21
+
22
+ # URL to the cardholder agreement web page.
23
+ attr_accessor :cardholder_agreement_url
24
+
25
+ # URL to the privacy policy web page.
26
+ attr_accessor :privacy_policy_url
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'cardholder_agreement_pdf' => :'cardholder_agreement_pdf',
32
+ :'cardholder_agreement_url' => :'cardholder_agreement_url',
33
+ :'privacy_policy_url' => :'privacy_policy_url'
34
+ }
35
+ end
36
+
37
+ # Returns all the JSON keys this model knows about
38
+ def self.acceptable_attributes
39
+ attribute_map.values
40
+ end
41
+
42
+ # Attribute type mapping.
43
+ def self.openapi_types
44
+ {
45
+ :'cardholder_agreement_pdf' => :'String',
46
+ :'cardholder_agreement_url' => :'String',
47
+ :'privacy_policy_url' => :'String'
48
+ }
49
+ end
50
+
51
+ # List of attributes with nullable: true
52
+ def self.openapi_nullable
53
+ Set.new([
54
+ ])
55
+ end
56
+
57
+ # Initializes the object
58
+ # @param [Hash] attributes Model attributes in the form of hash
59
+ def initialize(attributes = {})
60
+ if (!attributes.is_a?(Hash))
61
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Tremendous::ProductDocuments` initialize method"
62
+ end
63
+
64
+ # check to see if the attribute exists and convert string to symbol for hash key
65
+ attributes = attributes.each_with_object({}) { |(k, v), h|
66
+ if (!self.class.attribute_map.key?(k.to_sym))
67
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Tremendous::ProductDocuments`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
68
+ end
69
+ h[k.to_sym] = v
70
+ }
71
+
72
+ if attributes.key?(:'cardholder_agreement_pdf')
73
+ self.cardholder_agreement_pdf = attributes[:'cardholder_agreement_pdf']
74
+ end
75
+
76
+ if attributes.key?(:'cardholder_agreement_url')
77
+ self.cardholder_agreement_url = attributes[:'cardholder_agreement_url']
78
+ end
79
+
80
+ if attributes.key?(:'privacy_policy_url')
81
+ self.privacy_policy_url = attributes[:'privacy_policy_url']
82
+ end
83
+ end
84
+
85
+ # Show invalid properties with the reasons. Usually used together with valid?
86
+ # @return Array for valid properties with the reasons
87
+ def list_invalid_properties
88
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
89
+ invalid_properties = Array.new
90
+ invalid_properties
91
+ end
92
+
93
+ # Check to see if the all the properties in the model are valid
94
+ # @return true if the model is valid
95
+ def valid?
96
+ warn '[DEPRECATED] the `valid?` method is obsolete'
97
+ true
98
+ end
99
+
100
+ # Checks equality by comparing each attribute.
101
+ # @param [Object] Object to be compared
102
+ def ==(o)
103
+ return true if self.equal?(o)
104
+ self.class == o.class &&
105
+ cardholder_agreement_pdf == o.cardholder_agreement_pdf &&
106
+ cardholder_agreement_url == o.cardholder_agreement_url &&
107
+ privacy_policy_url == o.privacy_policy_url
108
+ end
109
+
110
+ # @see the `==` method
111
+ # @param [Object] Object to be compared
112
+ def eql?(o)
113
+ self == o
114
+ end
115
+
116
+ # Calculates hash code according to all attributes.
117
+ # @return [Integer] Hash code
118
+ def hash
119
+ [cardholder_agreement_pdf, cardholder_agreement_url, privacy_policy_url].hash
120
+ end
121
+
122
+ # Builds the object from hash
123
+ # @param [Hash] attributes Model attributes in the form of hash
124
+ # @return [Object] Returns the model itself
125
+ def self.build_from_hash(attributes)
126
+ return nil unless attributes.is_a?(Hash)
127
+ attributes = attributes.transform_keys(&:to_sym)
128
+ transformed_hash = {}
129
+ openapi_types.each_pair do |key, type|
130
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
131
+ transformed_hash["#{key}"] = nil
132
+ elsif type =~ /\AArray<(.*)>/i
133
+ # check to ensure the input is an array given that the attribute
134
+ # is documented as an array but the input is not
135
+ if attributes[attribute_map[key]].is_a?(Array)
136
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
137
+ end
138
+ elsif !attributes[attribute_map[key]].nil?
139
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
140
+ end
141
+ end
142
+ new(transformed_hash)
143
+ end
144
+
145
+ # Deserializes the data based on type
146
+ # @param string type Data type
147
+ # @param string value Value to be deserialized
148
+ # @return [Object] Deserialized data
149
+ def self._deserialize(type, value)
150
+ case type.to_sym
151
+ when :Time
152
+ Time.parse(value)
153
+ when :Date
154
+ Date.parse(value)
155
+ when :String
156
+ value.to_s
157
+ when :Integer
158
+ value.to_i
159
+ when :Float
160
+ value.to_f
161
+ when :Boolean
162
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
163
+ true
164
+ else
165
+ false
166
+ end
167
+ when :Object
168
+ # generic object (usually a Hash), return directly
169
+ value
170
+ when /\AArray<(?<inner_type>.+)>\z/
171
+ inner_type = Regexp.last_match[:inner_type]
172
+ value.map { |v| _deserialize(inner_type, v) }
173
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
174
+ k_type = Regexp.last_match[:k_type]
175
+ v_type = Regexp.last_match[:v_type]
176
+ {}.tap do |hash|
177
+ value.each do |k, v|
178
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
179
+ end
180
+ end
181
+ else # model
182
+ # models (e.g. Pet) or oneOf
183
+ klass = Tremendous.const_get(type)
184
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
185
+ end
186
+ end
187
+
188
+ # Returns the string representation of the object
189
+ # @return [String] String presentation of the object
190
+ def to_s
191
+ to_hash.to_s
192
+ end
193
+
194
+ # to_body is an alias to to_hash (backward compatibility)
195
+ # @return [Hash] Returns the object in the form of hash
196
+ def to_body
197
+ to_hash
198
+ end
199
+
200
+ # Returns the object in the form of hash
201
+ # @return [Hash] Returns the object in the form of hash
202
+ def to_hash
203
+ hash = {}
204
+ self.class.attribute_map.each_pair do |attr, param|
205
+ value = self.send(attr)
206
+ if value.nil?
207
+ is_nullable = self.class.openapi_nullable.include?(attr)
208
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
209
+ end
210
+
211
+ hash[param] = _to_hash(value)
212
+ end
213
+ hash
214
+ end
215
+
216
+ # Outputs non-array value in the form of hash
217
+ # For object, use to_hash. Otherwise, just return the value
218
+ # @param [Object] value Any valid value
219
+ # @return [Hash] Returns the value in the form of hash
220
+ def _to_hash(value)
221
+ if value.is_a?(Array)
222
+ value.compact.map { |v| _to_hash(v) }
223
+ elsif value.is_a?(Hash)
224
+ {}.tap do |hash|
225
+ value.each { |k, v| hash[k] = _to_hash(v) }
226
+ end
227
+ elsif value.respond_to? :to_hash
228
+ value.to_hash
229
+ else
230
+ value
231
+ end
232
+ end
233
+
234
+ end
235
+
236
+ end
@@ -19,7 +19,7 @@ module Tremendous
19
19
  # How to deliver the reward to the recipient. <table> <thead> <tr> <th>Delivery Method</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><code>EMAIL</code></td> <td>Deliver the reward to the recipient by email</td> </tr> <tr> <td><code>LINK</code></td> <td> <p>Deliver the reward to the recipient via a link.</p> <p>The link can be retrieved on a successfully ordered reward via the <code>/rewards</code> or <code>/rewards/{id}</code> endpoint. That link must then be delivered to the recipient out-of-band.</p> </td> </tr> <tr> <td><code>PHONE</code></td> <td>Deliver the reward to the recipient by SMS</td> </tr> </tbody> </table>
20
20
  attr_accessor :method
21
21
 
22
- # Current status of the delivery of the reward: * `SCHEDULED` - Reward is scheduled for delivery and will be delivered soon. * `FAILED` - Delivery of reward failed (e.g. email bounced). * `SUCCEEDED` - Reward was successfully delivered (email or text message delivered or reward link opened). * `PENDING` - Delivery is pending but not yet scheduled.
22
+ # Current status of the delivery of the reward: * `SCHEDULED` - Reward is scheduled for delivery and will be delivered soon. * `FAILED` - Delivery of reward failed (e.g. email bounced). * `SUCCEEDED` - Reward was successfully delivered (email or text message delivered or reward link active). * `PENDING` - Delivery is pending but not yet scheduled.
23
23
  attr_accessor :status
24
24
 
25
25
  # Link to redeem the reward at. You need to deliver this link to the recipient.
@@ -19,7 +19,7 @@ module Tremendous
19
19
  # How to deliver the reward to the recipient. <table> <thead> <tr> <th>Delivery Method</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><code>EMAIL</code></td> <td>Deliver the reward to the recipient by email</td> </tr> <tr> <td><code>LINK</code></td> <td> <p>Deliver the reward to the recipient via a link.</p> <p>The link can be retrieved on a successfully ordered reward via the <code>/rewards</code> or <code>/rewards/{id}</code> endpoint. That link must then be delivered to the recipient out-of-band.</p> </td> </tr> <tr> <td><code>PHONE</code></td> <td>Deliver the reward to the recipient by SMS</td> </tr> </tbody> </table>
20
20
  attr_accessor :method
21
21
 
22
- # Current status of the delivery of the reward: * `SCHEDULED` - Reward is scheduled for delivery and will be delivered soon. * `FAILED` - Delivery of reward failed (e.g. email bounced). * `SUCCEEDED` - Reward was successfully delivered (email or text message delivered or reward link opened). * `PENDING` - Delivery is pending but not yet scheduled.
22
+ # Current status of the delivery of the reward: * `SCHEDULED` - Reward is scheduled for delivery and will be delivered soon. * `FAILED` - Delivery of reward failed (e.g. email bounced). * `SUCCEEDED` - Reward was successfully delivered (email or text message delivered or reward link active). * `PENDING` - Delivery is pending but not yet scheduled.
23
23
  attr_accessor :status
24
24
 
25
25
  class EnumAttributeValidator
@@ -1,3 +1,3 @@
1
1
  module Tremendous
2
- VERSION = "5.9.0"
2
+ VERSION = "5.10.0"
3
3
  end
data/lib/tremendous.rb CHANGED
@@ -28,9 +28,21 @@ require 'tremendous/models/base_order_for_create'
28
28
  require 'tremendous/models/campaign'
29
29
  require 'tremendous/models/campaign_base'
30
30
  require 'tremendous/models/channel'
31
+ require 'tremendous/models/connected_organization'
32
+ require 'tremendous/models/connected_organization_member'
33
+ require 'tremendous/models/connected_organization_member_member'
34
+ require 'tremendous/models/connected_organization_member_session'
35
+ require 'tremendous/models/connected_organization_organization'
31
36
  require 'tremendous/models/create_api_key200_response'
32
- require 'tremendous/models/create_campaign201_response'
37
+ require 'tremendous/models/create_campaign200_response'
33
38
  require 'tremendous/models/create_campaign_request'
39
+ require 'tremendous/models/create_connected_organization200_response'
40
+ require 'tremendous/models/create_connected_organization_member200_response'
41
+ require 'tremendous/models/create_connected_organization_member_request'
42
+ require 'tremendous/models/create_connected_organization_member_session200_response'
43
+ require 'tremendous/models/create_connected_organization_member_session200_response_connected_organization_member_session'
44
+ require 'tremendous/models/create_connected_organization_member_session_request'
45
+ require 'tremendous/models/create_connected_organization_request'
34
46
  require 'tremendous/models/create_invoice200_response'
35
47
  require 'tremendous/models/create_invoice_request'
36
48
  require 'tremendous/models/create_member'
@@ -48,8 +60,8 @@ require 'tremendous/models/create_organization_for_response'
48
60
  require 'tremendous/models/create_organization_properties'
49
61
  require 'tremendous/models/create_organization_request'
50
62
  require 'tremendous/models/create_organization_request_copy_settings'
51
- require 'tremendous/models/create_report201_response'
52
- require 'tremendous/models/create_report201_response_report'
63
+ require 'tremendous/models/create_report200_response'
64
+ require 'tremendous/models/create_report200_response_report'
53
65
  require 'tremendous/models/create_report_request'
54
66
  require 'tremendous/models/create_report_request_filters'
55
67
  require 'tremendous/models/create_report_request_filters_digital_rewards'
@@ -94,8 +106,6 @@ require 'tremendous/models/funding_source'
94
106
  require 'tremendous/models/generate_reward_link200_response'
95
107
  require 'tremendous/models/generate_reward_link200_response_reward'
96
108
  require 'tremendous/models/generate_reward_link403_response'
97
- require 'tremendous/models/generate_reward_token200_response'
98
- require 'tremendous/models/generate_reward_token200_response_reward'
99
109
  require 'tremendous/models/get_fraud_review200_response'
100
110
  require 'tremendous/models/get_fraud_review200_response_fraud_review'
101
111
  require 'tremendous/models/get_fraud_review200_response_fraud_review_geo'
@@ -117,6 +127,12 @@ require 'tremendous/models/list_campaigns200_response'
117
127
  require 'tremendous/models/list_campaigns200_response_campaigns_inner'
118
128
  require 'tremendous/models/list_campaigns200_response_campaigns_inner_email_style'
119
129
  require 'tremendous/models/list_campaigns200_response_campaigns_inner_webpage_style'
130
+ require 'tremendous/models/list_connected_organization_members200_response'
131
+ require 'tremendous/models/list_connected_organization_members200_response_connected_organization_members_inner'
132
+ require 'tremendous/models/list_connected_organization_members200_response_connected_organization_members_inner_member'
133
+ require 'tremendous/models/list_connected_organizations200_response'
134
+ require 'tremendous/models/list_connected_organizations200_response_connected_organizations_inner'
135
+ require 'tremendous/models/list_connected_organizations200_response_connected_organizations_inner_organization'
120
136
  require 'tremendous/models/list_fields200_response'
121
137
  require 'tremendous/models/list_fields200_response_fields_inner'
122
138
  require 'tremendous/models/list_forex_response'
@@ -141,6 +157,7 @@ require 'tremendous/models/list_organizations200_response_organizations_inner'
141
157
  require 'tremendous/models/list_products_response'
142
158
  require 'tremendous/models/list_products_response_products_inner'
143
159
  require 'tremendous/models/list_products_response_products_inner_countries_inner'
160
+ require 'tremendous/models/list_products_response_products_inner_documents'
144
161
  require 'tremendous/models/list_products_response_products_inner_images_inner'
145
162
  require 'tremendous/models/list_products_response_products_inner_skus_inner'
146
163
  require 'tremendous/models/list_rewards200_response'
@@ -174,6 +191,7 @@ require 'tremendous/models/payment_details'
174
191
  require 'tremendous/models/payment_details_refund'
175
192
  require 'tremendous/models/payout'
176
193
  require 'tremendous/models/product'
194
+ require 'tremendous/models/product_documents'
177
195
  require 'tremendous/models/recipient'
178
196
  require 'tremendous/models/refund_details'
179
197
  require 'tremendous/models/report'
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tremendous_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.9.0
4
+ version: 5.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tremendous Developers
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-03 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: faraday
@@ -44,7 +43,6 @@ dependencies:
44
43
  - - ">="
45
44
  - !ruby/object:Gem::Version
46
45
  version: '0'
47
- description:
48
46
  email:
49
47
  - developers@tremendous.com
50
48
  executables: []
@@ -67,9 +65,22 @@ files:
67
65
  - lib/tremendous/models/campaign.rb
68
66
  - lib/tremendous/models/campaign_base.rb
69
67
  - lib/tremendous/models/channel.rb
68
+ - lib/tremendous/models/connected_organization.rb
69
+ - lib/tremendous/models/connected_organization_member.rb
70
+ - lib/tremendous/models/connected_organization_member_member.rb
71
+ - lib/tremendous/models/connected_organization_member_session.rb
72
+ - lib/tremendous/models/connected_organization_organization.rb
70
73
  - lib/tremendous/models/create_api_key200_response.rb
74
+ - lib/tremendous/models/create_campaign200_response.rb
71
75
  - lib/tremendous/models/create_campaign201_response.rb
72
76
  - lib/tremendous/models/create_campaign_request.rb
77
+ - lib/tremendous/models/create_connected_organization200_response.rb
78
+ - lib/tremendous/models/create_connected_organization_member200_response.rb
79
+ - lib/tremendous/models/create_connected_organization_member_request.rb
80
+ - lib/tremendous/models/create_connected_organization_member_session200_response.rb
81
+ - lib/tremendous/models/create_connected_organization_member_session200_response_connected_organization_member_session.rb
82
+ - lib/tremendous/models/create_connected_organization_member_session_request.rb
83
+ - lib/tremendous/models/create_connected_organization_request.rb
73
84
  - lib/tremendous/models/create_invoice200_response.rb
74
85
  - lib/tremendous/models/create_invoice_request.rb
75
86
  - lib/tremendous/models/create_member.rb
@@ -88,6 +99,8 @@ files:
88
99
  - lib/tremendous/models/create_organization_properties.rb
89
100
  - lib/tremendous/models/create_organization_request.rb
90
101
  - lib/tremendous/models/create_organization_request_copy_settings.rb
102
+ - lib/tremendous/models/create_report200_response.rb
103
+ - lib/tremendous/models/create_report200_response_report.rb
91
104
  - lib/tremendous/models/create_report201_response.rb
92
105
  - lib/tremendous/models/create_report201_response_report.rb
93
106
  - lib/tremendous/models/create_report_request.rb
@@ -157,6 +170,12 @@ files:
157
170
  - lib/tremendous/models/list_campaigns200_response_campaigns_inner.rb
158
171
  - lib/tremendous/models/list_campaigns200_response_campaigns_inner_email_style.rb
159
172
  - lib/tremendous/models/list_campaigns200_response_campaigns_inner_webpage_style.rb
173
+ - lib/tremendous/models/list_connected_organization_members200_response.rb
174
+ - lib/tremendous/models/list_connected_organization_members200_response_connected_organization_members_inner.rb
175
+ - lib/tremendous/models/list_connected_organization_members200_response_connected_organization_members_inner_member.rb
176
+ - lib/tremendous/models/list_connected_organizations200_response.rb
177
+ - lib/tremendous/models/list_connected_organizations200_response_connected_organizations_inner.rb
178
+ - lib/tremendous/models/list_connected_organizations200_response_connected_organizations_inner_organization.rb
160
179
  - lib/tremendous/models/list_fields200_response.rb
161
180
  - lib/tremendous/models/list_fields200_response_fields_inner.rb
162
181
  - lib/tremendous/models/list_forex_response.rb
@@ -181,6 +200,7 @@ files:
181
200
  - lib/tremendous/models/list_products_response.rb
182
201
  - lib/tremendous/models/list_products_response_products_inner.rb
183
202
  - lib/tremendous/models/list_products_response_products_inner_countries_inner.rb
203
+ - lib/tremendous/models/list_products_response_products_inner_documents.rb
184
204
  - lib/tremendous/models/list_products_response_products_inner_images_inner.rb
185
205
  - lib/tremendous/models/list_products_response_products_inner_skus_inner.rb
186
206
  - lib/tremendous/models/list_rewards200_response.rb
@@ -214,6 +234,7 @@ files:
214
234
  - lib/tremendous/models/payment_details_refund.rb
215
235
  - lib/tremendous/models/payout.rb
216
236
  - lib/tremendous/models/product.rb
237
+ - lib/tremendous/models/product_documents.rb
217
238
  - lib/tremendous/models/recipient.rb
218
239
  - lib/tremendous/models/refund_details.rb
219
240
  - lib/tremendous/models/report.rb
@@ -264,7 +285,6 @@ licenses:
264
285
  metadata:
265
286
  documentation_uri: https://www.tremendous.com/docs
266
287
  source_code_uri: https://github.com/tremendous-rewards/tremendous-ruby
267
- post_install_message:
268
288
  rdoc_options: []
269
289
  require_paths:
270
290
  - lib
@@ -279,8 +299,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
279
299
  - !ruby/object:Gem::Version
280
300
  version: '0'
281
301
  requirements: []
282
- rubygems_version: 3.5.22
283
- signing_key:
302
+ rubygems_version: 3.6.7
284
303
  specification_version: 4
285
304
  summary: Tremendous Ruby API SDK
286
305
  test_files: []