Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

composer.phar
/vendor/
node_modules

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
Expand All @@ -14,3 +13,5 @@ node_modules

# PHPUnit cache
.phpunit.result.cache

node_modules
24 changes: 24 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ docs/Model/CreateWebRTCToken.md
docs/Model/Dequeue.md
docs/Model/DequeueWebhook.md
docs/Model/Enqueue.md
docs/Model/ExportList.md
docs/Model/ExportOutputType.md
docs/Model/ExportRequest.md
docs/Model/ExportRequestOutput.md
docs/Model/ExportResourceType.md
docs/Model/ExportResult.md
docs/Model/ExportResultOutput.md
docs/Model/ExportStatus.md
docs/Model/FilterLogsRequest.md
docs/Model/GetDigits.md
docs/Model/GetDigitsReason.md
Expand Down Expand Up @@ -189,6 +197,14 @@ lib/Model/CreateWebRTCToken.php
lib/Model/Dequeue.php
lib/Model/DequeueWebhook.php
lib/Model/Enqueue.php
lib/Model/ExportList.php
lib/Model/ExportOutputType.php
lib/Model/ExportRequest.php
lib/Model/ExportRequestOutput.php
lib/Model/ExportResourceType.php
lib/Model/ExportResult.php
lib/Model/ExportResultOutput.php
lib/Model/ExportStatus.php
lib/Model/FilterLogsRequest.php
lib/Model/GetDigits.php
lib/Model/GetDigitsReason.php
Expand Down Expand Up @@ -333,6 +349,14 @@ test/Model/CreateWebRTCTokenTest.php
test/Model/DequeueTest.php
test/Model/DequeueWebhookTest.php
test/Model/EnqueueTest.php
test/Model/ExportListTest.php
test/Model/ExportOutputTypeTest.php
test/Model/ExportRequestOutputTest.php
test/Model/ExportRequestTest.php
test/Model/ExportResourceTypeTest.php
test/Model/ExportResultOutputTest.php
test/Model/ExportResultTest.php
test/Model/ExportStatusTest.php
test/Model/FilterLogsRequestTest.php
test/Model/GetDigitsReasonTest.php
test/Model/GetDigitsTest.php
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

None

<a name="5.2.0"></a>

## [5.2.0] - 2025-09-23

### Added

- Add models for ExportResult and ExportRequest

### Changed

- CallResult.callStatus -> CallResult.status
- CreateConference now includes parentCallId

<a name="5.1.1"></a>

