Skip to content

Commit cfc6766

Browse files
committed
fix(schemas): fix remaining 4 truncated array type closings in ServiceDef interface
1 parent 05d11b5 commit cfc6766

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

schemas/services.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ export interface ServiceDef {
103103
description: string;
104104

105105
icon?: string;
106-
categories: Category[
106+
categories: Category[];
107107
integration: Integration;
108-
tags: string[
108+
tags: string[];
109109
status?: Status;
110110
docs?: { homepage?: string; llmsTxt?: string; apiReference?: string };
111111
provider?: { name: string; url: string };
@@ -114,10 +114,10 @@ export interface ServiceDef {
114114
/** Default payment intent for paid endpoints in this service */
115115
intent: Intent;
116116
/** Payment methods accepted by this service — first entry is primary for endpoint-level payment info */
117-
payments: PaymentDefaults[
117+
payments: PaymentDefaults[];
118118
/** Base URL for auto-generating per-endpoint docs links */
119119
docsBase?: string;
120-
endpoints: EndpointDef[
120+
endpoints: EndpointDef[];
121121
}
122122

123123
// prettier-ignore

0 commit comments

Comments
 (0)