talon_one 1.3.0 → 1.4.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 (79) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -6
  3. data/docs/AccountAnalytics.md +1 -0
  4. data/docs/AccountLimits.md +1 -0
  5. data/docs/Application.md +1 -0
  6. data/docs/AttributesMandatory.md +9 -0
  7. data/docs/AttributesSettings.md +8 -0
  8. data/docs/BaseSamlConnection.md +15 -0
  9. data/docs/CampaignAnalytics.md +9 -3
  10. data/docs/CampaignCopy.md +4 -0
  11. data/docs/Change.md +2 -2
  12. data/docs/CustomerInventory.md +9 -0
  13. data/docs/InlineResponse20020.md +1 -1
  14. data/docs/InlineResponse20021.md +1 -1
  15. data/docs/InlineResponse20022.md +1 -1
  16. data/docs/InlineResponse20023.md +1 -1
  17. data/docs/InlineResponse20024.md +1 -1
  18. data/docs/InlineResponse20025.md +2 -3
  19. data/docs/InlineResponse20026.md +3 -2
  20. data/docs/InlineResponse20027.md +1 -1
  21. data/docs/InlineResponse20028.md +1 -1
  22. data/docs/InlineResponse20029.md +9 -0
  23. data/docs/IntegrationApi.md +66 -0
  24. data/docs/ManagementApi.md +162 -101
  25. data/docs/NewApplication.md +1 -0
  26. data/docs/NewSamlConnection.md +3 -2
  27. data/docs/SamlConnection.md +4 -5
  28. data/docs/SamlConnectionMetadata.md +11 -0
  29. data/docs/UpdateApplication.md +1 -0
  30. data/lib/talon_one.rb +6 -0
  31. data/lib/talon_one/api/integration_api.rb +60 -0
  32. data/lib/talon_one/api/management_api.rb +177 -119
  33. data/lib/talon_one/models/account_analytics.rb +19 -4
  34. data/lib/talon_one/models/account_limits.rb +11 -1
  35. data/lib/talon_one/models/application.rb +10 -1
  36. data/lib/talon_one/models/attributes_mandatory.rb +199 -0
  37. data/lib/talon_one/models/attributes_settings.rb +184 -0
  38. data/lib/talon_one/models/base_saml_connection.rb +336 -0
  39. data/lib/talon_one/models/campaign_analytics.rb +94 -4
  40. data/lib/talon_one/models/campaign_copy.rb +46 -4
  41. data/lib/talon_one/models/change.rb +2 -2
  42. data/lib/talon_one/models/customer_inventory.rb +194 -0
  43. data/lib/talon_one/models/inline_response_200_20.rb +1 -1
  44. data/lib/talon_one/models/inline_response_200_21.rb +1 -1
  45. data/lib/talon_one/models/inline_response_200_22.rb +1 -1
  46. data/lib/talon_one/models/inline_response_200_23.rb +1 -1
  47. data/lib/talon_one/models/inline_response_200_24.rb +1 -1
  48. data/lib/talon_one/models/inline_response_200_25.rb +7 -11
  49. data/lib/talon_one/models/inline_response_200_26.rb +11 -7
  50. data/lib/talon_one/models/inline_response_200_27.rb +1 -1
  51. data/lib/talon_one/models/inline_response_200_28.rb +1 -1
  52. data/lib/talon_one/models/inline_response_200_29.rb +204 -0
  53. data/lib/talon_one/models/new_application.rb +10 -1
  54. data/lib/talon_one/models/new_saml_connection.rb +58 -43
  55. data/lib/talon_one/models/saml_connection.rb +45 -78
  56. data/lib/talon_one/models/saml_connection_metadata.rb +271 -0
  57. data/lib/talon_one/models/update_application.rb +13 -4
  58. data/lib/talon_one/version.rb +1 -1
  59. data/spec/api/integration_api_spec.rb +14 -0
  60. data/spec/api/management_api_spec.rb +50 -36
  61. data/spec/models/account_analytics_spec.rb +6 -0
  62. data/spec/models/account_limits_spec.rb +6 -0
  63. data/spec/models/application_spec.rb +6 -0
  64. data/spec/models/attributes_mandatory_spec.rb +47 -0
  65. data/spec/models/attributes_settings_spec.rb +41 -0
  66. data/spec/models/base_saml_connection_spec.rb +83 -0
  67. data/spec/models/campaign_analytics_spec.rb +36 -0
  68. data/spec/models/campaign_copy_spec.rb +24 -0
  69. data/spec/models/customer_inventory_spec.rb +47 -0
  70. data/spec/models/inline_response_200_25_spec.rb +0 -6
  71. data/spec/models/inline_response_200_26_spec.rb +6 -0
  72. data/spec/models/inline_response_200_29_spec.rb +47 -0
  73. data/spec/models/new_application_spec.rb +6 -0
  74. data/spec/models/new_saml_connection_spec.rb +13 -7
  75. data/spec/models/saml_connection_metadata_spec.rb +59 -0
  76. data/spec/models/saml_connection_spec.rb +9 -15
  77. data/spec/models/update_application_spec.rb +6 -0
  78. data/talon_one-1.3.0.gem +0 -0
  79. metadata +27 -2
