Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Add helpdesk status code #32

Merged
merged 2 commits into from
Sep 19, 2024
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Please note this changelog affects
this package and not the Oxxa API.

## [2.9.0]

### Added

- Add error code for when the Oxxa helpdesk is needed.

## [2.8.1]

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions src/Enum/StatusCode.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,6 @@ class StatusCode
public const STATUS_DOMAIN_TRANSFER_UNABLE_LOCK = 'XMLERR 66';

public const STATUS_INSUFFICIENT_FUNDS = 'XMLERR 87';

public const STATUS_HELPDESK_NEEDED = 'XMLERR 184';
}
2 changes: 1 addition & 1 deletion src/Oxxa.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Oxxa implements OxxaClient
{
private const TIMEOUT = 180;

private const VERSION = '2.8.1';
private const VERSION = '2.9.0';

private const USER_AGENT = 'oxxa-api-client/'.self::VERSION;

Expand Down
Loading