tremendous_ruby 5.0.1 → 5.1.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 (29) hide show
  1. checksums.yaml +4 -4
  2. data/lib/tremendous/api/tremendous_api.rb +148 -5
  3. data/lib/tremendous/models/campaign.rb +25 -14
  4. data/lib/tremendous/models/{get_campaign200_response.rb → create_campaign201_response.rb} +3 -3
  5. data/lib/tremendous/models/{list_products200_response.rb → create_campaign_request.rb} +57 -7
  6. data/lib/tremendous/models/create_member.rb +1 -18
  7. data/lib/tremendous/models/create_member_request.rb +1 -18
  8. data/lib/tremendous/models/create_order_request_reward.rb +1 -1
  9. data/lib/tremendous/models/{get_product200_response.rb → create_order_request_reward_custom_fields_inner.rb} +42 -15
  10. data/lib/tremendous/models/create_organization_request_copy_settings.rb +16 -4
  11. data/lib/tremendous/models/custom_field.rb +15 -5
  12. data/lib/tremendous/models/get_member200_response_member.rb +14 -4
  13. data/lib/tremendous/models/invoice.rb +2 -2
  14. data/lib/tremendous/models/list_campaigns200_response_campaigns_inner.rb +25 -14
  15. data/lib/tremendous/models/{list_products200_response_products_inner_images_inner.rb → list_campaigns200_response_campaigns_inner_email_style.rb} +63 -66
  16. data/lib/tremendous/models/{list_products200_response_products_inner_skus_inner.rb → list_campaigns200_response_campaigns_inner_webpage_style.rb} +61 -68
  17. data/lib/tremendous/models/list_invoices200_response_invoices_inner.rb +2 -2
  18. data/lib/tremendous/models/list_members200_response_members_inner.rb +14 -4
  19. data/lib/tremendous/models/list_rewards200_response_rewards_inner_custom_fields_inner.rb +15 -5
  20. data/lib/tremendous/models/member.rb +14 -4
  21. data/lib/tremendous/models/member_base.rb +14 -4
  22. data/lib/tremendous/models/member_with_events.rb +14 -4
  23. data/lib/tremendous/models/member_without_events.rb +14 -4
  24. data/lib/tremendous/models/reward_base_custom_fields_inner.rb +15 -5
  25. data/lib/tremendous/version.rb +1 -1
  26. data/lib/tremendous.rb +5 -1
  27. metadata +8 -10
  28. data/lib/tremendous/models/list_products200_response_products_inner.rb +0 -457
  29. data/lib/tremendous/models/list_products200_response_products_inner_countries_inner.rb +0 -222
@@ -24,7 +24,10 @@ module Tremendous
24
24
  # Full name of the member
25
25
  attr_accessor :name
26
26
 
27
- # Role of the member within the organization. <table> <thead> <tr> <th>Role</th> <th>Description</th> </tr> </thead> <tr> <td><code>MEMBER</code></td> <td>Limited permissions. Can view their own reward and order histories only.</td> </tr> <tr> <td><code>ADMIN</code></td> <td>Update organization settings, invite other members to the organization, and view all member order and reward histories within their organization.</td> </tr> <tr> <td><code>DELETED</code></td> <td>No longer a member of this organization.</td> </tr> <tbody> </tbody> </table>
27
+ # Is this member currently active in the organization. If `false`, the member will not be able to access the organization.
28
+ attr_accessor :active
29
+
30
+ # Role of the member within the organization. <table> <thead> <tr> <th>Role</th> <th>Description</th> </tr> </thead> <tr> <td><code>MEMBER</code></td> <td>Limited permissions. Can view their own reward and order histories only.</td> </tr> <tr> <td><code>ADMIN</code></td> <td>Update organization settings, invite other members to the organization, and view all member order and reward histories within their organization.</td> </tr> <tbody> </tbody> </table>
28
31
  attr_accessor :role
29
32
 
