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

Add missing status codes #35

Merged
merged 1 commit into from
Oct 16, 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.12.0]

### Added

- Add missing status codes.

## [2.11.0]

### Added
Expand Down
4 changes: 4 additions & 0 deletions src/Enum/StatusCode.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ class StatusCode

public const STATUS_DOMAIN_TRANSFER_DOMAIN_IN_QUARANTINE = 'XMLERR 537';

public const STATUS_DOMAIN_TRANSFER_NOT_EXISTS = 'XMLERR243';

public const STATUS_DOMAIN_UNKNOWN = 'XMLERR 20';

public const STATUS_INSUFFICIENT_FUNDS = 'XMLERR 87';

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

private const TIMEOUT = 180;

private const VERSION = '2.11.0';
private const VERSION = '2.12.0';

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

Expand Down
Loading