terminal-shop 1.5.0 → 1.6.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 +4 -4
- data/lib/terminal-shop/models/view_init_response.rb +3 -1
- data/lib/terminal-shop/version.rb +1 -1
- data/rbi/lib/terminal-shop/models/view_init_response.rbi +1 -1
- data/rbi/lib/terminal-shop/version.rbi +1 -1
- data/sig/terminal-shop/models/view_init_response.rbs +2 -2
- data/sig/terminal-shop/version.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d27c9b969e5f710ddd5ec412d957b321c294ef271556e868cbcdd6bd7b294d50
|
4
|
+
data.tar.gz: 218d19b29f7565febb370d1637548988b7ead29a5fb9d95d6626b7289f8aba43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae88083b381eafbe8668224bfa390bfa003f5156d024a0021266608a446989fe0927200b72e6698d34cd3babcb6c9d6a4c03a5d56ca02374a3adb054d8fae486
|
7
|
+
data.tar.gz: 4e23af5ad9f4360516ef5e46a8adb635048eec1b201bb90dc7e51933e72c1a3873d66febe5287fe755a497010298053bf888ee992a1914068f5f4c57673597d5
|
@@ -55,6 +55,7 @@ module TerminalShop
|
|
55
55
|
required :profile, -> { TerminalShop::Models::ProfileAPI }
|
56
56
|
|
57
57
|
# @!attribute region
|
58
|
+
# A Terminal shop user's region.
|
58
59
|
#
|
59
60
|
# @return [Symbol, TerminalShop::Models::ViewInitResponse::Data::Region]
|
60
61
|
required :region, enum: -> { TerminalShop::Models::ViewInitResponse::Data::Region }
|
@@ -89,9 +90,10 @@ module TerminalShop
|
|
89
90
|
|
90
91
|
# @abstract
|
91
92
|
#
|
93
|
+
# A Terminal shop user's region.
|
92
94
|
class Region < TerminalShop::Enum
|
93
|
-
NA = :na
|
94
95
|
EU = :eu
|
96
|
+
NA = :na
|
95
97
|
|
96
98
|
finalize!
|
97
99
|
end
|
@@ -70,11 +70,11 @@ module TerminalShop
|
|
70
70
|
|
71
71
|
def to_hash: -> TerminalShop::Models::ViewInitResponse::data
|
72
72
|
|
73
|
-
type region = :
|
73
|
+
type region = :eu | :na
|
74
74
|
|
75
75
|
class Region < TerminalShop::Enum
|
76
|
-
NA: :na
|
77
76
|
EU: :eu
|
77
|
+
NA: :na
|
78
78
|
|
79
79
|
def self.values: -> ::Array[TerminalShop::Models::ViewInitResponse::Data::region]
|
80
80
|
end
|