fusionauth_client 1.38.0 → 1.39.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 +12 -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: 34a9f230af6ca7349f8fdee665b8ba23985c385637d9d64d5c355ffdf5bc77c6
|
|
4
|
+
data.tar.gz: c24e551fa66cbcd3621062f93204422acde7bdadd0b4f9a6884635cb756c65f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5f95f92365e882fff1753ec87d4302f5933617f72c7faefe8decc9cd877b3e7f83ab785b507ba64f8b7244889982cc0f8c0ec6f4ddcf929a920504e017b1415
|
|
7
|
+
data.tar.gz: 30373ef50dd2fbc08020781e77d9ec8a03d96f0bce02f41ad8c3a2a01b9ebe9c025b0d90795e977bbc4b9f9c8f0e5f39bb6723920ed59d8d3a455de85a729c41
|
data/Gemfile.lock
CHANGED
data/build.savant
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
savantVersion = "1.0.0"
|
|
17
17
|
|
|
18
18
|
pubVersion = ""
|
|
19
|
-
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.
|
|
19
|
+
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.39.0", licenses: ["ApacheV2_0"]) {
|
|
20
20
|
workflow {
|
|
21
21
|
fetch {
|
|
22
22
|
cache()
|
data/fusionauth_client.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'fusionauth_client'
|
|
7
|
-
spec.version = '1.
|
|
7
|
+
spec.version = '1.39.0'
|
|
8
8
|
spec.authors = ['Brian Pontarelli', 'Daniel DeGroff']
|
|
9
9
|
spec.email = %w(brian@fusionauth.io daniel@fusionauth.io)
|
|
10
10
|
|
|
@@ -3462,6 +3462,18 @@ module FusionAuth
|
|
|
3462
3462
|
.go()
|
|
3463
3463
|
end
|
|
3464
3464
|
|
|
3465
|
+
#
|
|
3466
|
+
# Searches groups with the specified criteria and pagination.
|
|
3467
|
+
#
|
|
3468
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
|
3469
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
|
3470
|
+
def search_groups(request)
|
|
3471
|
+
start.uri('/api/group/search')
|
|
3472
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
|
3473
|
+
.post()
|
|
3474
|
+
.go()
|
|
3475
|
+
end
|
|
3476
|
+
|
|
3465
3477
|
#
|
|
3466
3478
|
# Searches the IP Access Control Lists with the specified criteria and pagination.
|
|
3467
3479
|
#
|
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.39.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: 2022-
|
|
12
|
+
date: 2022-09-11 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.
|