@opencode-ai/schema 0.0.0-dev-18852 → 0.0.0-dev-18857

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/plugin.d.ts CHANGED
@@ -9,6 +9,7 @@ export declare const Source: Schema.Union<readonly [Schema.Struct<{
9
9
  readonly target: Schema.String;
10
10
  readonly version: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
11
11
  readonly outdated: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Literal<true>>>, Schema.optionalKey<Schema.Literal<true>>, never, never>;
12
+ readonly updating: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Literal<true>>>, Schema.optionalKey<Schema.Literal<true>>, never, never>;
12
13
  }>, Schema.Struct<{
13
14
  readonly type: Schema.Literal<"local">;
14
15
  readonly path: Schema.String;
@@ -41,6 +42,7 @@ export declare const Info: Schema.Struct<{
41
42
  readonly target: Schema.String;
42
43
  readonly version: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
43
44
  readonly outdated: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Literal<true>>>, Schema.optionalKey<Schema.Literal<true>>, never, never>;
45
+ readonly updating: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Literal<true>>>, Schema.optionalKey<Schema.Literal<true>>, never, never>;
44
46
  }>, Schema.Struct<{
45
47
  readonly type: Schema.Literal<"local">;
46
48
  readonly path: Schema.String;
package/dist/plugin.js CHANGED
@@ -10,6 +10,7 @@ export const Source = Schema.Union([
10
10
  target: Schema.String,
11
11
  version: Schema.String.pipe(optional),
12
12
  outdated: Schema.Literal(true).pipe(optional),
13
+ updating: Schema.Literal(true).pipe(optional),
13
14
  }),
14
15
  Schema.Struct({ type: Schema.Literal("local"), path: Schema.String }),
15
16
  Schema.Struct({ type: Schema.Literal("sdk") }),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/schema",
4
- "version": "0.0.0-dev-18852",
4
+ "version": "0.0.0-dev-18857",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {