@getpaseo/cli 0.5.0-beta.1 → 0.5.0-beta.3

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.
@@ -1,7 +1,7 @@
1
1
  import { mkdir, readdir, writeFile } from "node:fs/promises";
2
2
  import path from "node:path";
3
3
  import { PluginIdSchema } from "@getpaseo/protocol/messages";
4
- const SDK_DECLARATIONS = `declare module "@paseo/plugin/server" {
4
+ const SDK_DECLARATIONS = `declare module "@getpaseo/plugin/server" {
5
5
  import type { PaseoApi } from "@getpaseo/client";
6
6
  import type { ZodType, input as ZodInput, output as ZodOutput } from "zod";
7
7
 
@@ -55,7 +55,7 @@ const SDK_DECLARATIONS = `declare module "@paseo/plugin/server" {
55
55
  export const PluginAttachmentSearchPayloadSchema: import("zod").ZodType<PluginAttachmentSearchPayload>;
56
56
  }
57
57
 
58
- declare module "@paseo/plugin" {
58
+ declare module "@getpaseo/plugin" {
59
59
  import type { ComponentType } from "react";
60
60
  import type { PaseoApi } from "@getpaseo/client";
61
61
  import type { ZodType, input as ZodInput, output as ZodOutput } from "zod";
@@ -63,7 +63,7 @@ declare module "@paseo/plugin" {
63
63
  PluginAttachmentSourceContribution,
64
64
  PluginHandlerContext,
65
65
  PluginRpcContract,
66
- } from "@paseo/plugin/server";
66
+ } from "@getpaseo/plugin/server";
67
67
 
68
68
  export {
69
69
  PluginAttachmentItemSchema,
@@ -75,7 +75,7 @@ declare module "@paseo/plugin" {
75
75
  type PluginAttachmentSourceContribution,
76
76
  type PluginHandlerContext,
77
77
  type PluginRpcContract,
78
- } from "@paseo/plugin/server";
78
+ } from "@getpaseo/plugin/server";
79
79
 
80
80
  export interface PluginTheme {
81
81
  readonly colors: {
@@ -239,7 +239,7 @@ const TSCONFIG = {
239
239
  },
240
240
  include: ["**/*.ts", "**/*.tsx"],
241
241
  };
242
- const ENTRY = `import type { PluginContext } from "@paseo/plugin";
242
+ const ENTRY = `import type { PluginContext } from "@getpaseo/plugin";
243
243
  import { MainSurface } from "./main.client";
244
244
 
245
245
  export default function contribute(plugin: PluginContext) {
@@ -247,7 +247,7 @@ export default function contribute(plugin: PluginContext) {
247
247
  return () => {};
248
248
  }
249
249
  `;
250
- const CLIENT_SURFACE = `import type { PluginSurfaceProps } from "@paseo/plugin";
250
+ const CLIENT_SURFACE = `import type { PluginSurfaceProps } from "@getpaseo/plugin";
251
251
  import React, { useMemo } from "react";
252
252
  import { Text, View } from "react-native";
253
253
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpaseo/cli",
3
- "version": "0.5.0-beta.1",
3
+ "version": "0.5.0-beta.3",
4
4
  "description": "Paseo CLI - control your AI coding agents from the command line",
5
5
  "bin": {
6
6
  "paseo": "bin/paseo"
@@ -28,9 +28,9 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@clack/prompts": "^1.0.0",
31
- "@getpaseo/client": "0.5.0-beta.1",
32
- "@getpaseo/protocol": "0.5.0-beta.1",
33
- "@getpaseo/server": "0.5.0-beta.1",
31
+ "@getpaseo/client": "0.5.0-beta.3",
32
+ "@getpaseo/protocol": "0.5.0-beta.3",
33
+ "@getpaseo/server": "0.5.0-beta.3",
34
34
  "chalk": "^5.3.0",
35
35
  "commander": "^12.0.0",
36
36
  "mime-types": "^2.1.35",