terminal-shop 0.1.0.pre.alpha.15 → 1.0.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 (73) hide show
  1. checksums.yaml +4 -4
  2. data/lib/terminal-shop/base_client.rb +35 -55
  3. data/lib/terminal-shop/base_model.rb +9 -0
  4. data/lib/terminal-shop/base_page.rb +2 -2
  5. data/lib/terminal-shop/client.rb +1 -1
  6. data/lib/terminal-shop/errors.rb +3 -2
  7. data/lib/terminal-shop/models/address_get_params.rb +18 -0
  8. data/lib/terminal-shop/models/address_get_response.rb +20 -0
  9. data/lib/terminal-shop/models/app_create_params.rb +14 -2
  10. data/lib/terminal-shop/models/card_get_params.rb +18 -0
  11. data/lib/terminal-shop/models/card_get_response.rb +20 -0
  12. data/lib/terminal-shop/models/product.rb +63 -42
  13. data/lib/terminal-shop/models/product_get_params.rb +18 -0
  14. data/lib/terminal-shop/models/product_get_response.rb +20 -0
  15. data/lib/terminal-shop/models/profile_update_params.rb +7 -9
  16. data/lib/terminal-shop/models/subscription.rb +0 -10
  17. data/lib/terminal-shop/models/subscription_get_params.rb +18 -0
  18. data/lib/terminal-shop/models/subscription_get_response.rb +20 -0
  19. data/lib/terminal-shop/pooled_net_requester.rb +14 -9
  20. data/lib/terminal-shop/resources/address.rb +19 -0
  21. data/lib/terminal-shop/resources/app.rb +2 -6
  22. data/lib/terminal-shop/resources/card.rb +19 -0
  23. data/lib/terminal-shop/resources/product.rb +19 -0
  24. data/lib/terminal-shop/resources/profile.rb +3 -3
  25. data/lib/terminal-shop/resources/subscription.rb +19 -0
  26. data/lib/terminal-shop/util.rb +135 -1
  27. data/lib/terminal-shop/version.rb +1 -1
  28. data/lib/terminal-shop.rb +9 -1
  29. data/rbi/lib/terminal-shop/base_client.rbi +6 -14
  30. data/rbi/lib/terminal-shop/base_page.rbi +2 -2
  31. data/rbi/lib/terminal-shop/errors.rbi +3 -2
  32. data/rbi/lib/terminal-shop/models/address_get_params.rbi +18 -0
  33. data/rbi/lib/terminal-shop/models/address_get_response.rbi +23 -0
  34. data/rbi/lib/terminal-shop/models/app_create_params.rbi +29 -4
  35. data/rbi/lib/terminal-shop/models/card_get_params.rbi +18 -0
  36. data/rbi/lib/terminal-shop/models/card_get_response.rbi +23 -0
  37. data/rbi/lib/terminal-shop/models/product.rbi +70 -24
  38. data/rbi/lib/terminal-shop/models/product_get_params.rbi +18 -0
  39. data/rbi/lib/terminal-shop/models/product_get_response.rbi +23 -0
  40. data/rbi/lib/terminal-shop/models/profile_update_params.rbi +8 -13
  41. data/rbi/lib/terminal-shop/models/subscription_get_params.rbi +18 -0
  42. data/rbi/lib/terminal-shop/models/subscription_get_response.rbi +23 -0
  43. data/rbi/lib/terminal-shop/resources/address.rbi +10 -0
  44. data/rbi/lib/terminal-shop/resources/app.rbi +1 -3
  45. data/rbi/lib/terminal-shop/resources/card.rbi +10 -0
  46. data/rbi/lib/terminal-shop/resources/product.rbi +10 -0
  47. data/rbi/lib/terminal-shop/resources/profile.rbi +3 -3
  48. data/rbi/lib/terminal-shop/resources/subscription.rbi +10 -0
  49. data/rbi/lib/terminal-shop/util.rbi +29 -0
  50. data/rbi/lib/terminal-shop/version.rbi +1 -1
  51. data/sig/terminal-shop/base_client.rbs +3 -7
  52. data/sig/terminal-shop/base_page.rbs +1 -1
  53. data/sig/terminal-shop/errors.rbs +2 -1
  54. data/sig/terminal-shop/models/address_get_params.rbs +19 -0
  55. data/sig/terminal-shop/models/address_get_response.rbs +18 -0
  56. data/sig/terminal-shop/models/app_create_params.rbs +12 -3
  57. data/sig/terminal-shop/models/card_get_params.rbs +18 -0
  58. data/sig/terminal-shop/models/card_get_response.rbs +18 -0
  59. data/sig/terminal-shop/models/product.rbs +52 -17
  60. data/sig/terminal-shop/models/product_get_params.rbs +19 -0
  61. data/sig/terminal-shop/models/product_get_response.rbs +18 -0
  62. data/sig/terminal-shop/models/profile_update_params.rbs +5 -5
  63. data/sig/terminal-shop/models/subscription_get_params.rbs +19 -0
  64. data/sig/terminal-shop/models/subscription_get_response.rbs +19 -0
  65. data/sig/terminal-shop/resources/address.rbs +10 -0
  66. data/sig/terminal-shop/resources/app.rbs +0 -2
  67. data/sig/terminal-shop/resources/card.rbs +10 -0
  68. data/sig/terminal-shop/resources/product.rbs +10 -0
  69. data/sig/terminal-shop/resources/profile.rbs +3 -4
  70. data/sig/terminal-shop/resources/subscription.rbs +11 -0
  71. data/sig/terminal-shop/util.rbs +19 -0
  72. data/sig/terminal-shop/version.rbs +1 -1
  73. metadata +28 -4
