svix 0.78.0 → 0.80.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: acf6ba05165f4558afc10818384e88cc631a01f7ab2404c68bfc22b1138f5974
4
- data.tar.gz: ec392fa6436bb9a1b5117f8c2bfebc6eeaddcd9efd06842ed8bd7b355c798796
3
+ metadata.gz: 8303e02366623ee9cf01972e3403136bc793df9bfbe46126a22a0e5308bd94cf
4
+ data.tar.gz: 3731202c1091e67dd4c5b3bdac0c0646374b95c50a3ddca19c20cc1cc61fb8b9
5
5
  SHA512:
6
- metadata.gz: c5a0ade041c5f182abf910d0e104910310014f2cc01abf5e6c46c47e7d3f5b0c74aba253995375db2337b5c5ba00c9bacc4b780462b7e4b5d9884eec38ebeb19
7
- data.tar.gz: eb7b77a4f7c556d8ffe05eb2f7336cfc55cc3643a7f3c2d95290a90486b91d5400241ec76ea2fcca57b142f02074642922e3e9029a699119594ab357f5266e19
6
+ metadata.gz: 6564dcb5f1702985dc26ee56ee41d57e2f7414acd67ad5186feff642367eb090b9b439233feb4ff42eb10e8833011bef1683d97d4e492f860906e1bb841f396b
7
+ data.tar.gz: 28b720ae90ff930178e739cf492f0ef8dbdfefb3cbfbf8317a01be25a4fee01f696fc0ae6f3edb15226e7ff2d9c2fee7881349e1d785cdbcdd99c5718575efb4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- svix (0.78.0)
4
+ svix (0.80.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -430,6 +430,7 @@ module Svix
430
430
  # @param [Hash] opts the optional parameters
431
431
  # @option opts [String] :iterator
432
432
  # @option opts [Integer] :limit (default to 50)
433
+ # @option opts [Ordering] :order
433
434
  # @option opts [String] :idempotency_key The request's idempotency key
434
435
  # @return [ListResponseApplicationOut]
435
436
  def list_applications_api_v1_app_get(opts = {})
@@ -442,6 +443,7 @@ module Svix
442
443
  # @param [Hash] opts the optional parameters
443
444
  # @option opts [String] :iterator
444
445
  # @option opts [Integer] :limit
446
+ # @option opts [Ordering] :order
445
447
  # @option opts [String] :idempotency_key The request's idempotency key
446
448
  # @return [Array<(ListResponseApplicationOut, Integer, Hash)>] ListResponseApplicationOut data, response status code and response headers
447
449
  def list_applications_api_v1_app_get_with_http_info(opts = {})
@@ -459,6 +461,7 @@ module Svix
459
461
  query_params = opts[:query_params] || {}
460
462
  query_params[:'iterator'] = opts[:'iterator'] if !opts[:'iterator'].nil?
461
463
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
464
+ query_params[:'order'] = opts[:'order'] if !opts[:'order'].nil?
462
465
 
463
466
  # header parameters
464
467
  header_params = opts[:header_params] || {}
@@ -21,12 +21,15 @@ module Svix
21
21
 
22
22
  attr_accessor :iterator
23
23
 
24
+ attr_accessor :prev_iterator
25
+
24
26
  # Attribute mapping from ruby-style variable name to JSON key.
25
27
  def self.attribute_map
26
28
  {
27
29
  :'data' => :'data',
28
30
  :'done' => :'done',
29
- :'iterator' => :'iterator'
31
+ :'iterator' => :'iterator',
32
+ :'prev_iterator' => :'prevIterator'
30
33
  }
31
34
  end
32
35
 
@@ -40,14 +43,16 @@ module Svix
40
43
  {
41
44
  :'data' => :'Array<EventTypeOut>',
42
45
  :'done' => :'Boolean',
43
- :'iterator' => :'String'
46
+ :'iterator' => :'String',
47
+ :'prev_iterator' => :'String'
44
48
  }
45
49
  end
46
50
 
47
51
  # List of attributes with nullable: true
48
52
  def self.openapi_nullable
49
53
  Set.new([
50
- :'iterator'
54
+ :'iterator',
55
+ :'prev_iterator'
51
56
  ])
52
57
  end
53
58
 
@@ -79,6 +84,10 @@ module Svix
79
84
  if attributes.key?(:'iterator')
80
85
  self.iterator = attributes[:'iterator']
81
86
  end
87
+
88
+ if attributes.key?(:'prev_iterator')
89
+ self.prev_iterator = attributes[:'prev_iterator']
90
+ end
82
91
  end
83
92
 
84
93
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -111,7 +120,8 @@ module Svix
111
120
  self.class == o.class &&
112
121
  data == o.data &&
113
122
  done == o.done &&
114
- iterator == o.iterator
123
+ iterator == o.iterator &&
124
+ prev_iterator == o.prev_iterator
115
125
  end
116
126
 
117
127
  # @see the `==` method
@@ -123,7 +133,7 @@ module Svix
123
133
  # Calculates hash code according to all attributes.
124
134
  # @return [Integer] Hash code
125
135
  def hash
126
- [data, done, iterator].hash
136
+ [data, done, iterator, prev_iterator].hash
127
137
  end
128
138
 
129
139
  # 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.78.0"
4
+ VERSION = "0.80.0"
5
5
  end
data/lib/svix.rb CHANGED
@@ -16,6 +16,8 @@ require "svix/api/message_api"
16
16
  require "svix/api/message_attempt_api"
17
17
 
18
18
  # Models
19
+ require "svix/models/app_portal_access_in"
20
+ require "svix/models/app_portal_access_out"
19
21
  require "svix/models/application_in"
20
22
  require "svix/models/application_out"
21
23
  require "svix/models/dashboard_access_out"
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.78.0
4
+ version: 0.80.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Svix
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-02-09 00:00:00.000000000 Z
11
+ date: 2023-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus