Skip to content

Commit a42faf6

Browse files
Merge pull request #521 from HubSpot/feature/fixTyping
Fix typing
2 parents 78fef56 + cd6d627 commit a42faf6

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/HubSpot/hubspot-api-php/compare/13.1.0...HEAD)
8+
## [Unreleased](https://github.com/HubSpot/hubspot-api-php/compare/13.1.1...HEAD)
9+
10+
## [13.1.1](https://github.com/HubSpot/hubspot-api-php/releases/tag/13.1.1) - 2025-11-17
11+
12+
### Fixes
13+
14+
- Fixed typing in `ObjectTypeIDs` enum.
915

1016
## [13.1.0](https://github.com/HubSpot/hubspot-api-php/releases/tag/13.1.0) - 2025-11-13
1117

@@ -990,7 +996,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
990996
25. getSubscriptions => getAll (webhooks()->subscriptionsApi())
991997
26. updateSubscription => update (webhooks()->subscriptionsApi())
992998

993-
[Unreleased]: https://github.com/HubSpot/hubspot-api-php/compare/13.1.0...HEAD
999+
[Unreleased]: https://github.com/HubSpot/hubspot-api-php/compare/13.1.1...HEAD
9941000
[1.0.0-beta]: https://github.com/HubSpot/hubspot-api-php/releases/tag/v1.0.0-beta
9951001
[1.1.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/1.1.0
9961002
[1.2.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/1.2.0
@@ -1053,4 +1059,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10531059
[13.0.0beta.1]: https://github.com/HubSpot/hubspot-api-php/releases/tag/13.0.0beta.1
10541060
[13.0.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/13.0.0
10551061
[13.0.1]: https://github.com/HubSpot/hubspot-api-php/releases/tag/13.0.1
1056-
[13.1.10]: https://github.com/HubSpot/hubspot-api-php/releases/tag/13.1.0
1062+
[13.1.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/13.1.0
1063+
[13.1.1]: https://github.com/HubSpot/hubspot-api-php/releases/tag/13.1.1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hubspot/api-client",
3-
"version": "13.1.0",
3+
"version": "13.1.1",
44
"description": "Hubspot API client",
55
"keywords": [
66
"hubspot",

lib/Enums/ObjectTypeIDs.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class ObjectTypeIDs
2323
public const NOTES = '0-46';
2424
public const ORDERS = '0-123';
2525
public const PAYMENTS = '0-101';
26-
public const POSTAL_MAIL = '0-116 ';
27-
public const PRODUCTS = '0 ';
26+
public const POSTAL_MAIL = '0-116';
27+
public const PRODUCTS = '0-7';
2828
public const QUOTES = '0-14';
2929
public const SERVICES = '0-162';
3030
public const SUBSCRIPTIONS = '0-69';

0 commit comments

Comments
 (0)