@@ -4,12 +4,11 @@ module TerminalShop
4
4
  {
5
5
  id: String,
6
6
  description: String,
7
- filters: ::Array[TerminalShop::Models::ProductAPI::filter],
8
7
  name: String,
9
8
  variants: ::Array[TerminalShop::Models::ProductVariant],
10
9
  order: Integer,
11
10
  subscription: TerminalShop::Models::ProductAPI::subscription,
12
- tags: ::Hash[Symbol, String]
11
+ tags: TerminalShop::Models::ProductAPI::Tags
13
12
  }
14
13
 
15
14
  class ProductAPI < TerminalShop::BaseModel
@@ -17,8 +16,6 @@ module TerminalShop
17
16
 
18
17
  attr_accessor description: String
19
18
 
20
- attr_accessor filters: ::Array[TerminalShop::Models::ProductAPI::filter]
21
-
22
19
  attr_accessor name: String
23
20
 
24
21
  attr_accessor variants: ::Array[TerminalShop::Models::ProductVariant]
@@ -33,20 +30,21 @@ module TerminalShop
33
30
  TerminalShop::Models::ProductAPI::subscription
34
31
  ) -> TerminalShop::Models::ProductAPI::subscription
35
32
 
36
- attr_reader tags: ::Hash[Symbol, String]?
33
+ attr_reader tags: TerminalShop::Models::ProductAPI::Tags?
37
34
 
38
- def tags=: (::Hash[Symbol, String]) -> ::Hash[Symbol, String]
35
+ def tags=: (
36
+ TerminalShop::Models::ProductAPI::Tags
37
+ ) -> TerminalShop::Models::ProductAPI::Tags
39
38
 
40
39
  def initialize:
41
40
  (
42
41
  id: String,
43
42
  description: String,
44
- filters: ::Array[TerminalShop::Models::ProductAPI::filter],
45
43
  name: String,
46
44
  variants: ::Array[TerminalShop::Models::ProductVariant],
47
45
  order: Integer,
48
46
  subscription: TerminalShop::Models::ProductAPI::subscription,
49
- tags: ::Hash[Symbol, String]
47
+ tags: TerminalShop::Models::ProductAPI::Tags
50
48
  ) -> void
