bearcat 1.5.30 → 1.5.31

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: c8f8b63caed1ff5f931ed35d4d7612cc95b1a55ef320b2ea62d6c37cd58d7961
4
- data.tar.gz: e4d46c06cc72391ca389cd8e988aea15daab9d849d34b43f8da836cea7baa0d0
3
+ metadata.gz: 4b10d663c599a6bd34475252cf2a090b5e98f915b901bb62cd3ce43421c8e9bb
4
+ data.tar.gz: d6e9db6335e62628d25f6b6eceeabd84db20e8da3d356229645110b2884c219e
5
5
  SHA512:
6
- metadata.gz: 4692fb709e0bda0e0e7090bc58173be51a7583f540b1da2d725215f0254733fd62fdc376790cbc09fdcbec4d47765cdd3a83e4ad1e67bc5ad63193acf8fa330a
7
- data.tar.gz: 6898bcfbb4f30848164b1ea84588821f4a3736378df6e50fd20037f36e3d8e008d9ebb43e75cc67728df84f5230ca59c985246a806a03f4b5676dc0f5adab12b
6
+ metadata.gz: 819b082be161f73a7d4501788b2e67a9490b44bdda94b06641b65040251903facaebafe83335f4dfaa2cddc3682aa8465c0ad7c8b5457ad24de35915b89da8d0
7
+ data.tar.gz: df897865ae64a6b3e576e4e8787537f86073ad772523264c32e966078325a7155265db99cdffae10efec8505febe579085b2272ac0c0c32e36556ad6d8865bac
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bearcat
4
+ class Client < Footrest::Client
5
+ module AccountNotifications
6
+ extend ClientModule
7
+
8
+ prefix "/api/v1/accounts/:account_id/account_notifications/" do
9
+ get :global_notifications_for_user
10
+ post :create_global_notification
11
+ prefix ":id/" do
12
+ get :global_notification
13
+ put :update_global_notification
14
+ delete :close_global_notification_for_user
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -1,3 +1,3 @@
1
1
  module Bearcat
2
- VERSION = '1.5.30' unless defined?(Bearcat::VERSION)
2
+ VERSION = '1.5.31' unless defined?(Bearcat::VERSION)
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bearcat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.30
4
+ version: 1.5.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - Instructure CustomDev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-23 00:00:00.000000000 Z
11
+ date: 2024-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -172,6 +172,7 @@ files:
172
172
  - lib/bearcat.rb
173
173
  - lib/bearcat/api_array.rb
174
174
  - lib/bearcat/client.rb
175
+ - lib/bearcat/client/account_notifications.rb
175
176
  - lib/bearcat/client/account_reports.rb
176
177
  - lib/bearcat/client/accounts.rb
177
178
  - lib/bearcat/client/analytics.rb