@zuplo/lint-linux-x64 7.5.0 → 7.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,207 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "http://schemas.zuplo.com/route-configuration-open-api.schema.json",
4
+ "title": "Open API Route Configuration Fragment",
5
+ "description": "These are the properties that can appear under the x-zuplo-route extension in a PathObject in Open API. It's a subset of what can appear in Zuplo's routes.json.",
6
+ "type": "object",
7
+ "required": ["handler"],
8
+ "additionalProperties": false,
9
+ "properties": {
10
+ "label": {
11
+ "type": "string",
12
+ "description": "An internal user-friendly identifier of the route."
13
+ },
14
+ "key": {
15
+ "type": "string",
16
+ "deprecated": true
17
+ },
18
+ "handler": {
19
+ "type": "object",
20
+ "properties": {
21
+ "module": {
22
+ "type": "string",
23
+ "pattern": "^\\$import\\([^ )]*?\\)$"
24
+ },
25
+ "export": {
26
+ "type": "string"
27
+ },
28
+ "options": {
29
+ "type": "object",
30
+ "additionalProperties": true
31
+ }
32
+ },
33
+ "additionalProperties": false,
34
+ "required": ["module", "export"]
35
+ },
36
+ "corsPolicy": {
37
+ "type": "string",
38
+ "pattern": "^[0-9a-z-]+$"
39
+ },
40
+ "custom": {},
41
+ "mcp": {
42
+ "oneOf": [
43
+ {
44
+ "type": "object",
45
+ "additionalProperties": false,
46
+ "properties": {
47
+ "type": {
48
+ "const": "tool"
49
+ },
50
+ "name": {
51
+ "type": "string"
52
+ },
53
+ "description": {
54
+ "type": "string"
55
+ },
56
+ "enabled": {
57
+ "type": "boolean"
58
+ },
59
+ "includeOutputSchema": {
60
+ "type": "boolean"
61
+ },
62
+ "includeStructuredContent": {
63
+ "type": "boolean"
64
+ },
65
+ "annotations": {
66
+ "type": "object",
67
+ "additionalProperties": false,
68
+ "properties": {
69
+ "title": {
70
+ "type": "string"
71
+ },
72
+ "readOnlyHint": {
73
+ "type": "boolean"
74
+ },
75
+ "destructiveHint": {
76
+ "type": "boolean"
77
+ },
78
+ "idempotentHint": {
79
+ "type": "boolean"
80
+ },
81
+ "openWorldHint": {
82
+ "type": "boolean"
83
+ }
84
+ }
85
+ },
86
+ "_meta": {
87
+ "type": "object",
88
+ "additionalProperties": true
89
+ }
90
+ },
91
+ "required": ["type"]
92
+ },
93
+ {
94
+ "type": "object",
95
+ "additionalProperties": false,
96
+ "properties": {
97
+ "type": {
98
+ "const": "prompt"
99
+ },
100
+ "name": {
101
+ "type": "string"
102
+ },
103
+ "description": {
104
+ "type": "string"
105
+ },
106
+ "enabled": {
107
+ "type": "boolean"
108
+ }
109
+ },
110
+ "required": ["type"]
111
+ },
112
+ {
113
+ "type": "object",
114
+ "additionalProperties": false,
115
+ "properties": {
116
+ "type": {
117
+ "const": "resource"
118
+ },
119
+ "name": {
120
+ "type": "string"
121
+ },
122
+ "description": {
123
+ "type": "string"
124
+ },
125
+ "uri": {
126
+ "type": "string"
127
+ },
128
+ "mimeType": {
129
+ "type": "string"
130
+ },
131
+ "enabled": {
132
+ "type": "boolean"
133
+ },
134
+ "_meta": {
135
+ "type": "object",
136
+ "additionalProperties": true
137
+ }
138
+ },
139
+ "required": ["type"]
140
+ },
141
+ {
142
+ "type": "object",
143
+ "additionalProperties": false,
144
+ "properties": {
145
+ "type": {
146
+ "const": "graphql"
147
+ },
148
+ "enabled": {
149
+ "type": "boolean"
150
+ },
151
+ "introspectionTool": {
152
+ "type": "object",
153
+ "additionalProperties": false,
154
+ "properties": {
155
+ "name": {
156
+ "type": "string"
157
+ },
158
+ "description": {
159
+ "type": "string"
160
+ }
161
+ }
162
+ },
163
+ "executeTool": {
164
+ "type": "object",
165
+ "additionalProperties": false,
166
+ "properties": {
167
+ "name": {
168
+ "type": "string"
169
+ },
170
+ "description": {
171
+ "type": "string"
172
+ }
173
+ }
174
+ }
175
+ },
176
+ "required": ["type"]
177
+ }
178
+ ]
179
+ },
180
+ "policies": {
181
+ "type": "object",
182
+ "additionalProperties": false,
183
+ "properties": {
184
+ "inbound": {
185
+ "type": "array",
186
+ "items": {
187
+ "type": "string",
188
+ "pattern": "^[0-9a-z-]+$"
189
+ }
190
+ },
191
+ "outbound": {
192
+ "type": "array",
193
+ "items": {
194
+ "type": "string",
195
+ "pattern": "^[0-9a-z-]+$"
196
+ }
197
+ }
198
+ }
199
+ },
200
+ "tags": {
201
+ "type": "array",
202
+ "items": {
203
+ "type": "string"
204
+ }
205
+ }
206
+ }
207
+ }
@@ -0,0 +1 @@
1
+ 7.5.2
package/bin/zuplo-lint CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zuplo/lint-linux-x64",
3
- "version": "7.5.0",
3
+ "version": "7.5.2",
4
4
  "description": "The linux-x64 binary for zuplo-lint, the Zuplo API linter.",
5
5
  "repository": "https://github.com/zuplo/zuplo",
6
6
  "author": "Zuplo, Inc.",