51
49
  | (
52
50
  ?TerminalShop::Models::product_api | TerminalShop::BaseModel data
@@ -54,15 +52,6 @@ module TerminalShop
54
52
 
55
53
  def to_hash: -> TerminalShop::Models::product_api
56
54
 
57
- type filter = :eu | :na
58
-
59
- class Filter < TerminalShop::Enum
60
- EU: :eu
61
- NA: :na
62
-
63
- def self.values: -> ::Array[TerminalShop::Models::ProductAPI::filter]
64
- end
65
-
66
55
  type subscription = :allowed | :required
67
56
 
68
57
  class Subscription < TerminalShop::Enum
@@ -71,6 +60,52 @@ module TerminalShop
71
60
 
72
61
  def self.values: -> ::Array[TerminalShop::Models::ProductAPI::subscription]
73
62
  end
63
+
64
+ type tags =
65
+ {
66
+ app: String,
67
+ color: String,
68
+ featured: bool,
69
+ market_eu: bool,
70
+ market_na: bool
71
+ }
72
+
73
+ class Tags < TerminalShop::BaseModel
74
+ attr_reader app: String?
75
+
76
+ def app=: (String) -> String
77
+
78
+ attr_reader color: String?
79
+
80
+ def color=: (String) -> String
81
+
82
+ attr_reader featured: bool?
83
+
84
+ def featured=: (bool) -> bool
85
+
86
+ attr_reader market_eu: bool?
87
+
88
+ def market_eu=: (bool) -> bool
89
+
90
+ attr_reader market_na: bool?
91
+
92
+ def market_na=: (bool) -> bool
93
+
94
+ def initialize:
95
+ (
96
+ app: String,
97
+ color: String,
98
+ featured: bool,
99
+ market_eu: bool,
100
+ market_na: bool
101
+ ) -> void
102
+ | (
103
+ ?TerminalShop::Models::ProductAPI::tags
104
+ | TerminalShop::BaseModel data
105
+ ) -> void
106
+
107
+ def to_hash: -> TerminalShop::Models::ProductAPI::tags
108
+ end
74
109
  end
75
110
  end
76
111
  end
@@ -0,0 +1,19 @@
1
+ module TerminalShop
2
+ module Models
3
+ type product_get_params = { } & TerminalShop::request_parameters
4
+
5
+ class ProductGetParams < TerminalShop::BaseModel
6
+ extend TerminalShop::RequestParameters::Converter
7
+ include TerminalShop::RequestParameters
8
+
9
+ def initialize:
10
+ (request_options: TerminalShop::request_opts) -> void
11
+ | (
12
+ ?TerminalShop::Models::product_get_params
13
+ | TerminalShop::BaseModel data
14
+ ) -> void
15
+
16
+ def to_hash: -> TerminalShop::Models::product_get_params
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,18 @@
1
+ module TerminalShop
2
+ module Models
3
+ type product_get_response = { data: TerminalShop::Models::ProductAPI }
4
+
5
+ class ProductGetResponse < TerminalShop::BaseModel
6
+ attr_accessor data: TerminalShop::Models::ProductAPI
7
+
8
+ def initialize:
9
+ (data: TerminalShop::Models::ProductAPI) -> void
10
+ | (
11
+ ?TerminalShop::Models::product_get_response
12
+ | TerminalShop::BaseModel data
13
+ ) -> void
14
+
15
+ def to_hash: -> TerminalShop::Models::product_get_response
16
+ end
17
+ end
18
+ end
@@ -1,20 +1,20 @@
1
1
  module TerminalShop
2
2
  module Models
3
3
  type profile_update_params =
4
- { email: String?, name: String? } & TerminalShop::request_parameters
4
+ { email: String, name: String } & TerminalShop::request_parameters
5
5
 
6
6
  class ProfileUpdateParams < TerminalShop::BaseModel
7
7
  extend TerminalShop::RequestParameters::Converter
8
8
  include TerminalShop::RequestParameters
9
9
 
10
- attr_accessor email: String?
10
+ attr_accessor email: String
11
11
 
12
- attr_accessor name: String?
12
+ attr_accessor name: String
13
13
 
14
14
  def initialize:
15
15
  (
16
- email: String?,
17
- name: String?,
16
+ email: String,
17
+ name: String,
18
18
  request_options: TerminalShop::request_opts
19
19
  ) -> void
20
20
  | (
@@ -0,0 +1,19 @@
1
+ module TerminalShop
2
+ module Models
3
+ type subscription_get_params = { } & TerminalShop::request_parameters
4
+
5
+ class SubscriptionGetParams < TerminalShop::BaseModel
6
+ extend TerminalShop::RequestParameters::Converter
7
+ include TerminalShop::RequestParameters
8
+
9
+ def initialize:
10
+ (request_options: TerminalShop::request_opts) -> void
11
+ | (
12
+ ?TerminalShop::Models::subscription_get_params
13
+ | TerminalShop::BaseModel data
14
+ ) -> void
15
+
16
+ def to_hash: -> TerminalShop::Models::subscription_get_params
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,19 @@
1
+ module TerminalShop
2
+ module Models
3
+ type subscription_get_response =
4
+ { data: TerminalShop::Models::SubscriptionAPI }
5
+
6
+ class SubscriptionGetResponse < TerminalShop::BaseModel
7
+ attr_accessor data: TerminalShop::Models::SubscriptionAPI
8
+
9
+ def initialize:
10
+ (data: TerminalShop::Models::SubscriptionAPI) -> void
11
+ | (
12
+ ?TerminalShop::Models::subscription_get_response
13
+ | TerminalShop::BaseModel data
14
+ ) -> void
15
+
16
+ def to_hash: -> TerminalShop::Models::subscription_get_response
17
+ end
18
+ end
19
+ end
@@ -36,6 +36,16 @@ module TerminalShop
36
36
  request_options: TerminalShop::request_opts
37
37
  ) -> TerminalShop::Models::AddressDeleteResponse
38
38
 
39
+ def get:
40
+ (
41
+ String id,
42
+ ?TerminalShop::Models::AddressGetParams | ::Hash[Symbol, top] params
43
+ ) -> TerminalShop::Models::AddressGetResponse
44
+ | (
45
+ String id,
46
+ request_options: TerminalShop::request_opts
47
+ ) -> TerminalShop::Models::AddressGetResponse
48
+
39
49
  def initialize: (client: TerminalShop::Client) -> void
40
50
  end
41
51
  end
@@ -6,10 +6,8 @@ module TerminalShop
6
6
  TerminalShop::Models::AppCreateParams | ::Hash[Symbol, top] params
7
7
  ) -> TerminalShop::Models::AppCreateResponse