30
33
  # Current status of the member's account. When creating a member it starts out in the status `INVITED`. As soon as that member open the invitation link and registers an account, the status switches to `REGISTERED`.
@@ -64,6 +67,7 @@ module Tremendous
64
67
  :'id' => :'id',
65
68
  :'email' => :'email',
66
69
  :'name' => :'name',
70
+ :'active' => :'active',
67
71
  :'role' => :'role',
68
72
  :'status' => :'status',
69
73
  :'created_at' => :'created_at',
@@ -82,6 +86,7 @@ module Tremendous
82
86
  :'id' => :'String',
83
87
  :'email' => :'String',
84
88
  :'name' => :'String',
89
+ :'active' => :'Boolean',
85
90
  :'role' => :'String',
86
91
  :'status' => :'String',
87
92
  :'created_at' => :'Time',
@@ -130,6 +135,10 @@ module Tremendous
130
135
  self.name = nil
131
136
  end
132
137
 
138
+ if attributes.key?(:'active')
139
+ self.active = attributes[:'active']
140
+ end
141
+
133
142
  if attributes.key?(:'role')
134
143
  self.role = attributes[:'role']
135
144
  else
@@ -188,7 +197,7 @@ module Tremendous
188
197
  return false if @id !~ Regexp.new(/[A-Z0-9]{4,20}/)
189
198
  return false if @email.nil?
190
199
  return false if @role.nil?
191
- role_validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN", "DELETED"])
200
+ role_validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN"])
192
201
  return false unless role_validator.valid?(@role)
193
202
  return false if @status.nil?
194
203
  status_validator = EnumAttributeValidator.new('String', ["REGISTERED", "INVITED"])
@@ -214,7 +223,7 @@ module Tremendous
214
223
  # Custom attribute writer method checking allowed values (enum).
215
224
  # @param [Object] role Object to be assigned
216
225
  def role=(role)
217
- validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN", "DELETED"])
226
+ validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN"])
218
227
  unless validator.valid?(role)
219
228
  fail ArgumentError, "invalid value for \"role\", must be one of #{validator.allowable_values}."
220
229
  end
@@ -239,6 +248,7 @@ module Tremendous
239
248
  id == o.id &&
240
249
  email == o.email &&
241
250
  name == o.name &&
251
+ active == o.active &&
242
252
  role == o.role &&
243
253
  status == o.status &&
244
254
  created_at == o.created_at &&
@@ -254,7 +264,7 @@ module Tremendous
254
264
  # Calculates hash code according to all attributes.
255
265
  # @return [Integer] Hash code
256
266
  def hash
257
- [id, email, name, role, status, created_at, last_login_at].hash
267
+ [id, email, name, active, role, status, created_at, last_login_at].hash
258
268
  end
259
269
 
260
270
  # Builds the object from hash
@@ -24,7 +24,10 @@ module Tremendous
24
24
  # Full name of the member
25
25
  attr_accessor :name
26
26
 
27
- # Role of the member within the organization. <table> <thead> <tr> <th>Role</th> <th>Description</th> </tr> </thead> <tr> <td><code>MEMBER</code></td> <td>Limited permissions. Can view their own reward and order histories only.</td> </tr> <tr> <td><code>ADMIN</code></td> <td>Update organization settings, invite other members to the organization, and view all member order and reward histories within their organization.</td> </tr> <tr> <td><code>DELETED</code></td> <td>No longer a member of this organization.</td> </tr> <tbody> </tbody> </table>
27
+ # Is this member currently active in the organization. If `false`, the member will not be able to access the organization.
28
+ attr_accessor :active
29
+
30
+ # Role of the member within the organization. <table> <thead> <tr> <th>Role</th> <th>Description</th> </tr> </thead> <tr> <td><code>MEMBER</code></td> <td>Limited permissions. Can view their own reward and order histories only.</td> </tr> <tr> <td><code>ADMIN</code></td> <td>Update organization settings, invite other members to the organization, and view all member order and reward histories within their organization.</td> </tr> <tbody> </tbody> </table>
28
31
  attr_accessor :role
