smplkit 3.0.64 → 3.0.65
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 +4 -4
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/api/sso_api.rb +461 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_connection.rb +445 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_connection_request.rb +165 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_connection_resource.rb +225 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_connection_response.rb +165 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain.rb +228 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain_list_response.rb +193 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain_request.rb +165 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain_resource.rb +225 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain_response.rb +165 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client.rb +10 -0
- data/lib/smplkit/_generated/app/spec/api/sso_api_spec.rb +117 -0
- data/lib/smplkit/_generated/app/spec/models/sso_connection_request_spec.rb +36 -0
- data/lib/smplkit/_generated/app/spec/models/sso_connection_resource_spec.rb +52 -0
- data/lib/smplkit/_generated/app/spec/models/sso_connection_response_spec.rb +36 -0
- data/lib/smplkit/_generated/app/spec/models/sso_connection_spec.rb +138 -0
- data/lib/smplkit/_generated/app/spec/models/sso_domain_list_response_spec.rb +42 -0
- data/lib/smplkit/_generated/app/spec/models/sso_domain_request_spec.rb +36 -0
- data/lib/smplkit/_generated/app/spec/models/sso_domain_resource_spec.rb +52 -0
- data/lib/smplkit/_generated/app/spec/models/sso_domain_response_spec.rb +36 -0
- data/lib/smplkit/_generated/app/spec/models/sso_domain_spec.rb +64 -0
- metadata +21 -1
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit API
|
|
3
|
+
|
|
4
|
+
#API for the smplkit platform.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::App::SSODomainResource
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::App::SSODomainResource do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SSODomainResource.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SSODomainResource' do
|
|
24
|
+
it 'should create an instance of SSODomainResource' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SSODomainResource)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "id"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "type"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["sso_domain"])
|
|
40
|
+
# validator.allowable_values.each do |value|
|
|
41
|
+
# expect { instance.type = value }.not_to raise_error
|
|
42
|
+
# end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "attributes"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit API
|
|
3
|
+
|
|
4
|
+
#API for the smplkit platform.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::App::SSODomainResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::App::SSODomainResponse do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SSODomainResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SSODomainResponse' do
|
|
24
|
+
it 'should create an instance of SSODomainResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SSODomainResponse)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "data"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
end
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit API
|
|
3
|
+
|
|
4
|
+
#API for the smplkit platform.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::App::SSODomain
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::App::SSODomain do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SSODomain.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SSODomain' do
|
|
24
|
+
it 'should create an instance of SSODomain' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SSODomain)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "dns_txt_token"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "verified_at"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
describe 'test attribute "status"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["pending", "verified"])
|
|
46
|
+
# validator.allowable_values.each do |value|
|
|
47
|
+
# expect { instance.status = value }.not_to raise_error
|
|
48
|
+
# end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "created_at"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "updated_at"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: smplkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.65
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Smpl Solutions LLC
|
|
@@ -168,6 +168,7 @@ files:
|
|
|
168
168
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/plans_api.rb
|
|
169
169
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/products_api.rb
|
|
170
170
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/services_api.rb
|
|
171
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/sso_api.rb
|
|
171
172
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/subscription_api.rb
|
|
172
173
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/users_api.rb
|
|
173
174
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api_client.rb
|
|
@@ -275,6 +276,15 @@ files:
|
|
|
275
276
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/setup_intent_attributes.rb
|
|
276
277
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/setup_intent_resource.rb
|
|
277
278
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/setup_intent_response.rb
|
|
279
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_connection.rb
|
|
280
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_connection_request.rb
|
|
281
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_connection_resource.rb
|
|
282
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_connection_response.rb
|
|
283
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain.rb
|
|
284
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain_list_response.rb
|
|
285
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain_request.rb
|
|
286
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain_resource.rb
|
|
287
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/sso_domain_response.rb
|
|
278
288
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_change_projection.rb
|
|
279
289
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_item_request.rb
|
|
280
290
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_item_response.rb
|
|
@@ -311,6 +321,7 @@ files:
|
|
|
311
321
|
- lib/smplkit/_generated/app/spec/api/plans_api_spec.rb
|
|
312
322
|
- lib/smplkit/_generated/app/spec/api/products_api_spec.rb
|
|
313
323
|
- lib/smplkit/_generated/app/spec/api/services_api_spec.rb
|
|
324
|
+
- lib/smplkit/_generated/app/spec/api/sso_api_spec.rb
|
|
314
325
|
- lib/smplkit/_generated/app/spec/api/subscription_api_spec.rb
|
|
315
326
|
- lib/smplkit/_generated/app/spec/api/users_api_spec.rb
|
|
316
327
|
- lib/smplkit/_generated/app/spec/models/account_request_spec.rb
|
|
@@ -414,6 +425,15 @@ files:
|
|
|
414
425
|
- lib/smplkit/_generated/app/spec/models/setup_intent_attributes_spec.rb
|
|
415
426
|
- lib/smplkit/_generated/app/spec/models/setup_intent_resource_spec.rb
|
|
416
427
|
- lib/smplkit/_generated/app/spec/models/setup_intent_response_spec.rb
|
|
428
|
+
- lib/smplkit/_generated/app/spec/models/sso_connection_request_spec.rb
|
|
429
|
+
- lib/smplkit/_generated/app/spec/models/sso_connection_resource_spec.rb
|
|
430
|
+
- lib/smplkit/_generated/app/spec/models/sso_connection_response_spec.rb
|
|
431
|
+
- lib/smplkit/_generated/app/spec/models/sso_connection_spec.rb
|
|
432
|
+
- lib/smplkit/_generated/app/spec/models/sso_domain_list_response_spec.rb
|
|
433
|
+
- lib/smplkit/_generated/app/spec/models/sso_domain_request_spec.rb
|
|
434
|
+
- lib/smplkit/_generated/app/spec/models/sso_domain_resource_spec.rb
|
|
435
|
+
- lib/smplkit/_generated/app/spec/models/sso_domain_response_spec.rb
|
|
436
|
+
- lib/smplkit/_generated/app/spec/models/sso_domain_spec.rb
|
|
417
437
|
- lib/smplkit/_generated/app/spec/models/subscription_change_projection_spec.rb
|
|
418
438
|
- lib/smplkit/_generated/app/spec/models/subscription_item_request_spec.rb
|
|
419
439
|
- lib/smplkit/_generated/app/spec/models/subscription_item_response_spec.rb
|