fusionauth_client 1.52.0 → 1.54.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/Gemfile.lock +1 -1
- data/build.savant +3 -3
- data/doc/FusionAuth/FusionAuthClient.html +205 -85
- data/doc/created.rid +2 -2
- data/doc/js/navigation.js.gz +0 -0
- data/doc/js/search_index.js +1 -1
- data/doc/js/search_index.js.gz +0 -0
- data/doc/js/searcher.js.gz +0 -0
- data/doc/table_of_contents.html +15 -0
- data/fusionauth_client.gemspec +1 -1
- data/lib/fusionauth/fusionauth_client.rb +36 -0
- metadata +2 -2
data/doc/js/search_index.js.gz
CHANGED
Binary file
|
data/doc/js/searcher.js.gz
CHANGED
Binary file
|
data/doc/table_of_contents.html
CHANGED
@@ -1338,6 +1338,16 @@
|
|
1338
1338
|
—
|
1339
1339
|
<span class="container">FusionAuth::FusionAuthClient</span>
|
1340
1340
|
|
1341
|
+
<li class="method">
|
1342
|
+
<a href="FusionAuth/FusionAuthClient.html#method-i-retrieve_webhook_attempt_log">#retrieve_webhook_attempt_log</a>
|
1343
|
+
—
|
1344
|
+
<span class="container">FusionAuth::FusionAuthClient</span>
|
1345
|
+
|
1346
|
+
<li class="method">
|
1347
|
+
<a href="FusionAuth/FusionAuthClient.html#method-i-retrieve_webhook_event_log">#retrieve_webhook_event_log</a>
|
1348
|
+
—
|
1349
|
+
<span class="container">FusionAuth::FusionAuthClient</span>
|
1350
|
+
|
1341
1351
|
<li class="method">
|
1342
1352
|
<a href="FusionAuth/FusionAuthClient.html#method-i-retrieve_webhooks">#retrieve_webhooks</a>
|
1343
1353
|
—
|
@@ -1498,6 +1508,11 @@
|
|
1498
1508
|
—
|
1499
1509
|
<span class="container">FusionAuth::FusionAuthClient</span>
|
1500
1510
|
|
1511
|
+
<li class="method">
|
1512
|
+
<a href="FusionAuth/FusionAuthClient.html#method-i-search_webhook_event_logs">#search_webhook_event_logs</a>
|
1513
|
+
—
|
1514
|
+
<span class="container">FusionAuth::FusionAuthClient</span>
|
1515
|
+
|
1501
1516
|
<li class="method">
|
1502
1517
|
<a href="FusionAuth/FusionAuthClient.html#method-i-search_webhooks">#search_webhooks</a>
|
1503
1518
|
—
|
data/fusionauth_client.gemspec
CHANGED
@@ -19,7 +19,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
19
19
|
|
20
20
|
Gem::Specification.new do |spec|
|
21
21
|
spec.name = 'fusionauth_client'
|
22
|
-
spec.version = '1.
|
22
|
+
spec.version = '1.54.0'
|
23
23
|
spec.authors = ['Brian Pontarelli', 'Daniel DeGroff']
|
24
24
|
spec.email = %w(brian@fusionauth.io daniel@fusionauth.io)
|
25
25
|
|
@@ -3538,6 +3538,30 @@ module FusionAuth
|
|
3538
3538
|
.go
|
3539
3539
|
end
|
3540
3540
|
|
3541
|
+
#
|
3542
|
+
# Retrieves a single webhook attempt log for the given Id.
|
3543
|
+
#
|
3544
|
+
# @param webhook_attempt_log_id [string] The Id of the webhook attempt log to retrieve.
|
3545
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3546
|
+
def retrieve_webhook_attempt_log(webhook_attempt_log_id)
|
3547
|
+
start.uri('/api/system/webhook-attempt-log')
|
3548
|
+
.url_segment(webhook_attempt_log_id)
|
3549
|
+
.get
|
3550
|
+
.go
|
3551
|
+
end
|
3552
|
+
|
3553
|
+
#
|
3554
|
+
# Retrieves a single webhook event log for the given Id.
|
3555
|
+
#
|
3556
|
+
# @param webhook_event_log_id [string] The Id of the webhook event log to retrieve.
|
3557
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3558
|
+
def retrieve_webhook_event_log(webhook_event_log_id)
|
3559
|
+
start.uri('/api/system/webhook-event-log')
|
3560
|
+
.url_segment(webhook_event_log_id)
|
3561
|
+
.get
|
3562
|
+
.go
|
3563
|
+
end
|
3564
|
+
|
3541
3565
|
#
|
3542
3566
|
# Retrieves all the webhooks.
|
3543
3567
|
#
|
@@ -3954,6 +3978,18 @@ module FusionAuth
|
|
3954
3978
|
.go
|
3955
3979
|
end
|
3956
3980
|
|
3981
|
+
#
|
3982
|
+
# Searches the webhook event logs with the specified criteria and pagination.
|
3983
|
+
#
|
3984
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3985
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3986
|
+
def search_webhook_event_logs(request)
|
3987
|
+
start.uri('/api/system/webhook-event-log/search')
|
3988
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3989
|
+
.post
|
3990
|
+
.go
|
3991
|
+
end
|
3992
|
+
|
3957
3993
|
#
|
3958
3994
|
# Searches webhooks with the specified criteria and pagination.
|
3959
3995
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fusionauth_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.54.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Pontarelli
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-11-26 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: This library contains the Ruby client library that helps you connect
|
15
15
|
your application to FusionAuth.
|