Skip to content

Commit cc4ac76

Browse files
committed
Updated Auto Generated Code
1 parent 391659a commit cc4ac76

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/Definitions/FortifiApiDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class FortifiApiDefinition extends ApiDefinition
1111
public function __construct()
1212
{
1313
$this->setTitle('Fortifi API');
14-
$this->setVersion('3.168.0');
14+
$this->setVersion('3.168.1');
1515
$this->setDescription(<<<DESCRIPTION
1616
The second version of the Fortifi API is an exciting step forward towards
1717
making it easier for businesses to have open access to their data. We created it

src/Endpoints/SupportChatEnabledEndpoint.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class SupportChatEnabledEndpoint extends ApiEndpoint
99
{
10-
protected $_path = 'support/chat-enabled';
10+
protected $_path = 'support/chatEnabled';
1111
protected $_replacements = [];
1212

1313
public function __construct()
@@ -27,7 +27,7 @@ public function all()
2727

2828
$detail = new ApiRequestDetail();
2929
$detail->setRequireAuth(true);
30-
$detail->setUrl($this->_buildUrl('support/chat-enabled'));
30+
$detail->setUrl($this->_buildUrl('support/chatEnabled'));
3131
$detail->setMethod('GET');
3232
$request->setRequestDetail($detail);
3333
return $request;

src/Endpoints/SupportEndpoint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function __construct()
1515
/**
1616
* @return SupportChatEnabledEndpoint
1717
*/
18-
public function chat-enabled()
18+
public function chatEnabled()
1919
{
2020
$endpoint = new SupportChatEnabledEndpoint();
2121
$endpoint->_buildFromEndpoint($this);

swagger.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
swagger: '2.0'
22
info:
33
title: Fortifi API
4-
version: '3.168.0'
4+
version: '3.168.1'
55
termsOfService: 'https://fortifi.io/legal/terms/api'
66
description: >
77
The second version of the Fortifi API is an exciting step forward towards
@@ -7874,7 +7874,7 @@ paths:
78747874
description: Error
78757875
schema:
78767876
$ref: '#/definitions/Envelope'
7877-
/support/chat-enabled:
7877+
/support/chatEnabled:
78787878
get:
78797879
summary: Check if chat is enabled
78807880
tags:

0 commit comments

Comments
 (0)