supercompat 3.12.0 → 3.13.0
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.
- package/dist/index.cjs +412 -58
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +412 -58
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -212,6 +212,12 @@ declare const azureAgentsStorageAdapter: ({ azureAiProject, }: {
|
|
|
212
212
|
"^/(?:v1|/?openai)/threads/([^/]+)/runs/([^/]+)/submit_tool_outputs$": {
|
|
213
213
|
post: RequestHandler;
|
|
214
214
|
};
|
|
215
|
+
"^/(?:v1|/?openai)/files/([^/]+)$": {
|
|
216
|
+
get: RequestHandler;
|
|
217
|
+
};
|
|
218
|
+
"^/(?:v1|/?openai)/files/([^/]+)/content$": {
|
|
219
|
+
get: RequestHandler;
|
|
220
|
+
};
|
|
215
221
|
};
|
|
216
222
|
};
|
|
217
223
|
|
package/dist/index.d.ts
CHANGED
|
@@ -212,6 +212,12 @@ declare const azureAgentsStorageAdapter: ({ azureAiProject, }: {
|
|
|
212
212
|
"^/(?:v1|/?openai)/threads/([^/]+)/runs/([^/]+)/submit_tool_outputs$": {
|
|
213
213
|
post: RequestHandler;
|
|
214
214
|
};
|
|
215
|
+
"^/(?:v1|/?openai)/files/([^/]+)$": {
|
|
216
|
+
get: RequestHandler;
|
|
217
|
+
};
|
|
218
|
+
"^/(?:v1|/?openai)/files/([^/]+)/content$": {
|
|
219
|
+
get: RequestHandler;
|
|
220
|
+
};
|
|
215
221
|
};
|
|
216
222
|
};
|
|
217
223
|
|