File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,11 +56,11 @@ const CodeSchema = z.record(
56
56
57
57
export type Code = z . infer < typeof CodeSchema >
58
58
59
- const CodeSampleSchema = CodeSampleDefinitionSchema . extend ( {
59
+ const _CodeSampleSchema = CodeSampleDefinitionSchema . extend ( {
60
60
code : CodeSchema ,
61
61
} )
62
62
63
- export type CodeSample = z . output < typeof CodeSampleSchema >
63
+ export type CodeSample = z . output < typeof _CodeSampleSchema >
64
64
65
65
export interface CodeSampleContext {
66
66
endpoint : Omit < Endpoint , 'codeSamples' >
Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ const ResourceSchema = z.record(
39
39
40
40
export type Resource = z . infer < typeof ResourceSchema >
41
41
42
- const ResourceSampleSchema = ResourceSampleDefinitionSchema . extend ( {
42
+ const _ResourceSampleSchema = ResourceSampleDefinitionSchema . extend ( {
43
43
resource : ResourceSchema ,
44
44
} )
45
45
46
- export type ResourceSample = z . output < typeof ResourceSampleSchema >
46
+ export type ResourceSample = z . output < typeof _ResourceSampleSchema >
47
47
48
48
export const createResourceSample = async (
49
49
resourceSampleDefinition : ResourceSampleDefinition ,
You can’t perform that action at this time.
0 commit comments