swagger_aem 0.9.9 → 0.9.10

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
  SHA1:
3
- metadata.gz: a6b6891658c3af69488ee2ca40f8416c7c46b376
4
- data.tar.gz: 6a1e14e767e447a9b727d417421672445bcce4e5
3
+ metadata.gz: 26b7e493be289fb92bbb3d6a97dced8ec574f2e7
4
+ data.tar.gz: cfbe6c9e376230f79af0abcbd293e7147eb84659
5
5
  SHA512:
6
- metadata.gz: 5f31fa137ddad460cbbe4a0df53e24d87440c773e0519587e7adf00c4569661024ab3437e4ed1215632567cf858235ff89e7f2175b142e4e6a64038b545739bf
7
- data.tar.gz: 82c2c2d0671ee70618cdd73352f974e5a1b77abb83cb6ac8fcca89d88b3e6facaf301d4c5dea3a84f7d2f444ee43b104a853d549245403701209906c6d2f92fd
6
+ metadata.gz: c54241c7002ea68a3b33e07fb639a5be357c9d11d4794183ae6aa84f3377cf3bca34981e6f25876870319080d47a11ebad3f98335e23309425d134317c63b52e
7
+ data.tar.gz: c467e08f2118879e353a6242449112bbb1ac49ebae6bcd4dea6493698cae790ce6ebb857869786b085f5f271f6c9287937e53e8d8807e7db71b68ddcc7c89a07
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.9
10
- - Package version: 0.9.9
9
+ - API version: 1.1.10
10
+ - Package version: 0.9.10
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.9.gem
27
+ gem install ./swagger_aem-0.9.10.gem
28
28
  ```
29
- (for development, run `gem install --dev ./swagger_aem-0.9.9.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./swagger_aem-0.9.10.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.9'
35
+ gem 'swagger_aem', '~> 0.9.10'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -91,6 +91,8 @@ Class | Method | HTTP request | Description
91
91
  *SwaggerAemClient::CrxApi* | [**post_package_service_json**](docs/CrxApi.md#post_package_service_json) | **POST** /crx/packmgr/service/.json/{path} |
92
92
  *SwaggerAemClient::CrxApi* | [**post_package_update**](docs/CrxApi.md#post_package_update) | **POST** /crx/packmgr/update.jsp |
93
93
  *SwaggerAemClient::CrxApi* | [**post_set_password**](docs/CrxApi.md#post_set_password) | **POST** /crx/explorer/ui/setpassword.jsp |
94
+ *SwaggerAemClient::CustomApi* | [**get_aem_health_check**](docs/CustomApi.md#get_aem_health_check) | **GET** /system/health |
95
+ *SwaggerAemClient::CustomApi* | [**post_config_aem_password_reset**](docs/CustomApi.md#post_config_aem_password_reset) | **POST** /apps/system/config.{runmode}/com.shinesolutions.aem.passwordreset.Activator |
94
96
  *SwaggerAemClient::SlingApi* | [**delete_agent**](docs/SlingApi.md#delete_agent) | **DELETE** /etc/replication/agents.{runmode}/{name} |
95
97
  *SwaggerAemClient::SlingApi* | [**delete_node**](docs/SlingApi.md#delete_node) | **DELETE** /{path}/{name} |
96
98
  *SwaggerAemClient::SlingApi* | [**get_agent**](docs/SlingApi.md#get_agent) | **GET** /etc/replication/agents.{runmode}/{name} |
data/docs/CustomApi.md ADDED
@@ -0,0 +1,118 @@
1
+ # SwaggerAemClient::CustomApi
2
+
3
+ All URIs are relative to *http://localhost/*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**get_aem_health_check**](CustomApi.md#get_aem_health_check) | **GET** /system/health |
8
+ [**post_config_aem_password_reset**](CustomApi.md#post_config_aem_password_reset) | **POST** /apps/system/config.{runmode}/com.shinesolutions.aem.passwordreset.Activator |
9
+
10
+
11
+ # **get_aem_health_check**
12
+ > String get_aem_health_check(opts)
13
+
14
+
15
+
16
+ ### Example
17
+ ```ruby
18
+ # load the gem
19
+ require 'swagger_aem'
20
+ # setup authorization
21
+ SwaggerAemClient.configure do |config|
22
+ # Configure HTTP basic authorization: aemAuth
23
+ config.username = 'YOUR USERNAME'
24
+ config.password = 'YOUR PASSWORD'
25
+ end
26
+
27
+ api_instance = SwaggerAemClient::CustomApi.new
28
+
29
+ opts = {
30
+ tags: "tags_example", # String |
31
+ combine_tags_or: true # BOOLEAN |
32
+ }
33
+
34
+ begin
35
+ result = api_instance.get_aem_health_check(opts)
36
+ p result
37
+ rescue SwaggerAemClient::ApiError => e
38
+ puts "Exception when calling CustomApi->get_aem_health_check: #{e}"
39
+ end
40
+ ```
41
+
42
+ ### Parameters
43
+
44
+ Name | Type | Description | Notes
45
+ ------------- | ------------- | ------------- | -------------
46
+ **tags** | **String**| | [optional]
47
+ **combine_tags_or** | **BOOLEAN**| | [optional]
48
+
49
+ ### Return type
50
+
51
+ **String**
52
+
53
+ ### Authorization
54
+
55
+ [aemAuth](../README.md#aemAuth)
56
+
57
+ ### HTTP request headers
58
+
59
+ - **Content-Type**: Not defined
60
+ - **Accept**: application/json
61
+
62
+
63
+
64
+ # **post_config_aem_password_reset**
65
+ > post_config_aem_password_reset(runmode, opts)
66
+
67
+
68
+
69
+ ### Example
70
+ ```ruby
71
+ # load the gem
72
+ require 'swagger_aem'
73
+ # setup authorization
74
+ SwaggerAemClient.configure do |config|
75
+ # Configure HTTP basic authorization: aemAuth
76
+ config.username = 'YOUR USERNAME'
77
+ config.password = 'YOUR PASSWORD'
78
+ end
79
+
80
+ api_instance = SwaggerAemClient::CustomApi.new
81
+
82
+ runmode = "runmode_example" # String |
83
+
84
+ opts = {
85
+ passwordreset_authorizables: "passwordreset_authorizables_example", # String |
86
+ passwordreset_authorizables_type_hint: "passwordreset_authorizables_type_hint_example" # String |
87
+ }
88
+
89
+ begin
90
+ api_instance.post_config_aem_password_reset(runmode, opts)
91
+ rescue SwaggerAemClient::ApiError => e
92
+ puts "Exception when calling CustomApi->post_config_aem_password_reset: #{e}"
93
+ end
94
+ ```
95
+
96
+ ### Parameters
97
+
98
+ Name | Type | Description | Notes
99
+ ------------- | ------------- | ------------- | -------------
100
+ **runmode** | **String**| |
101
+ **passwordreset_authorizables** | **String**| | [optional]
102
+ **passwordreset_authorizables_type_hint** | **String**| | [optional]
103
+
104
+ ### Return type
105
+
106
+ nil (empty response body)
107
+
108
+ ### Authorization
109
+
110
+ [aemAuth](../README.md#aemAuth)
111
+
112
+ ### HTTP request headers
113
+
114
+ - **Content-Type**: Not defined
115
+ - **Accept**: text/plain
116
+
117
+
118
+
data/docs/SlingApi.md CHANGED
@@ -440,7 +440,8 @@ opts = {
440
440
  operation: "operation_example", # String |
441
441
  jcrcontenttrigger_distribute: true, # BOOLEAN |
442
442
  jcrcontenttrigger_modified: true, # BOOLEAN |
443
- jcrcontentuser_id: "jcrcontentuser_id_example" # String |
443
+ jcrcontentuser_id: "jcrcontentuser_id_example", # String |
444
+ jcrcontentprotocol_https_relaxed: true # BOOLEAN |
444
445
  }
445
446
 
446
447
  begin
@@ -481,6 +482,7 @@ Name | Type | Description | Notes
481
482
  **jcrcontenttrigger_distribute** | **BOOLEAN**| | [optional]
482
483
  **jcrcontenttrigger_modified** | **BOOLEAN**| | [optional]
483
484
  **jcrcontentuser_id** | **String**| | [optional]
485
+ **jcrcontentprotocol_https_relaxed** | **BOOLEAN**| | [optional]
484
486
 
485
487
  ### Return type
486
488
 
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.9
6
+ OpenAPI spec version: 1.1.10
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -21,6 +21,7 @@ require 'swagger_aem/configuration'
21
21
  require 'swagger_aem/api/console_api'
22
22
  require 'swagger_aem/api/cq_api'
23
23
  require 'swagger_aem/api/crx_api'
24
+ require 'swagger_aem/api/custom_api'
24
25
  require 'swagger_aem/api/sling_api'
25
26
 
26
27
  module SwaggerAemClient
@@ -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.9
6
+ OpenAPI spec version: 1.1.10
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -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.9
6
+ OpenAPI spec version: 1.1.10
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -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.9
6
+ OpenAPI spec version: 1.1.10
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -0,0 +1,131 @@
1
+ =begin
2
+ #Adobe Experience Manager (AEM) API
3
+
4
+ #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
+
6
+ OpenAPI spec version: 1.1.10
7
+ Contact: opensource@shinesolutions.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ =end
11
+
12
+ require "uri"
13
+
14
+ module SwaggerAemClient
15
+ class CustomApi
16
+ attr_accessor :api_client
17
+
18
+ def initialize(api_client = ApiClient.default)
19
+ @api_client = api_client
20
+ end
21
+
22
+ #
23
+ #
24
+ # @param [Hash] opts the optional parameters
25
+ # @option opts [String] :tags
26
+ # @option opts [BOOLEAN] :combine_tags_or
27
+ # @return [String]
28
+ def get_aem_health_check(opts = {})
29
+ data, _status_code, _headers = get_aem_health_check_with_http_info(opts)
30
+ return data
31
+ end
32
+
33
+ #
34
+ #
35
+ # @param [Hash] opts the optional parameters
36
+ # @option opts [String] :tags
37
+ # @option opts [BOOLEAN] :combine_tags_or
38
+ # @return [Array<(String, Fixnum, Hash)>] String data, response status code and response headers
39
+ def get_aem_health_check_with_http_info(opts = {})
40
+ if @api_client.config.debugging
41
+ @api_client.config.logger.debug "Calling API: CustomApi.get_aem_health_check ..."
42
+ end
43
+ # resource path
44
+ local_var_path = "/system/health".sub('{format}','json')
45
+
46
+ # query parameters
47
+ query_params = {}
48
+ query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil?
49
+ query_params[:'combineTagsOr'] = opts[:'combine_tags_or'] if !opts[:'combine_tags_or'].nil?
50
+
51
+ # header parameters
52
+ header_params = {}
53
+ # HTTP header 'Accept' (if needed)
54
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
55
+
56
+ # form parameters
57
+ form_params = {}
58
+
59
+ # http body (model)
60
+ post_body = nil
61
+ auth_names = ['aemAuth']
62
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path,
63
+ :header_params => header_params,
64
+ :query_params => query_params,
65
+ :form_params => form_params,
66
+ :body => post_body,
67
+ :auth_names => auth_names,
68
+ :return_type => 'String')
69
+ if @api_client.config.debugging
70
+ @api_client.config.logger.debug "API called: CustomApi#get_aem_health_check\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
71
+ end
72
+ return data, status_code, headers
73
+ end
74
+
75
+ #
76
+ #
77
+ # @param runmode
78
+ # @param [Hash] opts the optional parameters
79
+ # @option opts [String] :passwordreset_authorizables
80
+ # @option opts [String] :passwordreset_authorizables_type_hint
81
+ # @return [nil]
82
+ def post_config_aem_password_reset(runmode, opts = {})
83
+ post_config_aem_password_reset_with_http_info(runmode, opts)
84
+ return nil
85
+ end
86
+
87
+ #
88
+ #
89
+ # @param runmode
90
+ # @param [Hash] opts the optional parameters
91
+ # @option opts [String] :passwordreset_authorizables
92
+ # @option opts [String] :passwordreset_authorizables_type_hint
93
+ # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
94
+ def post_config_aem_password_reset_with_http_info(runmode, opts = {})
95
+ if @api_client.config.debugging
96
+ @api_client.config.logger.debug "Calling API: CustomApi.post_config_aem_password_reset ..."
97
+ end
98
+ # verify the required parameter 'runmode' is set
99
+ fail ArgumentError, "Missing the required parameter 'runmode' when calling CustomApi.post_config_aem_password_reset" if runmode.nil?
100
+ # resource path
101
+ local_var_path = "/apps/system/config.{runmode}/com.shinesolutions.aem.passwordreset.Activator".sub('{format}','json').sub('{' + 'runmode' + '}', runmode.to_s)
102
+
103
+ # query parameters
104
+ query_params = {}
105
+ query_params[:'passwordreset.authorizables'] = opts[:'passwordreset_authorizables'] if !opts[:'passwordreset_authorizables'].nil?
106
+ query_params[:'passwordreset.authorizables@TypeHint'] = opts[:'passwordreset_authorizables_type_hint'] if !opts[:'passwordreset_authorizables_type_hint'].nil?
107
+
108
+ # header parameters
109
+ header_params = {}
110
+ # HTTP header 'Accept' (if needed)
111
+ header_params['Accept'] = @api_client.select_header_accept(['text/plain'])
112
+
113
+ # form parameters
114
+ form_params = {}
115
+
116
+ # http body (model)
117
+ post_body = nil
118
+ auth_names = ['aemAuth']
119
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path,
120
+ :header_params => header_params,
121
+ :query_params => query_params,
122
+ :form_params => form_params,
123
+ :body => post_body,
124
+ :auth_names => auth_names)
125
+ if @api_client.config.debugging
126
+ @api_client.config.logger.debug "API called: CustomApi#post_config_aem_password_reset\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
127
+ end
128
+ return data, status_code, headers
129
+ end
130
+ end
131
+ end
@@ -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.9
6
+ OpenAPI spec version: 1.1.10
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -434,6 +434,7 @@ module SwaggerAemClient
434
434
  # @option opts [BOOLEAN] :jcrcontenttrigger_distribute
435
435
  # @option opts [BOOLEAN] :jcrcontenttrigger_modified
436
436
  # @option opts [String] :jcrcontentuser_id
437
+ # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
437
438
  # @return [nil]
438
439
  def post_agent(runmode, name, opts = {})
439
440
  post_agent_with_http_info(runmode, name, opts)
@@ -470,6 +471,7 @@ module SwaggerAemClient
470
471
  # @option opts [BOOLEAN] :jcrcontenttrigger_distribute
471
472
  # @option opts [BOOLEAN] :jcrcontenttrigger_modified
472
473
  # @option opts [String] :jcrcontentuser_id
474
+ # @option opts [BOOLEAN] :jcrcontentprotocol_https_relaxed
473
475
  # @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
474
476
  def post_agent_with_http_info(runmode, name, opts = {})
475
477
  if @api_client.config.debugging
@@ -509,6 +511,7 @@ module SwaggerAemClient
509
511
  query_params[:'jcr:content/triggerDistribute'] = opts[:'jcrcontenttrigger_distribute'] if !opts[:'jcrcontenttrigger_distribute'].nil?
510
512
  query_params[:'jcr:content/triggerModified'] = opts[:'jcrcontenttrigger_modified'] if !opts[:'jcrcontenttrigger_modified'].nil?
511
513
  query_params[:'jcr:content/userId'] = opts[:'jcrcontentuser_id'] if !opts[:'jcrcontentuser_id'].nil?
514
+ query_params[:'jcr:content/protocolHTTPSRelaxed'] = opts[:'jcrcontentprotocol_https_relaxed'] if !opts[:'jcrcontentprotocol_https_relaxed'].nil?
512
515
 
513
516
  # header parameters
514
517
  header_params = {}
@@ -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.9
6
+ OpenAPI spec version: 1.1.10
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -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.9
6
+ OpenAPI spec version: 1.1.10
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -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.9
6
+ OpenAPI spec version: 1.1.10
7
7
  Contact: opensource@shinesolutions.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -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.9
6
+ OpenAPI spec version: 1.1.10
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.9"
13
+ VERSION = "0.9.10"
14
14
  end
@@ -0,0 +1,60 @@
1
+ =begin
2
+ #Adobe Experience Manager (AEM) API
3
+
4
+ #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
5
+
6
+ OpenAPI spec version: 1.1.10
7
+ Contact: opensource@shinesolutions.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ =end
11
+
12
+ require 'spec_helper'
13
+ require 'json'
14
+
15
+ # Unit tests for SwaggerAemClient::CustomApi
16
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
17
+ # Please update as you see appropriate
18
+ describe 'CustomApi' do
19
+ before do
20
+ # run before each test
21
+ @instance = SwaggerAemClient::CustomApi.new
22
+ end
23
+
24
+ after do
25
+ # run after each test
26
+ end
27
+
28
+ describe 'test an instance of CustomApi' do
29
+ it 'should create an instact of CustomApi' do
30
+ expect(@instance).to be_instance_of(SwaggerAemClient::CustomApi)
31
+ end
32
+ end
33
+
34
+ # unit tests for get_aem_health_check
35
+ #
36
+ #
37
+ # @param tags
38
+ # @param [Hash] opts the optional parameters
39
+ # @option opts [BOOLEAN] :combine_tags_or
40
+ # @return [nil]
41
+ describe 'get_aem_health_check test' do
42
+ it "should work" do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ # unit tests for post_config_aem_password_reset
48
+ #
49
+ #
50
+ # @param runmode
51
+ # @param [Hash] opts the optional parameters
52
+ # @option opts [String] :passwordreset_authorizables
53
+ # @return [nil]
54
+ describe 'post_config_aem_password_reset test' do
55
+ it "should work" do
56
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
57
+ end
58
+ end
59
+
60
+ end
data/swagger_aem.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  #Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API
7
7
 
8
- OpenAPI spec version: 1.1.9
8
+ OpenAPI spec version: 1.1.10
9
9
  Contact: opensource@shinesolutions.com
10
10
  Generated by: https://github.com/swagger-api/swagger-codegen.git
11
11
 
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.9
4
+ version: 0.9.10
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-03-23 00:00:00.000000000 Z
11
+ date: 2017-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -205,12 +205,14 @@ files:
205
205
  - docs/ConsoleApi.md
206
206
  - docs/CqApi.md
207
207
  - docs/CrxApi.md
208
+ - docs/CustomApi.md
208
209
  - docs/SlingApi.md
209
210
  - git_push.sh
210
211
  - lib/swagger_aem.rb
211
212
  - lib/swagger_aem/api/console_api.rb
212
213
  - lib/swagger_aem/api/cq_api.rb
213
214
  - lib/swagger_aem/api/crx_api.rb
215
+ - lib/swagger_aem/api/custom_api.rb
214
216
  - lib/swagger_aem/api/sling_api.rb
215
217
  - lib/swagger_aem/api_client.rb
216
218
  - lib/swagger_aem/api_error.rb
@@ -219,6 +221,7 @@ files:
219
221
  - spec/api/console_api_spec.rb
220
222
  - spec/api/cq_api_spec.rb
221
223
  - spec/api/crx_api_spec.rb
224
+ - spec/api/custom_api_spec.rb
222
225
  - spec/api/sling_api_spec.rb
223
226
  - spec/api_client_spec.rb
224
227
  - spec/configuration_spec.rb
@@ -252,6 +255,7 @@ test_files:
252
255
  - spec/api/console_api_spec.rb
253
256
  - spec/api/cq_api_spec.rb
254
257
  - spec/api/crx_api_spec.rb
258
+ - spec/api/custom_api_spec.rb
255
259
  - spec/api/sling_api_spec.rb
256
260
  - spec/api_client_spec.rb
257
261
  - spec/configuration_spec.rb