smooch-api 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/docs/AppApi.md +4 -4
  4. data/lib/smooch-api/api/app_api.rb +40 -15
  5. data/lib/smooch-api/api/app_user_api.rb +56 -19
  6. data/lib/smooch-api/api/conversation_api.rb +23 -8
  7. data/lib/smooch-api/api/init_api.rb +5 -2
  8. data/lib/smooch-api/api/integration_api.rb +53 -18
  9. data/lib/smooch-api/api/menu_api.rb +5 -2
  10. data/lib/smooch-api/api/webhook_api.rb +32 -11
  11. data/lib/smooch-api/api_client.rb +2 -1
  12. data/lib/smooch-api/api_error.rb +2 -1
  13. data/lib/smooch-api/configuration.rb +8 -1
  14. data/lib/smooch-api/models/action.rb +2 -1
  15. data/lib/smooch-api/models/app.rb +2 -1
  16. data/lib/smooch-api/models/app_create.rb +2 -1
  17. data/lib/smooch-api/models/app_response.rb +2 -1
  18. data/lib/smooch-api/models/app_user.rb +2 -1
  19. data/lib/smooch-api/models/app_user_link.rb +2 -1
  20. data/lib/smooch-api/models/app_user_pre_create.rb +2 -1
  21. data/lib/smooch-api/models/app_user_response.rb +2 -1
  22. data/lib/smooch-api/models/app_user_update.rb +2 -1
  23. data/lib/smooch-api/models/client.rb +2 -1
  24. data/lib/smooch-api/models/client_info.rb +2 -1
  25. data/lib/smooch-api/models/conversation.rb +2 -1
  26. data/lib/smooch-api/models/destination.rb +2 -1
  27. data/lib/smooch-api/models/device_init.rb +2 -1
  28. data/lib/smooch-api/models/device_response.rb +2 -1
  29. data/lib/smooch-api/models/device_update.rb +2 -1
  30. data/lib/smooch-api/models/display_settings.rb +2 -1
  31. data/lib/smooch-api/models/event.rb +2 -1
  32. data/lib/smooch-api/models/get_messages_response.rb +2 -1
  33. data/lib/smooch-api/models/init.rb +2 -1
  34. data/lib/smooch-api/models/init_response.rb +2 -1
  35. data/lib/smooch-api/models/integration.rb +2 -1
  36. data/lib/smooch-api/models/integration_create.rb +2 -1
  37. data/lib/smooch-api/models/integration_response.rb +2 -1
  38. data/lib/smooch-api/models/jwt_response.rb +2 -1
  39. data/lib/smooch-api/models/list_apps_response.rb +2 -1
  40. data/lib/smooch-api/models/list_integrations_response.rb +2 -1
  41. data/lib/smooch-api/models/list_secret_keys_response.rb +2 -1
  42. data/lib/smooch-api/models/list_webhooks_response.rb +2 -1
  43. data/lib/smooch-api/models/menu.rb +2 -1
  44. data/lib/smooch-api/models/menu_item.rb +2 -1
  45. data/lib/smooch-api/models/menu_response.rb +2 -1
  46. data/lib/smooch-api/models/message.rb +2 -1
  47. data/lib/smooch-api/models/message_item.rb +2 -1
  48. data/lib/smooch-api/models/message_post.rb +2 -1
  49. data/lib/smooch-api/models/message_response.rb +2 -1
  50. data/lib/smooch-api/models/post_messages_response.rb +2 -1
  51. data/lib/smooch-api/models/secret_key.rb +2 -1
  52. data/lib/smooch-api/models/secret_key_create.rb +2 -1
  53. data/lib/smooch-api/models/secret_key_response.rb +2 -1
  54. data/lib/smooch-api/models/track_event_response.rb +2 -1
  55. data/lib/smooch-api/models/typing_activity_trigger.rb +2 -1
  56. data/lib/smooch-api/models/webhook.rb +2 -1
  57. data/lib/smooch-api/models/webhook_create.rb +2 -1
  58. data/lib/smooch-api/models/webhook_response.rb +2 -1
  59. data/lib/smooch-api/models/webhook_update.rb +2 -1
  60. data/lib/smooch-api/version.rb +3 -2
  61. data/lib/smooch-api.rb +2 -1
  62. data/smooch-api.gemspec +3 -2
  63. data/spec/api_client_spec.rb +2 -1
  64. data/spec/configuration_spec.rb +2 -1
  65. data/spec/spec_helper.rb +2 -1
  66. metadata +5 -5
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -137,7 +138,9 @@ module SmoochApi
137
138
  @api_client.config.logger.debug "Calling API: MenuApi.update_menu ..."
138
139
  end
139
140
  # verify the required parameter 'menu_update_body' is set
140
- fail ArgumentError, "Missing the required parameter 'menu_update_body' when calling MenuApi.update_menu" if menu_update_body.nil?
141
+ if @api_client.config.client_side_validation && menu_update_body.nil?
142
+ fail ArgumentError, "Missing the required parameter 'menu_update_body' when calling MenuApi.update_menu"
143
+ end
141
144
  # resource path
142
145
  local_var_path = "/menu"
143
146
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -41,9 +42,13 @@ module SmoochApi
41
42
  @api_client.config.logger.debug "Calling API: WebhookApi.create_webhook ..."
42
43
  end
43
44
  # verify the required parameter 'app_id' is set
44
- fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.create_webhook" if app_id.nil?
45
+ if @api_client.config.client_side_validation && app_id.nil?
46
+ fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.create_webhook"
47
+ end
45
48
  # verify the required parameter 'webhook_create_body' is set