29
32
 
30
33
  # Current status of the member's account. When creating a member it starts out in the status `INVITED`. As soon as that member open the invitation link and registers an account, the status switches to `REGISTERED`.
@@ -58,6 +61,7 @@ module Tremendous
58
61
  :'id' => :'id',
59
62
  :'email' => :'email',
60
63
  :'name' => :'name',
64
+ :'active' => :'active',
61
65
  :'role' => :'role',
62
66
  :'status' => :'status'
63
67
  }
@@ -74,6 +78,7 @@ module Tremendous
74
78
  :'id' => :'String',
75
79
  :'email' => :'String',
76
80
  :'name' => :'String',
81
+ :'active' => :'Boolean',
77
82
  :'role' => :'String',
78
83
  :'status' => :'String'
79
84
  }
@@ -119,6 +124,10 @@ module Tremendous
119
124
  self.name = nil
120
125
  end
121
126
 
127
+ if attributes.key?(:'active')
128
+ self.active = attributes[:'active']
129
+ end
130
+
122
131
  if attributes.key?(:'role')
123
132
  self.role = attributes[:'role']
124
133
  else
@@ -169,7 +178,7 @@ module Tremendous
169
178
  return false if @id !~ Regexp.new(/[A-Z0-9]{4,20}/)
170
179
  return false if @email.nil?
171
180
  return false if @role.nil?
172
- role_validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN", "DELETED"])
181
+ role_validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN"])
173
182
  return false unless role_validator.valid?(@role)
174
183
  return false if @status.nil?
175
184
  status_validator = EnumAttributeValidator.new('String', ["REGISTERED", "INVITED"])
@@ -195,7 +204,7 @@ module Tremendous
195
204
  # Custom attribute writer method checking allowed values (enum).
196
205
  # @param [Object] role Object to be assigned
197
206
  def role=(role)
198
- validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN", "DELETED"])
207
+ validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN"])
199
208
  unless validator.valid?(role)
200
209
  fail ArgumentError, "invalid value for \"role\", must be one of #{validator.allowable_values}."
201
210
  end
@@ -220,6 +229,7 @@ module Tremendous
220
229
  id == o.id &&
221
230
  email == o.email &&
222
231
  name == o.name &&
232
+ active == o.active &&
223
233
  role == o.role &&
224
234
  status == o.status
225
235
  end
@@ -233,7 +243,7 @@ module Tremendous
233
243
  # Calculates hash code according to all attributes.
234
244
  # @return [Integer] Hash code
235
245
  def hash
236
- [id, email, name, role, status].hash
246
+ [id, email, name, active, role, status].hash
237
247
  end
238
248
 
239
249
  # Builds the object from hash
@@ -24,7 +24,10 @@ module Tremendous
24
24
  # Full name of the member
25
25
  attr_accessor :name
26
26
 
27
- # Role of the member within the organization. <table> <thead> <tr> <th>Role</th> <th>Description</th> </tr> </thead> <tr> <td><code>MEMBER</code></td> <td>Limited permissions. Can view their own reward and order histories only.</td> </tr> <tr> <td><code>ADMIN</code></td> <td>Update organization settings, invite other members to the organization, and view all member order and reward histories within their organization.</td> </tr> <tr> <td><code>DELETED</code></td> <td>No longer a member of this organization.</td> </tr> <tbody> </tbody> </table>
27
+ # Is this member currently active in the organization. If `false`, the member will not be able to access the organization.
28
+ attr_accessor :active
29
+
30
+ # Role of the member within the organization. <table> <thead> <tr> <th>Role</th> <th>Description</th> </tr> </thead> <tr> <td><code>MEMBER</code></td> <td>Limited permissions. Can view their own reward and order histories only.</td> </tr> <tr> <td><code>ADMIN</code></td> <td>Update organization settings, invite other members to the organization, and view all member order and reward histories within their organization.</td> </tr> <tbody> </tbody> </table>
28
31
  attr_accessor :role
