smplkit 3.0.8 → 3.0.9
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/billing_api.rb +0 -469
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/api/subscription_api.rb +289 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/{subscription_list_response.rb → admin_subscription_request.rb} +9 -20
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/admin_subscription_request_attributes.rb +190 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/{create_subscription_data.rb → admin_subscription_request_resource.rb} +46 -12
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/{next_tier_meta.rb → next_tier_response.rb} +6 -6
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_change_projection.rb +321 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/{create_subscription_attributes.rb → subscription_item_request.rb} +10 -21
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/{subscription_attributes.rb → subscription_item_response.rb} +66 -77
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_preview_attributes.rb +390 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_preview_resource.rb +241 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/{plan_change_request.rb → subscription_preview_response.rb} +20 -21
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/{create_subscription_body.rb → subscription_request.rb} +5 -5
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_request_attributes.rb +179 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_request_resource.rb +227 -0
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_resource.rb +4 -2
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_response.rb +1 -1
- data/lib/smplkit/_generated/app/lib/smplkit_app_client/models/{subscription_list_meta.rb → subscription_response_attributes.rb} +135 -62
- data/lib/smplkit/_generated/app/lib/smplkit_app_client.rb +15 -8
- data/lib/smplkit/_generated/app/spec/api/billing_api_spec.rb +0 -86
- data/lib/smplkit/_generated/app/spec/api/subscription_api_spec.rb +83 -0
- data/lib/smplkit/_generated/app/spec/models/{create_subscription_attributes_spec.rb → admin_subscription_request_attributes_spec.rb} +9 -9
- data/lib/smplkit/_generated/app/spec/models/admin_subscription_request_resource_spec.rb +52 -0
- data/lib/smplkit/_generated/app/spec/models/{plan_change_request_spec.rb → admin_subscription_request_spec.rb} +7 -7
- data/lib/smplkit/_generated/app/spec/models/{next_tier_meta_spec.rb → next_tier_response_spec.rb} +6 -6
- data/lib/smplkit/_generated/app/spec/models/{subscription_list_meta_spec.rb → subscription_change_projection_spec.rb} +20 -14
- data/lib/smplkit/_generated/app/spec/models/{create_subscription_data_spec.rb → subscription_item_request_spec.rb} +8 -8
- data/lib/smplkit/_generated/app/spec/models/{subscription_attributes_spec.rb → subscription_item_response_spec.rb} +12 -18
- data/lib/smplkit/_generated/app/spec/models/subscription_preview_attributes_spec.rb +88 -0
- data/lib/smplkit/_generated/app/spec/models/subscription_preview_resource_spec.rb +56 -0
- data/lib/smplkit/_generated/app/spec/models/subscription_preview_response_spec.rb +36 -0
- data/lib/smplkit/_generated/app/spec/models/{subscription_list_response_spec.rb → subscription_request_attributes_spec.rb} +8 -8
- data/lib/smplkit/_generated/app/spec/models/subscription_request_resource_spec.rb +52 -0
- data/lib/smplkit/_generated/app/spec/models/{create_subscription_body_spec.rb → subscription_request_spec.rb} +6 -6
- data/lib/smplkit/_generated/app/spec/models/subscription_response_attributes_spec.rb +100 -0
- metadata +31 -17
|
@@ -0,0 +1,56 @@
|
|
|
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::SubscriptionPreviewResource
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::App::SubscriptionPreviewResource do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SubscriptionPreviewResource.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SubscriptionPreviewResource' do
|
|
24
|
+
it 'should create an instance of SubscriptionPreviewResource' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SubscriptionPreviewResource)
|
|
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
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["preview"])
|
|
34
|
+
# validator.allowable_values.each do |value|
|
|
35
|
+
# expect { instance.id = value }.not_to raise_error
|
|
36
|
+
# end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "type"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["subscription_preview"])
|
|
44
|
+
# validator.allowable_values.each do |value|
|
|
45
|
+
# expect { instance.type = value }.not_to raise_error
|
|
46
|
+
# end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
describe 'test attribute "attributes"' do
|
|
51
|
+
it 'should work' do
|
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
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::SubscriptionPreviewResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::App::SubscriptionPreviewResponse do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SubscriptionPreviewResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SubscriptionPreviewResponse' do
|
|
24
|
+
it 'should create an instance of SubscriptionPreviewResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SubscriptionPreviewResponse)
|
|
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
|
|
@@ -14,26 +14,26 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for SmplkitGeneratedClient::App::
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::App::SubscriptionRequestAttributes
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe SmplkitGeneratedClient::App::
|
|
21
|
-
#let(:instance) { SmplkitGeneratedClient::App::
|
|
20
|
+
describe SmplkitGeneratedClient::App::SubscriptionRequestAttributes do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SubscriptionRequestAttributes.new }
|
|
22
22
|
|
|
23
|
-
describe 'test an instance of
|
|
24
|
-
it 'should create an instance of
|
|
23
|
+
describe 'test an instance of SubscriptionRequestAttributes' do
|
|
24
|
+
it 'should create an instance of SubscriptionRequestAttributes' do
|
|
25
25
|
# uncomment below to test the instance creation
|
|
26
|
-
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SubscriptionRequestAttributes)
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
describe 'test attribute "
|
|
30
|
+
describe 'test attribute "items"' do
|
|
31
31
|
it 'should work' do
|
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "payment_method"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
@@ -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::SubscriptionRequestResource
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::App::SubscriptionRequestResource do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SubscriptionRequestResource.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SubscriptionRequestResource' do
|
|
24
|
+
it 'should create an instance of SubscriptionRequestResource' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SubscriptionRequestResource)
|
|
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', ["subscription"])
|
|
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
|
|
@@ -14,16 +14,16 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for SmplkitGeneratedClient::App::
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::App::SubscriptionRequest
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe SmplkitGeneratedClient::App::
|
|
21
|
-
#let(:instance) { SmplkitGeneratedClient::App::
|
|
20
|
+
describe SmplkitGeneratedClient::App::SubscriptionRequest do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SubscriptionRequest.new }
|
|
22
22
|
|
|
23
|
-
describe 'test an instance of
|
|
24
|
-
it 'should create an instance of
|
|
23
|
+
describe 'test an instance of SubscriptionRequest' do
|
|
24
|
+
it 'should create an instance of SubscriptionRequest' do
|
|
25
25
|
# uncomment below to test the instance creation
|
|
26
|
-
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SubscriptionRequest)
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
@@ -0,0 +1,100 @@
|
|
|
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::SubscriptionResponseAttributes
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::App::SubscriptionResponseAttributes do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::App::SubscriptionResponseAttributes.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SubscriptionResponseAttributes' do
|
|
24
|
+
it 'should create an instance of SubscriptionResponseAttributes' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::App::SubscriptionResponseAttributes)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "status"' 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 "current_period_start"' 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 "current_period_end"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
describe 'test attribute "discount_pct"' do
|
|
49
|
+
it 'should work' do
|
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
describe 'test attribute "discount_source"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["VOLUME", "OVERRIDE"])
|
|
58
|
+
# validator.allowable_values.each do |value|
|
|
59
|
+
# expect { instance.discount_source = value }.not_to raise_error
|
|
60
|
+
# end
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "subtotal_cents"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe 'test attribute "discount_amount_cents"' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
describe 'test attribute "total_cents"' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "next_tier"' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe 'test attribute "payment_method"' do
|
|
89
|
+
it 'should work' do
|
|
90
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
describe 'test attribute "items"' do
|
|
95
|
+
it 'should work' do
|
|
96
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
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.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Smpl Solutions LLC
|
|
@@ -166,6 +166,7 @@ files:
|
|
|
166
166
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/plans_api.rb
|
|
167
167
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/products_api.rb
|
|
168
168
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/services_api.rb
|
|
169
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/subscription_api.rb
|
|
169
170
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api/users_api.rb
|
|
170
171
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api_client.rb
|
|
171
172
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/api_error.rb
|
|
@@ -179,6 +180,9 @@ files:
|
|
|
179
180
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/add_payment_method_attributes.rb
|
|
180
181
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/add_payment_method_body.rb
|
|
181
182
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/add_payment_method_data.rb
|
|
183
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/admin_subscription_request.rb
|
|
184
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/admin_subscription_request_attributes.rb
|
|
185
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/admin_subscription_request_resource.rb
|
|
182
186
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/api_key.rb
|
|
183
187
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/api_key_list_response.rb
|
|
184
188
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/api_key_request.rb
|
|
@@ -199,9 +203,6 @@ files:
|
|
|
199
203
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/context_type_request.rb
|
|
200
204
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/context_type_resource.rb
|
|
201
205
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/context_type_response.rb
|
|
202
|
-
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/create_subscription_attributes.rb
|
|
203
|
-
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/create_subscription_body.rb
|
|
204
|
-
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/create_subscription_data.rb
|
|
205
206
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/email.rb
|
|
206
207
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/email_resource.rb
|
|
207
208
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/email_response.rb
|
|
@@ -237,7 +238,7 @@ files:
|
|
|
237
238
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/metric_rollup_attributes.rb
|
|
238
239
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/metric_rollup_list_response.rb
|
|
239
240
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/metric_rollup_resource.rb
|
|
240
|
-
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/
|
|
241
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/next_tier_response.rb
|
|
241
242
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/oidc_provider.rb
|
|
242
243
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/page_meta.rb
|
|
243
244
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/payment_method.rb
|
|
@@ -246,7 +247,6 @@ files:
|
|
|
246
247
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/payment_method_resource.rb
|
|
247
248
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/payment_method_response.rb
|
|
248
249
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/plan.rb
|
|
249
|
-
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/plan_change_request.rb
|
|
250
250
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/plan_definition.rb
|
|
251
251
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/plan_list_response.rb
|
|
252
252
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/plan_resource.rb
|
|
@@ -262,11 +262,18 @@ files:
|
|
|
262
262
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/setup_intent_attributes.rb
|
|
263
263
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/setup_intent_resource.rb
|
|
264
264
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/setup_intent_response.rb
|
|
265
|
-
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/
|
|
266
|
-
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/
|
|
267
|
-
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/
|
|
265
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_change_projection.rb
|
|
266
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_item_request.rb
|
|
267
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_item_response.rb
|
|
268
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_preview_attributes.rb
|
|
269
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_preview_resource.rb
|
|
270
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_preview_response.rb
|
|
271
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_request.rb
|
|
272
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_request_attributes.rb
|
|
273
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_request_resource.rb
|
|
268
274
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_resource.rb
|
|
269
275
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_response.rb
|
|
276
|
+
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/subscription_response_attributes.rb
|
|
270
277
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/user.rb
|
|
271
278
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/user_list_meta.rb
|
|
272
279
|
- lib/smplkit/_generated/app/lib/smplkit_app_client/models/user_list_response.rb
|
|
@@ -290,6 +297,7 @@ files:
|
|
|
290
297
|
- lib/smplkit/_generated/app/spec/api/plans_api_spec.rb
|
|
291
298
|
- lib/smplkit/_generated/app/spec/api/products_api_spec.rb
|
|
292
299
|
- lib/smplkit/_generated/app/spec/api/services_api_spec.rb
|
|
300
|
+
- lib/smplkit/_generated/app/spec/api/subscription_api_spec.rb
|
|
293
301
|
- lib/smplkit/_generated/app/spec/api/users_api_spec.rb
|
|
294
302
|
- lib/smplkit/_generated/app/spec/models/account_request_spec.rb
|
|
295
303
|
- lib/smplkit/_generated/app/spec/models/account_resource_spec.rb
|
|
@@ -299,6 +307,9 @@ files:
|
|
|
299
307
|
- lib/smplkit/_generated/app/spec/models/add_payment_method_attributes_spec.rb
|
|
300
308
|
- lib/smplkit/_generated/app/spec/models/add_payment_method_body_spec.rb
|
|
301
309
|
- lib/smplkit/_generated/app/spec/models/add_payment_method_data_spec.rb
|
|
310
|
+
- lib/smplkit/_generated/app/spec/models/admin_subscription_request_attributes_spec.rb
|
|
311
|
+
- lib/smplkit/_generated/app/spec/models/admin_subscription_request_resource_spec.rb
|
|
312
|
+
- lib/smplkit/_generated/app/spec/models/admin_subscription_request_spec.rb
|
|
302
313
|
- lib/smplkit/_generated/app/spec/models/api_key_list_response_spec.rb
|
|
303
314
|
- lib/smplkit/_generated/app/spec/models/api_key_request_spec.rb
|
|
304
315
|
- lib/smplkit/_generated/app/spec/models/api_key_resource_spec.rb
|
|
@@ -319,9 +330,6 @@ files:
|
|
|
319
330
|
- lib/smplkit/_generated/app/spec/models/context_type_resource_spec.rb
|
|
320
331
|
- lib/smplkit/_generated/app/spec/models/context_type_response_spec.rb
|
|
321
332
|
- lib/smplkit/_generated/app/spec/models/context_type_spec.rb
|
|
322
|
-
- lib/smplkit/_generated/app/spec/models/create_subscription_attributes_spec.rb
|
|
323
|
-
- lib/smplkit/_generated/app/spec/models/create_subscription_body_spec.rb
|
|
324
|
-
- lib/smplkit/_generated/app/spec/models/create_subscription_data_spec.rb
|
|
325
333
|
- lib/smplkit/_generated/app/spec/models/email_resource_spec.rb
|
|
326
334
|
- lib/smplkit/_generated/app/spec/models/email_response_spec.rb
|
|
327
335
|
- lib/smplkit/_generated/app/spec/models/email_spec.rb
|
|
@@ -357,7 +365,7 @@ files:
|
|
|
357
365
|
- lib/smplkit/_generated/app/spec/models/metric_rollup_attributes_spec.rb
|
|
358
366
|
- lib/smplkit/_generated/app/spec/models/metric_rollup_list_response_spec.rb
|
|
359
367
|
- lib/smplkit/_generated/app/spec/models/metric_rollup_resource_spec.rb
|
|
360
|
-
- lib/smplkit/_generated/app/spec/models/
|
|
368
|
+
- lib/smplkit/_generated/app/spec/models/next_tier_response_spec.rb
|
|
361
369
|
- lib/smplkit/_generated/app/spec/models/oidc_provider_spec.rb
|
|
362
370
|
- lib/smplkit/_generated/app/spec/models/page_meta_spec.rb
|
|
363
371
|
- lib/smplkit/_generated/app/spec/models/payment_method_list_response_spec.rb
|
|
@@ -365,7 +373,6 @@ files:
|
|
|
365
373
|
- lib/smplkit/_generated/app/spec/models/payment_method_resource_spec.rb
|
|
366
374
|
- lib/smplkit/_generated/app/spec/models/payment_method_response_spec.rb
|
|
367
375
|
- lib/smplkit/_generated/app/spec/models/payment_method_spec.rb
|
|
368
|
-
- lib/smplkit/_generated/app/spec/models/plan_change_request_spec.rb
|
|
369
376
|
- lib/smplkit/_generated/app/spec/models/plan_definition_spec.rb
|
|
370
377
|
- lib/smplkit/_generated/app/spec/models/plan_list_response_spec.rb
|
|
371
378
|
- lib/smplkit/_generated/app/spec/models/plan_resource_spec.rb
|
|
@@ -382,10 +389,17 @@ files:
|
|
|
382
389
|
- lib/smplkit/_generated/app/spec/models/setup_intent_attributes_spec.rb
|
|
383
390
|
- lib/smplkit/_generated/app/spec/models/setup_intent_resource_spec.rb
|
|
384
391
|
- lib/smplkit/_generated/app/spec/models/setup_intent_response_spec.rb
|
|
385
|
-
- lib/smplkit/_generated/app/spec/models/
|
|
386
|
-
- lib/smplkit/_generated/app/spec/models/
|
|
387
|
-
- lib/smplkit/_generated/app/spec/models/
|
|
392
|
+
- lib/smplkit/_generated/app/spec/models/subscription_change_projection_spec.rb
|
|
393
|
+
- lib/smplkit/_generated/app/spec/models/subscription_item_request_spec.rb
|
|
394
|
+
- lib/smplkit/_generated/app/spec/models/subscription_item_response_spec.rb
|
|
395
|
+
- lib/smplkit/_generated/app/spec/models/subscription_preview_attributes_spec.rb
|
|
396
|
+
- lib/smplkit/_generated/app/spec/models/subscription_preview_resource_spec.rb
|
|
397
|
+
- lib/smplkit/_generated/app/spec/models/subscription_preview_response_spec.rb
|
|
398
|
+
- lib/smplkit/_generated/app/spec/models/subscription_request_attributes_spec.rb
|
|
399
|
+
- lib/smplkit/_generated/app/spec/models/subscription_request_resource_spec.rb
|
|
400
|
+
- lib/smplkit/_generated/app/spec/models/subscription_request_spec.rb
|
|
388
401
|
- lib/smplkit/_generated/app/spec/models/subscription_resource_spec.rb
|
|
402
|
+
- lib/smplkit/_generated/app/spec/models/subscription_response_attributes_spec.rb
|
|
389
403
|
- lib/smplkit/_generated/app/spec/models/subscription_response_spec.rb
|
|
390
404
|
- lib/smplkit/_generated/app/spec/models/user_list_meta_spec.rb
|
|
391
405
|
- lib/smplkit/_generated/app/spec/models/user_list_response_spec.rb
|