supercompat 3.12.1 → 3.14.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.d.cts CHANGED
@@ -185,8 +185,9 @@ declare const responsesStorageAdapter: () => ((args: ResponsesStorageAdapterArgs
185
185
  type AzureAgentsStorageAdapterArgs = StorageAdapterArgs & {
186
186
  runAdapter: RunAdapterWithAssistant;
187
187
  };
188
- declare const azureAgentsStorageAdapter: ({ azureAiProject, }: {
188
+ declare const azureAgentsStorageAdapter: ({ azureAiProject, prisma, }: {
189
189
  azureAiProject: AIProjectClient;
190
+ prisma: PrismaClient;
190
191
  }) => ({ runAdapter }: AzureAgentsStorageAdapterArgs) => {
191
192
  requestHandlers: {
192
193
  '^/(?:v1|/?openai)/assistants$': {
@@ -212,6 +213,12 @@ declare const azureAgentsStorageAdapter: ({ azureAiProject, }: {
212
213
  "^/(?:v1|/?openai)/threads/([^/]+)/runs/([^/]+)/submit_tool_outputs$": {
213
214
  post: RequestHandler;
214
215
  };
216
+ "^/(?:v1|/?openai)/files/([^/]+)$": {
217
+ get: RequestHandler;
218
+ };
219
+ "^/(?:v1|/?openai)/files/([^/]+)/content$": {
220
+ get: RequestHandler;
221
+ };
215
222
  };
216
223
  };
217
224
 
package/dist/index.d.ts CHANGED
@@ -185,8 +185,9 @@ declare const responsesStorageAdapter: () => ((args: ResponsesStorageAdapterArgs
185
185
  type AzureAgentsStorageAdapterArgs = StorageAdapterArgs & {
186
186
  runAdapter: RunAdapterWithAssistant;
187
187
  };
188
- declare const azureAgentsStorageAdapter: ({ azureAiProject, }: {
188
+ declare const azureAgentsStorageAdapter: ({ azureAiProject, prisma, }: {
189
189
  azureAiProject: AIProjectClient;
190
+ prisma: PrismaClient;
190
191
  }) => ({ runAdapter }: AzureAgentsStorageAdapterArgs) => {
191
192
  requestHandlers: {
192
193
  '^/(?:v1|/?openai)/assistants$': {
@@ -212,6 +213,12 @@ declare const azureAgentsStorageAdapter: ({ azureAiProject, }: {
212
213
  "^/(?:v1|/?openai)/threads/([^/]+)/runs/([^/]+)/submit_tool_outputs$": {
213
214
  post: RequestHandler;
214
215
  };
216
+ "^/(?:v1|/?openai)/files/([^/]+)$": {
217
+ get: RequestHandler;
218
+ };
219
+ "^/(?:v1|/?openai)/files/([^/]+)/content$": {
220
+ get: RequestHandler;
221
+ };
215
222
  };
216
223
  };
217
224