cirro-ruby-client 1.5.0 → 1.6.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: b40b51067875bc8f05dbf8d6d3ef70713369437b84f7f02d34ad9ebc12e6f1f5
4
- data.tar.gz: 95d7598c00eb3ad3fcd7d2c357252620792dde5653ef3ca6a002753c2a9a5c91
3
+ metadata.gz: e6e3f17c3acdc3e539664def130e878b587730478ae7cafb3201028616057f8a
4
+ data.tar.gz: '0069fc55eb4d448e63301574530a4107643d991bb13576850e3fdfaa9dbf7994'
5
5
  SHA512:
6
- metadata.gz: aa7585fece3356f8511010df5f8b7635946da195b66350dd10cd7d0c964b18616ad53291ee12f287d37819666f73098569b550b8c6e9a6568a9d8b37edd230fc
7
- data.tar.gz: 4c4bb7c02b948a2a8786be6e622aaf5dac1ef9cc1fe046cee66dd15cafaa3f2d27595e1749e014d186ae72987108c79a277e08eeced5bdfa5e42756053b4e012
6
+ metadata.gz: 14a90dc502be3d444a4534d3b7e88b823e4fac4a740c1293363985bb2d1dd68fc92bffb8c4f9c06afaddfe214f2922a6cbd9f2e00edb0e6bfea79c108434a2ca
7
+ data.tar.gz: 03cb09ec7e03c958acc035d02c8be6d4dabe4b68aeb4885f7b1c832ffc5f0b4122c22748bbd869c55a3fe882eccc34014f52e47b28578d6945b3004db1155157
@@ -15,6 +15,9 @@ require 'cirro_io/client/gig_result'
15
15
  require 'cirro_io/client/gig_time_activity'
16
16
  require 'cirro_io/client/gig'
17
17
  require 'cirro_io/client/payout'
18
+ require 'cirro_io/client/notifications_broadcast'
19
+ require 'cirro_io/client/notifications_channel'
20
+ require 'cirro_io/client/notifications_template'
18
21
 
19
22
  module CirroIO
20
23
  module Client
@@ -0,0 +1,8 @@
1
+ module CirroIO
2
+ module Client
3
+ class NotificationsBroadcast < Base
4
+ has_one :channel, class_name: 'NotificationsChannel'
5
+ has_one :worker_filter
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,6 @@
1
+ module CirroIO
2
+ module Client
3
+ class NotificationsChannel < Base
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ module CirroIO
2
+ module Client
3
+ class NotificationsTemplate < Base
4
+ has_one :channel, class_name: 'NotificationsChannel'
5
+ end
6
+ end
7
+ end
@@ -1,7 +1,7 @@
1
1
  # rubocop:disable Style/MutableConstant
2
2
  module CirroIO
3
3
  module Client
4
- VERSION = '1.5.0'
4
+ VERSION = '1.6.0'
5
5
  end
6
6
  end
7
7
  # rubocop:enable Style/MutableConstant
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cirro-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cirro Dev Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-06-09 00:00:00.000000000 Z
11
+ date: 2021-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -100,6 +100,9 @@ files:
100
100
  - lib/cirro_io/client/gig_task.rb
101
101
  - lib/cirro_io/client/gig_time_activity.rb
102
102
  - lib/cirro_io/client/jwt_authentication.rb
103
+ - lib/cirro_io/client/notifications_broadcast.rb
104
+ - lib/cirro_io/client/notifications_channel.rb
105
+ - lib/cirro_io/client/notifications_template.rb
103
106
  - lib/cirro_io/client/payout.rb
104
107
  - lib/cirro_io/client/response_debugging_middleware.rb
105
108
  - lib/cirro_io/client/version.rb