@fileverse/api 0.0.9 → 0.0.10

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/cli/index.js CHANGED
@@ -389,6 +389,7 @@ var init_publish = __esm({
389
389
  init_smart_agent();
390
390
  init_file_manager();
391
391
  init_config();
392
+ init_pimlico_utils();
392
393
  }
393
394
  });
394
395
 
@@ -1136,7 +1137,7 @@ CREATE TABLE IF NOT EXISTS events (
1136
1137
  type TEXT NOT NULL CHECK (type IN ('create', 'update', 'delete')),
1137
1138
  timestamp BIGINT NOT NULL,
1138
1139
  fileId TEXT NOT NULL,
1139
- status TEXT NOT NULL DEFAULT 'pending' CHECK (status IN ('pending', 'processing', 'processed', 'failed')),
1140
+ status TEXT NOT NULL DEFAULT 'pending' CHECK (status IN ('pending', 'processing', 'submitted', 'processed', 'failed')),
1140
1141
  retryCount INTEGER NOT NULL DEFAULT 0,
1141
1142
  lastError TEXT,
1142
1143
  lockedAt BIGINT,