## [5.1.1] - 2025-02-18
Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,16 @@ Class | Method | HTTP request | Description
*DefaultApi* | [**createAConference**](docs/Api/DefaultApi.md#createaconference) | **POST** /Accounts/{accountId}/Conferences | Create a Conference
*DefaultApi* | [**createAQueue**](docs/Api/DefaultApi.md#createaqueue) | **POST** /Accounts/{accountId}/Queues | Create a Queue
*DefaultApi* | [**createAnApplication**](docs/Api/DefaultApi.md#createanapplication) | **POST** /Accounts/{accountId}/Applications | Create an application
*DefaultApi* | [**createExport**](docs/Api/DefaultApi.md#createexport) | **POST** /Accounts/{accountId}/Exports | Create an Export
*DefaultApi* | [**createKnowledgeBaseCompletion**](docs/Api/DefaultApi.md#createknowledgebasecompletion) | **POST** /Accounts/{accountId}/KnowledgeBases/{knowledgeBaseId}/Completion | Query the knowledge base
*DefaultApi* | [**deleteARecording**](docs/Api/DefaultApi.md#deletearecording) | **DELETE** /Accounts/{accountId}/Recordings/{recordingId} | Delete a Recording
*DefaultApi* | [**deleteAnApplication**](docs/Api/DefaultApi.md#deleteanapplication) | **DELETE** /Accounts/{accountId}/Applications/{applicationId} | Delete an application
*DefaultApi* | [**deleteAnExport**](docs/Api/DefaultApi.md#deleteanexport) | **DELETE** /Accounts/{accountId}/Exports/{exportId} | Delete an Export
*DefaultApi* | [**deleteAnIncomingNumber**](docs/Api/DefaultApi.md#deleteanincomingnumber) | **DELETE** /Accounts/{accountId}/IncomingPhoneNumbers/{phoneNumberId} | Delete an Incoming Number
*DefaultApi* | [**dequeueAMember**](docs/Api/DefaultApi.md#dequeueamember) | **POST** /Accounts/{accountId}/Queues/{queueId}/Members/{callId} | Dequeue a Member
*DefaultApi* | [**dequeueHeadMember**](docs/Api/DefaultApi.md#dequeueheadmember) | **POST** /Accounts/{accountId}/Queues/{queueId}/Members/Front | Dequeue Head Member
*DefaultApi* | [**downloadARecordingFile**](docs/Api/DefaultApi.md#downloadarecordingfile) | **GET** /Accounts/{accountId}/Recordings/{recordingId}/Download | Download a Recording File
*DefaultApi* | [**downloadAnExport**](docs/Api/DefaultApi.md#downloadanexport) | **GET** /Accounts/{accountId}/Exports/{exportId}/Download | Download an Export
*DefaultApi* | [**filterLogs**](docs/Api/DefaultApi.md#filterlogs) | **POST** /Accounts/{accountId}/Logs | Filter Logs
*DefaultApi* | [**getACall**](docs/Api/DefaultApi.md#getacall) | **GET** /Accounts/{accountId}/Calls/{callId} | Get a Call
*DefaultApi* | [**getAConference**](docs/Api/DefaultApi.md#getaconference) | **GET** /Accounts/{accountId}/Conferences/{conferenceId} | Get a Conference
Expand All @@ -141,6 +144,7 @@ Class | Method | HTTP request | Description
*DefaultApi* | [**getARecording**](docs/Api/DefaultApi.md#getarecording) | **GET** /Accounts/{accountId}/Recordings/{recordingId} | Get a Recording
*DefaultApi* | [**getAnAccount**](docs/Api/DefaultApi.md#getanaccount) | **GET** /Accounts/{accountId} | Get an Account
*DefaultApi* | [**getAnApplication**](docs/Api/DefaultApi.md#getanapplication) | **GET** /Accounts/{accountId}/Applications/{applicationId} | Get an Application
*DefaultApi* | [**getAnExport**](docs/Api/DefaultApi.md#getanexport) | **GET** /Accounts/{accountId}/Exports/{exportId} | Get an Export
*DefaultApi* | [**getAnIncomingNumber**](docs/Api/DefaultApi.md#getanincomingnumber) | **GET** /Accounts/{accountId}/IncomingPhoneNumbers/{phoneNumberId} | Get an Incoming Number
*DefaultApi* | [**getAnSmsMessage**](docs/Api/DefaultApi.md#getansmsmessage) | **GET** /Accounts/{accountId}/Messages/{messageId} | Get an SMS Message
*DefaultApi* | [**getHeadMember**](docs/Api/DefaultApi.md#getheadmember) | **GET** /Accounts/{accountId}/Queues/{queueId}/Members/Front | Get Head Member
Expand All @@ -161,6 +165,7 @@ Class | Method | HTTP request | Description
*DefaultApi* | [**listCalls**](docs/Api/DefaultApi.md#listcalls) | **GET** /Accounts/{accountId}/Calls | List Calls
*DefaultApi* | [**listConferenceRecordings**](docs/Api/DefaultApi.md#listconferencerecordings) | **GET** /Accounts/{accountId}/Conferences/{conferenceId}/Recordings | List Conference Recordings
*DefaultApi* | [**listConferences**](docs/Api/DefaultApi.md#listconferences) | **GET** /Accounts/{accountId}/Conferences | List Conferences
*DefaultApi* | [**listExports**](docs/Api/DefaultApi.md#listexports) | **GET** /Accounts/{accountId}/Exports | List Exports
*DefaultApi* | [**listIncomingNumbers**](docs/Api/DefaultApi.md#listincomingnumbers) | **GET** /Accounts/{accountId}/IncomingPhoneNumbers | List Incoming Numbers
*DefaultApi* | [**listMembers**](docs/Api/DefaultApi.md#listmembers) | **GET** /Accounts/{accountId}/Queues/{queueId}/Members | List Members
*DefaultApi* | [**listParticipants**](docs/Api/DefaultApi.md#listparticipants) | **GET** /Accounts/{accountId}/Conferences/{conferenceId}/Participants | List Participants
Expand Down Expand Up @@ -221,6 +226,14 @@ Class | Method | HTTP request | Description
- [Dequeue](docs/Model/Dequeue.md)
- [DequeueWebhook](docs/Model/DequeueWebhook.md)
- [Enqueue](docs/Model/Enqueue.md)
- [ExportList](docs/Model/ExportList.md)
- [ExportOutputType](docs/Model/ExportOutputType.md)
- [ExportRequest](docs/Model/ExportRequest.md)
- [ExportRequestOutput](docs/Model/ExportRequestOutput.md)
- [ExportResourceType](docs/Model/ExportResourceType.md)
- [ExportResult](docs/Model/ExportResult.md)
- [ExportResultOutput](docs/Model/ExportResultOutput.md)
- [ExportStatus](docs/Model/ExportStatus.md)
- [FilterLogsRequest](docs/Model/FilterLogsRequest.md)
- [GetDigits](docs/Model/GetDigits.md)
- [GetDigitsReason](docs/Model/GetDigitsReason.md)
Expand Down Expand Up @@ -347,6 +360,6 @@ [email protected]
This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: `1.0.0`
- Package version: `5.1.1`
- Package version: `5.2.0`
- Generator version: `7.9.0`
- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "freeclimbapi/php-sdk",
"version": "5.1.1",
"version": "5.2.0",
"description": "FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.",
"keywords": [
"openapitools",
Expand Down
Loading