29
32
 
30
33
  # Current status of the member's account. When creating a member it starts out in the status `INVITED`. As soon as that member open the invitation link and registers an account, the status switches to `REGISTERED`.
@@ -61,6 +64,7 @@ module Tremendous
61
64
  :'id' => :'id',
62
65
  :'email' => :'email',
63
66
  :'name' => :'name',
67
+ :'active' => :'active',
64
68
  :'role' => :'role',
65
69
  :'status' => :'status',
66
70
  :'events' => :'events'
@@ -78,6 +82,7 @@ module Tremendous
78
82
  :'id' => :'String',
79
83
  :'email' => :'String',
80
84
  :'name' => :'String',
85
+ :'active' => :'Boolean',
81
86
  :'role' => :'String',
82
87
  :'status' => :'String',
83
88
  :'events' => :'Array<GetMember200ResponseMemberEventsInner>'
@@ -124,6 +129,10 @@ module Tremendous
124
129
  self.name = nil
125
130
  end
126
131
 
132
+ if attributes.key?(:'active')
133
+ self.active = attributes[:'active']
134
+ end
135
+
127
136
  if attributes.key?(:'role')
128
137
  self.role = attributes[:'role']
129
138
  else
@@ -180,7 +189,7 @@ module Tremendous
180
189
  return false if @id !~ Regexp.new(/[A-Z0-9]{4,20}/)
181
190
  return false if @email.nil?
182
191
  return false if @role.nil?
183
- role_validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN", "DELETED"])
192
+ role_validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN"])
184
193
  return false unless role_validator.valid?(@role)
185
194
  return false if @status.nil?
186
195
  status_validator = EnumAttributeValidator.new('String', ["REGISTERED", "INVITED"])
@@ -206,7 +215,7 @@ module Tremendous
206
215
  # Custom attribute writer method checking allowed values (enum).
207
216
  # @param [Object] role Object to be assigned
208
217
  def role=(role)
209
- validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN", "DELETED"])
218
+ validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN"])
210
219
  unless validator.valid?(role)
211
220
  fail ArgumentError, "invalid value for \"role\", must be one of #{validator.allowable_values}."
212
221
  end
@@ -231,6 +240,7 @@ module Tremendous
231
240
  id == o.id &&
232
241
  email == o.email &&
233
242
  name == o.name &&
243
+ active == o.active &&
234
244
  role == o.role &&
235
245
  status == o.status &&
236
246
  events == o.events
@@ -245,7 +255,7 @@ module Tremendous
245
255
  # Calculates hash code according to all attributes.
246
256
  # @return [Integer] Hash code
247
257
  def hash
248
- [id, email, name, role, status, events].hash
258
+ [id, email, name, active, role, status, events].hash
249
259
  end
250
260
 
251
261
  # Builds the object from hash
@@ -24,7 +24,10 @@ module Tremendous
24
24
  # Full name of the member
25
25
  attr_accessor :name
26
26
 
27
- # Role of the member within the organization. <table> <thead> <tr> <th>Role</th> <th>Description</th> </tr> </thead> <tr> <td><code>MEMBER</code></td> <td>Limited permissions. Can view their own reward and order histories only.</td> </tr> <tr> <td><code>ADMIN</code></td> <td>Update organization settings, invite other members to the organization, and view all member order and reward histories within their organization.</td> </tr> <tr> <td><code>DELETED</code></td> <td>No longer a member of this organization.</td> </tr> <tbody> </tbody> </table>
27
+ # Is this member currently active in the organization. If `false`, the member will not be able to access the organization.
28
+ attr_accessor :active
29
+
30
+ # Role of the member within the organization. <table> <thead> <tr> <th>Role</th> <th>Description</th> </tr> </thead> <tr> <td><code>MEMBER</code></td> <td>Limited permissions. Can view their own reward and order histories only.</td> </tr> <tr> <td><code>ADMIN</code></td> <td>Update organization settings, invite other members to the organization, and view all member order and reward histories within their organization.</td> </tr> <tbody> </tbody> </table>
28
31
  attr_accessor :role
