docs/PackagesApi.md in cloudsmith-api-2.0.1 vs docs/PackagesApi.md in cloudsmith-api-2.0.2
- old
+ new
@@ -4,11 +4,11 @@
Method | HTTP request | Description
------------- | ------------- | -------------
[**packages_copy**](PackagesApi.md#packages_copy) | **POST** /packages/{owner}/{repo}/{identifier}/copy/ | Copy a package to another repository.
[**packages_delete**](PackagesApi.md#packages_delete) | **DELETE** /packages/{owner}/{repo}/{identifier}/ | Delete a specific package in a repository.
-[**packages_dependencies**](PackagesApi.md#packages_dependencies) | **GET** /packages/{owner}/{repo}/{identifier}/dependencies/ | Get the direct (non-transitive) dependencies list for a package.
+[**packages_dependencies**](PackagesApi.md#packages_dependencies) | **GET** /packages/{owner}/{repo}/{identifier}/dependencies/ | Get the list of dependencies for a package. Transitive dependencies are included where supported.
[**packages_list**](PackagesApi.md#packages_list) | **GET** /packages/{owner}/{repo}/ | Get a list of all packages associated with repository.
[**packages_move**](PackagesApi.md#packages_move) | **POST** /packages/{owner}/{repo}/{identifier}/move/ | Move a package to another repository.
[**packages_quarantine**](PackagesApi.md#packages_quarantine) | **POST** /packages/{owner}/{repo}/{identifier}/quarantine/ | Quarantine or restore a package.
[**packages_read**](PackagesApi.md#packages_read) | **GET** /packages/{owner}/{repo}/{identifier}/ | Get a specific package in a repository.
[**packages_resync**](PackagesApi.md#packages_resync) | **POST** /packages/{owner}/{repo}/{identifier}/resync/ | Schedule a package for resynchronisation.
@@ -187,13 +187,13 @@
# **packages_dependencies**
> PackageDependencies packages_dependencies(owner, repo, identifier)
-Get the direct (non-transitive) dependencies list for a package.
+Get the list of dependencies for a package. Transitive dependencies are included where supported.
-Get the direct (non-transitive) dependencies list for a package.
+Get the list of dependencies for a package. Transitive dependencies are included where supported.
### Example
```ruby
# load the gem
require 'cloudsmith-api'
@@ -213,10 +213,10 @@
identifier = 'identifier_example' # String |
begin
- #Get the direct (non-transitive) dependencies list for a package.
+ #Get the list of dependencies for a package. Transitive dependencies are included where supported.
result = api_instance.packages_dependencies(owner, repo, identifier)
p result
rescue CloudsmithApi::ApiError => e
puts "Exception when calling PackagesApi->packages_dependencies: #{e}"
end