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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4bf2c4810a2d7c274cda24502f66fdca37b188a74e8799417cc549d9c06e23a0
4
- data.tar.gz: b5aa5629f7120d7d4983de81bfddfc4127c0194a2061f1ed11366ab4820bf73d
3
+ metadata.gz: 34a9f230af6ca7349f8fdee665b8ba23985c385637d9d64d5c355ffdf5bc77c6
4
+ data.tar.gz: c24e551fa66cbcd3621062f93204422acde7bdadd0b4f9a6884635cb756c65f7
5
5
  SHA512:
6
- metadata.gz: 36e2fb473ac870bd0f8b99a7c513c24bf60459d44e0b6dfc2eec1cad7cbb2ac3118e18df5b1df86ff2ffb151e4a55535e67e9c04a9ff5f587385ac145e2bffa9
7
- data.tar.gz: a6ba3e7aca263497406c858e66faedc98405334015bf0b8a9f5a36fb807564afe996fceeb3ad4381648345f5d09e81ad881b1c8730dd828e2ffef388c13d919d
6
+ metadata.gz: d5f95f92365e882fff1753ec87d4302f5933617f72c7faefe8decc9cd877b3e7f83ab785b507ba64f8b7244889982cc0f8c0ec6f4ddcf929a920504e017b1415
7
+ data.tar.gz: 30373ef50dd2fbc08020781e77d9ec8a03d96f0bce02f41ad8c3a2a01b9ebe9c025b0d90795e977bbc4b9f9c8f0e5f39bb6723920ed59d8d3a455de85a729c41
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fusionauth_client (1.38.0)
4
+ fusionauth_client (1.39.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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.38.0", licenses: ["ApacheV2_0"]) {
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()
@@ -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.38.0'
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.38.0
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-08-17 00:00:00.000000000 Z
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.