29
32
 
30
33
  # Current status of the member's account. When creating a member it starts out in the status `INVITED`. As soon as that member open the invitation link and registers an account, the status switches to `REGISTERED`.
@@ -64,6 +67,7 @@ module Tremendous
64
67
  :'id' => :'id',
65
68
  :'email' => :'email',
66
69
  :'name' => :'name',
70
+ :'active' => :'active',
67
71
  :'role' => :'role',
68
72
  :'status' => :'status',
69
73
  :'created_at' => :'created_at',
@@ -82,6 +86,7 @@ module Tremendous
82
86
  :'id' => :'String',
83
87
  :'email' => :'String',
84
88
  :'name' => :'String',
89
+ :'active' => :'Boolean',
85
90
  :'role' => :'String',
86
91
  :'status' => :'String',
87
92
  :'created_at' => :'Time',
@@ -130,6 +135,10 @@ module Tremendous
130
135
  self.name = nil
131
136
  end
132
137
 
138
+ if attributes.key?(:'active')
139
+ self.active = attributes[:'active']
140
+ end
141
+
133
142
  if attributes.key?(:'role')
134
143
  self.role = attributes[:'role']
135
144
  else
@@ -188,7 +197,7 @@ module Tremendous
188
197
  return false if @id !~ Regexp.new(/[A-Z0-9]{4,20}/)
189
198
  return false if @email.nil?
190
199
  return false if @role.nil?
191
- role_validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN", "DELETED"])
200
+ role_validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN"])
192
201
  return false unless role_validator.valid?(@role)
193
202
  return false if @status.nil?
194
203
  status_validator = EnumAttributeValidator.new('String', ["REGISTERED", "INVITED"])
@@ -214,7 +223,7 @@ module Tremendous
214
223
  # Custom attribute writer method checking allowed values (enum).
215
224
  # @param [Object] role Object to be assigned
216
225
  def role=(role)
217
- validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN", "DELETED"])
226
+ validator = EnumAttributeValidator.new('String', ["MEMBER", "ADMIN"])
218
227
  unless validator.valid?(role)
219
228
  fail ArgumentError, "invalid value for \"role\", must be one of #{validator.allowable_values}."
220
229
  end
@@ -239,6 +248,7 @@ module Tremendous
239
248
  id == o.id &&
240
249
  email == o.email &&
241
250
  name == o.name &&
251
+ active == o.active &&
242
252
  role == o.role &&
243
253
  status == o.status &&
244
254
  created_at == o.created_at &&
@@ -254,7 +264,7 @@ module Tremendous
254
264
  # Calculates hash code according to all attributes.
255
265
  # @return [Integer] Hash code
256
266
  def hash
257
- [id, email, name, role, status, created_at, last_login_at].hash
267
+ [id, email, name, active, role, status, created_at, last_login_at].hash
258
268
  end
259
269
 
260
270
  # Builds the object from hash
@@ -22,11 +22,15 @@ module Tremendous
22
22
  # Value of the custom field
23
23
  attr_accessor :value
24
24
 
25
+ # Label of the custom field
26
+ attr_accessor :label
27
+
25
28
  # Attribute mapping from ruby-style variable name to JSON key.
26
29
  def self.attribute_map
27
30
  {
28
31
  :'id' => :'id',
29
- :'value' => :'value'
32
+ :'value' => :'value',
33
+ :'label' => :'label'
30
34
  }
31
35
  end
32
36
 
@@ -39,14 +43,15 @@ module Tremendous
39
43
  def self.openapi_types
40
44
  {
41
45
  :'id' => :'String',
42
- :'value' => :'String'
46
+ :'value' => :'String',
47
+ :'label' => :'String'
43
48
  }
44
49
  end
45
50
 
