@xpufx/paseo-forges 0.1.1 → 0.1.2
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/client/active-forge.ts +1 -1
- package/client/board-alert.tsx +1 -1
- package/client/foreign-link.tsx +1 -1
- package/client/hook-queue-panel.tsx +1 -1
- package/client/issues-pill.tsx +2 -2
- package/client/label-chip.tsx +1 -1
- package/client/linkifier.tsx +1 -1
- package/client/notification-card.tsx +1 -1
- package/client/webhook-card.tsx +1 -1
- package/index.client.tsx +1 -1
- package/index.server.ts +1 -1
- package/package.json +1 -1
- package/server/issues.ts +2 -2
- package/server/settings.ts +1 -1
- package/shared/hook-queue.ts +1 -1
- package/shared/issues.ts +1 -1
package/client/active-forge.ts
CHANGED
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
resolveForgeTarget,
|
|
9
9
|
type ForgeRepoIdentity,
|
|
10
10
|
} from "../shared/issues.js";
|
|
11
|
-
import { usePluginSettings, useRpcQuery } from "paseo-plugin-helper/
|
|
11
|
+
import { usePluginSettings, useRpcQuery } from "./vendor/paseo-plugin-helper/index";
|
|
12
12
|
|
|
13
13
|
/** Workspace directory backing an agent, or undefined while it cannot resolve. */
|
|
14
14
|
export function useAgentDirectory(agentId: string): string | undefined {
|
package/client/board-alert.tsx
CHANGED
package/client/foreign-link.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { Text } from "react-native";
|
|
3
|
-
import { Badge } from "paseo-plugin-helper/
|
|
3
|
+
import { Badge } from "./vendor/paseo-plugin-helper/index";
|
|
4
4
|
|
|
5
5
|
/** Shared label for the cross-repo marker, so every surface reads the same. */
|
|
6
6
|
export const FOREIGN_LINK_LABEL = "foreign";
|
package/client/issues-pill.tsx
CHANGED
|
@@ -31,8 +31,8 @@ import {
|
|
|
31
31
|
getClientHost,
|
|
32
32
|
type RenderModalProps,
|
|
33
33
|
type RenderPillProps,
|
|
34
|
-
} from "paseo-plugin-helper/
|
|
35
|
-
import { hasFuzzyHighlight, normalizeSearchQuery } from "paseo-plugin-helper/
|
|
34
|
+
} from "./vendor/paseo-plugin-helper/index";
|
|
35
|
+
import { hasFuzzyHighlight, normalizeSearchQuery } from "../shared/vendor/paseo-plugin-helper/index";
|
|
36
36
|
import { HookQueueView } from "./hook-queue-panel.js";
|
|
37
37
|
import {
|
|
38
38
|
ATTENTION_LABELS,
|
package/client/label-chip.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { View, type StyleProp, type ViewStyle } from "react-native";
|
|
3
|
-
import { Badge, usePluginTheme } from "paseo-plugin-helper/
|
|
3
|
+
import { Badge, usePluginTheme } from "./vendor/paseo-plugin-helper/index";
|
|
4
4
|
import { planLabelChip, type ForgeLabel, type LabelChipHalf } from "../shared/issues.js";
|
|
5
5
|
|
|
6
6
|
/** Inner corners join the halves; the scope's right border becomes the divider. */
|
package/client/linkifier.tsx
CHANGED
|
@@ -8,7 +8,7 @@ import type {
|
|
|
8
8
|
} from "@getpaseo/plugin/client";
|
|
9
9
|
import type { PluginTheme } from "@getpaseo/plugin";
|
|
10
10
|
import { Icon } from "@getpaseo/plugin/client/react-native";
|
|
11
|
-
import { ForgeIcon, copyToClipboard } from "paseo-plugin-helper/
|
|
11
|
+
import { ForgeIcon, copyToClipboard } from "./vendor/paseo-plugin-helper/index";
|
|
12
12
|
import {
|
|
13
13
|
classifyForgeLink,
|
|
14
14
|
classifyForgeUrl,
|
|
@@ -6,7 +6,7 @@ import type {
|
|
|
6
6
|
PluginTimelineTransformerContribution,
|
|
7
7
|
} from "@getpaseo/plugin/client";
|
|
8
8
|
import { Icon } from "@getpaseo/plugin/client/react-native";
|
|
9
|
-
import { Badge } from "paseo-plugin-helper/
|
|
9
|
+
import { Badge } from "./vendor/paseo-plugin-helper/index";
|
|
10
10
|
import {
|
|
11
11
|
forgejoNotificationCardSchema,
|
|
12
12
|
forgejoNotificationItem,
|
package/client/webhook-card.tsx
CHANGED
|
@@ -6,7 +6,7 @@ import type {
|
|
|
6
6
|
PluginTimelineTransformerContribution,
|
|
7
7
|
} from "@getpaseo/plugin/client";
|
|
8
8
|
import type { PluginTheme } from "@getpaseo/plugin";
|
|
9
|
-
import { Badge, ForgeIcon, Icon } from "paseo-plugin-helper/
|
|
9
|
+
import { Badge, ForgeIcon, Icon } from "./vendor/paseo-plugin-helper/index";
|
|
10
10
|
import {
|
|
11
11
|
forgejoWebhookCardSchema,
|
|
12
12
|
forgejoWebhookItem,
|
package/index.client.tsx
CHANGED
package/index.server.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PluginServerContext } from "@getpaseo/plugin/server";
|
|
2
|
-
import { createPluginLogger } from "paseo-plugin-helper/
|
|
2
|
+
import { createPluginLogger } from "./server/vendor/paseo-plugin-helper/index";
|
|
3
3
|
import {
|
|
4
4
|
addCommentContract,
|
|
5
5
|
createIssueContract,
|
package/package.json
CHANGED
package/server/issues.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createPluginLogger } from "paseo-plugin-helper/
|
|
1
|
+
import { createPluginLogger } from "./vendor/paseo-plugin-helper/index";
|
|
2
2
|
import {
|
|
3
3
|
INSTALL_LABEL_MODES,
|
|
4
4
|
IssueDetailSchema,
|
|
@@ -31,7 +31,7 @@ import {
|
|
|
31
31
|
type SetLabelOutput,
|
|
32
32
|
validateCreateIssueInput,
|
|
33
33
|
} from "../shared/issues.js";
|
|
34
|
-
import type { RpcOutput } from "paseo-plugin-helper/
|
|
34
|
+
import type { RpcOutput } from "../shared/vendor/paseo-plugin-helper/index";
|
|
35
35
|
import { ForgeClient, type ForgejoIssueDetail } from "./forge-client.js";
|
|
36
36
|
import { ForgeGuard, type GuardLogLevel } from "./forge-guard.js";
|
|
37
37
|
import { gitOriginForDirectory } from "./git-origin.js";
|
package/server/settings.ts
CHANGED
package/shared/hook-queue.ts
CHANGED