Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/schema/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export * from "./openclawContract.js";
export * from "./openClawExtensionSlugs.js";
export * from "./packages.js";
export * from "./pluginCategories.js";
export * from "./registryScanBridge.js";
export { ApiRoutes, LegacyApiRoutes } from "./routes.js";
export * from "./schemas.js";
export * from "./textFiles.js";
3 changes: 2 additions & 1 deletion packages/schema/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/schema/dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions packages/schema/dist/registryScanBridge.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import type { CatalogFeedEntry, CatalogFeedInstallCandidate } from "./catalogFeed.js";
export declare const OPENCLAW_REGISTRY_EXPORT_SCHEMA_VERSION = 1;
export type OpenClawRegistryExportReflectedState = "pending" | "reviewed" | "rejected" | "scan_pending" | "scan_passed" | "scan_failed" | "registry_included" | "registry_removed";
export type OpenClawRegistryExportInput = {
feedId: string;
feedSequence: number;
feedPayloadDigest?: string | null;
entry: CatalogFeedEntry;
candidate?: CatalogFeedInstallCandidate;
exportedAt: string;
exportActorId?: string | null;
};
export type OpenClawRegistryExport = {
schemaVersion: typeof OPENCLAW_REGISTRY_EXPORT_SCHEMA_VERSION;
exportId: string;
idempotencyKey: string;
exportedAt: string;
exportActorId: string | null;
clawhub: {
feed: {
id: string;
sequence: number;
payloadDigest: string | null;
entryId: string;
entryState: CatalogFeedEntry["state"];
};
publisher: {
id: string;
official: boolean;
};
candidate: {
kind: CatalogFeedEntry["type"];
id: string;
title: string;
package: string;
version: string;
sourceRef: string;
artifactDigest: string;
sourceType: "clawhub" | "github" | "other";
github: CatalogFeedInstallCandidate["github"] | null;
};
scanState: null;
reviewState: null;
};
openclaw: {
reviewState: OpenClawRegistryExportReflectedState | null;
scanState: OpenClawRegistryExportReflectedState | null;
registryState: OpenClawRegistryExportReflectedState | null;
reviewId: string | null;
};
};
export declare function buildOpenClawRegistryExport(input: OpenClawRegistryExportInput): OpenClawRegistryExport;
101 changes: 101 additions & 0 deletions packages/schema/dist/registryScanBridge.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/schema/dist/registryScanBridge.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/schema/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export * from "./openclawContract.js";
export * from "./openClawExtensionSlugs.js";
export * from "./packages.js";
export * from "./pluginCategories.js";
export * from "./registryScanBridge.js";
export { ApiRoutes, LegacyApiRoutes } from "./routes.js";
export * from "./schemas.js";
export * from "./textFiles.js";
Loading
Loading