Skip to content

Commit b424588

Browse files
committed
Deleting and fixes
1 parent a592e97 commit b424588

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

schemas/function.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,6 @@ $defs:
171171
description: |
172172
The default value for this parameter, if none was given in the call to the function.
173173
This property automatically implicitly marks this parameter as optional.
174-
optional:
175-
type: boolean
176-
default: false
177-
description: If set to true, this parameter is optional.
178174
179175
returns:
180176
type: object

web/src/utils/functions.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@ import type { FunctionType } from './types';
55

66
type FunctionItem = Awaited<ReturnType<typeof getCollection>>[number];
77

8-
// Define a structure for function parameters
98
type FunctionParameter = {
109
name: string;
1110
type: string;
1211
description?: string;
13-
optional?: boolean;
1412
};
1513

16-
// Define a structure for the details expected within shared/client/server
1714
type FunctionDetails = {
1815
description?: string;
1916
pair?: boolean;

0 commit comments

Comments
 (0)