@@ -50,6 +50,18 @@ describe 'CampaignAnalytics' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "campaign_refund"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "total_campaign_refund"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
53
65
  describe 'test attribute "campaign_discount_costs"' do
54
66
  it 'should work' do
55
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -62,6 +74,18 @@ describe 'CampaignAnalytics' do
62
74
  end
63
75
  end
64
76
 
77
+ describe 'test attribute "campaign_refunded_discounts"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "total_campaign_refunded_discounts"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
65
89
  describe 'test attribute "campaign_free_items"' do
66
90
  it 'should work' do
67
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,6 +110,18 @@ describe 'CampaignAnalytics' do
86
110
  end
87
111
  end
88
112
 
113
+ describe 'test attribute "coupon_rolledback_redemptions"' do
114
+ it 'should work' do
115
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
+ end
117
+ end
118
+
119
+ describe 'test attribute "total_coupon_rolledback_redemptions"' do
120
+ it 'should work' do
121
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
+ end
123
+ end
124
+
89
125
  describe 'test attribute "referral_redemptions"' do
90
126
  it 'should work' do
91
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -44,4 +44,28 @@ describe 'CampaignCopy' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "description"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "start_time"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "end_time"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "tags"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
47
71
  end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #Talon.One API
3
+
4
+ #The Talon.One API is used to manage applications and campaigns, as well as to integrate with your application. The operations in the _Integration API_ section are used to integrate with our platform, while the other operations are used to manage applications and campaigns. ### Where is the API? The API is available at the same hostname as these docs. For example, if you are reading this page at `https://mycompany.talon.one/docs/api/`, the URL for the [updateCustomerProfile][] operation is `https://mycompany.talon.one/v1/customer_profiles/id` [updateCustomerProfile]: #operation--v1-customer_profiles--integrationId--put
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.7
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for TalonOne::CustomerInventory
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'CustomerInventory' do
21
+ before do
22
+ # run before each test
23
+ @instance = TalonOne::CustomerInventory.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of CustomerInventory' do
31
+ it 'should create an instance of CustomerInventory' do
32
+ expect(@instance).to be_instance_of(TalonOne::CustomerInventory)
33
+ end
34
+ end
35
+ describe 'test attribute "profile"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "referrals"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -38,12 +38,6 @@ describe 'InlineResponse20025' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "has_more"' do
42
- it 'should work' do
43
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
- end
45
- end
46
-
47
41
  describe 'test attribute "data"' do
48
42
  it 'should work' do
49
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -38,6 +38,12 @@ describe 'InlineResponse20026' do
38
38
  end
39
39
  end
40
40
 
41
+ describe 'test attribute "has_more"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
41
47
  describe 'test attribute "data"' do
42
48
  it 'should work' do
43
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #Talon.One API
3
+
4
+ #The Talon.One API is used to manage applications and campaigns, as well as to integrate with your application. The operations in the _Integration API_ section are used to integrate with our platform, while the other operations are used to manage applications and campaigns. ### Where is the API? The API is available at the same hostname as these docs. For example, if you are reading this page at `https://mycompany.talon.one/docs/api/`, the URL for the [updateCustomerProfile][] operation is `https://mycompany.talon.one/v1/customer_profiles/id` [updateCustomerProfile]: #operation--v1-customer_profiles--integrationId--put
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.7
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for TalonOne::InlineResponse20029
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'InlineResponse20029' do
21
+ before do
22
+ # run before each test
23
+ @instance = TalonOne::InlineResponse20029.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of InlineResponse20029' do
31
+ it 'should create an instance of InlineResponse20029' do
32
+ expect(@instance).to be_instance_of(TalonOne::InlineResponse20029)
33
+ end
34
+ end
35
+ describe 'test attribute "total_result_size"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "data"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -78,6 +78,12 @@ describe 'NewApplication' do
78
78
  end
