@codelia/model-metadata 0.1.3 → 0.1.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/index.cjs CHANGED
@@ -191,6 +191,8 @@ function buildEntriesForProvider(provider, models) {
191
191
  entries[model.id] = {
192
192
  provider,
193
193
  modelId: model.id,
194
+ releaseDate: model.release_date,
195
+ lastUpdated: model.last_updated,
194
196
  cost: {
195
197
  input: model.cost?.input,
196
198
  output: model.cost?.output,
package/dist/index.js CHANGED
@@ -155,6 +155,8 @@ function buildEntriesForProvider(provider, models) {
155
155
  entries[model.id] = {
156
156
  provider,
157
157
  modelId: model.id,
158
+ releaseDate: model.release_date,
159
+ lastUpdated: model.last_updated,
158
160
  cost: {
159
161
  input: model.cost?.input,
160
162
  output: model.cost?.output,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codelia/model-metadata",
3
- "version": "0.1.3",
3
+ "version": "0.1.10",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -20,8 +20,8 @@
20
20
  "typecheck": "tsc --noEmit"
21
21
  },
22
22
  "dependencies": {
23
- "@codelia/core": "0.1.3",
24
- "@codelia/storage": "0.1.3",
23
+ "@codelia/core": "0.1.10",
24
+ "@codelia/storage": "0.1.10",
25
25
  "zod": "^4.3.5"
26
26
  },
27
27
  "publishConfig": {