8
8
  | (
9
- id: String,
10
9
  name: String,
11
10
  redirect_uri: String,
12
- secret: String,
13
11
  request_options: TerminalShop::request_opts
14
12
  ) -> TerminalShop::Models::AppCreateResponse
15
13
 
@@ -36,6 +36,16 @@ module TerminalShop
36
36
  request_options: TerminalShop::request_opts
37
37
  ) -> TerminalShop::Models::CardCollectResponse
38
38
 
39
+ def get:
40
+ (
41
+ String id,
42
+ ?TerminalShop::Models::CardGetParams | ::Hash[Symbol, top] params
43
+ ) -> TerminalShop::Models::CardGetResponse
44
+ | (
45
+ String id,
46
+ request_options: TerminalShop::request_opts
47
+ ) -> TerminalShop::Models::CardGetResponse
48
+
39
49
  def initialize: (client: TerminalShop::Client) -> void
40
50
  end
41
51
  end
@@ -9,6 +9,16 @@ module TerminalShop
9
9
  request_options: TerminalShop::request_opts
10
10
  ) -> TerminalShop::Models::ProductListResponse
11
11
 
12
+ def get:
13
+ (
14
+ String id,
15
+ ?TerminalShop::Models::ProductGetParams | ::Hash[Symbol, top] params
16
+ ) -> TerminalShop::Models::ProductGetResponse
17
+ | (
18
+ String id,
19
+ request_options: TerminalShop::request_opts
20
+ ) -> TerminalShop::Models::ProductGetResponse
21
+
12
22
  def initialize: (client: TerminalShop::Client) -> void
13
23
  end
14
24
  end
@@ -3,12 +3,11 @@ module TerminalShop
3
3
  class Profile
4
4
  def update:
5
5
  (
6
- ?TerminalShop::Models::ProfileUpdateParams
7
- | ::Hash[Symbol, top] params
6
+ TerminalShop::Models::ProfileUpdateParams | ::Hash[Symbol, top] params
8
7
  ) -> TerminalShop::Models::ProfileUpdateResponse
9
8
  | (
10
- email: String?,
11
- name: String?,
9
+ email: String,
10
+ name: String,
12
11
  request_options: TerminalShop::request_opts
13
12
  ) -> TerminalShop::Models::ProfileUpdateResponse
14
13
 
@@ -37,6 +37,17 @@ module TerminalShop
37
37
  request_options: TerminalShop::request_opts
38
38
  ) -> TerminalShop::Models::SubscriptionDeleteResponse
39
39
 
40
+ def get:
41
+ (
42
+ String id,
43
+ ?TerminalShop::Models::SubscriptionGetParams
44
+ | ::Hash[Symbol, top] params
45
+ ) -> TerminalShop::Models::SubscriptionGetResponse
46
+ | (
47
+ String id,
48
+ request_options: TerminalShop::request_opts
49
+ ) -> TerminalShop::Models::SubscriptionGetResponse
50
+
40
51
  def initialize: (client: TerminalShop::Client) -> void
41
52
  end
42
53
  end
@@ -88,5 +88,24 @@ module TerminalShop
88
88
  stream: Enumerable[String],
89
89
  suppress_error: bool
90
90
  ) -> top
