Skip to content

Latest commit

 

History

History
86 lines (61 loc) · 4.8 KB

CHANGELOG.md

File metadata and controls

86 lines (61 loc) · 4.8 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

2.0.0 - 2020-08-25

Updated (Breaking changes)

  • swap method's params in batch read methods

1.3.2 - 2020-08-20

Fixed

  • Fixed HubSpot/Configs

1.3.1 - 2020-06-25

Fixed

  • Parsing response in cms()->siteSearch()->defaultApi()->getById() method

1.3.0 - 2020-06-17

Added

  • cms()->auditLogs() API client
  • cms()->domains() API client
  • cms()->performance() API client
  • cms()->siteSearch() API client
  • cms()->urlRedirects() API client

1.2.0 - 2020-06-02

Update

  • Update Webhook's Util (HubSpot\Utils\Webhooks::isHubspotSignatureValid)

1.1.0 - 2020-04-30

Added

  • Batch update for Webhook's Subscriptions (webhooks()->subscriptionsApi()->updateBatch($appId, $updateRequest))

1.0.0-beta - 2020-04-21

Added

  • This CHANGELOG.md file.
  • Imports API (crm()->imports())

Breaking changes:

  • Updated clients method names:
    1. archiveBatch => archive (crm()->associations()->batchApi())
    2. createBatch => create (crm()->associations()->batchApi())
    3. readBatch => read (crm()->associations()->batchApi())
    4. getTypes => getAll (crm()->associations()->typesApi)
    5. archiveAssociation => archive (crm()->companies()->associationsApi(), crm()->contacts()->associationsApi(), crm()->deals()->associationsApi(), crm()->lineItems()->associationsApi(), crm()->products()->associationsApi(), crm()->quotes()->associationsApi(), crm()->tickets()->associationsApi())
    6. createAssociation => create (crm()->companies()->associationsApi(), crm()->contacts()->associationsApi(), crm()->deals()->associationsApi(), crm()->lineItems()->associationsApi(), crm()->products()->associationsApi(), crm()->quotes()->associationsApi(), crm()->tickets()->associationsApi())
    7. getAssociations => getAll (crm()->companies()->associationsApi(), crm()->contacts()->associationsApi(), crm()->deals()->associationsApi(), crm()->lineItems()->associationsApi(), crm()->products()->associationsApi(), crm()->quotes()->associationsApi(), crm()->tickets()->associationsApi())
    8. archiveBatch => archive (crm()->companies()->batchApi(), crm()->contacts()->batchApi(), crm()->deals()->batchApi(), crm()->lineItems()->batchApi(), crm()->products()->batchApi(), crm()->quotes()->batchApi(), crm()->tickets()->batchApi())
    9. createBatch => create (crm()->companies()->batchApi(), crm()->contacts()->batchApi(), crm()->deals()->batchApi(), crm()->lineItems()->batchApi(), crm()->products()->batchApi(), crm()->quotes()->batchApi(), crm()->tickets()->batchApi())
    10. readBatch => read (crm()->companies()->batchApi(), crm()->contacts()->batchApi(), crm()->deals()->batchApi(), crm()->lineItems()->batchApi(), crm()->products()->batchApi(), crm()->quotes()->batchApi(), crm()->tickets()->batchApi())
    11. updateBatch => update (crm()->companies()->batchApi(), crm()->contacts()->batchApi(), crm()->deals()->batchApi(), crm()->lineItems()->batchApi(), crm()->products()->batchApi(), crm()->quotes()->batchApi(), crm()->tickets()->batchApi())
    12. archiveEventTemplate => archive (crm()->timeline()->templatesApi())
    13. createEventTemplate => create (crm()->timeline()->templatesApi())
    14. getAllEventTemplates => getAll (crm()->timeline()->templatesApi())
    15. getEventTemplateById => getById (crm()->timeline()->templatesApi())
    16. updateEventTemplate => update (crm()->timeline()->templatesApi())
    17. archiveEventTemplateToken => archive (crm()->timeline()->tokensApi())
    18. createEventTemplateToken => create (crm()->timeline()->tokensApi())
    19. updateEventTemplateToken => update (crm()->timeline()->tokensApi())
    20. clearSettings => clear (webhooks()->settingsApi())
    21. configureSettings => configure (webhooks()->settingsApi())
    22. getSettings => getAll (webhooks()->settingsApi())
    23. deleteSubscription => archive (webhooks()->subscriptionsApi())
    24. getSubscription => getById (webhooks()->subscriptionsApi())
    25. getSubscriptions => getAll (webhooks()->subscriptionsApi())
    26. updateSubscription => update (webhooks()->subscriptionsApi())