@alpic-ai/api 0.0.0-staging.g2072208 → 0.0.0-staging.g25004dd

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.mts CHANGED
@@ -831,6 +831,9 @@ declare const contract: {
831
831
  }, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
832
832
  NOT_FOUND: {};
833
833
  BAD_REQUEST: {};
834
+ DNS_RESOLUTION_FAILED: {
835
+ status: number;
836
+ };
834
837
  }>, Record<never, never>>;
835
838
  };
836
839
  get: {
package/dist/index.mjs CHANGED
@@ -1043,7 +1043,8 @@ const createBeaconContractV1 = oc.route({
1043
1043
  successDescription: "The audit has been created"
1044
1044
  }).errors({
1045
1045
  NOT_FOUND: {},
1046
- BAD_REQUEST: {}
1046
+ BAD_REQUEST: {},
1047
+ DNS_RESOLUTION_FAILED: { status: 400 }
1047
1048
  }).input(z.object({
1048
1049
  targetUrl: z.url().describe("The HTTPS URL of the MCP server to audit"),
1049
1050
  teamId: z.string().optional().describe("The team ID to associate the audit with"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "0.0.0-staging.g2072208",
3
+ "version": "0.0.0-staging.g25004dd",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",