feat: document file changed watcher events

This commit is contained in:
2026-06-28 22:59:31 +08:00
parent 4e62e7e019
commit 64168054ac
5 changed files with 50 additions and 9 deletions
+12
View File
@@ -1,6 +1,7 @@
import { describe, expect, test } from 'vitest';
import { existsSync, readFileSync, readdirSync } from 'node:fs';
import manifestSchema from '../schemas/manifest.json';
import vaultEventsSchema from '../schemas/events/vault.json';
import type { OpenResourceRequest, PluginManifest } from './types';
import { createMockPluginAPI } from './test-utils';
@@ -47,6 +48,17 @@ describe('VerstakPluginAPI contract', () => {
expect(permissionEnum).toContain('workbench.open');
});
test('file.changed schema documents watcher refresh payload', () => {
const fileChanged = (vaultEventsSchema as any).events.find((event: any) => event.name === 'file.changed');
expect(fileChanged.schema.required).toContain('operation');
expect(fileChanged.schema.properties.operation.enum).toContain('external.create');
expect(fileChanged.schema.properties.operation.enum).toContain('external.update');
expect(fileChanged.schema.properties.operation.enum).toContain('external.delete');
expect(fileChanged.schema.properties.workspaceRootPath.type).toBe('string');
expect(fileChanged.schema.properties.external.type).toBe('boolean');
});
test('official plugin manifests comply with SDK apiVersion and permission schema', () => {
const pluginsDir = new URL('../../verstak-official-plugins/plugins/', import.meta.url);
if (!existsSync(pluginsDir)) {
+15 -2
View File
@@ -395,8 +395,21 @@ export interface FileChangedEvent extends VerstakEvent {
name: 'file.changed';
payload: {
path: string;
size?: number;
changedAt: string;
title?: string;
operation:
| 'create'
| 'update'
| 'move'
| 'delete'
| 'external.create'
| 'external.update'
| 'external.delete';
type?: 'file' | 'folder' | 'symlink' | 'unknown';
workspaceRootPath?: string;
external?: boolean;
trashId?: string;
fromPath?: string;
changedAt?: string;
};
}