chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-22 23:08:26 +00:00
parent 909a1a6d78
commit 49d3f86802
2 changed files with 58 additions and 58 deletions
+20 -20
View File
@@ -50,10 +50,10 @@ export type Event =
| EventInstallationUpdated | EventInstallationUpdated
| EventInstallationUpdateAvailable | EventInstallationUpdateAvailable
| EventFileEdited | EventFileEdited
| EventPluginAdded | EventReferenceUpdated
| EventPermissionV2Asked | EventPermissionV2Asked
| EventPermissionV2Replied | EventPermissionV2Replied
| EventReferenceUpdated | EventPluginAdded
| EventProjectDirectoriesUpdated | EventProjectDirectoriesUpdated
| EventFileWatcherUpdated | EventFileWatcherUpdated
| EventPtyCreated | EventPtyCreated
@@ -1238,9 +1238,9 @@ export type GlobalEvent = {
} }
| { | {
id: string id: string
type: "plugin.added" type: "reference.updated"
properties: { properties: {
id: string [key: string]: unknown
} }
} }
| { | {
@@ -1269,9 +1269,9 @@ export type GlobalEvent = {
} }
| { | {
id: string id: string
type: "reference.updated" type: "plugin.added"
properties: { properties: {
[key: string]: unknown id: string
} }
} }
| { | {
@@ -2787,10 +2787,10 @@ export type V2Event =
| V2EventInstallationUpdated | V2EventInstallationUpdated
| V2EventInstallationUpdateAvailable | V2EventInstallationUpdateAvailable
| V2EventFileEdited | V2EventFileEdited
| V2EventPluginAdded | V2EventReferenceUpdated
| V2EventPermissionV2Asked | V2EventPermissionV2Asked
| V2EventPermissionV2Replied | V2EventPermissionV2Replied
| V2EventReferenceUpdated | V2EventPluginAdded
| V2EventProjectDirectoriesUpdated | V2EventProjectDirectoriesUpdated
| V2EventFileWatcherUpdated | V2EventFileWatcherUpdated
| V2EventPtyCreated | V2EventPtyCreated
@@ -5164,7 +5164,7 @@ export type V2EventFileEdited = {
} }
} }
export type V2EventPluginAdded = { export type V2EventReferenceUpdated = {
id: string id: string
metadata?: { metadata?: {
[key: string]: unknown [key: string]: unknown
@@ -5175,9 +5175,9 @@ export type V2EventPluginAdded = {
version: number version: number
} }
location?: LocationRef location?: LocationRef
type: "plugin.added" type: "reference.updated"
data: { data: {
id: string [key: string]: unknown
} }
} }
@@ -5225,7 +5225,7 @@ export type V2EventPermissionV2Replied = {
} }
} }
export type V2EventReferenceUpdated = { export type V2EventPluginAdded = {
id: string id: string
metadata?: { metadata?: {
[key: string]: unknown [key: string]: unknown
@@ -5236,9 +5236,9 @@ export type V2EventReferenceUpdated = {
version: number version: number
} }
location?: LocationRef location?: LocationRef
type: "reference.updated" type: "plugin.added"
data: { data: {
[key: string]: unknown id: string
} }
} }
@@ -6518,11 +6518,11 @@ export type EventFileEdited = {
} }
} }
export type EventPluginAdded = { export type EventReferenceUpdated = {
id: string id: string
type: "plugin.added" type: "reference.updated"
properties: { properties: {
id: string [key: string]: unknown
} }
} }
@@ -6552,11 +6552,11 @@ export type EventPermissionV2Replied = {
} }
} }
export type EventReferenceUpdated = { export type EventPluginAdded = {
id: string id: string
type: "reference.updated" type: "plugin.added"
properties: { properties: {
[key: string]: unknown id: string
} }
} }
+38 -38
View File
@@ -14777,7 +14777,7 @@
"$ref": "#/components/schemas/EventFileEdited" "$ref": "#/components/schemas/EventFileEdited"
}, },
{ {
"$ref": "#/components/schemas/EventPluginAdded" "$ref": "#/components/schemas/EventReferenceUpdated"
}, },
{ {
"$ref": "#/components/schemas/EventPermissionV2Asked" "$ref": "#/components/schemas/EventPermissionV2Asked"
@@ -14786,7 +14786,7 @@
"$ref": "#/components/schemas/EventPermissionV2Replied" "$ref": "#/components/schemas/EventPermissionV2Replied"
}, },
{ {
"$ref": "#/components/schemas/EventReferenceUpdated" "$ref": "#/components/schemas/EventPluginAdded"
}, },
{ {
"$ref": "#/components/schemas/EventProjectDirectoriesUpdated" "$ref": "#/components/schemas/EventProjectDirectoriesUpdated"
@@ -18526,17 +18526,11 @@
}, },
"type": { "type": {
"type": "string", "type": "string",
"enum": ["plugin.added"] "enum": ["reference.updated"]
}, },
"properties": { "properties": {
"type": "object", "type": "object",
"properties": { "properties": {}
"id": {
"type": "string"
}
},
"required": ["id"],
"additionalProperties": false
} }
}, },
"required": ["id", "type", "properties"], "required": ["id", "type", "properties"],
@@ -18635,11 +18629,17 @@
}, },
"type": { "type": {
"type": "string", "type": "string",
"enum": ["reference.updated"] "enum": ["plugin.added"]
}, },
"properties": { "properties": {
"type": "object", "type": "object",
"properties": {} "properties": {
"id": {
"type": "string"
}
},
"required": ["id"],
"additionalProperties": false
} }
}, },
"required": ["id", "type", "properties"], "required": ["id", "type", "properties"],
@@ -23119,7 +23119,7 @@
"$ref": "#/components/schemas/V2EventFileEdited" "$ref": "#/components/schemas/V2EventFileEdited"
}, },
{ {
"$ref": "#/components/schemas/V2EventPluginAdded" "$ref": "#/components/schemas/V2EventReferenceUpdated"
}, },
{ {
"$ref": "#/components/schemas/V2EventPermissionV2Asked" "$ref": "#/components/schemas/V2EventPermissionV2Asked"
@@ -23128,7 +23128,7 @@
"$ref": "#/components/schemas/V2EventPermissionV2Replied" "$ref": "#/components/schemas/V2EventPermissionV2Replied"
}, },
{ {
"$ref": "#/components/schemas/V2EventReferenceUpdated" "$ref": "#/components/schemas/V2EventPluginAdded"
}, },
{ {
"$ref": "#/components/schemas/V2EventProjectDirectoriesUpdated" "$ref": "#/components/schemas/V2EventProjectDirectoriesUpdated"
@@ -30431,7 +30431,7 @@
"required": ["id", "type", "data"], "required": ["id", "type", "data"],
"additionalProperties": false "additionalProperties": false
}, },
"V2EventPluginAdded": { "V2EventReferenceUpdated": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
@@ -30462,17 +30462,11 @@
}, },
"type": { "type": {
"type": "string", "type": "string",
"enum": ["plugin.added"] "enum": ["reference.updated"]
}, },
"data": { "data": {
"type": "object", "type": "object",
"properties": { "properties": {}
"id": {
"type": "string"
}
},
"required": ["id"],
"additionalProperties": false
} }
}, },
"required": ["id", "type", "data"], "required": ["id", "type", "data"],
@@ -30606,7 +30600,7 @@
"required": ["id", "type", "data"], "required": ["id", "type", "data"],
"additionalProperties": false "additionalProperties": false
}, },
"V2EventReferenceUpdated": { "V2EventPluginAdded": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
@@ -30637,11 +30631,17 @@
}, },
"type": { "type": {
"type": "string", "type": "string",
"enum": ["reference.updated"] "enum": ["plugin.added"]
}, },
"data": { "data": {
"type": "object", "type": "object",
"properties": {} "properties": {
"id": {
"type": "string"
}
},
"required": ["id"],
"additionalProperties": false
} }
}, },
"required": ["id", "type", "data"], "required": ["id", "type", "data"],
@@ -34370,7 +34370,7 @@
"required": ["id", "type", "properties"], "required": ["id", "type", "properties"],
"additionalProperties": false "additionalProperties": false
}, },
"EventPluginAdded": { "EventReferenceUpdated": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
@@ -34379,17 +34379,11 @@
}, },
"type": { "type": {
"type": "string", "type": "string",
"enum": ["plugin.added"] "enum": ["reference.updated"]
}, },
"properties": { "properties": {
"type": "object", "type": "object",
"properties": { "properties": {}
"id": {
"type": "string"
}
},
"required": ["id"],
"additionalProperties": false
} }
}, },
"required": ["id", "type", "properties"], "required": ["id", "type", "properties"],
@@ -34479,7 +34473,7 @@
"required": ["id", "type", "properties"], "required": ["id", "type", "properties"],
"additionalProperties": false "additionalProperties": false
}, },
"EventReferenceUpdated": { "EventPluginAdded": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
@@ -34488,11 +34482,17 @@
}, },
"type": { "type": {
"type": "string", "type": "string",
"enum": ["reference.updated"] "enum": ["plugin.added"]
}, },
"properties": { "properties": {
"type": "object", "type": "object",
"properties": {} "properties": {
"id": {
"type": "string"
}
},
"required": ["id"],
"additionalProperties": false
} }
}, },
"required": ["id", "type", "properties"], "required": ["id", "type", "properties"],