Skip to content

Commit 4080cb0

Browse files
committed
feat: updates bindings to 2.0.23
1 parent ebea53a commit 4080cb0

340 files changed

Lines changed: 19599 additions & 145 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bindings/java/src/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ Class | Method | HTTP request | Description
243243
*PackagesApi* | [**packagesUploadDart**](docs/PackagesApi.md#packagesUploadDart) | **POST** /packages/{owner}/{repo}/upload/dart/ | Create a new Dart package
244244
*PackagesApi* | [**packagesUploadDeb**](docs/PackagesApi.md#packagesUploadDeb) | **POST** /packages/{owner}/{repo}/upload/deb/ | Create a new Debian package
245245
*PackagesApi* | [**packagesUploadDocker**](docs/PackagesApi.md#packagesUploadDocker) | **POST** /packages/{owner}/{repo}/upload/docker/ | Create a new Docker package
246+
*PackagesApi* | [**packagesUploadGeneric**](docs/PackagesApi.md#packagesUploadGeneric) | **POST** /packages/{owner}/{repo}/upload/generic/ | Create a new Generic package
246247
*PackagesApi* | [**packagesUploadGo**](docs/PackagesApi.md#packagesUploadGo) | **POST** /packages/{owner}/{repo}/upload/go/ | Create a new Go package
247248
*PackagesApi* | [**packagesUploadHelm**](docs/PackagesApi.md#packagesUploadHelm) | **POST** /packages/{owner}/{repo}/upload/helm/ | Create a new Helm package
248249
*PackagesApi* | [**packagesUploadHex**](docs/PackagesApi.md#packagesUploadHex) | **POST** /packages/{owner}/{repo}/upload/hex/ | Create a new Hex package
@@ -269,6 +270,7 @@ Class | Method | HTTP request | Description
269270
*PackagesApi* | [**packagesValidateUploadDart**](docs/PackagesApi.md#packagesValidateUploadDart) | **POST** /packages/{owner}/{repo}/validate-upload/dart/ | Validate parameters for create Dart package
270271
*PackagesApi* | [**packagesValidateUploadDeb**](docs/PackagesApi.md#packagesValidateUploadDeb) | **POST** /packages/{owner}/{repo}/validate-upload/deb/ | Validate parameters for create Debian package
271272
*PackagesApi* | [**packagesValidateUploadDocker**](docs/PackagesApi.md#packagesValidateUploadDocker) | **POST** /packages/{owner}/{repo}/validate-upload/docker/ | Validate parameters for create Docker package
273+
*PackagesApi* | [**packagesValidateUploadGeneric**](docs/PackagesApi.md#packagesValidateUploadGeneric) | **POST** /packages/{owner}/{repo}/validate-upload/generic/ | Validate parameters for create Generic package
272274
*PackagesApi* | [**packagesValidateUploadGo**](docs/PackagesApi.md#packagesValidateUploadGo) | **POST** /packages/{owner}/{repo}/validate-upload/go/ | Validate parameters for create Go package
273275
*PackagesApi* | [**packagesValidateUploadHelm**](docs/PackagesApi.md#packagesValidateUploadHelm) | **POST** /packages/{owner}/{repo}/validate-upload/helm/ | Validate parameters for create Helm package
274276
*PackagesApi* | [**packagesValidateUploadHex**](docs/PackagesApi.md#packagesValidateUploadHex) | **POST** /packages/{owner}/{repo}/validate-upload/hex/ | Validate parameters for create Hex package
@@ -359,6 +361,12 @@ Class | Method | HTTP request | Description
359361
*ReposApi* | [**reposUpstreamDockerPartialUpdate**](docs/ReposApi.md#reposUpstreamDockerPartialUpdate) | **PATCH** /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Partially update a Docker upstream config for this repository.
360362
*ReposApi* | [**reposUpstreamDockerRead**](docs/ReposApi.md#reposUpstreamDockerRead) | **GET** /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Retrieve a Docker upstream config for this repository.
361363
*ReposApi* | [**reposUpstreamDockerUpdate**](docs/ReposApi.md#reposUpstreamDockerUpdate) | **PUT** /repos/{owner}/{identifier}/upstream/docker/{slug_perm}/ | Update a Docker upstream config for this repository.
364+
*ReposApi* | [**reposUpstreamGenericCreate**](docs/ReposApi.md#reposUpstreamGenericCreate) | **POST** /repos/{owner}/{identifier}/upstream/generic/ | Create a Generic upstream config for this repository.
365+
*ReposApi* | [**reposUpstreamGenericDelete**](docs/ReposApi.md#reposUpstreamGenericDelete) | **DELETE** /repos/{owner}/{identifier}/upstream/generic/{slug_perm}/ | Delete a Generic upstream config for this repository.
366+
*ReposApi* | [**reposUpstreamGenericList**](docs/ReposApi.md#reposUpstreamGenericList) | **GET** /repos/{owner}/{identifier}/upstream/generic/ | List Generic upstream configs for this repository.
367+
*ReposApi* | [**reposUpstreamGenericPartialUpdate**](docs/ReposApi.md#reposUpstreamGenericPartialUpdate) | **PATCH** /repos/{owner}/{identifier}/upstream/generic/{slug_perm}/ | Partially update a Generic upstream config for this repository.
368+
*ReposApi* | [**reposUpstreamGenericRead**](docs/ReposApi.md#reposUpstreamGenericRead) | **GET** /repos/{owner}/{identifier}/upstream/generic/{slug_perm}/ | Retrieve a Generic upstream config for this repository.
369+
*ReposApi* | [**reposUpstreamGenericUpdate**](docs/ReposApi.md#reposUpstreamGenericUpdate) | **PUT** /repos/{owner}/{identifier}/upstream/generic/{slug_perm}/ | Update a Generic upstream config for this repository.
362370
*ReposApi* | [**reposUpstreamGoCreate**](docs/ReposApi.md#reposUpstreamGoCreate) | **POST** /repos/{owner}/{identifier}/upstream/go/ | Create a Go upstream config for this repository.
363371
*ReposApi* | [**reposUpstreamGoDelete**](docs/ReposApi.md#reposUpstreamGoDelete) | **DELETE** /repos/{owner}/{identifier}/upstream/go/{slug_perm}/ | Delete a Go upstream config for this repository.
364372
*ReposApi* | [**reposUpstreamGoList**](docs/ReposApi.md#reposUpstreamGoList) | **GET** /repos/{owner}/{identifier}/upstream/go/ | List Go upstream configs for this repository.
@@ -511,6 +519,11 @@ Class | Method | HTTP request | Description
511519
- [Format](docs/Format.md)
512520
- [FormatSupport](docs/FormatSupport.md)
513521
- [FormatSupportUpstream](docs/FormatSupportUpstream.md)
522+
- [GenericPackageUpload](docs/GenericPackageUpload.md)
523+
- [GenericPackageUploadRequest](docs/GenericPackageUploadRequest.md)
524+
- [GenericUpstream](docs/GenericUpstream.md)
525+
- [GenericUpstreamRequest](docs/GenericUpstreamRequest.md)
526+
- [GenericUpstreamRequestPatch](docs/GenericUpstreamRequestPatch.md)
514527
- [GeoIpLocation](docs/GeoIpLocation.md)
515528
- [GoPackageUpload](docs/GoPackageUpload.md)
516529
- [GoPackageUploadRequest](docs/GoPackageUploadRequest.md)

bindings/java/src/docs/AlpinePackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2121
**extension** | **String** | | [optional]
2222
**filename** | **String** | | [optional]
23+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2324
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2425
**format** | **String** | | [optional]
2526
**formatUrl** | **String** | | [optional]

bindings/java/src/docs/CargoPackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2121
**extension** | **String** | | [optional]
2222
**filename** | **String** | | [optional]
23+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2324
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2425
**format** | **String** | | [optional]
2526
**formatUrl** | **String** | | [optional]

bindings/java/src/docs/CocoapodsPackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2121
**extension** | **String** | | [optional]
2222
**filename** | **String** | | [optional]
23+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2324
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2425
**format** | **String** | | [optional]
2526
**formatUrl** | **String** | | [optional]

bindings/java/src/docs/ComposerPackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2121
**extension** | **String** | | [optional]
2222
**filename** | **String** | | [optional]
23+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2324
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2425
**format** | **String** | | [optional]
2526
**formatUrl** | **String** | | [optional]

bindings/java/src/docs/ConanPackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
2222
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2323
**extension** | **String** | | [optional]
2424
**filename** | **String** | | [optional]
25+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2526
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2627
**format** | **String** | | [optional]
2728
**formatUrl** | **String** | | [optional]

bindings/java/src/docs/CondaPackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2121
**extension** | **String** | | [optional]
2222
**filename** | **String** | | [optional]
23+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2324
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2425
**format** | **String** | | [optional]
2526
**formatUrl** | **String** | | [optional]

bindings/java/src/docs/CranPackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2121
**extension** | **String** | | [optional]
2222
**filename** | **String** | | [optional]
23+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2324
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2425
**format** | **String** | | [optional]
2526
**formatUrl** | **String** | | [optional]

bindings/java/src/docs/DartPackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2121
**extension** | **String** | | [optional]
2222
**filename** | **String** | | [optional]
23+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2324
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2425
**format** | **String** | | [optional]
2526
**formatUrl** | **String** | | [optional]

bindings/java/src/docs/DebPackageUpload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**epoch** | **java.math.BigInteger** | The epoch of the package version (if any). | [optional]
2121
**extension** | **String** | | [optional]
2222
**filename** | **String** | | [optional]
23+
**filepath** | **String** | Full path to the file, including filename e.g. bin/utils/tool.tar.gz | [optional]
2324
**files** | [**List<PackageFile>**](PackageFile.md) | | [optional]
2425
**format** | **String** | | [optional]
2526
**formatUrl** | **String** | | [optional]

0 commit comments

Comments
 (0)