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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b659b8992baf18a2a45ebe981dab6e4136dc40bbcf5bc3e1fd513b6a1b5fdd2a
4
- data.tar.gz: 922aaee35e530416a042892341adae1c4d29cb7be2a82f87b5d72b3255052bd7
3
+ metadata.gz: c922ea43bbfedc463e5c10f1342390685eeb4c334bd291640158320e5389c19b
4
+ data.tar.gz: c51eaea5befd86d6e33e3acef41dab04b9ccde804f58bb226722d0aececa546f
5
5
  SHA512:
6
- metadata.gz: acf49cf2906825b551152ff366399bf063c52b00e29055984c61e0c619c6d5c4a24eb517bcef697643d6d3e58648833fe59129fe14efc09e9eca530829a30ca5
7
- data.tar.gz: 11a8a4c8a1e744bf219ec15abc0877827e31ddb13a73a9af72bf0c5c24ba0196e3a64987dca5b73785b7e817cc1a2782c3745c811ff085e4969458af09478ea1
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.69.0)
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.69.0"
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.69.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-26 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