Skip to content

v6.7.0

Latest
Compare
Choose a tag to compare
@bashmach bashmach released this 17 May 05:33
· 15 commits to master since this release

What's Changed

Added

  • Added documentation for new endpoints /deals/{id}/changelog, /persons/{id}/changelog and /organizations/{id}/changelog.
  • Added is_deleted parameter for /v1/users/* responses.
  • Added billing_frequency, billing_frequency_cycles and billing_start_date fields to
    • GET, POST and PUT /v1/deals/{id}/products endpoints
    • GET, POST and PATCH /v2/deals/{id}/products endpoints
    • GET /v2/deals/products endpoint
  • Added billing_frequency, billing_frequency_cycles fields to
    • GET, POST and PUT /v1/products endpoints
    • GET /v1/products/{id} endpoint
    • GET, POST and PATCH /v2/products endpoints
    • GET /v2/products/{id} endpoints
  • Added RawData trait to models to allow access to all response data objects
    • useful for getting access to custom fields that are not available in openapi generated SDK models
      $apiInstance = new DealsApi(...);
      $result = $apiInstance->getDeals(42);
      
      $rawData = $result->getRawData();
      
      See tests for examples.