fusionauth_client 1.13.0 → 1.14.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/build.savant +2 -2
- data/fusionauth_client.gemspec +1 -1
- data/lib/fusionauth/fusionauth_client.rb +4 -4
- 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: de32e8397d38b4822cb2496c708159675b4a19c16b11fcce8714f2dd6b9345ea
|
|
4
|
+
data.tar.gz: 44919b0d9cd79a12cdb57aa8607d33e96b28d00f67462fc86c35bd9212d24ef6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da20d931c0d71ff0a363c70c4b76b95e38605109c094eabe2a9ee9d3232f2a0739210ff15a9498a9261b62a6d188f878c55541dee191c374c8565a4d5c10f4c2
|
|
7
|
+
data.tar.gz: e1f141e422e44c34ae1a01082b0e587b4e88f8e0eb58fb8e11c56e11b56cfde216dd2aa53301669781d61718e4f3fc3d2c27ef092f2fa97244e6a37ac385cb05
|
data/build.savant
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (c) 2018, FusionAuth, All Rights Reserved
|
|
2
|
+
* Copyright (c) 2018-2020, FusionAuth, All Rights Reserved
|
|
3
3
|
*
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
* you may not use this file except in compliance with the License.
|
|
@@ -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.14.0", licenses: ["ApacheV2_0"]) {
|
|
20
20
|
workflow {
|
|
21
21
|
standard()
|
|
22
22
|
}
|
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.14.0'
|
|
8
8
|
spec.authors = ['Brian Pontarelli', 'Daniel DeGroff']
|
|
9
9
|
spec.email = %w(brian@fusionauth.io daniel@fusionauth.io)
|
|
10
10
|
|
|
@@ -411,7 +411,7 @@ module FusionAuth
|
|
|
411
411
|
#
|
|
412
412
|
# @param user_ids [Array] The ids of the users to deactivate.
|
|
413
413
|
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
|
414
|
-
# @deprecated This method has been renamed to deactivate_users_by_ids, use
|
|
414
|
+
# @deprecated This method has been renamed to deactivate_users_by_ids, use that method instead.
|
|
415
415
|
def deactivate_users(user_ids)
|
|
416
416
|
start.uri('/api/user/bulk')
|
|
417
417
|
.url_parameter('userId', user_ids)
|
|
@@ -638,7 +638,7 @@ module FusionAuth
|
|
|
638
638
|
#
|
|
639
639
|
# @param request [OpenStruct, Hash] The UserDeleteRequest.
|
|
640
640
|
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
|
641
|
-
# @deprecated This method has been renamed to delete_users_by_query, use
|
|
641
|
+
# @deprecated This method has been renamed to delete_users_by_query, use that method instead.
|
|
642
642
|
def delete_users(request)
|
|
643
643
|
start.uri('/api/user/bulk')
|
|
644
644
|
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
|
@@ -2287,7 +2287,7 @@ module FusionAuth
|
|
|
2287
2287
|
#
|
|
2288
2288
|
# @param ids [Array] The user ids to search for.
|
|
2289
2289
|
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
|
2290
|
-
# @deprecated This method has been renamed to search_users_by_ids, use
|
|
2290
|
+
# @deprecated This method has been renamed to search_users_by_ids, use that method instead.
|
|
2291
2291
|
def search_users(ids)
|
|
2292
2292
|
start.uri('/api/user/search')
|
|
2293
2293
|
.url_parameter('ids', ids)
|
|
@@ -2326,7 +2326,7 @@ module FusionAuth
|
|
|
2326
2326
|
# @param request [OpenStruct, Hash] The search criteria and pagination constraints. Fields used: ids, query, queryString, numberOfResults, orderBy, startRow,
|
|
2327
2327
|
# and sortFields.
|
|
2328
2328
|
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
|
2329
|
-
# @deprecated This method has been renamed to search_users_by_query, use
|
|
2329
|
+
# @deprecated This method has been renamed to search_users_by_query, use that method instead.
|
|
2330
2330
|
def search_users_by_query_string(request)
|
|
2331
2331
|
start.uri('/api/user/search')
|
|
2332
2332
|
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
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.14.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:
|
|
12
|
+
date: 2020-01-23 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.
|