diff --git a/package-lock.json b/package-lock.json index 18a84da81..6a0e58058 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3342,9 +3342,9 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", diff --git a/schemas/api/common.schema.json b/schemas/api/common.schema.json index 50c6c274a..ad5ec7a6f 100644 --- a/schemas/api/common.schema.json +++ b/schemas/api/common.schema.json @@ -60,9 +60,9 @@ "description": "Event listener type names for Private Channel events.", "type": "string", "enum": [ - "onAddContextListener", - "onUnsubscribe", - "onDisconnect" + "addContextListener", + "unsubscribe", + "disconnect" ] } } diff --git a/src/api/BrowserTypes.ts b/src/api/BrowserTypes.ts index 2b9cf7860..8cb0e746c 100644 --- a/src/api/BrowserTypes.ts +++ b/src/api/BrowserTypes.ts @@ -1442,7 +1442,7 @@ export interface AppMetadata { } /** - * Describes an Icon images that may be used to represent the application. + * Describes an Icon image that may be used to represent the application. */ export interface Icon { /** @@ -2107,7 +2107,7 @@ export interface GetCurrentContextResponsePayload { */ /** - * Request to retrieve information about the FDC3 Desktop Agent implementation and the + * Request to retrieve information about the FDC3 Desktop Agent implementation and the * metadata of the calling application according to the Desktop Agent. * * A request message from an FDC3-enabled app to a Desktop Agent. @@ -2919,7 +2919,7 @@ export interface TPayload { * * Event listener type names for Private Channel events. */ -export type PrivateChannelEventListenerTypes = "onAddContextListener" | "onUnsubscribe" | "onDisconnect"; +export type PrivateChannelEventListenerTypes = "addContextListener" | "unsubscribe" | "disconnect"; /** * Identifies the type of the message and it is typically set to the FDC3 function name that @@ -5780,9 +5780,9 @@ const typeMap: any = { "openResponse", ], "PrivateChannelEventListenerTypes": [ - "onAddContextListener", - "onDisconnect", - "onUnsubscribe", + "addContextListener", + "disconnect", + "unsubscribe", ], "PrivateChannelAddEventListenerRequestType": [ "privateChannelAddEventListenerRequest",