91
+
92
+ def self?.fused_enum: (Enumerable[top] enum) { -> void } -> Enumerable[top]
93
+
94
+ def self?.close_fused!: (Enumerable[top]? enum) -> void
95
+
96
+ def self?.chain_fused: (
97
+ Enumerable[top]? enum
98
+ ) {
99
+ (Enumerator::Yielder arg0) -> void
100
+ } -> void
101
+
102
+ type sse_message =
103
+ { event: String?, data: String?, id: String?, retry: Integer? }
104
+
105
+ def self?.decode_lines: (Enumerable[String] enum) -> Enumerable[String]
106
+
107
+ def self?.decode_sse: (
108
+ Enumerable[String] lines
109
+ ) -> TerminalShop::Util::sse_message
91
110
  end
92
111
  end
@@ -1,3 +1,3 @@
1
1
  module TerminalShop
2
- VERSION: "0.1.0-alpha.14"
2
+ VERSION: "0.1.0-alpha.15"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terminal-shop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha.15
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Terminal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-01 00:00:00.000000000 Z
11
+ date: 2025-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -44,6 +44,8 @@ files:
44
44
  - lib/terminal-shop/models/address_create_response.rb
45
45
  - lib/terminal-shop/models/address_delete_params.rb
46
46
  - lib/terminal-shop/models/address_delete_response.rb
47
+ - lib/terminal-shop/models/address_get_params.rb
48
+ - lib/terminal-shop/models/address_get_response.rb
47
49
  - lib/terminal-shop/models/address_list_params.rb
48
50
  - lib/terminal-shop/models/address_list_response.rb
49
51
  - lib/terminal-shop/models/app.rb
@@ -62,6 +64,8 @@ files:
62
64
  - lib/terminal-shop/models/card_create_response.rb
63
65
  - lib/terminal-shop/models/card_delete_params.rb
64
66
  - lib/terminal-shop/models/card_delete_response.rb
67
+ - lib/terminal-shop/models/card_get_params.rb
68
+ - lib/terminal-shop/models/card_get_response.rb
65
69
  - lib/terminal-shop/models/card_list_params.rb
66
70
  - lib/terminal-shop/models/card_list_response.rb
67
71
  - lib/terminal-shop/models/cart.rb
@@ -85,6 +89,8 @@ files:
85
89
  - lib/terminal-shop/models/order_list_params.rb
86
90
  - lib/terminal-shop/models/order_list_response.rb
87
91
  - lib/terminal-shop/models/product.rb
92
+ - lib/terminal-shop/models/product_get_params.rb
93
+ - lib/terminal-shop/models/product_get_response.rb
88
94
  - lib/terminal-shop/models/product_list_params.rb
89
95
  - lib/terminal-shop/models/product_list_response.rb
90
96
  - lib/terminal-shop/models/product_variant.rb
@@ -98,6 +104,8 @@ files:
98
104
  - lib/terminal-shop/models/subscription_create_response.rb
99
105
  - lib/terminal-shop/models/subscription_delete_params.rb
100
106
  - lib/terminal-shop/models/subscription_delete_response.rb
107
+ - lib/terminal-shop/models/subscription_get_params.rb
108
+ - lib/terminal-shop/models/subscription_get_response.rb
101
109
  - lib/terminal-shop/models/subscription_list_params.rb
102
110
  - lib/terminal-shop/models/subscription_list_response.rb
103
111
  - lib/terminal-shop/models/token.rb
@@ -138,6 +146,8 @@ files:
138
146
  - rbi/lib/terminal-shop/models/address_create_response.rbi
139
147
  - rbi/lib/terminal-shop/models/address_delete_params.rbi
140
148
  - rbi/lib/terminal-shop/models/address_delete_response.rbi
149
+ - rbi/lib/terminal-shop/models/address_get_params.rbi
150
+ - rbi/lib/terminal-shop/models/address_get_response.rbi
141
151
  - rbi/lib/terminal-shop/models/address_list_params.rbi
142
152
  - rbi/lib/terminal-shop/models/address_list_response.rbi
143
153
  - rbi/lib/terminal-shop/models/app.rbi
@@ -156,6 +166,8 @@ files:
156
166
  - rbi/lib/terminal-shop/models/card_create_response.rbi
157
167
  - rbi/lib/terminal-shop/models/card_delete_params.rbi
158
168
  - rbi/lib/terminal-shop/models/card_delete_response.rbi
169
+ - rbi/lib/terminal-shop/models/card_get_params.rbi
170
+ - rbi/lib/terminal-shop/models/card_get_response.rbi
159
171
  - rbi/lib/terminal-shop/models/card_list_params.rbi
