svix 0.69.0 → 0.70.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/Gemfile.lock +1 -1
- data/lib/svix/models/recover_in.rb +14 -4
- data/lib/svix/models/replay_in.rb +14 -4
- data/lib/svix/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c922ea43bbfedc463e5c10f1342390685eeb4c334bd291640158320e5389c19b
|
4
|
+
data.tar.gz: c51eaea5befd86d6e33e3acef41dab04b9ccde804f58bb226722d0aececa546f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4c4481942c425e231a6bec13b5a093c26224c21ded4e4c0f2d4293c9292e4e9ed7d2506590bb44663a6275d9f153702b07b9d86258bd498912a71bf0c6bdd21
|
7
|
+
data.tar.gz: 920abe7ad57a582b4a9656b9c9f5a7c24fba41436ca3df68dcc0e8be19fed3fceebefefd460800d028f3ffcd509508149e4469d364e7e58ca2be2f315d39c4a1
|
data/Gemfile.lock
CHANGED
@@ -17,10 +17,13 @@ module Svix
|
|
17
17
|
class RecoverIn
|
18
18
|
attr_accessor :since
|
19
19
|
|
20
|
+
attr_accessor :_until
|
21
|
+
|
20
22
|
# Attribute mapping from ruby-style variable name to JSON key.
|
21
23
|
def self.attribute_map
|
22
24
|
{
|
23
|
-
:'since' => :'since'
|
25
|
+
:'since' => :'since',
|
26
|
+
:'_until' => :'until'
|
24
27
|
}
|
25
28
|
end
|
26
29
|
|
@@ -32,13 +35,15 @@ module Svix
|
|
32
35
|
# Attribute type mapping.
|
33
36
|
def self.openapi_types
|
34
37
|
{
|
35
|
-
:'since' => :'Time'
|
38
|
+
:'since' => :'Time',
|
39
|
+
:'_until' => :'Time'
|
36
40
|
}
|
37
41
|
end
|
38
42
|
|
39
43
|
# List of attributes with nullable: true
|
40
44
|
def self.openapi_nullable
|
41
45
|
Set.new([
|
46
|
+
:'_until'
|
42
47
|
])
|
43
48
|
end
|
44
49
|
|
@@ -60,6 +65,10 @@ module Svix
|
|
60
65
|
if attributes.key?(:'since')
|
61
66
|
self.since = attributes[:'since']
|
62
67
|
end
|
68
|
+
|
69
|
+
if attributes.key?(:'_until')
|
70
|
+
self._until = attributes[:'_until']
|
71
|
+
end
|
63
72
|
end
|
64
73
|
|
65
74
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -85,7 +94,8 @@ module Svix
|
|
85
94
|
def ==(o)
|
86
95
|
return true if self.equal?(o)
|
87
96
|
self.class == o.class &&
|
88
|
-
since == o.since
|
97
|
+
since == o.since &&
|
98
|
+
_until == o._until
|
89
99
|
end
|
90
100
|
|
91
101
|
# @see the `==` method
|
@@ -97,7 +107,7 @@ module Svix
|
|
97
107
|
# Calculates hash code according to all attributes.
|
98
108
|
# @return [Integer] Hash code
|
99
109
|
def hash
|
100
|
-
[since].hash
|
110
|
+
[since, _until].hash
|
101
111
|
end
|
102
112
|
|
103
113
|
# Builds the object from hash
|
@@ -17,10 +17,13 @@ module Svix
|
|
17
17
|
class ReplayIn
|
18
18
|
attr_accessor :since
|
19
19
|
|
20
|
+
attr_accessor :_until
|
21
|
+
|
20
22
|
# Attribute mapping from ruby-style variable name to JSON key.
|
21
23
|
def self.attribute_map
|
22
24
|
{
|
23
|
-
:'since' => :'since'
|
25
|
+
:'since' => :'since',
|
26
|
+
:'_until' => :'until'
|
24
27
|
}
|
25
28
|
end
|
26
29
|
|
@@ -32,13 +35,15 @@ module Svix
|
|
32
35
|
# Attribute type mapping.
|
33
36
|
def self.openapi_types
|
34
37
|
{
|
35
|
-
:'since' => :'Time'
|
38
|
+
:'since' => :'Time',
|
39
|
+
:'_until' => :'Time'
|
36
40
|
}
|
37
41
|
end
|
38
42
|
|
39
43
|
# List of attributes with nullable: true
|
40
44
|
def self.openapi_nullable
|
41
45
|
Set.new([
|
46
|
+
:'_until'
|
42
47
|
])
|
43
48
|
end
|
44
49
|
|
@@ -60,6 +65,10 @@ module Svix
|
|
60
65
|
if attributes.key?(:'since')
|
61
66
|
self.since = attributes[:'since']
|
62
67
|
end
|
68
|
+
|
69
|
+
if attributes.key?(:'_until')
|
70
|
+
self._until = attributes[:'_until']
|
71
|
+
end
|
63
72
|
end
|
64
73
|
|
65
74
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -85,7 +94,8 @@ module Svix
|
|
85
94
|
def ==(o)
|
86
95
|
return true if self.equal?(o)
|
87
96
|
self.class == o.class &&
|
88
|
-
since == o.since
|
97
|
+
since == o.since &&
|
98
|
+
_until == o._until
|
89
99
|
end
|
90
100
|
|
91
101
|
# @see the `==` method
|
@@ -97,7 +107,7 @@ module Svix
|
|
97
107
|
# Calculates hash code according to all attributes.
|
98
108
|
# @return [Integer] Hash code
|
99
109
|
def hash
|
100
|
-
[since].hash
|
110
|
+
[since, _until].hash
|
101
111
|
end
|
102
112
|
|
103
113
|
# Builds the object from hash
|
data/lib/svix/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: svix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.70.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Svix
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10
|
11
|
+
date: 2022-11-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|