79
79
  end
80
80
 
81
+ describe 'test attribute "attributes_settings"' do
82
+ it 'should work' do
83
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
84
+ end
85
+ end
86
+
81
87
  describe 'test attribute "key"' do
82
88
  it 'should work' do
83
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,6 +32,18 @@ describe 'NewSamlConnection' do
32
32
  expect(@instance).to be_instance_of(TalonOne::NewSamlConnection)
33
33
  end
34
34
  end
35
+ describe 'test attribute "x509certificate"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "account_id"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
35
47
  describe 'test attribute "name"' do
36
48
  it 'should work' do
37
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -68,13 +80,7 @@ describe 'NewSamlConnection' do
68
80
  end
69
81
  end
70
82
 
71
- describe 'test attribute "x509certificate"' do
72
- it 'should work' do
73
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
- end
75
- end
76
-
77
- describe 'test attribute "audience"' do
83
+ describe 'test attribute "audience_uri"' do
78
84
  it 'should work' do
79
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
86
  end
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Talon.One API
3
+
4
+ #The Talon.One API is used to manage applications and campaigns, as well as to integrate with your application. The operations in the _Integration API_ section are used to integrate with our platform, while the other operations are used to manage applications and campaigns. ### Where is the API? The API is available at the same hostname as these docs. For example, if you are reading this page at `https://mycompany.talon.one/docs/api/`, the URL for the [updateCustomerProfile][] operation is `https://mycompany.talon.one/v1/customer_profiles/id` [updateCustomerProfile]: #operation--v1-customer_profiles--integrationId--put
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.7
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for TalonOne::SamlConnectionMetadata
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'SamlConnectionMetadata' do
21
+ before do
22
+ # run before each test
23
+ @instance = TalonOne::SamlConnectionMetadata.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of SamlConnectionMetadata' do
31
+ it 'should create an instance of SamlConnectionMetadata' do
32
+ expect(@instance).to be_instance_of(TalonOne::SamlConnectionMetadata)
33
+ end
34
+ end
35
+ describe 'test attribute "name"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "enabled"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "account_id"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "metadata_document"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -32,13 +32,7 @@ describe 'SamlConnection' do
32
32
  expect(@instance).to be_instance_of(TalonOne::SamlConnection)
33
33
  end
34
34
  end
35
- describe 'test attribute "id"' do
36
- it 'should work' do
37
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
- end
39
- end
40
-
41
- describe 'test attribute "created"' do
35
+ describe 'test attribute "assertion_consumer_service_url"' do
42
36
  it 'should work' do
43
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
38
  end
@@ -50,12 +44,6 @@ describe 'SamlConnection' do
50
44
  end
51
45
  end
52
46
 
53
- describe 'test attribute "assertion_consumer_service_url"' do
54
- it 'should work' do
55
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
- end
57
- end
58
-
59
47
  describe 'test attribute "name"' do
60
48
  it 'should work' do
61
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -92,13 +80,19 @@ describe 'SamlConnection' do
92
80
  end
93
81
  end
94
82
 
95
- describe 'test attribute "x509certificate"' do
83
+ describe 'test attribute "audience_uri"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "id"' do
96
90
  it 'should work' do
97
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
92
  end
99
93
  end
100
94
 
101
- describe 'test attribute "audience"' do
95
+ describe 'test attribute "created"' do
102
96
  it 'should work' do
103
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
98
  end
@@ -78,4 +78,10 @@ describe 'UpdateApplication' do
78
78
  end
79
79
  end
80
80
 
81
+ describe 'test attribute "attributes_settings"' do
82
+ it 'should work' do
83
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
84
+ end
85
+ end
86
+
81
87
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: talon_one
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Talon.One GmbH
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-11 00:00:00.000000000 Z
11
+ date: 2019-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -222,6 +222,9 @@ files:
222
222
  - docs/ApplicationSessionEntity.md
