chore: generate
This commit is contained in:
parent
909a1a6d78
commit
49d3f86802
@ -50,10 +50,10 @@ export type Event =
|
||||
| EventInstallationUpdated
|
||||
| EventInstallationUpdateAvailable
|
||||
| EventFileEdited
|
||||
| EventPluginAdded
|
||||
| EventReferenceUpdated
|
||||
| EventPermissionV2Asked
|
||||
| EventPermissionV2Replied
|
||||
| EventReferenceUpdated
|
||||
| EventPluginAdded
|
||||
| EventProjectDirectoriesUpdated
|
||||
| EventFileWatcherUpdated
|
||||
| EventPtyCreated
|
||||
@ -1238,9 +1238,9 @@ export type GlobalEvent = {
|
||||
}
|
||||
| {
|
||||
id: string
|
||||
type: "plugin.added"
|
||||
type: "reference.updated"
|
||||
properties: {
|
||||
id: string
|
||||
[key: string]: unknown
|
||||
}
|
||||
}
|
||||
| {
|
||||
@ -1269,9 +1269,9 @@ export type GlobalEvent = {
|
||||
}
|
||||
| {
|
||||
id: string
|
||||
type: "reference.updated"
|
||||
type: "plugin.added"
|
||||
properties: {
|
||||
[key: string]: unknown
|
||||
id: string
|
||||
}
|
||||
}
|
||||
| {
|
||||
@ -2787,10 +2787,10 @@ export type V2Event =
|
||||
| V2EventInstallationUpdated
|
||||
| V2EventInstallationUpdateAvailable
|
||||
| V2EventFileEdited
|
||||
| V2EventPluginAdded
|
||||
| V2EventReferenceUpdated
|
||||
| V2EventPermissionV2Asked
|
||||
| V2EventPermissionV2Replied
|
||||
| V2EventReferenceUpdated
|
||||
| V2EventPluginAdded
|
||||
| V2EventProjectDirectoriesUpdated
|
||||
| V2EventFileWatcherUpdated
|
||||
| V2EventPtyCreated
|
||||
@ -5164,7 +5164,7 @@ export type V2EventFileEdited = {
|
||||
}
|
||||
}
|
||||
|
||||
export type V2EventPluginAdded = {
|
||||
export type V2EventReferenceUpdated = {
|
||||
id: string
|
||||
metadata?: {
|
||||
[key: string]: unknown
|
||||
@ -5175,9 +5175,9 @@ export type V2EventPluginAdded = {
|
||||
version: number
|
||||
}
|
||||
location?: LocationRef
|
||||
type: "plugin.added"
|
||||
type: "reference.updated"
|
||||
data: {
|
||||
id: string
|
||||
[key: string]: unknown
|
||||
}
|
||||
}
|
||||
|
||||
@ -5225,7 +5225,7 @@ export type V2EventPermissionV2Replied = {
|
||||
}
|
||||
}
|
||||
|
||||
export type V2EventReferenceUpdated = {
|
||||
export type V2EventPluginAdded = {
|
||||
id: string
|
||||
metadata?: {
|
||||
[key: string]: unknown
|
||||
@ -5236,9 +5236,9 @@ export type V2EventReferenceUpdated = {
|
||||
version: number
|
||||
}
|
||||
location?: LocationRef
|
||||
type: "reference.updated"
|
||||
type: "plugin.added"
|
||||
data: {
|
||||
[key: string]: unknown
|
||||
id: string
|
||||
}
|
||||
}
|
||||
|
||||
@ -6518,11 +6518,11 @@ export type EventFileEdited = {
|
||||
}
|
||||
}
|
||||
|
||||
export type EventPluginAdded = {
|
||||
export type EventReferenceUpdated = {
|
||||
id: string
|
||||
type: "plugin.added"
|
||||
type: "reference.updated"
|
||||
properties: {
|
||||
id: string
|
||||
[key: string]: unknown
|
||||
}
|
||||
}
|
||||
|
||||
@ -6552,11 +6552,11 @@ export type EventPermissionV2Replied = {
|
||||
}
|
||||
}
|
||||
|
||||
export type EventReferenceUpdated = {
|
||||
export type EventPluginAdded = {
|
||||
id: string
|
||||
type: "reference.updated"
|
||||
type: "plugin.added"
|
||||
properties: {
|
||||
[key: string]: unknown
|
||||
id: string
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -14777,7 +14777,7 @@
|
||||
"$ref": "#/components/schemas/EventFileEdited"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPluginAdded"
|
||||
"$ref": "#/components/schemas/EventReferenceUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionV2Asked"
|
||||
@ -14786,7 +14786,7 @@
|
||||
"$ref": "#/components/schemas/EventPermissionV2Replied"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventReferenceUpdated"
|
||||
"$ref": "#/components/schemas/EventPluginAdded"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventProjectDirectoriesUpdated"
|
||||
@ -18526,17 +18526,11 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["plugin.added"]
|
||||
"enum": ["reference.updated"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["id"],
|
||||
"additionalProperties": false
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
@ -18635,11 +18629,17 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["reference.updated"]
|
||||
"enum": ["plugin.added"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["id"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
@ -23119,7 +23119,7 @@
|
||||
"$ref": "#/components/schemas/V2EventFileEdited"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/V2EventPluginAdded"
|
||||
"$ref": "#/components/schemas/V2EventReferenceUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/V2EventPermissionV2Asked"
|
||||
@ -23128,7 +23128,7 @@
|
||||
"$ref": "#/components/schemas/V2EventPermissionV2Replied"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/V2EventReferenceUpdated"
|
||||
"$ref": "#/components/schemas/V2EventPluginAdded"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/V2EventProjectDirectoriesUpdated"
|
||||
@ -30431,7 +30431,7 @@
|
||||
"required": ["id", "type", "data"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"V2EventPluginAdded": {
|
||||
"V2EventReferenceUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
@ -30462,17 +30462,11 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["plugin.added"]
|
||||
"enum": ["reference.updated"]
|
||||
},
|
||||
"data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["id"],
|
||||
"additionalProperties": false
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "data"],
|
||||
@ -30606,7 +30600,7 @@
|
||||
"required": ["id", "type", "data"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"V2EventReferenceUpdated": {
|
||||
"V2EventPluginAdded": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
@ -30637,11 +30631,17 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["reference.updated"]
|
||||
"enum": ["plugin.added"]
|
||||
},
|
||||
"data": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["id"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "data"],
|
||||
@ -34370,7 +34370,7 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventPluginAdded": {
|
||||
"EventReferenceUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
@ -34379,17 +34379,11 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["plugin.added"]
|
||||
"enum": ["reference.updated"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["id"],
|
||||
"additionalProperties": false
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
@ -34479,7 +34473,7 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventReferenceUpdated": {
|
||||
"EventPluginAdded": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
@ -34488,11 +34482,17 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["reference.updated"]
|
||||
"enum": ["plugin.added"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["id"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
|
||||
Loading…
Reference in New Issue
Block a user