talon_one 1.1.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.
- checksums.yaml +5 -5
- data/README.md +21 -12
- data/docs/AccountAnalytics.md +1 -0
- data/docs/AccountLimits.md +1 -0
- data/docs/Application.md +2 -1
- data/docs/ApplicationCustomer.md +1 -1
- data/docs/ApplicationSession.md +2 -1
- data/docs/Attribute.md +0 -2
- data/docs/AttributesMandatory.md +9 -0
- data/docs/AttributesSettings.md +8 -0
- data/docs/BaseSamlConnection.md +15 -0
- data/docs/Campaign.md +2 -0
- data/docs/CampaignAnalytics.md +9 -3
- data/docs/CampaignCopy.md +4 -0
- data/docs/Change.md +2 -2
- data/docs/CustomerInventory.md +9 -0
- data/docs/CustomerProfile.md +1 -1
- data/docs/ErrorSource.md +1 -0
- data/docs/Event.md +1 -1
- data/docs/InlineResponse20020.md +1 -1
- data/docs/InlineResponse20021.md +1 -1
- data/docs/InlineResponse20022.md +1 -1
- data/docs/InlineResponse20023.md +1 -1
- data/docs/InlineResponse20024.md +1 -1
- data/docs/InlineResponse20025.md +1 -1
- data/docs/InlineResponse20026.md +3 -2
- data/docs/InlineResponse20027.md +1 -1
- data/docs/InlineResponse20028.md +1 -1
- data/docs/InlineResponse20029.md +9 -0
- data/docs/IntegrationApi.md +66 -0
- data/docs/IntegrationEvent.md +10 -0
- data/docs/IntegrationState.md +1 -0
- data/docs/ManagementApi.md +175 -104
- data/docs/Meta.md +1 -0
- data/docs/NewApplication.md +2 -1
- data/docs/NewEvent.md +1 -1
- data/docs/NewSamlConnection.md +16 -0
- data/docs/Notification.md +10 -0
- data/docs/{ApplicationStorageData.md → Notifications.md} +1 -1
- data/docs/ReferralRejectionReason.md +10 -0
- data/docs/SamlConnection.md +18 -0
- data/docs/SamlConnectionMetadata.md +11 -0
- data/docs/UpdateApplication.md +15 -0
- data/docs/UpdateUser.md +1 -0
- data/docs/User.md +2 -0
- data/docs/Webhook.md +0 -1
- data/lib/talon_one.rb +13 -6
- data/lib/talon_one/api/integration_api.rb +60 -0
- data/lib/talon_one/api/management_api.rb +194 -121
- data/lib/talon_one/models/account_analytics.rb +19 -4
- data/lib/talon_one/models/account_limits.rb +11 -1
- data/lib/talon_one/models/application.rb +62 -53
- data/lib/talon_one/models/application_customer.rb +0 -5
- data/lib/talon_one/models/application_session.rb +12 -2
- data/lib/talon_one/models/attribute.rb +4 -38
- data/lib/talon_one/models/attributes_mandatory.rb +199 -0
- data/lib/talon_one/models/{new_application_storage_data.rb → attributes_settings.rb} +13 -4
- data/lib/talon_one/models/{application_storage.rb → base_saml_connection.rb} +122 -78
- data/lib/talon_one/models/campaign.rb +21 -1
- data/lib/talon_one/models/campaign_analytics.rb +94 -4
- data/lib/talon_one/models/campaign_copy.rb +46 -4
- data/lib/talon_one/models/change.rb +2 -2
- data/lib/talon_one/models/coupon_rejection_reason.rb +2 -2
- data/lib/talon_one/models/customer_inventory.rb +194 -0
- data/lib/talon_one/models/customer_profile.rb +0 -5
- data/lib/talon_one/models/error_source.rb +14 -4
- data/lib/talon_one/models/event.rb +11 -35
- data/lib/talon_one/models/inline_response_200_20.rb +1 -1
- data/lib/talon_one/models/inline_response_200_21.rb +1 -1
- data/lib/talon_one/models/inline_response_200_22.rb +1 -1
- data/lib/talon_one/models/inline_response_200_23.rb +1 -1
- data/lib/talon_one/models/inline_response_200_24.rb +1 -1
- data/lib/talon_one/models/inline_response_200_25.rb +1 -1
- data/lib/talon_one/models/inline_response_200_26.rb +11 -7
- data/lib/talon_one/models/inline_response_200_27.rb +1 -1
- data/lib/talon_one/models/inline_response_200_28.rb +1 -1
- data/lib/talon_one/models/{new_application_storage_tuple.rb → inline_response_200_29.rb} +22 -40
- data/lib/talon_one/models/integration_event.rb +234 -0
- data/lib/talon_one/models/integration_state.rb +13 -4
- data/lib/talon_one/models/limit_config.rb +2 -2
- data/lib/talon_one/models/meta.rb +10 -1
- data/lib/talon_one/models/new_application.rb +57 -56
- data/lib/talon_one/models/new_event.rb +38 -38
- data/lib/talon_one/models/new_saml_connection.rb +371 -0
- data/lib/talon_one/models/{new_application_storage.rb → notification.rb} +22 -17
- data/lib/talon_one/models/{application_storage_data.rb → notifications.rb} +1 -2
- data/lib/talon_one/models/referral_rejection_reason.rb +251 -0
- data/lib/talon_one/models/saml_connection.rb +387 -0
- data/lib/talon_one/models/{application_storage_tuple.rb → saml_connection_metadata.rb} +68 -80
- data/lib/talon_one/models/update_application.rb +361 -0
- data/lib/talon_one/models/update_user.rb +13 -4
- data/lib/talon_one/models/user.rb +23 -4
- data/lib/talon_one/models/webhook.rb +4 -21
- data/lib/talon_one/version.rb +1 -1
- data/spec/api/integration_api_spec.rb +14 -0
- data/spec/api/management_api_spec.rb +56 -37
- data/spec/models/account_analytics_spec.rb +6 -0
- data/spec/models/account_limits_spec.rb +6 -0
- data/spec/models/application_session_spec.rb +6 -0
- data/spec/models/application_spec.rb +12 -6
- data/spec/models/attribute_spec.rb +0 -12
- data/spec/models/{new_application_storage_tuple_spec.rb → attributes_mandatory_spec.rb} +8 -8
- data/spec/models/{new_application_storage_data_spec.rb → attributes_settings_spec.rb} +12 -6
- data/spec/models/{application_storage_spec.rb → base_saml_connection_spec.rb} +14 -14
- data/spec/models/campaign_analytics_spec.rb +36 -0
- data/spec/models/campaign_copy_spec.rb +24 -0
- data/spec/models/campaign_spec.rb +12 -0
- data/spec/models/coupon_rejection_reason_spec.rb +1 -1
- data/spec/models/customer_inventory_spec.rb +47 -0
- data/spec/models/error_source_spec.rb +6 -0
- data/spec/models/event_spec.rb +3 -3
- data/spec/models/inline_response_200_26_spec.rb +6 -0
- data/spec/models/inline_response_200_29_spec.rb +47 -0
- data/spec/models/integration_event_spec.rb +53 -0
- data/spec/models/integration_state_spec.rb +6 -0
- data/spec/models/limit_config_spec.rb +1 -1
- data/spec/models/meta_spec.rb +6 -0
- data/spec/models/new_application_spec.rb +12 -6
- data/spec/models/new_event_spec.rb +3 -3
- data/spec/models/new_saml_connection_spec.rb +89 -0
- data/spec/models/{new_application_storage_spec.rb → notification_spec.rb} +8 -8
- data/spec/models/{application_storage_data_spec.rb → notifications_spec.rb} +6 -6
- data/spec/models/referral_rejection_reason_spec.rb +57 -0
- data/spec/models/{application_storage_tuple_spec.rb → saml_connection_metadata_spec.rb} +10 -22
- data/spec/models/saml_connection_spec.rb +101 -0
- data/spec/models/update_application_spec.rb +87 -0
- data/spec/models/update_user_spec.rb +6 -0
- data/spec/models/user_spec.rb +12 -0
- data/spec/models/webhook_spec.rb +0 -6
- data/talon_one-1.0.0.gem +0 -0
- data/talon_one-1.1.0.gem +0 -0
- data/talon_one-1.1.1.gem +0 -0
- data/talon_one-1.1.2.gem +0 -0
- data/talon_one-1.2.0.gem +0 -0
- data/talon_one-1.3.0.gem +0 -0
- data/talon_one.gemspec +1 -1
- metadata +74 -42
- data/docs/ApplicationStorage.md +0 -15
- data/docs/ApplicationStorageTuple.md +0 -13
- data/docs/NewApplicationStorage.md +0 -10
- data/docs/NewApplicationStorageData.md +0 -7
- data/docs/NewApplicationStorageTuple.md +0 -9
- data/fck.rb +0 -64
@@ -0,0 +1,101 @@
|
|
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::SamlConnection
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'SamlConnection' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TalonOne::SamlConnection.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of SamlConnection' do
|
31
|
+
it 'should create an instance of SamlConnection' do
|
32
|
+
expect(@instance).to be_instance_of(TalonOne::SamlConnection)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "assertion_consumer_service_url"' 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
|
+
|
47
|
+
describe 'test attribute "name"' 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 "enabled"' 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 "issuer"' 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 "sign_on_url"' 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
|
+
|
71
|
+
describe 'test attribute "sign_out_url"' 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 "metadata_url"' 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 "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
|
90
|
+
it 'should work' do
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
describe 'test attribute "created"' do
|
96
|
+
it 'should work' do
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
end
|
@@ -0,0 +1,87 @@
|
|
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::UpdateApplication
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UpdateApplication' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = TalonOne::UpdateApplication.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UpdateApplication' do
|
31
|
+
it 'should create an instance of UpdateApplication' do
|
32
|
+
expect(@instance).to be_instance_of(TalonOne::UpdateApplication)
|
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 "description"' 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 "timezone"' 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 "currency"' 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 "case_sensitivity"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["sensitive", "insensitive-uppercase", "insensitive-lowercase"])
|
63
|
+
# validator.allowable_values.each do |value|
|
64
|
+
# expect { @instance.case_sensitivity = value }.not_to raise_error
|
65
|
+
# end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe 'test attribute "attributes"' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe 'test attribute "limits"' do
|
76
|
+
it 'should work' do
|
77
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
78
|
+
end
|
79
|
+
end
|
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
|
+
|
87
|
+
end
|
@@ -90,4 +90,10 @@ describe 'UpdateUser' do
|
|
90
90
|
end
|
91
91
|
end
|
92
92
|
|
93
|
+
describe 'test attribute "application_notification_subscriptions"' do
|
94
|
+
it 'should work' do
|
95
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
93
99
|
end
|
data/spec/models/user_spec.rb
CHANGED
@@ -108,4 +108,16 @@ describe 'User' do
|
|
108
108
|
end
|
109
109
|
end
|
110
110
|
|
111
|
+
describe 'test attribute "application_notification_subscriptions"' do
|
112
|
+
it 'should work' do
|
113
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
describe 'test attribute "auth_method"' do
|
118
|
+
it 'should work' do
|
119
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
111
123
|
end
|
data/spec/models/webhook_spec.rb
CHANGED
data/talon_one-1.0.0.gem
ADDED
Binary file
|
data/talon_one-1.1.0.gem
ADDED
Binary file
|
data/talon_one-1.1.1.gem
ADDED
Binary file
|
data/talon_one-1.1.2.gem
ADDED
Binary file
|
data/talon_one-1.2.0.gem
ADDED
Binary file
|
data/talon_one-1.3.0.gem
ADDED
Binary file
|
data/talon_one.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
s.version = TalonOne::VERSION
|
21
21
|
s.platform = Gem::Platform::RUBY
|
22
22
|
s.authors = ["Talon.One GmbH"]
|
23
|
-
s.email = ["
|
23
|
+
s.email = ["devs@talon.one"]
|
24
24
|
s.homepage = "https://github.com/talon-one/talon_one.rb/"
|
25
25
|
s.summary = "Talon.One API Ruby Gem"
|
26
26
|
s.description = "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."
|
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.
|
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
|
+
date: 2019-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -34,42 +34,42 @@ dependencies:
|
|
34
34
|
name: json
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "~>"
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: '2.1'
|
40
37
|
- - ">="
|
41
38
|
- !ruby/object:Gem::Version
|
42
39
|
version: 2.1.0
|
40
|
+
- - "~>"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '2.1'
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - "~>"
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: '2.1'
|
50
47
|
- - ">="
|
51
48
|
- !ruby/object:Gem::Version
|
52
49
|
version: 2.1.0
|
50
|
+
- - "~>"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '2.1'
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- - "~>"
|
58
|
-
- !ruby/object:Gem::Version
|
59
|
-
version: '3.6'
|
60
57
|
- - ">="
|
61
58
|
- !ruby/object:Gem::Version
|
62
59
|
version: 3.6.0
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '3.6'
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - "~>"
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '3.6'
|
70
67
|
- - ">="
|
71
68
|
- !ruby/object:Gem::Version
|
72
69
|
version: 3.6.0
|
70
|
+
- - "~>"
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '3.6'
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: vcr
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -195,7 +195,7 @@ description: The Talon.One API is used to manage applications and campaigns, as
|
|
195
195
|
are used to integrate with our platform, while the other operations are used to
|
196
196
|
manage applications and campaigns.
|
197
197
|
email:
|
198
|
-
-
|
198
|
+
- devs@talon.one
|
199
199
|
executables: []
|
200
200
|
extensions: []
|
201
201
|
extra_rdoc_files: []
|
@@ -220,11 +220,11 @@ files:
|
|
220
220
|
- docs/ApplicationEvent.md
|
221
221
|
- docs/ApplicationSession.md
|
222
222
|
- docs/ApplicationSessionEntity.md
|
223
|
-
- docs/ApplicationStorage.md
|
224
|
-
- docs/ApplicationStorageData.md
|
225
|
-
- docs/ApplicationStorageTuple.md
|
226
223
|
- docs/Attribute.md
|
227
224
|
- docs/AttributeQuery.md
|
225
|
+
- docs/AttributesMandatory.md
|
226
|
+
- docs/AttributesSettings.md
|
227
|
+
- docs/BaseSamlConnection.md
|
228
228
|
- docs/Binding.md
|
229
229
|
- docs/Campaign.md
|
230
230
|
- docs/CampaignAnalytics.md
|
@@ -248,6 +248,7 @@ files:
|
|
248
248
|
- docs/CreateApplicationAPIKey.md
|
249
249
|
- docs/CustomerActivityReport.md
|
250
250
|
- docs/CustomerAnalytics.md
|
251
|
+
- docs/CustomerInventory.md
|
251
252
|
- docs/CustomerProfile.md
|
252
253
|
- docs/CustomerProfileSearchQuery.md
|
253
254
|
- docs/CustomerSession.md
|
@@ -288,6 +289,7 @@ files:
|
|
288
289
|
- docs/InlineResponse20026.md
|
289
290
|
- docs/InlineResponse20027.md
|
290
291
|
- docs/InlineResponse20028.md
|
292
|
+
- docs/InlineResponse20029.md
|
291
293
|
- docs/InlineResponse2003.md
|
292
294
|
- docs/InlineResponse2004.md
|
293
295
|
- docs/InlineResponse2005.md
|
@@ -297,6 +299,7 @@ files:
|
|
297
299
|
- docs/InlineResponse2009.md
|
298
300
|
- docs/IntegrationApi.md
|
299
301
|
- docs/IntegrationEntity.md
|
302
|
+
- docs/IntegrationEvent.md
|
300
303
|
- docs/IntegrationProfileEntity.md
|
301
304
|
- docs/IntegrationState.md
|
302
305
|
- docs/LedgerEntry.md
|
@@ -322,9 +325,6 @@ files:
|
|
322
325
|
- docs/NewAccountSignUp.md
|
323
326
|
- docs/NewApplication.md
|
324
327
|
- docs/NewApplicationAPIKey.md
|
325
|
-
- docs/NewApplicationStorage.md
|
326
|
-
- docs/NewApplicationStorageData.md
|
327
|
-
- docs/NewApplicationStorageTuple.md
|
328
328
|
- docs/NewAttribute.md
|
329
329
|
- docs/NewCampaign.md
|
330
330
|
- docs/NewCampaignSet.md
|
@@ -343,20 +343,27 @@ files:
|
|
343
343
|
- docs/NewReferral.md
|
344
344
|
- docs/NewRole.md
|
345
345
|
- docs/NewRuleset.md
|
346
|
+
- docs/NewSamlConnection.md
|
346
347
|
- docs/NewTemplateDef.md
|
347
348
|
- docs/NewUser.md
|
348
349
|
- docs/NewWebhook.md
|
350
|
+
- docs/Notification.md
|
351
|
+
- docs/Notifications.md
|
349
352
|
- docs/Referral.md
|
353
|
+
- docs/ReferralRejectionReason.md
|
350
354
|
- docs/Role.md
|
351
355
|
- docs/RoleAssign.md
|
352
356
|
- docs/RoleMembership.md
|
353
357
|
- docs/Rule.md
|
354
358
|
- docs/Ruleset.md
|
359
|
+
- docs/SamlConnection.md
|
360
|
+
- docs/SamlConnectionMetadata.md
|
355
361
|
- docs/Session.md
|
356
362
|
- docs/SlotDef.md
|
357
363
|
- docs/TemplateArgDef.md
|
358
364
|
- docs/TemplateDef.md
|
359
365
|
- docs/UpdateAccount.md
|
366
|
+
- docs/UpdateApplication.md
|
360
367
|
- docs/UpdateCampaign.md
|
361
368
|
- docs/UpdateCoupon.md
|
362
369
|
- docs/UpdateCouponBatch.md
|
@@ -368,7 +375,6 @@ files:
|
|
368
375
|
- docs/Webhook.md
|
369
376
|
- docs/WebhookActivationLogEntry.md
|
370
377
|
- docs/WebhookLogEntry.md
|
371
|
-
- fck.rb
|
372
378
|
- git_push.sh
|
373
379
|
- lib/talon_one.rb
|
374
380
|
- lib/talon_one/api/integration_api.rb
|
@@ -392,11 +398,11 @@ files:
|
|
392
398
|
- lib/talon_one/models/application_event.rb
|
393
399
|
- lib/talon_one/models/application_session.rb
|
394
400
|
- lib/talon_one/models/application_session_entity.rb
|
395
|
-
- lib/talon_one/models/application_storage.rb
|
396
|
-
- lib/talon_one/models/application_storage_data.rb
|
397
|
-
- lib/talon_one/models/application_storage_tuple.rb
|
398
401
|
- lib/talon_one/models/attribute.rb
|
399
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
|
400
406
|
- lib/talon_one/models/binding.rb
|
401
407
|
- lib/talon_one/models/campaign.rb
|
402
408
|
- lib/talon_one/models/campaign_analytics.rb
|
@@ -420,6 +426,7 @@ files:
|
|
420
426
|
- lib/talon_one/models/create_application_api_key.rb
|
421
427
|
- lib/talon_one/models/customer_activity_report.rb
|
422
428
|
- lib/talon_one/models/customer_analytics.rb
|
429
|
+
- lib/talon_one/models/customer_inventory.rb
|
423
430
|
- lib/talon_one/models/customer_profile.rb
|
424
431
|
- lib/talon_one/models/customer_profile_search_query.rb
|
425
432
|
- lib/talon_one/models/customer_session.rb
|
@@ -460,6 +467,7 @@ files:
|
|
460
467
|
- lib/talon_one/models/inline_response_200_26.rb
|
461
468
|
- lib/talon_one/models/inline_response_200_27.rb
|
462
469
|
- lib/talon_one/models/inline_response_200_28.rb
|
470
|
+
- lib/talon_one/models/inline_response_200_29.rb
|
463
471
|
- lib/talon_one/models/inline_response_200_3.rb
|
464
472
|
- lib/talon_one/models/inline_response_200_4.rb
|
465
473
|
- lib/talon_one/models/inline_response_200_5.rb
|
@@ -468,6 +476,7 @@ files:
|
|
468
476
|
- lib/talon_one/models/inline_response_200_8.rb
|
469
477
|
- lib/talon_one/models/inline_response_200_9.rb
|
470
478
|
- lib/talon_one/models/integration_entity.rb
|
479
|
+
- lib/talon_one/models/integration_event.rb
|
471
480
|
- lib/talon_one/models/integration_profile_entity.rb
|
472
481
|
- lib/talon_one/models/integration_state.rb
|
473
482
|
- lib/talon_one/models/ledger_entry.rb
|
@@ -492,9 +501,6 @@ files:
|
|
492
501
|
- lib/talon_one/models/new_account_sign_up.rb
|
493
502
|
- lib/talon_one/models/new_application.rb
|
494
503
|
- lib/talon_one/models/new_application_api_key.rb
|
495
|
-
- lib/talon_one/models/new_application_storage.rb
|
496
|
-
- lib/talon_one/models/new_application_storage_data.rb
|
497
|
-
- lib/talon_one/models/new_application_storage_tuple.rb
|
498
504
|
- lib/talon_one/models/new_attribute.rb
|
499
505
|
- lib/talon_one/models/new_campaign.rb
|
500
506
|
- lib/talon_one/models/new_campaign_set.rb
|
@@ -513,20 +519,27 @@ files:
|
|
513
519
|
- lib/talon_one/models/new_referral.rb
|
514
520
|
- lib/talon_one/models/new_role.rb
|
515
521
|
- lib/talon_one/models/new_ruleset.rb
|
522
|
+
- lib/talon_one/models/new_saml_connection.rb
|
516
523
|
- lib/talon_one/models/new_template_def.rb
|
517
524
|
- lib/talon_one/models/new_user.rb
|
518
525
|
- lib/talon_one/models/new_webhook.rb
|
526
|
+
- lib/talon_one/models/notification.rb
|
527
|
+
- lib/talon_one/models/notifications.rb
|
519
528
|
- lib/talon_one/models/referral.rb
|
529
|
+
- lib/talon_one/models/referral_rejection_reason.rb
|
520
530
|
- lib/talon_one/models/role.rb
|
521
531
|
- lib/talon_one/models/role_assign.rb
|
522
532
|
- lib/talon_one/models/role_membership.rb
|
523
533
|
- lib/talon_one/models/rule.rb
|
524
534
|
- lib/talon_one/models/ruleset.rb
|
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
|
528
540
|
- lib/talon_one/models/template_def.rb
|
529
541
|
- lib/talon_one/models/update_account.rb
|
542
|
+
- lib/talon_one/models/update_application.rb
|
530
543
|
- lib/talon_one/models/update_campaign.rb
|
531
544
|
- lib/talon_one/models/update_coupon.rb
|
532
545
|
- lib/talon_one/models/update_coupon_batch.rb
|
@@ -559,11 +572,11 @@ files:
|
|
559
572
|
- spec/models/application_session_entity_spec.rb
|
560
573
|
- spec/models/application_session_spec.rb
|
561
574
|
- spec/models/application_spec.rb
|
562
|
-
- spec/models/application_storage_data_spec.rb
|
563
|
-
- spec/models/application_storage_spec.rb
|
564
|
-
- spec/models/application_storage_tuple_spec.rb
|
565
575
|
- spec/models/attribute_query_spec.rb
|
566
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
|
567
580
|
- spec/models/binding_spec.rb
|
568
581
|
- spec/models/campaign_analytics_spec.rb
|
569
582
|
- spec/models/campaign_copy_spec.rb
|
@@ -587,6 +600,7 @@ files:
|
|
587
600
|
- spec/models/create_application_api_key_spec.rb
|
588
601
|
- spec/models/customer_activity_report_spec.rb
|
589
602
|
- spec/models/customer_analytics_spec.rb
|
603
|
+
- spec/models/customer_inventory_spec.rb
|
590
604
|
- spec/models/customer_profile_search_query_spec.rb
|
591
605
|
- spec/models/customer_profile_spec.rb
|
592
606
|
- spec/models/customer_session_spec.rb
|
@@ -625,6 +639,7 @@ files:
|
|
625
639
|
- spec/models/inline_response_200_26_spec.rb
|
626
640
|
- spec/models/inline_response_200_27_spec.rb
|
627
641
|
- spec/models/inline_response_200_28_spec.rb
|
642
|
+
- spec/models/inline_response_200_29_spec.rb
|
628
643
|
- spec/models/inline_response_200_2_spec.rb
|
629
644
|
- spec/models/inline_response_200_3_spec.rb
|
630
645
|
- spec/models/inline_response_200_4_spec.rb
|
@@ -635,6 +650,7 @@ files:
|
|
635
650
|
- spec/models/inline_response_200_9_spec.rb
|
636
651
|
- spec/models/inline_response_200_spec.rb
|
637
652
|
- spec/models/integration_entity_spec.rb
|
653
|
+
- spec/models/integration_event_spec.rb
|
638
654
|
- spec/models/integration_profile_entity_spec.rb
|
639
655
|
- spec/models/integration_state_spec.rb
|
640
656
|
- spec/models/ledger_entry_spec.rb
|
@@ -659,9 +675,6 @@ files:
|
|
659
675
|
- spec/models/new_account_spec.rb
|
660
676
|
- spec/models/new_application_api_key_spec.rb
|
661
677
|
- spec/models/new_application_spec.rb
|
662
|
-
- spec/models/new_application_storage_data_spec.rb
|
663
|
-
- spec/models/new_application_storage_spec.rb
|
664
|
-
- spec/models/new_application_storage_tuple_spec.rb
|
665
678
|
- spec/models/new_attribute_spec.rb
|
666
679
|
- spec/models/new_campaign_set_spec.rb
|
667
680
|
- spec/models/new_campaign_spec.rb
|
@@ -680,20 +693,27 @@ files:
|
|
680
693
|
- spec/models/new_referral_spec.rb
|
681
694
|
- spec/models/new_role_spec.rb
|
682
695
|
- spec/models/new_ruleset_spec.rb
|
696
|
+
- spec/models/new_saml_connection_spec.rb
|
683
697
|
- spec/models/new_template_def_spec.rb
|
684
698
|
- spec/models/new_user_spec.rb
|
685
699
|
- spec/models/new_webhook_spec.rb
|
700
|
+
- spec/models/notification_spec.rb
|
701
|
+
- spec/models/notifications_spec.rb
|
702
|
+
- spec/models/referral_rejection_reason_spec.rb
|
686
703
|
- spec/models/referral_spec.rb
|
687
704
|
- spec/models/role_assign_spec.rb
|
688
705
|
- spec/models/role_membership_spec.rb
|
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
|
710
|
+
- spec/models/saml_connection_spec.rb
|
692
711
|
- spec/models/session_spec.rb
|
693
712
|
- spec/models/slot_def_spec.rb
|
694
713
|
- spec/models/template_arg_def_spec.rb
|
695
714
|
- spec/models/template_def_spec.rb
|
696
715
|
- spec/models/update_account_spec.rb
|
716
|
+
- spec/models/update_application_spec.rb
|
697
717
|
- spec/models/update_campaign_spec.rb
|
698
718
|
- spec/models/update_coupon_batch_spec.rb
|
699
719
|
- spec/models/update_coupon_spec.rb
|
@@ -706,6 +726,12 @@ files:
|
|
706
726
|
- spec/models/webhook_log_entry_spec.rb
|
707
727
|
- spec/models/webhook_spec.rb
|
708
728
|
- spec/spec_helper.rb
|
729
|
+
- talon_one-1.0.0.gem
|
730
|
+
- talon_one-1.1.0.gem
|
731
|
+
- talon_one-1.1.1.gem
|
732
|
+
- talon_one-1.1.2.gem
|
733
|
+
- talon_one-1.2.0.gem
|
734
|
+
- talon_one-1.3.0.gem
|
709
735
|
- talon_one.gemspec
|
710
736
|
homepage: https://github.com/talon-one/talon_one.rb/
|
711
737
|
licenses:
|
@@ -726,8 +752,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
726
752
|
- !ruby/object:Gem::Version
|
727
753
|
version: '0'
|
728
754
|
requirements: []
|
729
|
-
|
730
|
-
rubygems_version: 2.5.2.3
|
755
|
+
rubygems_version: 3.0.3
|
731
756
|
signing_key:
|
732
757
|
specification_version: 4
|
733
758
|
summary: Talon.One API Ruby Gem
|
@@ -736,6 +761,8 @@ test_files:
|
|
736
761
|
- spec/api/management_api_spec.rb
|
737
762
|
- spec/api_client_spec.rb
|
738
763
|
- spec/configuration_spec.rb
|
764
|
+
- spec/models/saml_connection_spec.rb
|
765
|
+
- spec/models/notification_spec.rb
|
739
766
|
- spec/models/new_customer_profile_spec.rb
|
740
767
|
- spec/models/inline_response_200_27_spec.rb
|
741
768
|
- spec/models/webhook_spec.rb
|
@@ -760,10 +787,10 @@ test_files:
|
|
760
787
|
- spec/models/coupon_rejection_reason_spec.rb
|
761
788
|
- spec/models/application_session_entity_spec.rb
|
762
789
|
- spec/models/loyalty_membership_spec.rb
|
763
|
-
- spec/models/application_storage_tuple_spec.rb
|
764
790
|
- spec/models/features_feed_spec.rb
|
765
791
|
- spec/models/error_response_spec.rb
|
766
792
|
- spec/models/account_limits_spec.rb
|
793
|
+
- spec/models/attributes_settings_spec.rb
|
767
794
|
- spec/models/update_coupon_spec.rb
|
768
795
|
- spec/models/event_type_spec.rb
|
769
796
|
- spec/models/inline_response_200_10_spec.rb
|
@@ -777,17 +804,20 @@ test_files:
|
|
777
804
|
- spec/models/inline_response_200_26_spec.rb
|
778
805
|
- spec/models/application_session_spec.rb
|
779
806
|
- spec/models/new_loyalty_program_spec.rb
|
807
|
+
- spec/models/referral_rejection_reason_spec.rb
|
780
808
|
- spec/models/loyalty_ledger_spec.rb
|
781
809
|
- spec/models/new_application_spec.rb
|
782
810
|
- spec/models/role_assign_spec.rb
|
783
811
|
- spec/models/new_campaign_set_spec.rb
|
784
812
|
- spec/models/inline_response_200_3_spec.rb
|
785
813
|
- spec/models/inline_response_200_19_spec.rb
|
814
|
+
- spec/models/integration_event_spec.rb
|
786
815
|
- spec/models/new_referral_spec.rb
|
787
816
|
- spec/models/coupon_search_spec.rb
|
788
817
|
- spec/models/environment_spec.rb
|
789
818
|
- spec/models/new_feature_flags_spec.rb
|
790
819
|
- spec/models/inline_response_200_12_spec.rb
|
820
|
+
- spec/models/base_saml_connection_spec.rb
|
791
821
|
- spec/models/cart_item_spec.rb
|
792
822
|
- spec/models/inline_response_200_8_spec.rb
|
793
823
|
- spec/models/integration_entity_spec.rb
|
@@ -804,7 +834,6 @@ test_files:
|
|
804
834
|
- spec/models/new_event_type_spec.rb
|
805
835
|
- spec/models/update_campaign_spec.rb
|
806
836
|
- spec/models/inline_response_200_25_spec.rb
|
807
|
-
- spec/models/application_storage_spec.rb
|
808
837
|
- spec/models/campaign_set_leaf_node_spec.rb
|
809
838
|
- spec/models/export_spec.rb
|
810
839
|
- spec/models/manager_config_spec.rb
|
@@ -821,7 +850,6 @@ test_files:
|
|
821
850
|
- spec/models/inline_response_200_9_spec.rb
|
822
851
|
- spec/models/application_event_spec.rb
|
823
852
|
- spec/models/feature_flag_spec.rb
|
824
|
-
- spec/models/application_storage_data_spec.rb
|
825
853
|
- spec/models/loyalty_program_ledgers_spec.rb
|
826
854
|
- spec/models/campaign_entity_spec.rb
|
827
855
|
- spec/models/cart_item_adjustment_spec.rb
|
@@ -830,14 +858,18 @@ test_files:
|
|
830
858
|
- spec/models/access_log_entry_spec.rb
|
831
859
|
- spec/models/customer_profile_search_query_spec.rb
|
832
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
|
833
863
|
- spec/models/limit_config_spec.rb
|
834
864
|
- spec/models/import_coupons_spec.rb
|
865
|
+
- spec/models/update_application_spec.rb
|
835
866
|
- spec/models/slot_def_spec.rb
|
836
867
|
- spec/models/new_ruleset_spec.rb
|
837
868
|
- spec/models/coupon_spec.rb
|
838
869
|
- spec/models/inline_response_200_5_spec.rb
|
839
870
|
- spec/models/campaign_copy_spec.rb
|
840
871
|
- spec/models/new_account_sign_up_spec.rb
|
872
|
+
- spec/models/attributes_mandatory_spec.rb
|
841
873
|
- spec/models/new_password_spec.rb
|
842
874
|
- spec/models/inline_response_200_20_spec.rb
|
843
875
|
- spec/models/new_invite_email_spec.rb
|
@@ -871,10 +903,10 @@ test_files:
|
|
871
903
|
- spec/models/new_customer_session_spec.rb
|
872
904
|
- spec/models/update_user_spec.rb
|
873
905
|
- spec/models/inline_response_200_23_spec.rb
|
906
|
+
- spec/models/new_saml_connection_spec.rb
|
874
907
|
- spec/models/inline_response_200_15_spec.rb
|
875
908
|
- spec/models/error_source_spec.rb
|
876
909
|
- spec/models/role_membership_spec.rb
|
877
|
-
- spec/models/new_application_storage_spec.rb
|
878
910
|
- spec/models/loyalty_program_balance_spec.rb
|
879
911
|
- spec/models/user_spec.rb
|
880
912
|
- spec/models/new_webhook_spec.rb
|
@@ -884,16 +916,16 @@ test_files:
|
|
884
916
|
- spec/models/application_spec.rb
|
885
917
|
- spec/models/integration_profile_entity_spec.rb
|
886
918
|
- spec/models/loyalty_points_spec.rb
|
919
|
+
- spec/models/customer_inventory_spec.rb
|
887
920
|
- spec/models/integration_state_spec.rb
|
888
921
|
- spec/models/loyalty_program_spec.rb
|
889
|
-
- spec/models/new_application_storage_data_spec.rb
|
890
922
|
- spec/models/new_application_api_key_spec.rb
|
891
923
|
- spec/models/new_account_spec.rb
|
892
924
|
- spec/models/multi_application_entity_spec.rb
|
893
925
|
- spec/models/update_account_spec.rb
|
894
926
|
- spec/models/template_def_spec.rb
|
927
|
+
- spec/models/notifications_spec.rb
|
895
928
|
- spec/models/inline_response_200_7_spec.rb
|
896
|
-
- spec/models/new_application_storage_tuple_spec.rb
|
897
929
|
- spec/models/new_role_spec.rb
|
898
930
|
- spec/models/inline_response_200_22_spec.rb
|
899
931
|
- spec/models/account_analytics_spec.rb
|