223
223
  - docs/Attribute.md
224
224
  - docs/AttributeQuery.md
225
+ - docs/AttributesMandatory.md
226
+ - docs/AttributesSettings.md
227
+ - docs/BaseSamlConnection.md
225
228
  - docs/Binding.md
226
229
  - docs/Campaign.md
227
230
  - docs/CampaignAnalytics.md
@@ -245,6 +248,7 @@ files:
245
248
  - docs/CreateApplicationAPIKey.md
246
249
  - docs/CustomerActivityReport.md
247
250
  - docs/CustomerAnalytics.md
251
+ - docs/CustomerInventory.md
248
252
  - docs/CustomerProfile.md
249
253
  - docs/CustomerProfileSearchQuery.md
250
254
  - docs/CustomerSession.md
@@ -285,6 +289,7 @@ files:
285
289
  - docs/InlineResponse20026.md
286
290
  - docs/InlineResponse20027.md
287
291
  - docs/InlineResponse20028.md
292
+ - docs/InlineResponse20029.md
288
293
  - docs/InlineResponse2003.md
289
294
  - docs/InlineResponse2004.md
290
295
  - docs/InlineResponse2005.md
@@ -352,6 +357,7 @@ files:
352
357
  - docs/Rule.md
353
358
  - docs/Ruleset.md
354
359
  - docs/SamlConnection.md
360
+ - docs/SamlConnectionMetadata.md
355
361
  - docs/Session.md
356
362
  - docs/SlotDef.md
357
363
  - docs/TemplateArgDef.md
@@ -394,6 +400,9 @@ files:
394
400
  - lib/talon_one/models/application_session_entity.rb
395
401
  - lib/talon_one/models/attribute.rb
396
402
  - lib/talon_one/models/attribute_query.rb
403
+ - lib/talon_one/models/attributes_mandatory.rb
404
+ - lib/talon_one/models/attributes_settings.rb
405
+ - lib/talon_one/models/base_saml_connection.rb
397
406
  - lib/talon_one/models/binding.rb
398
407
  - lib/talon_one/models/campaign.rb
399
408
  - lib/talon_one/models/campaign_analytics.rb
@@ -417,6 +426,7 @@ files:
417
426
  - lib/talon_one/models/create_application_api_key.rb
418
427
  - lib/talon_one/models/customer_activity_report.rb
419
428
  - lib/talon_one/models/customer_analytics.rb
429
+ - lib/talon_one/models/customer_inventory.rb
420
430
  - lib/talon_one/models/customer_profile.rb
421
431
  - lib/talon_one/models/customer_profile_search_query.rb
422
432
  - lib/talon_one/models/customer_session.rb
@@ -457,6 +467,7 @@ files:
457
467
  - lib/talon_one/models/inline_response_200_26.rb
458
468
  - lib/talon_one/models/inline_response_200_27.rb
459
469
  - lib/talon_one/models/inline_response_200_28.rb
470
+ - lib/talon_one/models/inline_response_200_29.rb
460
471
  - lib/talon_one/models/inline_response_200_3.rb
461
472
  - lib/talon_one/models/inline_response_200_4.rb
462
473
  - lib/talon_one/models/inline_response_200_5.rb
@@ -522,6 +533,7 @@ files:
522
533
  - lib/talon_one/models/rule.rb
523
534
  - lib/talon_one/models/ruleset.rb
524
535
  - lib/talon_one/models/saml_connection.rb
536
+ - lib/talon_one/models/saml_connection_metadata.rb
525
537
  - lib/talon_one/models/session.rb
526
538
  - lib/talon_one/models/slot_def.rb
527
539
  - lib/talon_one/models/template_arg_def.rb
@@ -562,6 +574,9 @@ files:
562
574
  - spec/models/application_spec.rb
563
575
  - spec/models/attribute_query_spec.rb
564
576
  - spec/models/attribute_spec.rb
577
+ - spec/models/attributes_mandatory_spec.rb
578
+ - spec/models/attributes_settings_spec.rb
579
+ - spec/models/base_saml_connection_spec.rb
565
580
  - spec/models/binding_spec.rb
566
581
  - spec/models/campaign_analytics_spec.rb
