fusionauth_client 1.52.0 → 1.53.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3bad49c0458dd31ccf7f81b5d1cd9f1e4230b8378c3ed0b2b1b0f0cf006b028e
4
- data.tar.gz: 82699e96462bc78944ae48137c7b4bc80763303082e94ad0f58c26deaa8fc843
3
+ metadata.gz: cb042c61bb8a7537b980a2d1f6b22f206a75d2c062268e4ef2756065283be974
4
+ data.tar.gz: d45c8f6ae3005a66b0b3de0d4abd4c8052fcb769f05f1381b932f46482c6fd2f
5
5
  SHA512:
6
- metadata.gz: e692e0e35951c4268f6f19d930b46a1c5a1f4e2371588a003f4dd1b8d56679ef9f48ec3b931408cb819464c9c612943d8cc319238da53af3229f19d359a6ada4
7
- data.tar.gz: 0fa182e50cf223190d0ec881ea4ed0bf1dff17237ff07c6a13e536c712effb4b9cf332f10fd822670f1008eef7a9c73789cfdf40254f30a93acaff406e915f90
6
+ metadata.gz: 5f7cbe919b40957cb59b7a903c425aa2843654e8989c98356e9252a79b5dcb7087893d102924021363aebad6beac23cda5afc3781e61c497679da9b6553b2168
7
+ data.tar.gz: 23e5e9e47cedbb3d0936edba2a0abb17ef4a86a0daff20debe34257384c1eb5efa1c3e6f32ace177c4268c929b61d8c74cd9dda58377093d1969420047bf840e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fusionauth_client (1.52.0)
4
+ fusionauth_client (1.53.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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.52.0", licenses: ["ApacheV2_0"]) {
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()
@@ -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.52.0'
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.52.0
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-08-08 00:00:00.000000000 Z
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.