@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 +1 -1
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
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/
|
|
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
|
-
|
|
561
|
+
get: { v1: getServerInfoContractV1 }
|
|
562
562
|
}
|
|
563
563
|
};
|
|
564
564
|
//#endregion
|