svix 0.68.1 → 0.70.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c83a18c9b54fd730ac04a828dfc19ba3c24a85cc322df2c5f375f4113e99fd43
4
- data.tar.gz: 3203e4e437a8a6baa4392e7cdc67f1cf663f896fd5d93f696649609897060bf7
3
+ metadata.gz: c922ea43bbfedc463e5c10f1342390685eeb4c334bd291640158320e5389c19b
4
+ data.tar.gz: c51eaea5befd86d6e33e3acef41dab04b9ccde804f58bb226722d0aececa546f
5
5
  SHA512:
6
- metadata.gz: 27ef231a12e3ba7a0684b3bb1384ee8f5e61943809125246ed4733bf0e0899784d18f7990c6a328a72434d2418faf4535bfddf6cdfa415c4733ba9cc6c6f5e45
7
- data.tar.gz: 367794fa8d9d22665e85e587924327853a3cfdc28ea7b4a973b4416d932aeceb9aa7df12f42f7eff82be80a7f4f7e42cb0569821a3fecfde3b0c236c17aff49a
6
+ metadata.gz: c4c4481942c425e231a6bec13b5a093c26224c21ded4e4c0f2d4293c9292e4e9ed7d2506590bb44663a6275d9f153702b07b9d86258bd498912a71bf0c6bdd21
7
+ data.tar.gz: 920abe7ad57a582b4a9656b9c9f5a7c24fba41436ca3df68dcc0e8be19fed3fceebefefd460800d028f3ffcd509508149e4469d364e7e58ca2be2f315d39c4a1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- svix (0.68.1)
4
+ svix (0.70.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Svix
4
- VERSION = "0.68.1"
4
+ VERSION = "0.70.0"
5
5
  end
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.68.1
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-17 00:00:00.000000000 Z
11
+ date: 2022-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus