swagger_aem 0.9.12 → 0.9.13
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/README.md +5 -5
- data/docs/CrxApi.md +4 -3
- data/lib/swagger_aem.rb +1 -1
- data/lib/swagger_aem/api/console_api.rb +1 -1
- data/lib/swagger_aem/api/cq_api.rb +1 -1
- data/lib/swagger_aem/api/crx_api.rb +7 -6
- data/lib/swagger_aem/api/custom_api.rb +1 -1
- data/lib/swagger_aem/api/sling_api.rb +1 -1
- data/lib/swagger_aem/api_client.rb +1 -1
- data/lib/swagger_aem/api_error.rb +1 -1
- data/lib/swagger_aem/configuration.rb +1 -1
- data/lib/swagger_aem/version.rb +2 -2
- data/spec/api/console_api_spec.rb +1 -1
- data/spec/api/cq_api_spec.rb +1 -1
- data/spec/api/crx_api_spec.rb +2 -2
- data/spec/api/custom_api_spec.rb +1 -1
- data/spec/api/sling_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/swagger_aem.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a1e844a0d383b73a7887ea67da22d505923010f
|
4
|
+
data.tar.gz: ab25173d0e692aaf47fbe6a66352cabc87e14074
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 197ed22127287ddf8a075d4cd7a5ab8dc8ab13e9123354a7e10a562222dcf8a73e90d743ea0914d320348031dbe0fec7d59dc1fe1a0342059dc9fd057fa8ae29
|
7
|
+
data.tar.gz: e3146d8d9154a5dce3488cb2bc5c57019d8c1e60340f47b1d707075ae3bead2cec84edcce3ac40e20e665ec72558fb03ed27d8219e042486f372fe1488c2bdd4
|
data/README.md
CHANGED
@@ -6,8 +6,8 @@ Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
|
6
6
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
8
8
|
|
9
|
-
- API version: 1.1.
|
10
|
-
- Package version: 0.9.
|
9
|
+
- API version: 1.1.14
|
10
|
+
- Package version: 0.9.13
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [http://shinesolutions.com](http://shinesolutions.com)
|
13
13
|
|
@@ -24,15 +24,15 @@ gem build swagger_aem.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./swagger_aem-0.9.
|
27
|
+
gem install ./swagger_aem-0.9.13.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./swagger_aem-0.9.
|
29
|
+
(for development, run `gem install --dev ./swagger_aem-0.9.13.gem` to install the development dependencies)
|
30
30
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
32
|
|
33
33
|
Finally add this to the Gemfile:
|
34
34
|
|
35
|
-
gem 'swagger_aem', '~> 0.9.
|
35
|
+
gem 'swagger_aem', '~> 0.9.13'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
data/docs/CrxApi.md
CHANGED
@@ -195,7 +195,7 @@ Name | Type | Description | Notes
|
|
195
195
|
|
196
196
|
|
197
197
|
# **post_set_password**
|
198
|
-
> post_set_password(old, plain, verify)
|
198
|
+
> String post_set_password(old, plain, verify)
|
199
199
|
|
200
200
|
|
201
201
|
|
@@ -220,7 +220,8 @@ verify = "verify_example" # String |
|
|
220
220
|
|
221
221
|
|
222
222
|
begin
|
223
|
-
api_instance.post_set_password(old, plain, verify)
|
223
|
+
result = api_instance.post_set_password(old, plain, verify)
|
224
|
+
p result
|
224
225
|
rescue SwaggerAemClient::ApiError => e
|
225
226
|
puts "Exception when calling CrxApi->post_set_password: #{e}"
|
226
227
|
end
|
@@ -236,7 +237,7 @@ Name | Type | Description | Notes
|
|
236
237
|
|
237
238
|
### Return type
|
238
239
|
|
239
|
-
|
240
|
+
**String**
|
240
241
|
|
241
242
|
### Authorization
|
242
243
|
|
data/lib/swagger_aem.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.14
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -229,10 +229,10 @@ module SwaggerAemClient
|
|
229
229
|
# @param plain
|
230
230
|
# @param verify
|
231
231
|
# @param [Hash] opts the optional parameters
|
232
|
-
# @return [
|
232
|
+
# @return [String]
|
233
233
|
def post_set_password(old, plain, verify, opts = {})
|
234
|
-
post_set_password_with_http_info(old, plain, verify, opts)
|
235
|
-
return
|
234
|
+
data, _status_code, _headers = post_set_password_with_http_info(old, plain, verify, opts)
|
235
|
+
return data
|
236
236
|
end
|
237
237
|
|
238
238
|
#
|
@@ -241,7 +241,7 @@ module SwaggerAemClient
|
|
241
241
|
# @param plain
|
242
242
|
# @param verify
|
243
243
|
# @param [Hash] opts the optional parameters
|
244
|
-
# @return [Array<(
|
244
|
+
# @return [Array<(String, Fixnum, Hash)>] String data, response status code and response headers
|
245
245
|
def post_set_password_with_http_info(old, plain, verify, opts = {})
|
246
246
|
if @api_client.config.debugging
|
247
247
|
@api_client.config.logger.debug "Calling API: CrxApi.post_set_password ..."
|
@@ -277,7 +277,8 @@ module SwaggerAemClient
|
|
277
277
|
:query_params => query_params,
|
278
278
|
:form_params => form_params,
|
279
279
|
:body => post_body,
|
280
|
-
:auth_names => auth_names
|
280
|
+
:auth_names => auth_names,
|
281
|
+
:return_type => 'String')
|
281
282
|
if @api_client.config.debugging
|
282
283
|
@api_client.config.logger.debug "API called: CrxApi#post_set_password\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
283
284
|
end
|
data/lib/swagger_aem/version.rb
CHANGED
@@ -3,12 +3,12 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.14
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
10
10
|
=end
|
11
11
|
|
12
12
|
module SwaggerAemClient
|
13
|
-
VERSION = "0.9.
|
13
|
+
VERSION = "0.9.13"
|
14
14
|
end
|
data/spec/api/cq_api_spec.rb
CHANGED
data/spec/api/crx_api_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
|
5
5
|
|
6
|
-
OpenAPI spec version: 1.1.
|
6
|
+
OpenAPI spec version: 1.1.14
|
7
7
|
Contact: opensource@shinesolutions.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -87,7 +87,7 @@ describe 'CrxApi' do
|
|
87
87
|
# @param plain
|
88
88
|
# @param verify
|
89
89
|
# @param [Hash] opts the optional parameters
|
90
|
-
# @return [
|
90
|
+
# @return [String]
|
91
91
|
describe 'post_set_password test' do
|
92
92
|
it "should work" do
|
93
93
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/spec/api/custom_api_spec.rb
CHANGED
data/spec/api/sling_api_spec.rb
CHANGED
data/spec/api_client_spec.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/swagger_aem.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: swagger_aem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shine Solutions
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-04-
|
11
|
+
date: 2017-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|