crx_packmgr_api_client 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d46cd66a113fac3af4cf475b7a7d90826c4293ac
4
- data.tar.gz: 59a74828446f50aa1ff94ab591de3e123b8a336e
3
+ metadata.gz: 823b2c7cc40e1e44c0a90d4dfddc8ad50c435304
4
+ data.tar.gz: 1e895c0ff1092d88df8f95e5eee28f243a718b02
5
5
  SHA512:
6
- metadata.gz: c32b9ac0df3aec617a4a8f7b5e408b8bb0df7c68484e80a1cf04138c05b1d4718b7d4c17dfb0f87e567bbd954fa62ef11fd8d4c8c50b152c55e3e37e5852db0d
7
- data.tar.gz: c321338987965101ba084816cf22380b804a1465fd386186549499b1357fe8bd6c056ba787432bc0c78e43409605b5f519d967f2a5b8e72c03dd594e5b698985
6
+ metadata.gz: 00712b8ba35ab4bbba70f84d3e8be72aa218302377d2a158dcd091d24a0078a4ad751dc33321b1582b164feab1e0edce63cc2587103518813a6a590678a83f21
7
+ data.tar.gz: f4d2da1d640de5ddd40ae2c991895a0a76ee1d2806624c3043acff49b99fbc926d6f1ac051e61329821f27511db9d063f534baa820e135525ec1dfb2eb44c82a
data/README.md CHANGED
@@ -7,8 +7,8 @@ API for interacting with the CRX Package Manager in AEM.
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: 6.2.0
10
- - Package version: 1.0.0
11
- - Build date: 2016-12-17T22:39:24.217-06:00
10
+ - Package version: 1.1.0
11
+ - Build date: 2016-12-21T20:35:07.398-06:00
12
12
  - Build package: class io.swagger.codegen.languages.RubyClientCodegen
13
13
 
14
14
  ## Installation
@@ -24,15 +24,15 @@ gem build crx_packmgr_api_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./crx_packmgr_api_client-1.0.0.gem
27
+ gem install ./crx_packmgr_api_client-1.1.0.gem
28
28
  ```
29
- (for development, run `gem install --dev ./crx_packmgr_api_client-1.0.0.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./crx_packmgr_api_client-1.1.0.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 'crx_packmgr_api_client', '~> 1.0.0'
35
+ gem 'crx_packmgr_api_client', '~> 1.1.0'
36
36
 
37
37
  ### Install from Git
38
38
 
Binary file
data/docs/DefaultApi.md CHANGED
@@ -248,7 +248,7 @@ api_instance = CrxPackageManager::DefaultApi.new
248
248
  opts = {
249
249
  q: "q_example", # String | Term to search within package names.
250
250
  include_versions: true, # BOOLEAN | Include versions of package in results.
251
- null: "null_example" # String | The path to a specific package definition.
251
+ path: "path_example" # String | The path to a specific package definition.
252
252
  }
253
253
 
254
254
  begin
@@ -266,7 +266,7 @@ Name | Type | Description | Notes
266
266
  ------------- | ------------- | ------------- | -------------
267
267
  **q** | **String**| Term to search within package names. | [optional]
268
268
  **include_versions** | **BOOLEAN**| Include versions of package in results. | [optional]
269
- **null** | **String**| The path to a specific package definition. | [optional]
269
+ **path** | **String**| The path to a specific package definition. | [optional]
270
270
 
271
271
  ### Return type
272
272
 
@@ -266,7 +266,7 @@ module CrxPackageManager
266
266
  # @param [Hash] opts the optional parameters
267
267
  # @option opts [String] :q Term to search within package names.
268
268
  # @option opts [BOOLEAN] :include_versions Include versions of package in results.
269
- # @option opts [String] :null The path to a specific package definition.
269
+ # @option opts [String] :path The path to a specific package definition.
270
270
  # @return [PackageList]
271
271
  def list(opts = {})
272
272
  data, _status_code, _headers = list_with_http_info(opts)
@@ -278,7 +278,7 @@ module CrxPackageManager
278
278
  # @param [Hash] opts the optional parameters
279
279
  # @option opts [String] :q Term to search within package names.
280
280
  # @option opts [BOOLEAN] :include_versions Include versions of package in results.
281
- # @option opts [String] :null The path to a specific package definition.
281
+ # @option opts [String] :path The path to a specific package definition.
282
282
  # @return [Array<(PackageList, Fixnum, Hash)>] PackageList data, response status code and response headers
283
283
  def list_with_http_info(opts = {})
284
284
  if @api_client.config.debugging
@@ -291,7 +291,7 @@ module CrxPackageManager
291
291
  query_params = {}
292
292
  query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
293
293
  query_params[:'includeVersions'] = opts[:'include_versions'] if !opts[:'include_versions'].nil?
294
- query_params[:'null'] = opts[:'null'] if !opts[:'null'].nil?
294
+ query_params[:'path'] = opts[:'path'] if !opts[:'path'].nil?
295
295
 
296
296
  # header parameters
297
297
  header_params = {}
@@ -22,5 +22,5 @@ limitations under the License.
22
22
  =end
23
23
 
24
24
  module CrxPackageManager
25
- VERSION = "1.0.0"
25
+ VERSION = "1.1.0"
26
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crx_packmgr_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swagger-Codegen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-18 00:00:00.000000000 Z
11
+ date: 2016-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -242,6 +242,7 @@ files:
242
242
  - LICENSE
243
243
  - README.md
244
244
  - crx_packmgr_api_client-0.2.0.gem
245
+ - crx_packmgr_api_client-1.0.0.gem
245
246
  - crx_packmgr_api_client.gemspec
246
247
  - docs/DefaultApi.md
247
248
  - docs/Filter.md