46
51
  # List of attributes with nullable: true
47
52
  def self.openapi_nullable
48
53
  Set.new([
49
- :'value'
54
+ :'value',
50
55
  ])
51
56
  end
52
57
 
@@ -72,6 +77,10 @@ module Tremendous
72
77
  if attributes.key?(:'value')
73
78
  self.value = attributes[:'value']
74
79
  end
80
+
81
+ if attributes.key?(:'label')
82
+ self.label = attributes[:'label']
83
+ end
75
84
  end
76
85
 
77
86
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -116,7 +125,8 @@ module Tremendous
116
125
  return true if self.equal?(o)
117
126
  self.class == o.class &&
118
127
  id == o.id &&
119
- value == o.value
128
+ value == o.value &&
129
+ label == o.label
120
130
  end
121
131
 
122
132
  # @see the `==` method
@@ -128,7 +138,7 @@ module Tremendous
128
138
  # Calculates hash code according to all attributes.
129
139
  # @return [Integer] Hash code
130
140
  def hash
131
- [id, value].hash
141
+ [id, value, label].hash
132
142
  end
133
143
 
134
144
  # Builds the object from hash
@@ -1,3 +1,3 @@
1
1
  module Tremendous
2
- VERSION = "5.0.1"
2
+ VERSION = "5.1.0"
3
3
  end
data/lib/tremendous.rb CHANGED
@@ -20,6 +20,8 @@ require 'tremendous/configuration'
20
20
  require 'tremendous/models/balance_transaction'
21
21
  require 'tremendous/models/campaign'
22
22
  require 'tremendous/models/create_api_key200_response'
23
+ require 'tremendous/models/create_campaign201_response'
24
+ require 'tremendous/models/create_campaign_request'
23
25
  require 'tremendous/models/create_invoice'
24
26
  require 'tremendous/models/create_invoice200_response'
25
27
  require 'tremendous/models/create_invoice_request'
@@ -34,6 +36,7 @@ require 'tremendous/models/create_order201_response'
34
36
  require 'tremendous/models/create_order_request'
35
37
  require 'tremendous/models/create_order_request_payment'
36
38
  require 'tremendous/models/create_order_request_reward'
39
+ require 'tremendous/models/create_order_request_reward_custom_fields_inner'
37
40
  require 'tremendous/models/create_order_request_reward_delivery'
38
41
  require 'tremendous/models/create_organization'
39
42
  require 'tremendous/models/create_organization200_response'
@@ -56,7 +59,6 @@ require 'tremendous/models/generate_reward_link200_response_reward'
56
59
  require 'tremendous/models/generate_reward_link403_response'
57
60
  require 'tremendous/models/generate_reward_token200_response'
58
61
  require 'tremendous/models/generate_reward_token200_response_reward'
59
- require 'tremendous/models/get_campaign200_response'
60
62
  require 'tremendous/models/get_funding_source200_response'
61
63
  require 'tremendous/models/get_member200_response'
62
64
  require 'tremendous/models/get_member200_response_member'
@@ -69,6 +71,8 @@ require 'tremendous/models/list_balance_transactions200_response'
69
71
  require 'tremendous/models/list_balance_transactions200_response_invoices_inner'
70
72
  require 'tremendous/models/list_campaigns200_response'
71
73
  require 'tremendous/models/list_campaigns200_response_campaigns_inner'
74
+ require 'tremendous/models/list_campaigns200_response_campaigns_inner_email_style'
75
+ require 'tremendous/models/list_campaigns200_response_campaigns_inner_webpage_style'
72
76
  require 'tremendous/models/list_fields200_response'
73
77
  require 'tremendous/models/list_fields200_response_fields_inner'
74
78
  require 'tremendous/models/list_funding_sources200_response'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tremendous_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tremendous Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-01 00:00:00.000000000 Z
11
+ date: 2024-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -59,6 +59,8 @@ files:
59
59
  - lib/tremendous/models/balance_transaction.rb
