Skip to content

Commit

Permalink
update version and add telephony creds
Browse files Browse the repository at this point in the history
  • Loading branch information
d-telnyx committed May 14, 2021
1 parent d29c1ba commit 213f64d
Show file tree
Hide file tree
Showing 95 changed files with 6,806 additions and 274 deletions.
28 changes: 25 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.telnyx.sdk</groupId>
<artifactId>telnyx</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -42,7 +42,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.telnyx.sdk:telnyx:2.5.0"
compile "com.telnyx.sdk:telnyx:2.6.0"
```

### Others
Expand All @@ -57,7 +57,7 @@ mvn clean package

Then manually install the following JARs:

- `target/telnyx-2.5.0.jar`
- `target/telnyx-2.6.0.jar`
- `target/lib/*.jar`

## JDK Support
Expand Down Expand Up @@ -126,6 +126,11 @@ All URIs are relative to *https://api.telnyx.com/v2*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AccessTokensApi* | [**createTelephonyCredentialToken**](docs/AccessTokensApi.md#createTelephonyCredentialToken) | **POST** /telephony_credentials/{id}/token | Create an Access Token.
*BulkCredentialsApi* | [**bulkCredentialAction**](docs/BulkCredentialsApi.md#bulkCredentialAction) | **POST** /actions/{action}/telephony_credentials | Perform activate or deactivate action on all credentials filtered by the provided tag.
*BulkCredentialsApi* | [**createBulkTelephonyCredential**](docs/BulkCredentialsApi.md#createBulkTelephonyCredential) | **POST** /actions/bulk/telephony_credentials | Creates several credentials
*BulkCredentialsApi* | [**deleteBulkTelephonyCredential**](docs/BulkCredentialsApi.md#deleteBulkTelephonyCredential) | **DELETE** /actions/bulk/telephony_credentials | Delete several credentials
*BulkCredentialsApi* | [**updateBulkTelephonyCredential**](docs/BulkCredentialsApi.md#updateBulkTelephonyCredential) | **PATCH** /actions/bulk/telephony_credentials | Update several credentials
*CallCommandsApi* | [**callAnswer**](docs/CallCommandsApi.md#callAnswer) | **POST** /calls/{call_control_id}/actions/answer | Answer call
*CallCommandsApi* | [**callBridge**](docs/CallCommandsApi.md#callBridge) | **POST** /calls/{call_control_id}/actions/bridge | Bridge calls
*CallCommandsApi* | [**callDial**](docs/CallCommandsApi.md#callDial) | **POST** /calls | Dial
Expand Down Expand Up @@ -177,6 +182,13 @@ Class | Method | HTTP request | Description
*CredentialConnectionsApi* | [**listCredentialConnections**](docs/CredentialConnectionsApi.md#listCredentialConnections) | **GET** /credential_connections | List credential connections
*CredentialConnectionsApi* | [**retrieveCredentialConnection**](docs/CredentialConnectionsApi.md#retrieveCredentialConnection) | **GET** /credential_connections/{id} | Retrieve a credential connection
*CredentialConnectionsApi* | [**updateCredentialConnection**](docs/CredentialConnectionsApi.md#updateCredentialConnection) | **PATCH** /credential_connections/{id} | Update a credential connection
*CredentialsApi* | [**createTelephonyCredential**](docs/CredentialsApi.md#createTelephonyCredential) | **POST** /telephony_credentials | Create a credential
*CredentialsApi* | [**deleteTelephonyCredential**](docs/CredentialsApi.md#deleteTelephonyCredential) | **DELETE** /telephony_credentials/{id} | Delete a credential
*CredentialsApi* | [**findTelephonyCredentials**](docs/CredentialsApi.md#findTelephonyCredentials) | **GET** /telephony_credentials | List all credentials
*CredentialsApi* | [**getTelephonyCredential**](docs/CredentialsApi.md#getTelephonyCredential) | **GET** /telephony_credentials/{id} | Get a credential
*CredentialsApi* | [**listTags**](docs/CredentialsApi.md#listTags) | **GET** /telephony_credentials/tags | List all tags
*CredentialsApi* | [**telephonyCredentialAction**](docs/CredentialsApi.md#telephonyCredentialAction) | **POST** /telephony_credentials/{id}/actions/{action} | Perform activate or deactivate action on provided Credential
*CredentialsApi* | [**updateTelephonyCredential**](docs/CredentialsApi.md#updateTelephonyCredential) | **PATCH** /telephony_credentials/{id} | Update a credential
*CsvDownloadsApi* | [**createCsvDownload**](docs/CsvDownloadsApi.md#createCsvDownload) | **POST** /phone_numbers/csv_downloads | Create a CSV download
*CsvDownloadsApi* | [**listCsvDownloads**](docs/CsvDownloadsApi.md#listCsvDownloads) | **GET** /phone_numbers/csv_downloads | List CSV downloads
*CsvDownloadsApi* | [**retrieveCsvDownload**](docs/CsvDownloadsApi.md#retrieveCsvDownload) | **GET** /phone_numbers/csv_downloads/{id} | Retrieve a CSV download
Expand Down Expand Up @@ -297,6 +309,9 @@ Class | Method | HTTP request | Description
- [AvailablePhoneNumber](docs/AvailablePhoneNumber.md)
- [AvailablePhoneNumbersMetadata](docs/AvailablePhoneNumbersMetadata.md)
- [BridgeRequest](docs/BridgeRequest.md)
- [BulkCredentialRequest](docs/BulkCredentialRequest.md)
- [BulkCredentialResponse](docs/BulkCredentialResponse.md)
- [BulkCredentialResponseData](docs/BulkCredentialResponseData.md)
- [CSVDownloadResponse](docs/CSVDownloadResponse.md)
- [Call](docs/Call.md)
- [CallAnswered](docs/CallAnswered.md)
Expand Down Expand Up @@ -482,6 +497,7 @@ Class | Method | HTTP request | Description
- [GatherUsingAudioRequest](docs/GatherUsingAudioRequest.md)
- [GatherUsingSpeakRequest](docs/GatherUsingSpeakRequest.md)
- [GetAllFaxApplicationsResponse](docs/GetAllFaxApplicationsResponse.md)
- [GetAllTelephonyCredentialResponse](docs/GetAllTelephonyCredentialResponse.md)
- [GetAllTexmlApplicationsResponse](docs/GetAllTexmlApplicationsResponse.md)
- [GetFaxResponse](docs/GetFaxResponse.md)
- [GetRecordingResponse](docs/GetRecordingResponse.md)
Expand Down Expand Up @@ -533,6 +549,8 @@ Class | Method | HTTP request | Description
- [ListPhoneNumbersWithVoiceSettingsResponse](docs/ListPhoneNumbersWithVoiceSettingsResponse.md)
- [ListRecordingsResponse](docs/ListRecordingsResponse.md)
- [ListShortCodesResponse](docs/ListShortCodesResponse.md)
- [ListTagsResponse](docs/ListTagsResponse.md)
- [ListTagsResponseData](docs/ListTagsResponseData.md)
- [ListVerificationsResponse](docs/ListVerificationsResponse.md)
- [ListVerifyProfilesResponse](docs/ListVerifyProfilesResponse.md)
- [Loopcount](docs/Loopcount.md)
Expand Down Expand Up @@ -633,6 +651,10 @@ Class | Method | HTTP request | Description
- [StopForkingRequest](docs/StopForkingRequest.md)
- [StopGatherRequest](docs/StopGatherRequest.md)
- [StopRecordingRequest](docs/StopRecordingRequest.md)
- [TelephonyCredential](docs/TelephonyCredential.md)
- [TelephonyCredentialCreateRequest](docs/TelephonyCredentialCreateRequest.md)
- [TelephonyCredentialResponse](docs/TelephonyCredentialResponse.md)
- [TelephonyCredentialUpdateRequest](docs/TelephonyCredentialUpdateRequest.md)
- [TexmlApplication](docs/TexmlApplication.md)
- [TexmlApplicationResponse](docs/TexmlApplicationResponse.md)
- [TrafficType](docs/TrafficType.md)
Expand Down
Loading

0 comments on commit 213f64d

Please sign in to comment.