fusionauth_client 1.52.0 → 1.53.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 +1 -1
- data/fusionauth_client.gemspec +1 -1
- data/lib/fusionauth/fusionauth_client.rb +36 -0
- 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: cb042c61bb8a7537b980a2d1f6b22f206a75d2c062268e4ef2756065283be974
|
4
|
+
data.tar.gz: d45c8f6ae3005a66b0b3de0d4abd4c8052fcb769f05f1381b932f46482c6fd2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f7cbe919b40957cb59b7a903c425aa2843654e8989c98356e9252a79b5dcb7087893d102924021363aebad6beac23cda5afc3781e61c497679da9b6553b2168
|
7
|
+
data.tar.gz: 23e5e9e47cedbb3d0936edba2a0abb17ef4a86a0daff20debe34257384c1eb5efa1c3e6f32ace177c4268c929b61d8c74cd9dda58377093d1969420047bf840e
|
data/Gemfile.lock
CHANGED
data/build.savant
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
*/
|
16
16
|
|
17
17
|
pubVersion = ""
|
18
|
-
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.
|
18
|
+
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.53.0", licenses: ["ApacheV2_0"]) {
|
19
19
|
workflow {
|
20
20
|
fetch {
|
21
21
|
cache()
|
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.53.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.53.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-09-05 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.
|