46
- fail ArgumentError, "Missing the required parameter 'webhook_create_body' when calling WebhookApi.create_webhook" if webhook_create_body.nil?
49
+ if @api_client.config.client_side_validation && webhook_create_body.nil?
50
+ fail ArgumentError, "Missing the required parameter 'webhook_create_body' when calling WebhookApi.create_webhook"
51
+ end
47
52
  # resource path
48
53
  local_var_path = "/apps/{appId}/webhooks".sub('{' + 'appId' + '}', app_id.to_s)
49
54
 
@@ -98,9 +103,13 @@ module SmoochApi
98
103
  @api_client.config.logger.debug "Calling API: WebhookApi.delete_webhook ..."
99
104
  end
100
105
  # verify the required parameter 'app_id' is set
101
- fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.delete_webhook" if app_id.nil?
106
+ if @api_client.config.client_side_validation && app_id.nil?
107
+ fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.delete_webhook"
108
+ end
102
109
  # verify the required parameter 'webhook_id' is set
103
- fail ArgumentError, "Missing the required parameter 'webhook_id' when calling WebhookApi.delete_webhook" if webhook_id.nil?
110
+ if @api_client.config.client_side_validation && webhook_id.nil?
111
+ fail ArgumentError, "Missing the required parameter 'webhook_id' when calling WebhookApi.delete_webhook"
112
+ end
104
113
  # resource path
105
114
  local_var_path = "/apps/{appId}/webhooks/{webhookId}".sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'webhookId' + '}', webhook_id.to_s)
106
115
 
@@ -154,9 +163,13 @@ module SmoochApi
154
163
  @api_client.config.logger.debug "Calling API: WebhookApi.get_webhook ..."
155
164
  end
156
165
  # verify the required parameter 'app_id' is set
157
- fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.get_webhook" if app_id.nil?
166
+ if @api_client.config.client_side_validation && app_id.nil?
167
+ fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.get_webhook"
168
+ end
158
169
  # verify the required parameter 'webhook_id' is set
159
- fail ArgumentError, "Missing the required parameter 'webhook_id' when calling WebhookApi.get_webhook" if webhook_id.nil?
170
+ if @api_client.config.client_side_validation && webhook_id.nil?
171
+ fail ArgumentError, "Missing the required parameter 'webhook_id' when calling WebhookApi.get_webhook"
172
+ end
160
173
  # resource path
161
174
  local_var_path = "/apps/{appId}/webhooks/{webhookId}".sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'webhookId' + '}', webhook_id.to_s)
162
175
 
@@ -209,7 +222,9 @@ module SmoochApi
209
222
  @api_client.config.logger.debug "Calling API: WebhookApi.list_webhooks ..."
210
223
  end
211
224
  # verify the required parameter 'app_id' is set
212
- fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.list_webhooks" if app_id.nil?
225
+ if @api_client.config.client_side_validation && app_id.nil?
226
+ fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.list_webhooks"
227
+ end
213
228
  # resource path
214
229
  local_var_path = "/apps/{appId}/webhooks".sub('{' + 'appId' + '}', app_id.to_s)
215
230
 
@@ -266,11 +281,17 @@ module SmoochApi
266
281
  @api_client.config.logger.debug "Calling API: WebhookApi.update_webhook ..."
267
282
  end
268
283
  # verify the required parameter 'app_id' is set
269
- fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.update_webhook" if app_id.nil?
284
+ if @api_client.config.client_side_validation && app_id.nil?
285
+ fail ArgumentError, "Missing the required parameter 'app_id' when calling WebhookApi.update_webhook"
286
+ end
270
287
  # verify the required parameter 'webhook_id' is set
271
- fail ArgumentError, "Missing the required parameter 'webhook_id' when calling WebhookApi.update_webhook" if webhook_id.nil?
288
+ if @api_client.config.client_side_validation && webhook_id.nil?
289
+ fail ArgumentError, "Missing the required parameter 'webhook_id' when calling WebhookApi.update_webhook"
290
+ end
272
291
  # verify the required parameter 'webhook_update_body' is set
273
- fail ArgumentError, "Missing the required parameter 'webhook_update_body' when calling WebhookApi.update_webhook" if webhook_update_body.nil?
292
+ if @api_client.config.client_side_validation && webhook_update_body.nil?
293
+ fail ArgumentError, "Missing the required parameter 'webhook_update_body' when calling WebhookApi.update_webhook"
294
+ end
274
295
  # resource path
275
296
  local_var_path = "/apps/{appId}/webhooks/{webhookId}".sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'webhookId' + '}', webhook_id.to_s)
276
297
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -75,6 +76,11 @@ module SmoochApi
75
76
  # Default to 0 (never times out).
76
77
  attr_accessor :timeout
77
78
 
79
+ # Set this to false to skip client side validation in the operation.
80
+ # Default to true.
81
+ # @return [true, false]
82
+ attr_accessor :client_side_validation
83
+
78
84
  ### TLS/SSL setting
79
85
  # Set this to false to skip verifying SSL certificate when calling API from https server.
80
86
  # Default to true.
@@ -128,6 +134,7 @@ module SmoochApi
128
134
  @api_key = {}
129
135
  @api_key_prefix = {}
130
136
  @timeout = 0
137
+ @client_side_validation = true
131
138
  @verify_ssl = true
132
139
  @verify_ssl_host = true
133
140
  @params_encoding = nil
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12
 
@@ -3,9 +3,10 @@
3
3
 
4
4
  #The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
5
5
 
6
- OpenAPI spec version: 1.1
6
+ OpenAPI spec version: 1.2
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.2.3-SNAPSHOT
9
10
 
10
11
  =end
11
12