567
582
  - spec/models/campaign_copy_spec.rb
@@ -585,6 +600,7 @@ files:
585
600
  - spec/models/create_application_api_key_spec.rb
586
601
  - spec/models/customer_activity_report_spec.rb
587
602
  - spec/models/customer_analytics_spec.rb
603
+ - spec/models/customer_inventory_spec.rb
588
604
  - spec/models/customer_profile_search_query_spec.rb
589
605
  - spec/models/customer_profile_spec.rb
590
606
  - spec/models/customer_session_spec.rb
@@ -623,6 +639,7 @@ files:
623
639
  - spec/models/inline_response_200_26_spec.rb
624
640
  - spec/models/inline_response_200_27_spec.rb
625
641
  - spec/models/inline_response_200_28_spec.rb
642
+ - spec/models/inline_response_200_29_spec.rb
626
643
  - spec/models/inline_response_200_2_spec.rb
627
644
  - spec/models/inline_response_200_3_spec.rb
628
645
  - spec/models/inline_response_200_4_spec.rb
@@ -689,6 +706,7 @@ files:
689
706
  - spec/models/role_spec.rb
690
707
  - spec/models/rule_spec.rb
691
708
  - spec/models/ruleset_spec.rb
709
+ - spec/models/saml_connection_metadata_spec.rb
692
710
  - spec/models/saml_connection_spec.rb
693
711
  - spec/models/session_spec.rb
694
712
  - spec/models/slot_def_spec.rb
@@ -713,6 +731,7 @@ files:
713
731
  - talon_one-1.1.1.gem
714
732
  - talon_one-1.1.2.gem
715
733
  - talon_one-1.2.0.gem
734
+ - talon_one-1.3.0.gem
716
735
  - talon_one.gemspec
717
736
  homepage: https://github.com/talon-one/talon_one.rb/
718
737
  licenses:
@@ -771,6 +790,7 @@ test_files:
771
790
  - spec/models/features_feed_spec.rb
772
791
  - spec/models/error_response_spec.rb
773
792
  - spec/models/account_limits_spec.rb
793
+ - spec/models/attributes_settings_spec.rb
774
794
  - spec/models/update_coupon_spec.rb
775
795
  - spec/models/event_type_spec.rb
776
796
  - spec/models/inline_response_200_10_spec.rb
@@ -797,6 +817,7 @@ test_files:
797
817
  - spec/models/environment_spec.rb
798
818
  - spec/models/new_feature_flags_spec.rb
799
819
  - spec/models/inline_response_200_12_spec.rb
820
+ - spec/models/base_saml_connection_spec.rb
800
821
  - spec/models/cart_item_spec.rb
801
822
  - spec/models/inline_response_200_8_spec.rb
802
823
  - spec/models/integration_entity_spec.rb
@@ -837,6 +858,8 @@ test_files:
837
858
  - spec/models/access_log_entry_spec.rb
838
859
  - spec/models/customer_profile_search_query_spec.rb
839
860
  - spec/models/inline_response_200_16_spec.rb
861
+ - spec/models/saml_connection_metadata_spec.rb
862
+ - spec/models/inline_response_200_29_spec.rb
840
863
  - spec/models/limit_config_spec.rb
841
864
  - spec/models/import_coupons_spec.rb
842
865
  - spec/models/update_application_spec.rb
@@ -846,6 +869,7 @@ test_files:
846
869
  - spec/models/inline_response_200_5_spec.rb
847
870
  - spec/models/campaign_copy_spec.rb
848
871
  - spec/models/new_account_sign_up_spec.rb
872
+ - spec/models/attributes_mandatory_spec.rb
849
873
  - spec/models/new_password_spec.rb
850
874
  - spec/models/inline_response_200_20_spec.rb
851
875
  - spec/models/new_invite_email_spec.rb
@@ -892,6 +916,7 @@ test_files:
892
916
  - spec/models/application_spec.rb
893
917
  - spec/models/integration_profile_entity_spec.rb
894
918
  - spec/models/loyalty_points_spec.rb
919
+ - spec/models/customer_inventory_spec.rb
895
920
  - spec/models/integration_state_spec.rb
896
921
  - spec/models/loyalty_program_spec.rb
897
922
  - spec/models/new_application_api_key_spec.rb