seatsio 47.4.0 → 48.1.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/.github/workflows/build.yml +1 -1
- data/.ruby-version +1 -1
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/lib/seatsio/domain.rb +2 -3
- data/lib/seatsio/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: 14d6f7a47aa6aad627cb816296d35abcdd0c816bb4b5de649dc143614751bfaa
|
4
|
+
data.tar.gz: 473ecbd80802a9af1902f064a3a6170933d81b59e0abc4490e29816dcd3d7d4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84342d8d84bc24d74d10fd10b157d6a1c51b70df90b4fa6dd83fb8e65167a01a8b1d3b8fd7af101ef4ff3ff70aa293e61cc93db4e41f9681ffbc91ceb55fe4a6
|
7
|
+
data.tar.gz: e5c2791fb540a6412ef179e93f4c791af421cc5f466f316cde65b02bca8749d0ef278d1a2fb7a3cbe4c0027c85aafb0268ddd418eae7d83116e8380dbf0528d1
|
data/.github/workflows/build.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.3.0
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
seatsio (
|
4
|
+
seatsio (48.1.0)
|
5
5
|
rest-client (~> 2.0, >= 2.0.2)
|
6
6
|
|
7
7
|
GEM
|
@@ -20,7 +20,7 @@ GEM
|
|
20
20
|
mime-types (3.3.1)
|
21
21
|
mime-types-data (~> 3.2015)
|
22
22
|
mime-types-data (3.2021.0225)
|
23
|
-
minitest (5.
|
23
|
+
minitest (5.21.2)
|
24
24
|
minitest-parallel_fork (2.0.0)
|
25
25
|
minitest (>= 5.15.0)
|
26
26
|
netrc (0.11.0)
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
[](https://github.com/seatsio/seatsio-ruby/actions/workflows/build.yml)
|
4
4
|
[](https://badge.fury.io/rb/seatsio)
|
5
5
|
|
6
|
-
This is the official Ruby client library for the [Seats.io V2 REST API](https://docs.seats.io/docs/api-overview), supporting Ruby
|
6
|
+
This is the official Ruby client library for the [Seats.io V2 REST API](https://docs.seats.io/docs/api-overview), supporting Ruby 3.0+
|
7
7
|
|
8
8
|
## Versioning
|
9
9
|
|
data/lib/seatsio/domain.rb
CHANGED
@@ -260,13 +260,12 @@ module Seatsio
|
|
260
260
|
end
|
261
261
|
|
262
262
|
class EventLogItem
|
263
|
-
attr_reader :id, :
|
263
|
+
attr_reader :id, :type, :timestamp, :data
|
264
264
|
|
265
265
|
def initialize(data)
|
266
266
|
@id = data['id']
|
267
|
-
@workspace_key = data['workspaceKey']
|
268
267
|
@type = data['type']
|
269
|
-
@
|
268
|
+
@timestamp = DateTime.iso8601(data['timestamp'])
|
270
269
|
@data = data['data']
|
271
270
|
end
|
272
271
|
end
|
data/lib/seatsio/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: seatsio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 48.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seats.io
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|