Skip to content
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
2 changes: 1 addition & 1 deletion .oagen-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"language": "php",
"generatedAt": "2026-04-13T18:28:08.422Z",
"generatedAt": "2026-04-14T16:30:42.080Z",
"files": [
"lib/Resource/ActionAuthenticationDenied.php",
"lib/Resource/ActionAuthenticationDeniedData.php",
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"format": "php vendor/bin/php-cs-fixer fix -v --using-cache=no --config=.php-cs-fixer.dist.php",
"format-check": "php vendor/bin/php-cs-fixer fix -v --dry-run --using-cache=no --config=.php-cs-fixer.dist.php",
"test": "php vendor/bin/phpunit tests",
"typecheck": "php vendor/bin/phpstan analyse --no-progress",
"typecheck": "php vendor/bin/phpstan analyse --no-progress --memory-limit=512M",
"ci": "./script/ci"
},
"config": {
Expand Down
5 changes: 5 additions & 0 deletions lib/WorkOS.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,14 @@ public static function setClientId(?string $id): void
private ?Service\Webhooks $webhooks = null;
private ?Service\Widgets $widgets = null;
private ?Service\AuditLogs $auditLogs = null;
// @oagen-ignore-start — non-spec service properties (hand-maintained)
private ?Passwordless $passwordless = null;
private ?Vault $vault = null;
private ?WebhookVerification $webhookVerification = null;
private ?Actions $actions = null;
private ?SessionManager $sessionManager = null;
private ?PKCEHelper $pkce = null;
// @oagen-ignore-end

public function __construct(
?string $apiKey = null,
Expand Down Expand Up @@ -172,6 +174,8 @@ public function auditLogs(): AuditLogs
return $this->auditLogs ??= new Service\AuditLogs($this->httpClient);
}

// @oagen-ignore-start — non-spec service accessors (hand-maintained)

public function passwordless(): Passwordless
{
return $this->passwordless ??= new Passwordless($this->httpClient);
Expand Down Expand Up @@ -201,4 +205,5 @@ public function pkce(): PKCEHelper
{
return $this->pkce ??= new PKCEHelper($this->httpClient);
}
// @oagen-ignore-end
}
2 changes: 1 addition & 1 deletion script/ci
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ php vendor/bin/php-cs-fixer fix -v --dry-run --using-cache=no --config=.php-cs-f

echo ""
echo "==> Running typecheck (PHPStan)..."
php vendor/bin/phpstan analyse --no-progress
php vendor/bin/phpstan analyse --no-progress --memory-limit=512M

echo ""
echo "==> Running tests (PHPUnit)..."
Expand Down
Loading