160
172
  - rbi/lib/terminal-shop/models/card_list_response.rbi
161
173
  - rbi/lib/terminal-shop/models/cart.rbi
@@ -179,6 +191,8 @@ files:
179
191
  - rbi/lib/terminal-shop/models/order_list_params.rbi
180
192
  - rbi/lib/terminal-shop/models/order_list_response.rbi
181
193
  - rbi/lib/terminal-shop/models/product.rbi
194
+ - rbi/lib/terminal-shop/models/product_get_params.rbi
195
+ - rbi/lib/terminal-shop/models/product_get_response.rbi
182
196
  - rbi/lib/terminal-shop/models/product_list_params.rbi
183
197
  - rbi/lib/terminal-shop/models/product_list_response.rbi
184
198
  - rbi/lib/terminal-shop/models/product_variant.rbi
@@ -192,6 +206,8 @@ files:
192
206
  - rbi/lib/terminal-shop/models/subscription_create_response.rbi
193
207
  - rbi/lib/terminal-shop/models/subscription_delete_params.rbi
194
208
  - rbi/lib/terminal-shop/models/subscription_delete_response.rbi
209
+ - rbi/lib/terminal-shop/models/subscription_get_params.rbi
210
+ - rbi/lib/terminal-shop/models/subscription_get_response.rbi
195
211
  - rbi/lib/terminal-shop/models/subscription_list_params.rbi
196
212
  - rbi/lib/terminal-shop/models/subscription_list_response.rbi
197
213
  - rbi/lib/terminal-shop/models/token.rbi
@@ -231,6 +247,8 @@ files:
231
247
  - sig/terminal-shop/models/address_create_response.rbs
232
248
  - sig/terminal-shop/models/address_delete_params.rbs
233
249
  - sig/terminal-shop/models/address_delete_response.rbs
250
+ - sig/terminal-shop/models/address_get_params.rbs
251
+ - sig/terminal-shop/models/address_get_response.rbs
234
252
  - sig/terminal-shop/models/address_list_params.rbs
235
253
  - sig/terminal-shop/models/address_list_response.rbs
236
254
  - sig/terminal-shop/models/app.rbs
@@ -249,6 +267,8 @@ files:
249
267
  - sig/terminal-shop/models/card_create_response.rbs
250
268
  - sig/terminal-shop/models/card_delete_params.rbs
251
269
  - sig/terminal-shop/models/card_delete_response.rbs
270
+ - sig/terminal-shop/models/card_get_params.rbs
271
+ - sig/terminal-shop/models/card_get_response.rbs
252
272
  - sig/terminal-shop/models/card_list_params.rbs
253
273
  - sig/terminal-shop/models/card_list_response.rbs
254
274
  - sig/terminal-shop/models/cart.rbs
@@ -272,6 +292,8 @@ files:
272
292
  - sig/terminal-shop/models/order_list_params.rbs
273
293
  - sig/terminal-shop/models/order_list_response.rbs
274
294
  - sig/terminal-shop/models/product.rbs
295
+ - sig/terminal-shop/models/product_get_params.rbs
296
+ - sig/terminal-shop/models/product_get_response.rbs
275
297
  - sig/terminal-shop/models/product_list_params.rbs
276
298
  - sig/terminal-shop/models/product_list_response.rbs
277
299
  - sig/terminal-shop/models/product_variant.rbs
@@ -285,6 +307,8 @@ files:
285
307
  - sig/terminal-shop/models/subscription_create_response.rbs
286
308
  - sig/terminal-shop/models/subscription_delete_params.rbs
287
309
  - sig/terminal-shop/models/subscription_delete_response.rbs
310
+ - sig/terminal-shop/models/subscription_get_params.rbs
311
+ - sig/terminal-shop/models/subscription_get_response.rbs
288
312
  - sig/terminal-shop/models/subscription_list_params.rbs
289
313
  - sig/terminal-shop/models/subscription_list_response.rbs
290
314
  - sig/terminal-shop/models/token.rbs
@@ -330,9 +354,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
330
354
  version: 3.0.0
331
355
  required_rubygems_version: !ruby/object:Gem::Requirement
332
356
  requirements:
333
- - - ">"
357
+ - - ">="
334
358
  - !ruby/object:Gem::Version
335
- version: 1.3.1
359
+ version: '0'
336
360
  requirements: []
337
361
  rubygems_version: 3.3.27
338
362
  signing_key: