@crewx/sdk 0.9.0-rc.64 → 0.9.0-rc.66
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/config/models.generated.d.ts +2 -2
- package/dist/config/pricing.generated.d.ts +2 -2
- package/dist/esm/index.js +94 -87
- package/dist/esm/plugins/index.js +118 -111
- package/dist/esm/repository/index.js +141 -119
- package/dist/esm/testing/index.js +1 -1
- package/dist/index.browser.js +3 -3
- package/dist/index.js +95 -88
- package/dist/migrations/0016_fuzzy_hemingway.sql +14 -0
- package/dist/migrations/meta/0016_snapshot.json +2419 -0
- package/dist/migrations/meta/_journal.json +7 -0
- package/dist/plugins/index.js +118 -111
- package/dist/repository/db.d.ts +8 -0
- package/dist/repository/index.d.ts +7 -2
- package/dist/repository/index.js +141 -119
- package/dist/repository/task-log-migration.d.ts +74 -0
- package/dist/repository/task-log.repository.d.ts +44 -0
- package/dist/repository/task.repository.d.ts +6 -0
- package/dist/schema/index.d.ts +1 -0
- package/dist/schema/task-log-events.d.ts +119 -0
- package/dist/schema/tasks.d.ts +53 -0
- package/dist/testing/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { ModelApiPricing } from './pricing.types.js';
|
|
2
2
|
export declare const MODEL_TIERS: readonly ["flagship", "balanced", "speed"];
|
|
3
3
|
export type ModelTier = (typeof MODEL_TIERS)[number];
|
|
4
|
-
export declare const MODEL_CATALOG_VERSION =
|
|
5
|
-
export declare const MODEL_CATALOG_UPDATED = "2026-08-
|
|
4
|
+
export declare const MODEL_CATALOG_VERSION = 19;
|
|
5
|
+
export declare const MODEL_CATALOG_UPDATED = "2026-08-18T00:00:00Z";
|
|
6
6
|
export interface ModelCatalogEntry {
|
|
7
7
|
id: string;
|
|
8
8
|
name: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ModelPricing } from './pricing.types.js';
|
|
2
2
|
export declare const MODEL_PRICING: Record<string, ModelPricing>;
|
|
3
|
-
export declare const MODEL_PRICING_VERSION =
|
|
4
|
-
export declare const MODEL_PRICING_UPDATED = "2026-08-
|
|
3
|
+
export declare const MODEL_PRICING_VERSION = 19;
|
|
4
|
+
export declare const MODEL_PRICING_UPDATED = "2026-08-18T00:00:00Z";
|
|
5
5
|
export declare const UNPUBLISHED_MODEL_IDS: ReadonlySet<string>;
|
|
6
6
|
export declare const CATALOG_MODEL_IDS: ReadonlySet<string>;
|