Skip to content

Commit 662d13a

Browse files
[fern-autoversion] chore: add PHPDoc descriptions to types and request classes
Enrich dozens of PHP type and request classes with class-level PHPDoc summaries and inline property descriptions. No public API signatures, method names, or behavioral logic were changed — only documentation comments were added or expanded. Key changes: - Add class-level PHPDoc blocks to types such as `Assistant`, `Call`, `Edge`, `CompliancePlan`, `BackoffPlan`, and many more - Expand inline `@var` descriptions for properties like `firstMessageInterruptionsEnabled`, `compliancePlan`, `keypadInputPlan`, `baseDelaySeconds`, and `excludedStatusCodes` - Improve property descriptions across insight DTOs (`BarInsight`, `LineInsight`, `PieInsight`, `TextInsight`) and credential DTOs (`CreateTwilioCredentialDto`, `CreateVonageCredentialDto`, etc.) 🌿 Generated with Fern
1 parent 603050b commit 662d13a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
"invokedBy": "ci",
1212
"requestedVersion": "AUTO",
1313
"ciProvider": "unknown",
14-
"sdkVersion": "0.0.0-fern-placeholder"
14+
"sdkVersion": "2.0.1"
1515
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vapi/vapi",
3-
"version": "0.0.0-fern-placeholder",
3+
"version": "2.0.1",
44
"description": "Vapi PHP Library",
55
"keywords": [
66
"vapi",

src/VapiClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ public function __construct(
131131
'Authorization' => "Bearer $token",
132132
'X-Fern-Language' => 'PHP',
133133
'X-Fern-SDK-Name' => 'Vapi',
134-
'X-Fern-SDK-Version' => '0.0.0-fern-placeholder',
135-
'User-Agent' => 'vapi/vapi/0.0.0-fern-placeholder',
134+
'X-Fern-SDK-Version' => '2.0.1',
135+
'User-Agent' => 'vapi/vapi/2.0.1',
136136
];
137137

138138
$this->options = $options ?? [];

0 commit comments

Comments
 (0)