@luvabase/sdk 0.0.5 → 0.0.7

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2027 Luvabase, https://github.com/luvabase/luvabase
3
+ Copyright (c) 2026 Luvabase, https://github.com/luvabase/luvabase
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
@@ -2,6 +2,10 @@
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "type": "object",
4
4
  "properties": {
5
+ "$schema": {
6
+ "description": "JSON Schema for the manifest",
7
+ "type": "string"
8
+ },
5
9
  "identifier": {
6
10
  "description": "Globally unique url safe and lowercased identifier for the app e.g. 'luvabase-snake' (required for Luvabase submissions)",
7
11
  "type": "string",
@@ -53,7 +57,8 @@
53
57
  "type": {
54
58
  "type": "string",
55
59
  "enum": [
56
- "turso"
60
+ "turso",
61
+ "cloudflare-kv"
57
62
  ]
58
63
  },
59
64
  "name": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luvabase/sdk",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -3,6 +3,7 @@ import { z } from "zod"
3
3
  export type AppManifest = z.infer<typeof AppManifest>
4
4
  export const AppManifest = z.lazy(() =>
5
5
  z.object({
6
+ $schema: z.string().optional().describe("JSON Schema for the manifest"),
6
7
  identifier: z
7
8
  .string()
8
9
  .regex(/^[a-z0-9-]+$/)
@@ -57,7 +58,7 @@ export const AppManifest = z.lazy(() =>
57
58
  services: z
58
59
  .array(
59
60
  z.object({
60
- type: z.enum(["turso"]),
61
+ type: z.enum(["turso", "cloudflare-kv"]),
61
62
  name: z.string(),
62
63
  }),
63
64
  )