@alpic-ai/api 1.98.0 → 1.99.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.mts CHANGED
@@ -685,7 +685,7 @@ declare const contract: {
685
685
  BAD_REQUEST: {};
686
686
  }>, Record<never, never>>;
687
687
  };
688
- info: {
688
+ get: {
689
689
  v1: _orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
690
690
  projectId: z.ZodString;
691
691
  domain: z.ZodString;
package/dist/index.mjs CHANGED
@@ -514,7 +514,7 @@ const publishServerContractV1 = oc.route({
514
514
  dryRun: z.boolean().optional()
515
515
  })).output(z.object({ serverFields: serverFieldsSchema }));
516
516
  const getServerInfoContractV1 = oc.route({
517
- path: "/v1/distribution/info",
517
+ path: "/v1/distribution/get",
518
518
  method: "GET",
519
519
  summary: "Get server info",
520
520
  description: "Get info about a server",
@@ -558,7 +558,7 @@ const contract = {
558
558
  tunnels: { getTicket: { v1: getTunnelTicketContractV1 } },
559
559
  distribution: {
560
560
  publish: { v1: publishServerContractV1 },
561
- info: { v1: getServerInfoContractV1 }
561
+ get: { v1: getServerInfoContractV1 }
562
562
  }
563
563
  };
564
564
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "1.98.0",
3
+ "version": "1.99.0",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",