60
60
  - lib/tremendous/models/campaign.rb
61
61
  - lib/tremendous/models/create_api_key200_response.rb
62
+ - lib/tremendous/models/create_campaign201_response.rb
63
+ - lib/tremendous/models/create_campaign_request.rb
62
64
  - lib/tremendous/models/create_invoice.rb
63
65
  - lib/tremendous/models/create_invoice200_response.rb
64
66
  - lib/tremendous/models/create_invoice_request.rb
@@ -73,6 +75,7 @@ files:
73
75
  - lib/tremendous/models/create_order_request.rb
74
76
  - lib/tremendous/models/create_order_request_payment.rb
75
77
  - lib/tremendous/models/create_order_request_reward.rb
78
+ - lib/tremendous/models/create_order_request_reward_custom_fields_inner.rb
76
79
  - lib/tremendous/models/create_order_request_reward_delivery.rb
77
80
  - lib/tremendous/models/create_organization.rb
78
81
  - lib/tremendous/models/create_organization200_response.rb
@@ -95,13 +98,11 @@ files:
95
98
  - lib/tremendous/models/generate_reward_link403_response.rb
96
99
  - lib/tremendous/models/generate_reward_token200_response.rb
97
100
  - lib/tremendous/models/generate_reward_token200_response_reward.rb
98
- - lib/tremendous/models/get_campaign200_response.rb
99
101
  - lib/tremendous/models/get_funding_source200_response.rb
100
102
  - lib/tremendous/models/get_member200_response.rb
101
103
  - lib/tremendous/models/get_member200_response_member.rb
102
104
  - lib/tremendous/models/get_member200_response_member_events_inner.rb
103
105
  - lib/tremendous/models/get_organization200_response.rb
104
- - lib/tremendous/models/get_product200_response.rb
105
106
  - lib/tremendous/models/get_product_response.rb
106
107
  - lib/tremendous/models/get_reward200_response.rb
107
108
  - lib/tremendous/models/invoice.rb
@@ -109,6 +110,8 @@ files:
109
110
  - lib/tremendous/models/list_balance_transactions200_response_invoices_inner.rb
110
111
  - lib/tremendous/models/list_campaigns200_response.rb
111
112
  - lib/tremendous/models/list_campaigns200_response_campaigns_inner.rb
113
+ - lib/tremendous/models/list_campaigns200_response_campaigns_inner_email_style.rb
114
+ - lib/tremendous/models/list_campaigns200_response_campaigns_inner_webpage_style.rb
112
115
  - lib/tremendous/models/list_fields200_response.rb
113
116
  - lib/tremendous/models/list_fields200_response_fields_inner.rb
114
117
  - lib/tremendous/models/list_funding_sources200_response.rb
@@ -124,11 +127,6 @@ files:
124
127
  - lib/tremendous/models/list_orders200_response_orders_inner_payment_refund.rb
125
128
  - lib/tremendous/models/list_organizations200_response.rb
126
129
  - lib/tremendous/models/list_organizations200_response_organizations_inner.rb
127
- - lib/tremendous/models/list_products200_response.rb
128
- - lib/tremendous/models/list_products200_response_products_inner.rb
129
- - lib/tremendous/models/list_products200_response_products_inner_countries_inner.rb
130
- - lib/tremendous/models/list_products200_response_products_inner_images_inner.rb
131
- - lib/tremendous/models/list_products200_response_products_inner_skus_inner.rb
132
130
  - lib/tremendous/models/list_products_response.rb
133
131
  - lib/tremendous/models/list_products_response_products_inner.rb
134
132
  - lib/tremendous/models/list_products_response_products_inner_countries_inner.rb
@@ -203,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
203
201
  - !ruby/object:Gem::Version
204
202
  version: '0'
205
203
  requirements: []
206
- rubygems_version: 3.5.3
204
+ rubygems_version: 3.5.9
207
205
  signing_key:
208
206
  specification_version: 4
209
207
  summary: Tremendous Ruby API SDK