SYMBOL INDEX (2320 symbols across 235 files) FILE: packages/fdc3-agent-proxy/src/DesktopAgentProxy.ts class DesktopAgentProxy (line 26) | class DesktopAgentProxy implements DesktopAgent, Connectable { method constructor (line 33) | constructor( method addEventListener (line 77) | addEventListener(type: FDC3EventTypes | null, handler: EventHandler): ... method getInfo (line 81) | getInfo(): Promise { method broadcast (line 85) | async broadcast(context: Context): Promise { method addContextListener (line 94) | addContextListener( method getUserChannels (line 120) | getUserChannels() { method getSystemChannels (line 124) | getSystemChannels() { method getOrCreateChannel (line 128) | getOrCreateChannel(channelId: string) { method createPrivateChannel (line 132) | createPrivateChannel() { method leaveCurrentChannel (line 136) | leaveCurrentChannel() { method joinUserChannel (line 140) | joinUserChannel(channelId: string) { method joinChannel (line 144) | joinChannel(channelId: string) { method getCurrentChannel (line 148) | getCurrentChannel(): Promise { method findIntent (line 152) | findIntent(intent: string, context: Context, resultType: string | unde... method findIntentsByContext (line 156) | findIntentsByContext(context: Context) { method ensureAppId (line 160) | private ensureAppId(app?: string | AppIdentifier): AppIdentifier | und... method raiseIntent (line 172) | raiseIntent(intent: string, context: Context, app?: string | AppIdenti... method addIntentListener (line 176) | addIntentListener(intent: string, handler: IntentHandler) { method raiseIntentForContext (line 180) | raiseIntentForContext(context: Context, app?: string | AppIdentifier):... method open (line 184) | open(app: string | AppIdentifier, context?: Context | undefined) { method findInstances (line 188) | findInstances(app: AppIdentifier) { method getAppMetadata (line 192) | getAppMetadata(app: AppIdentifier): Promise { method disconnect (line 196) | async disconnect(): Promise { method connect (line 200) | async connect(): Promise { FILE: packages/fdc3-agent-proxy/src/Messaging.ts type Messaging (line 9) | interface Messaging { FILE: packages/fdc3-agent-proxy/src/apps/AppSupport.ts type AppSupport (line 4) | interface AppSupport { FILE: packages/fdc3-agent-proxy/src/apps/DefaultAppSupport.ts class DefaultAppSupport (line 18) | class DefaultAppSupport implements AppSupport { method constructor (line 23) | constructor(messaging: Messaging, messageExchangeTimeout: number, appL... method findInstances (line 29) | async findInstances(app: AppIdentifier): Promise { method getAppMetadata (line 46) | async getAppMetadata(app: AppIdentifier): Promise { method open (line 71) | async open(app: AppIdentifier, context?: Context | undefined): Promise... method getImplementationMetadata (line 96) | async getImplementationMetadata(): Promise { FILE: packages/fdc3-agent-proxy/src/channels/ChannelSupport.ts type ChannelSupport (line 11) | interface ChannelSupport extends Connectable { FILE: packages/fdc3-agent-proxy/src/channels/DefaultChannel.ts class DefaultChannel (line 16) | class DefaultChannel implements Channel { method constructor (line 23) | constructor( method broadcast (line 42) | async broadcast(context: Context): Promise { method getCurrentContext (line 54) | async getCurrentContext(contextType?: string | undefined): Promise { method addEventListener (line 124) | async addEventListener(type: string | null, handler: EventHandler): Pr... FILE: packages/fdc3-agent-proxy/src/channels/DefaultChannelSupport.ts class DefaultChannelSupport (line 39) | class DefaultChannelSupport implements ChannelSupport, Connectable { method constructor (line 47) | constructor(messaging: Messaging, channelSelector: ChannelSelector, me... method connect (line 61) | async connect(): Promise { method disconnect (line 95) | async disconnect(): Promise { method addEventListener (line 99) | async addEventListener(handler: EventHandler, type: FDC3EventTypes | n... method getUserChannel (line 105) | async getUserChannel(): Promise { method getUserChannels (line 148) | async getUserChannels(): Promise { method getOrCreate (line 173) | async getOrCreate(id: string): Promise { method createPrivateChannel (line 204) | async createPrivateChannel(): Promise { method leaveUserChannel (line 226) | async leaveUserChannel(): Promise { method joinUserChannel (line 241) | async joinUserChannel(id: string) { method addContextListener (line 266) | async addContextListener(handler: ContextHandler, type: string | null)... FILE: packages/fdc3-agent-proxy/src/channels/DefaultPrivateChannel.ts class DefaultPrivateChannel (line 24) | class DefaultPrivateChannel extends DefaultChannel implements PrivateCha... method constructor (line 25) | constructor(messaging: Messaging, messageExchangeTimeout: number, id: ... method addEventListener (line 34) | async addEventListener(type: PrivateChannelEventTypes | null, handler:... method onAddContextListener (line 57) | onAddContextListener(handler: (contextType?: string) => void): Listener { method onUnsubscribe (line 72) | onUnsubscribe(handler: (contextType?: string) => void): Listener { method onDisconnect (line 87) | onDisconnect(handler: () => void): Listener { method disconnect (line 102) | async disconnect(): Promise { method addContextListenerInner (line 117) | async addContextListenerInner(contextType: string | null, theHandler: ... FILE: packages/fdc3-agent-proxy/src/heartbeat/DefaultHeartbeatSupport.ts class DefaultHeartbeatSupport (line 8) | class DefaultHeartbeatSupport implements HeartbeatSupport { method constructor (line 12) | constructor(messaging: Messaging) { method connect (line 16) | async connect(): Promise { method disconnect (line 21) | async disconnect(): Promise { FILE: packages/fdc3-agent-proxy/src/heartbeat/HeartbeatSupport.ts type HeartbeatSupport (line 4) | interface HeartbeatSupport extends Connectable { } FILE: packages/fdc3-agent-proxy/src/intents/DefaultIntentResolution.ts class DefaultIntentResolution (line 4) | class DefaultIntentResolution implements IntentResolution { method constructor (line 10) | constructor(messaging: Messaging, result: Promise, sourc... method getResult (line 20) | getResult(): Promise { FILE: packages/fdc3-agent-proxy/src/intents/DefaultIntentSupport.ts class DefaultIntentSupport (line 57) | class DefaultIntentSupport implements IntentSupport { method constructor (line 63) | constructor( method findIntent (line 75) | async findIntent(intent: string, context: Context, resultType: string ... method findIntentsByContext (line 102) | async findIntentsByContext(context: Context): Promise { method createResultPromise (line 124) | private async createResultPromise(request: RaiseIntentRequest | RaiseI... method raiseIntent (line 133) | async raiseIntent(intent: string, context: Context, app: AppIdentifier... method raiseIntentForContext (line 177) | async raiseIntentForContext(context: Context, app?: AppIdentifier | un... method addIntentListener (line 219) | async addIntentListener(intent: string, handler: IntentHandler): Promi... FILE: packages/fdc3-agent-proxy/src/intents/IntentSupport.ts type IntentSupport (line 4) | interface IntentSupport { FILE: packages/fdc3-agent-proxy/src/listeners/AbstractListener.ts type SubscriptionRequest (line 25) | type SubscriptionRequest = type SubscriptionResponse (line 30) | type SubscriptionResponse = type UnsubscribeRequest (line 35) | type UnsubscribeRequest = type UnsubscribeResponse (line 40) | type UnsubscribeResponse = method constructor (line 61) | constructor( method unsubscribe (line 85) | async unsubscribe(): Promise { method register (line 108) | async register(): Promise { FILE: packages/fdc3-agent-proxy/src/listeners/DefaultContextListener.ts class DefaultContextListener (line 7) | class DefaultContextListener method constructor (line 15) | constructor( method filter (line 38) | filter(m: BroadcastEvent): boolean { method action (line 46) | action(m: BroadcastEvent): void { FILE: packages/fdc3-agent-proxy/src/listeners/DefaultIntentListener.ts class DefaultIntentListener (line 13) | class DefaultIntentListener extends AbstractListener | void, m: Inte... function convertIntentResult (line 80) | function convertIntentResult(intentResult: IntentResult): IntentResultRe... FILE: packages/fdc3-agent-proxy/src/listeners/DesktopAgentEventListener.ts function wrapHandler (line 11) | function wrapHandler(handler: EventHandler): (msg: AgentEventMessage) =>... function getRequestPayload (line 33) | function getRequestPayload(type: FDC3EventTypes | null): AddEventListene... function getEventType (line 47) | function getEventType(type: FDC3EventTypes | null): ChannelChangedEvent[... class DesktopAgentEventListener (line 60) | class DesktopAgentEventListener extends AbstractListener< method constructor (line 66) | constructor( method action (line 85) | action(m: AgentEventMessage): void { method filter (line 89) | filter(m: AgentEventMessage): boolean { FILE: packages/fdc3-agent-proxy/src/listeners/EventListener.ts class EventListener (line 6) | class EventListener implements RegisterableListener { method constructor (line 12) | constructor(messaging: Messaging, type: string, handler: EventHandler) { method filter (line 19) | filter(m: AgentEventMessage): boolean { method action (line 23) | action(m: AgentEventMessage): void { method register (line 32) | async register(): Promise { method unsubscribe (line 36) | async unsubscribe(): Promise { FILE: packages/fdc3-agent-proxy/src/listeners/HeartbeatListener.ts class HeartbeatListener (line 10) | class HeartbeatListener implements RegisterableListener { method constructor (line 14) | constructor(messaging: Messaging) { method filter (line 19) | filter(m: AgentEventMessage): boolean { method action (line 23) | action(_m: AgentEventMessage): void { method register (line 38) | async register(): Promise { method unsubscribe (line 42) | async unsubscribe(): Promise { FILE: packages/fdc3-agent-proxy/src/listeners/PrivateChannelEventListener.ts type PrivateChannelAddEventListenerRequest (line 19) | type PrivateChannelAddEventListenerRequest = BrowserTypes.PrivateChannel... type PrivateChannelOnAddContextListenerEvent (line 20) | type PrivateChannelOnAddContextListenerEvent = BrowserTypes.PrivateChann... type PrivateChannelOnDisconnectEvent (line 21) | type PrivateChannelOnDisconnectEvent = BrowserTypes.PrivateChannelOnDisc... type PrivateChannelOnUnsubscribeEvent (line 22) | type PrivateChannelOnUnsubscribeEvent = BrowserTypes.PrivateChannelOnUns... type PrivateChannelEventMessages (line 24) | type PrivateChannelEventMessages = type PrivateChannelEventMessageTypes (line 28) | type PrivateChannelEventMessageTypes = PrivateChannelEventMessages['type']; method constructor (line 37) | constructor( method filter (line 59) | filter(m: PrivateChannelEventMessages): boolean { method action (line 63) | action(m: PrivateChannelEventMessages): void { class PrivateChannelNullEventListener (line 68) | class PrivateChannelNullEventListener extends AbstractPrivateChannelEven... method constructor (line 69) | constructor(messaging: Messaging, messageExchangeTimeout: number, chan... class PrivateChannelDisconnectEventListener (line 113) | class PrivateChannelDisconnectEventListener extends AbstractPrivateChann... method constructor (line 114) | constructor(messaging: Messaging, messageExchangeTimeout: number, chan... class PrivateChannelAddContextEventListener (line 138) | class PrivateChannelAddContextEventListener extends AbstractPrivateChann... method constructor (line 139) | constructor(messaging: Messaging, messageExchangeTimeout: number, chan... class PrivateChannelUnsubscribeEventListener (line 162) | class PrivateChannelUnsubscribeEventListener extends AbstractPrivateChan... method constructor (line 163) | constructor(messaging: Messaging, messageExchangeTimeout: number, chan... FILE: packages/fdc3-agent-proxy/src/listeners/RegisterableListener.ts type RegisterableListener (line 9) | interface RegisterableListener extends Listener { FILE: packages/fdc3-agent-proxy/src/listeners/UserChannelContextListener.ts type UserChannelContextListener (line 9) | interface UserChannelContextListener extends Listener, RegisterableListe... FILE: packages/fdc3-agent-proxy/src/messaging/AbstractMessaging.ts method constructor (line 20) | constructor(appIdentifier: AppIdentifier) { method waitFor (line 24) | waitFor( method exchange (line 69) | async exchange( method getAppIdentifier (line 100) | getAppIdentifier(): AppIdentifier { FILE: packages/fdc3-agent-proxy/src/util/AbstractFDC3Logger.ts type ColorFn (line 23) | type ColorFn = (aString: string) => string; method prefix (line 28) | static get prefix(): string { method setLogLevel (line 35) | public static setLogLevel(level: LogLevel) { method debugColor (line 46) | protected static debugColor(value: string): string { method logColor (line 49) | protected static logColor(value: string): string { method warnColor (line 52) | protected static warnColor(value: string): string { method errorColor (line 55) | protected static errorColor(value: string): string { method debug (line 59) | public static debug(...params: any[]) { method log (line 65) | public static log(...params: any[]) { method warn (line 71) | public static warn(...params: any[]) { method error (line 77) | public static error(...params: any[]) { FILE: packages/fdc3-agent-proxy/src/util/Logger.ts class Logger (line 10) | class Logger extends AbstractFDC3Logger { method prefix (line 11) | static override get prefix(): string { FILE: packages/fdc3-agent-proxy/src/util/throwIfUndefined.ts type ErrorMessages (line 5) | type ErrorMessages = ChannelError | OpenError | ResolveError; FILE: packages/fdc3-agent-proxy/test/step-definitions/generic.steps.ts function createDesktopAgent (line 23) | function createDesktopAgent(world: CustomWorld, field: string, initialCh... FILE: packages/fdc3-agent-proxy/test/step-definitions/util.steps.ts constant TEST_ERROR (line 63) | const TEST_ERROR = 'Test error - This is expected on the console'; FILE: packages/fdc3-agent-proxy/test/support/TestChannelSelector.ts class TestChannelSelector (line 3) | class TestChannelSelector implements ChannelSelector { method constructor (line 8) | constructor() { } method updateChannel (line 10) | async updateChannel(channelId: string | null, availableChannels: Chann... method setChannelChangeCallback (line 15) | setChannelChangeCallback(callback: (channelId: string | null) => void)... method connect (line 19) | async connect(): Promise { method disconnect (line 23) | async disconnect(): Promise { method selectChannel (line 27) | selectChannel(channelId: string | null): void { method selectFirstChannel (line 36) | selectFirstChannel(): void { method selectSecondChannel (line 40) | selectSecondChannel(): void { method deselectChannel (line 44) | deselectChannel(): void { FILE: packages/fdc3-agent-proxy/test/support/TestMessaging.ts type IntentDetail (line 31) | interface IntentDetail { type AutomaticResponse (line 38) | interface AutomaticResponse { type PossibleIntentResult (line 43) | interface PossibleIntentResult { function matchStringOrUndefined (line 50) | function matchStringOrUndefined(expected: string | undefined, actual: st... function matchString (line 58) | function matchString(expected: string | undefined, actual: string | unde... function removeGenericType (line 62) | function removeGenericType(t: string) { function matchResultTypes (line 71) | function matchResultTypes(expected: string | undefined, actual: string |... function intentDetailMatches (line 89) | function intentDetailMatches( class TestMessaging (line 105) | class TestMessaging extends AbstractMessaging { method constructor (line 114) | constructor(channelState: { [key: string]: Context[] }, initialChannel... method createUUID (line 139) | createUUID(): string { method getTimeoutMs (line 143) | getTimeoutMs(): number { method disconnect (line 147) | async disconnect(): Promise { method post (line 158) | post(message: AppRequestMessage | WebConnectionProtocol6Goodbye): Prom... method addAppIntentDetail (line 173) | addAppIntentDetail(id: IntentDetail) { method register (line 177) | register(l: RegisterableListener) { method unregister (line 185) | unregister(id: string) { method createMeta (line 189) | createMeta() { method createResponseMeta (line 200) | createResponseMeta() { method createEventMeta (line 210) | createEventMeta() { method receive (line 217) | receive(m: AgentResponseMessage | AgentEventMessage, log?: (s: string)... method getIntentResult (line 234) | getIntentResult() { method setIntentResult (line 238) | setIntentResult(o: PossibleIntentResult) { FILE: packages/fdc3-agent-proxy/test/support/responses/AddEventListener.ts class AddEventListener (line 5) | class AddEventListener implements AutomaticResponse { method filter (line 8) | filter(t: string) { method action (line 12) | action(input: object, m: TestMessaging) { method createResponse (line 21) | private createResponse(i: AddEventListenerRequest): AddEventListenerRe... FILE: packages/fdc3-agent-proxy/test/support/responses/ChannelState.ts class ChannelState (line 24) | class ChannelState implements AutomaticResponse { method constructor (line 29) | constructor(contextHistory: { [channel: string]: Context[] }, initialC... method filter (line 34) | filter(t: string) { method action (line 46) | action(input: AppRequestMessage, m: TestMessaging) { method createBroadcastResponse (line 85) | private createBroadcastResponse(i: BroadcastRequest): BroadcastResponse { method createJoinResponse (line 98) | private createJoinResponse(i: JoinUserChannelRequest): JoinUserChannel... method createGetContextResponse (line 117) | private createGetContextResponse(input: GetCurrentContextRequest): Get... method createLeaveResponse (line 135) | private createLeaveResponse(i: LeaveCurrentChannelRequest): LeaveCurre... method createAddListenerResponse (line 144) | private createAddListenerResponse(i: AddContextListenerRequest): AddCo... method createUnsubscribeResponse (line 162) | private createUnsubscribeResponse(i: ContextListenerUnsubscribeRequest... method createGetChannelResponse (line 175) | private createGetChannelResponse(i: GetCurrentChannelRequest): GetCurr... FILE: packages/fdc3-agent-proxy/test/support/responses/CreatePrivateChannel.ts class CreatePrivateChannel (line 9) | class CreatePrivateChannel implements AutomaticResponse { method filter (line 12) | filter(t: string) { method action (line 16) | action(input: object, m: TestMessaging) { method createResponse (line 25) | private createResponse(i: CreatePrivateChannelRequest): CreatePrivateC... FILE: packages/fdc3-agent-proxy/test/support/responses/DisconnectPrivateChannel.ts class DisconnectPrivateChannel (line 8) | class DisconnectPrivateChannel implements AutomaticResponse { method filter (line 11) | filter(t: string) { method action (line 15) | action(input: object, m: TestMessaging) { method createResponse (line 24) | private createResponse(i: PrivateChannelDisconnectRequest): PrivateCha... FILE: packages/fdc3-agent-proxy/test/support/responses/FindInstances.ts class FindInstances (line 5) | class FindInstances implements AutomaticResponse { method filter (line 6) | filter(t: string) { method action (line 10) | action(input: object, m: TestMessaging) { method createFindInstancesResponse (line 19) | private createFindInstancesResponse(m: FindInstancesRequest): FindInst... FILE: packages/fdc3-agent-proxy/test/support/responses/FindIntent.ts class FindIntent (line 10) | class FindIntent implements AutomaticResponse { method filter (line 11) | filter(t: string) { method action (line 15) | action(input: AppRequestMessage, m: TestMessaging) { method createFindIntentResponseMessage (line 36) | private createFindIntentResponseMessage(m: FindIntentRequest, relevant... FILE: packages/fdc3-agent-proxy/test/support/responses/FindIntentByContext.ts class FindIntentByContext (line 8) | class FindIntentByContext implements AutomaticResponse { method filter (line 9) | filter(t: string) { method action (line 13) | action(input: object, m: TestMessaging) { method createFindIntentsByContextResponseMessage (line 29) | private createFindIntentsByContextResponseMessage( FILE: packages/fdc3-agent-proxy/test/support/responses/GetAppMetadata.ts class GetAppMetadata (line 5) | class GetAppMetadata implements AutomaticResponse { method filter (line 6) | filter(t: string) { method action (line 10) | action(input: object, m: TestMessaging) { method createMetadataResponseMessage (line 19) | private createMetadataResponseMessage(m: GetAppMetadataRequest): GetAp... FILE: packages/fdc3-agent-proxy/test/support/responses/GetInfo.ts class GetInfo (line 5) | class GetInfo implements AutomaticResponse { method filter (line 6) | filter(t: string) { method action (line 10) | action(input: object, m: TestMessaging) { method createInfoResponseMessage (line 19) | private createInfoResponseMessage(m: GetInfoRequest): GetInfoResponse { FILE: packages/fdc3-agent-proxy/test/support/responses/GetOrCreateChannel.ts type ChannelType (line 10) | type ChannelType = { [channelId: string]: 'user' | 'app' | 'private' }; class GetOrCreateChannel (line 12) | class GetOrCreateChannel implements AutomaticResponse { method filter (line 15) | filter(t: string) { method action (line 19) | action(input: AppRequestMessage, m: TestMessaging) { method registerChannel (line 28) | registerChannel(r: GetOrCreateChannelRequest): GetOrCreateChannelRespo... FILE: packages/fdc3-agent-proxy/test/support/responses/GetUserChannels.ts class GetUserChannels (line 9) | class GetUserChannels implements AutomaticResponse { method filter (line 10) | filter(t: string) { method action (line 14) | action(input: object, m: TestMessaging) { method createResponse (line 23) | private createResponse(i: GetUserChannelsRequest, m: TestMessaging): G... FILE: packages/fdc3-agent-proxy/test/support/responses/IntentResult.ts class IntentResult (line 4) | class IntentResult implements AutomaticResponse { method filter (line 5) | filter(t: string) { method createIntentResultResponseMessage (line 9) | createIntentResultResponseMessage(intentRequest: IntentResultRequest, ... method action (line 22) | action(input: object, m: TestMessaging) { FILE: packages/fdc3-agent-proxy/test/support/responses/Open.ts class Open (line 5) | class Open implements AutomaticResponse { method filter (line 6) | filter(t: string) { method action (line 10) | action(input: object, m: TestMessaging) { method createOpenResponse (line 19) | private createOpenResponse(m: OpenRequest, tm: TestMessaging): OpenRes... FILE: packages/fdc3-agent-proxy/test/support/responses/RaiseIntent.ts class RaiseIntent (line 10) | class RaiseIntent implements AutomaticResponse { method filter (line 11) | filter(t: string) { method createCannedRaiseIntentResponseMessage (line 15) | createCannedRaiseIntentResponseMessage(intentRequest: RaiseIntentReque... method createRaiseIntentResponseMessage (line 55) | private createRaiseIntentResponseMessage( method createRaiseIntentResultResponseMessage (line 112) | createRaiseIntentResultResponseMessage( method action (line 134) | action(input: object, m: TestMessaging) { FILE: packages/fdc3-agent-proxy/test/support/responses/RaiseIntentForContext.ts class RaiseIntentForContext (line 10) | class RaiseIntentForContext implements AutomaticResponse { method filter (line 11) | filter(t: string) { method createCannedRaiseIntentForContextResponseMessage (line 15) | createCannedRaiseIntentForContextResponseMessage( method createRaiseIntentForContextResponseMessage (line 55) | private createRaiseIntentForContextResponseMessage( method createRaiseIntentResultResponseMessage (line 118) | createRaiseIntentResultResponseMessage( method action (line 143) | action(input: object, m: TestMessaging) { FILE: packages/fdc3-agent-proxy/test/support/responses/RegisterListeners.ts type Requests (line 16) | type Requests = type Responses (line 21) | type Responses = class RegisterListeners (line 27) | class RegisterListeners implements AutomaticResponse { method filter (line 28) | filter(t: string) { method action (line 37) | action(input: AppRequestMessage, m: TestMessaging) { method createResponse (line 46) | private createResponse(i: Requests): Responses { FILE: packages/fdc3-agent-proxy/test/support/responses/UnsubscribeListeners.ts type Requests (line 15) | type Requests = type Responses (line 20) | type Responses = class UnsubscribeListeners (line 26) | class UnsubscribeListeners implements AutomaticResponse { method filter (line 27) | filter(t: string) { method action (line 36) | action(input: AppRequestMessage, m: TestMessaging) { method createResponse (line 45) | private createResponse(i: Requests): Responses { FILE: packages/fdc3-agent-proxy/test/support/responses/support.ts function createResponseMeta (line 4) | function createResponseMeta(m: AppRequestMessageMeta): AgentResponseMess... FILE: packages/fdc3-agent-proxy/test/world/index.ts type CustomWorldInterface (line 4) | interface CustomWorldInterface extends QuickPickleWorldInterface { class CustomWorld (line 10) | class CustomWorld extends QuickPickleWorld implements CustomWorldInterfa... method log (line 14) | log(message: string): void { FILE: packages/fdc3-context/generated/context/ContextTypes.ts type Action (line 51) | interface Action { type ActionType (line 104) | type ActionType = 'broadcast' | 'raiseIntent'; type AppIdentifier (line 119) | interface AppIdentifier { type ContextElement (line 155) | interface ContextElement { type Chart (line 217) | interface Chart { type InstrumentElement (line 249) | interface InstrumentElement { type PurpleInstrumentIdentifiers (line 295) | interface PurpleInstrumentIdentifiers { type OrganizationMarket (line 340) | interface OrganizationMarket { type TimeRangeObject (line 403) | interface TimeRangeObject { type ChartStyle (line 430) | type ChartStyle = type ChatInitSettings (line 452) | interface ChatInitSettings { type ContactListObject (line 486) | interface ContactListObject { type ContactElement (line 509) | interface ContactElement { type PurpleContactIdentifiers (line 525) | interface PurpleContactIdentifiers { type MessageObject (line 557) | interface MessageObject { type EntityValue (line 588) | interface EntityValue { type EntityData (line 632) | interface EntityData { type EntityType (line 650) | type EntityType = 'fdc3.action' | 'fdc3.fileAttachment'; type PurpleMessageText (line 655) | interface PurpleMessageText { type ChatOptions (line 677) | interface ChatOptions { type ChatMessage (line 712) | interface ChatMessage { type ChatRoomObject (line 724) | interface ChatRoomObject { type ChatRoom (line 763) | interface ChatRoom { type ChatSearchCriteria (line 789) | interface ChatSearchCriteria { type OrganizationObject (line 823) | interface OrganizationObject { type Identifiers (line 881) | interface Identifiers { type TentacledInteractionType (line 944) | type TentacledInteractionType = 'fdc3.instrument' | 'fdc3.organization' ... type Contact (line 956) | interface Contact { type FluffyContactIdentifiers (line 972) | interface FluffyContactIdentifiers { type ContactList (line 991) | interface ContactList { type Context (line 1022) | interface Context { type Country (line 1080) | interface Country { type CountryID (line 1090) | interface CountryID { type Currency (line 1122) | interface Currency { type CurrencyID (line 1132) | interface CurrencyID { type Email (line 1151) | interface Email { type EmailRecipients (line 1187) | interface EmailRecipients { type ContactTIdentifiers (line 1215) | interface ContactTIdentifiers { type EmailRecipientsType (line 1233) | type EmailRecipientsType = 'fdc3.contact' | 'fdc3.contactList'; type FileAttachment (line 1245) | interface FileAttachment { type FileAttachmentData (line 1253) | interface FileAttachmentData { type Instrument (line 1275) | interface Instrument { type FluffyInstrumentIdentifiers (line 1321) | interface FluffyInstrumentIdentifiers { type PurpleMarket (line 1366) | interface PurpleMarket { type InstrumentList (line 1396) | interface InstrumentList { type Interaction (line 1427) | interface Interaction { type InteractionID (line 1474) | interface InteractionID { type Message (line 1505) | interface Message { type FluffyMessageText (line 1524) | interface FluffyMessageText { type Nothing (line 1550) | interface Nothing { type Order (line 1575) | interface Order { type PurpleOrderDetails (line 1602) | interface PurpleOrderDetails { type ProductObject (line 1620) | interface ProductObject { type OrderList (line 1664) | interface OrderList { type OrderElement (line 1693) | interface OrderElement { type FluffyOrderDetails (line 1720) | interface FluffyOrderDetails { type Organization (line 1739) | interface Organization { type OrganizationIdentifiers (line 1755) | interface OrganizationIdentifiers { type Portfolio (line 1796) | interface Portfolio { type PositionElement (line 1828) | interface PositionElement { type Position (line 1875) | interface Position { type Product (line 1905) | interface Product { type TimeRange (line 1959) | interface TimeRange { type Trade (line 1989) | interface Trade { type TradeList (line 2026) | interface TradeList { type TradeElement (line 2057) | interface TradeElement { type TransactionResult (line 2092) | interface TransactionResult { type TransactionStatus (line 2114) | type TransactionStatus = 'Created' | 'Deleted' | 'Updated' | 'Failed'; type Valuation (line 2126) | interface Valuation { class Convert (line 2165) | class Convert { method toAction (line 2166) | public static toAction(json: string): Action { method actionToJson (line 2170) | public static actionToJson(value: Action): string { method toChart (line 2174) | public static toChart(json: string): Chart { method chartToJson (line 2178) | public static chartToJson(value: Chart): string { method toChatInitSettings (line 2182) | public static toChatInitSettings(json: string): ChatInitSettings { method chatInitSettingsToJson (line 2186) | public static chatInitSettingsToJson(value: ChatInitSettings): string { method toChatMessage (line 2190) | public static toChatMessage(json: string): ChatMessage { method chatMessageToJson (line 2194) | public static chatMessageToJson(value: ChatMessage): string { method toChatRoom (line 2198) | public static toChatRoom(json: string): ChatRoom { method chatRoomToJson (line 2202) | public static chatRoomToJson(value: ChatRoom): string { method toChatSearchCriteria (line 2206) | public static toChatSearchCriteria(json: string): ChatSearchCriteria { method chatSearchCriteriaToJson (line 2210) | public static chatSearchCriteriaToJson(value: ChatSearchCriteria): str... method toContact (line 2214) | public static toContact(json: string): Contact { method contactToJson (line 2218) | public static contactToJson(value: Contact): string { method toContactList (line 2222) | public static toContactList(json: string): ContactList { method contactListToJson (line 2226) | public static contactListToJson(value: ContactList): string { method toContext (line 2230) | public static toContext(json: string): Context { method contextToJson (line 2234) | public static contextToJson(value: Context): string { method toCountry (line 2238) | public static toCountry(json: string): Country { method countryToJson (line 2242) | public static countryToJson(value: Country): string { method toCurrency (line 2246) | public static toCurrency(json: string): Currency { method currencyToJson (line 2250) | public static currencyToJson(value: Currency): string { method toEmail (line 2254) | public static toEmail(json: string): Email { method emailToJson (line 2258) | public static emailToJson(value: Email): string { method toFileAttachment (line 2262) | public static toFileAttachment(json: string): FileAttachment { method fileAttachmentToJson (line 2266) | public static fileAttachmentToJson(value: FileAttachment): string { method toInstrument (line 2270) | public static toInstrument(json: string): Instrument { method instrumentToJson (line 2274) | public static instrumentToJson(value: Instrument): string { method toInstrumentList (line 2278) | public static toInstrumentList(json: string): InstrumentList { method instrumentListToJson (line 2282) | public static instrumentListToJson(value: InstrumentList): string { method toInteraction (line 2286) | public static toInteraction(json: string): Interaction { method interactionToJson (line 2290) | public static interactionToJson(value: Interaction): string { method toMessage (line 2294) | public static toMessage(json: string): Message { method messageToJson (line 2298) | public static messageToJson(value: Message): string { method toNothing (line 2302) | public static toNothing(json: string): Nothing { method nothingToJson (line 2306) | public static nothingToJson(value: Nothing): string { method toOrder (line 2310) | public static toOrder(json: string): Order { method orderToJson (line 2314) | public static orderToJson(value: Order): string { method toOrderList (line 2318) | public static toOrderList(json: string): OrderList { method orderListToJson (line 2322) | public static orderListToJson(value: OrderList): string { method toOrganization (line 2326) | public static toOrganization(json: string): Organization { method organizationToJson (line 2330) | public static organizationToJson(value: Organization): string { method toPortfolio (line 2334) | public static toPortfolio(json: string): Portfolio { method portfolioToJson (line 2338) | public static portfolioToJson(value: Portfolio): string { method toPosition (line 2342) | public static toPosition(json: string): Position { method positionToJson (line 2346) | public static positionToJson(value: Position): string { method toProduct (line 2350) | public static toProduct(json: string): Product { method productToJson (line 2354) | public static productToJson(value: Product): string { method toTimeRange (line 2358) | public static toTimeRange(json: string): TimeRange { method timeRangeToJson (line 2362) | public static timeRangeToJson(value: TimeRange): string { method toTrade (line 2366) | public static toTrade(json: string): Trade { method tradeToJson (line 2370) | public static tradeToJson(value: Trade): string { method toTradeList (line 2374) | public static toTradeList(json: string): TradeList { method tradeListToJson (line 2378) | public static tradeListToJson(value: TradeList): string { method toTransactionResult (line 2382) | public static toTransactionResult(json: string): TransactionResult { method transactionResultToJson (line 2386) | public static transactionResultToJson(value: TransactionResult): string { method toValuation (line 2390) | public static toValuation(json: string): Valuation { method valuationToJson (line 2394) | public static valuationToJson(value: Valuation): string { function invalidValue (line 2399) | function invalidValue(typ: any, val: any, key: any, parent: any = ''): n... function prettyTypeName (line 2406) | function prettyTypeName(typ: any): string { function jsonToJSProps (line 2424) | function jsonToJSProps(typ: any): any { function jsToJSONProps (line 2433) | function jsToJSONProps(typ: any): any { function transform (line 2442) | function transform(val: any, typ: any, getProps: any, key: any = '', par... function cast (line 2533) | function cast(val: any, typ: any): T { function uncast (line 2537) | function uncast(val: T, typ: any): any { function l (line 2541) | function l(typ: any) { function a (line 2545) | function a(typ: any) { function u (line 2549) | function u(...typs: any[]) { function o (line 2553) | function o(props: any[], additional: any) { function m (line 2557) | function m(additional: any) { function r (line 2561) | function r(name: string) { FILE: packages/fdc3-context/test/validate-schema-examples.test.ts function rewriteRefs (line 28) | function rewriteRefs(schema: any, refMap: Record) { FILE: packages/fdc3-get-agent/src/Fdc3Version.ts constant FDC3_VERSION (line 1) | const FDC3_VERSION = '2.2'; FILE: packages/fdc3-get-agent/src/apps/NoopAppSupport.ts class NoopAppSupport (line 5) | class NoopAppSupport extends DefaultAppSupport { method constructor (line 6) | constructor(messaging: Messaging, messageExchangeTimeout: number, appL... method getAppMetadata (line 10) | async getAppMetadata(app: AppIdentifier): Promise { FILE: packages/fdc3-get-agent/src/index.ts constant DEFAULT_WAIT_FOR_MS (line 9) | const DEFAULT_WAIT_FOR_MS = 20000; function fdc3Ready (line 29) | function fdc3Ready(waitForMs = DEFAULT_WAIT_FOR_MS): Promise { FILE: packages/fdc3-get-agent/src/messaging/message-port.ts function createDesktopAgentAPI (line 21) | async function createDesktopAgentAPI( function populateChannelSelector (line 76) | async function populateChannelSelector(cs: ChannelSupport, channelSelect... function handleDisconnectOnPageHide (line 82) | function handleDisconnectOnPageHide(da: DesktopAgentProxy, messaging: Me... FILE: packages/fdc3-get-agent/src/sessionStorage/DesktopAgentDetails.ts function sessionKey (line 8) | function sessionKey(): string { function storeDesktopAgentDetails (line 21) | function storeDesktopAgentDetails(details: DesktopAgentDetails) { function retrieveAllDesktopAgentDetails (line 35) | function retrieveAllDesktopAgentDetails(): Record void) { method prepareSelection (line 37) | async prepareSelection(fdc3: DesktopAgent, resolve: (value: DesktopAge... method get (line 62) | get(options: GetAgentParams): Promise { method cancel (line 95) | async cancel(): Promise { FILE: packages/fdc3-get-agent/src/strategies/FailoverHandler.ts function isDesktopAgent (line 18) | function isDesktopAgent(da: WindowProxy | DesktopAgent): da is DesktopAg... function isWindow (line 23) | function isWindow(da: Window | DesktopAgent): da is Window { class FailoverHandler (line 27) | class FailoverHandler { method constructor (line 28) | constructor(options: GetAgentParams) { method handleFailover (line 52) | async handleFailover(): Promise { method failoverResultIsProxyWindow (line 78) | private async failoverResultIsProxyWindow(failoverResult: Window, hand... method failoverResultIsDesktopAgent (line 125) | private async failoverResultIsDesktopAgent(failoverResult: DesktopAgen... method cancel (line 145) | cancel() { FILE: packages/fdc3-get-agent/src/strategies/HelloHandler.ts type WebConnectionProtocolMessage (line 7) | type WebConnectionProtocolMessage = BrowserTypes.WebConnectionProtocolMe... type WebConnectionProtocol1Hello (line 8) | type WebConnectionProtocol1Hello = BrowserTypes.WebConnectionProtocol1He... class HelloHandler (line 10) | class HelloHandler { method constructor (line 11) | constructor( method sendWCP1Hello (line 45) | sendWCP1Hello(w: MessageEventSource, origin: string) { method openFrame (line 70) | openFrame(url: string) { method listenForHelloResponses (line 110) | listenForHelloResponses(): Promise { method cancel (line 159) | cancel() { FILE: packages/fdc3-get-agent/src/strategies/IdentityValidationHandler.ts type WebConnectionProtocol4ValidateAppIdentity (line 10) | type WebConnectionProtocol4ValidateAppIdentity = BrowserTypes.WebConnect... type WebConnectionProtocol5ValidateAppIdentitySuccessResponse (line 11) | type WebConnectionProtocol5ValidateAppIdentitySuccessResponse = type WebConnectionProtocolMessage (line 13) | type WebConnectionProtocolMessage = BrowserTypes.WebConnectionProtocolMe... constant ID_VALIDATION_TIMEOUT (line 18) | const ID_VALIDATION_TIMEOUT = 5000; class IdentityValidationHandler (line 20) | class IdentityValidationHandler { method constructor (line 21) | constructor(mp: MessagePort, options: GetAgentParams, connectionAttemp... method sendIdValidationMessage (line 46) | sendIdValidationMessage() { method listenForIDValidationResponses (line 73) | listenForIDValidationResponses(): Promise { method cancel (line 164) | async cancel(): Promise { FILE: packages/fdc3-get-agent/src/strategies/Timeouts.ts constant DEFAULT_GETAGENT_TIMEOUT_MS (line 4) | const DEFAULT_GETAGENT_TIMEOUT_MS = 1000; constant DEFAULT_MESSAGE_EXCHANGE_TIMEOUT_MS (line 11) | const DEFAULT_MESSAGE_EXCHANGE_TIMEOUT_MS = 10000; constant DEFAULT_APP_LAUNCH_TIMEOUT_MS (line 18) | const DEFAULT_APP_LAUNCH_TIMEOUT_MS = 100000; FILE: packages/fdc3-get-agent/src/strategies/getAgent.ts constant CLEAR_PROMISE_DELAY (line 30) | const CLEAR_PROMISE_DELAY = 500; function clearAgentPromise (line 32) | function clearAgentPromise() { function initAgentPromise (line 36) | function initAgentPromise(options: GetAgentParams): Promise { function handleSetWindowFdc3 (line 222) | async function handleSetWindowFdc3(da: DesktopAgent) { FILE: packages/fdc3-get-agent/src/ui/AbstractUIComponent.ts type Fdc3UserInterfaceHandshake (line 5) | type Fdc3UserInterfaceHandshake = BrowserTypes.Fdc3UserInterfaceHandshake; type InitialCSS (line 6) | type InitialCSS = BrowserTypes.InitialCSS; type UpdatedCSS (line 7) | type UpdatedCSS = BrowserTypes.UpdatedCSS; type CSSPositioning (line 9) | interface CSSPositioning { constant INITIAL_CONTAINER_CSS (line 13) | const INITIAL_CONTAINER_CSS = { constant ALLOWED_CSS_ELEMENTS (line 19) | const ALLOWED_CSS_ELEMENTS = [ constant DEFAULT_UI_ROOT_URL (line 34) | const DEFAULT_UI_ROOT_URL = 'https://fdc3.finos.org/toolbox/fdc3-referen... method constructor (line 48) | constructor(url: string, name: string) { method connect (line 62) | connect(): Promise { method disconnect (line 75) | async disconnect() { method setupMessagePort (line 82) | async setupMessagePort(port: MessagePort): Promise { method messagePortReady (line 95) | async messagePortReady(port: MessagePort) { method awaitHello (line 108) | private awaitHello(): Promise { method openFrame (line 140) | private openFrame(): void { method toKebabCase (line 154) | private toKebabCase(str: string) { method themeContainer (line 158) | themeContainer(css: UpdatedCSS | InitialCSS) { method themeFrame (line 171) | themeFrame(ifrm: HTMLIFrameElement) { FILE: packages/fdc3-get-agent/src/ui/DefaultDesktopAgentChannelSelector.ts type Fdc3UserInterfaceChannels (line 7) | type Fdc3UserInterfaceChannels = BrowserTypes.Fdc3UserInterfaceChannels; class DefaultDesktopAgentChannelSelector (line 12) | class DefaultDesktopAgentChannelSelector extends AbstractUIComponent imp... method constructor (line 15) | constructor(url: string | null) { method setupMessagePort (line 20) | async setupMessagePort(port: MessagePort): Promise { method updateChannel (line 37) | async updateChannel(channelId: string | null, availableChannels: Chann... method setChannelChangeCallback (line 59) | setChannelChangeCallback(callback: (channelId: string | null) => void)... FILE: packages/fdc3-get-agent/src/ui/DefaultDesktopAgentIntentResolver.ts type Fdc3UserInterfaceResolve (line 8) | type Fdc3UserInterfaceResolve = BrowserTypes.Fdc3UserInterfaceResolve; class DefaultDesktopAgentIntentResolver (line 13) | class DefaultDesktopAgentIntentResolver extends AbstractUIComponent impl... method constructor (line 16) | constructor(url: string | null) { method setupMessagePort (line 21) | async setupMessagePort(port: MessagePort): Promise { method chooseIntent (line 46) | async chooseIntent(appIntents: AppIntent[], context: Context): Promise... FILE: packages/fdc3-get-agent/src/ui/NullChannelSelector.ts class NullChannelSelector (line 5) | class NullChannelSelector implements ChannelSelector, Connectable { method disconnect (line 6) | async disconnect(): Promise { } method connect (line 7) | async connect(): Promise { } method updateChannel (line 8) | async updateChannel(): Promise { } method setChannelChangeCallback (line 9) | setChannelChangeCallback(): void { } FILE: packages/fdc3-get-agent/src/ui/NullIntentResolver.ts class NullIntentResolver (line 4) | class NullIntentResolver implements IntentResolver { method disconnect (line 5) | async disconnect(): Promise { } method connect (line 6) | async connect(): Promise { } method chooseIntent (line 7) | async chooseIntent(): Promise { } FILE: packages/fdc3-get-agent/src/util/Logger.ts class Logger (line 8) | class Logger extends AbstractFDC3Logger { method prefix (line 9) | static override get prefix(): string { FILE: packages/fdc3-get-agent/src/util/Uuid.ts function createUUID (line 3) | function createUUID(): string { FILE: packages/fdc3-get-agent/test/step-definitions/desktop-agent.steps.ts type MockPageTransitionEvent (line 23) | interface MockPageTransitionEvent extends Event { method getInfo (line 201) | async getInfo(): Promise { FILE: packages/fdc3-get-agent/test/step-definitions/util.steps.ts constant TEST_ERROR (line 6) | const TEST_ERROR = 'Test error - This is expected on the console'; FILE: packages/fdc3-get-agent/test/support/EventHandler.ts type EventHandler (line 1) | type EventHandler = { FILE: packages/fdc3-get-agent/test/support/FrameTypes.ts function handleEmbeddedIframeComms (line 15) | function handleEmbeddedIframeComms(_value: string, parent: MockWindow, s... function handleChannelSelectorComms (line 56) | function handleChannelSelectorComms( function handleIntentResolverComms (line 106) | function handleIntentResolverComms( FILE: packages/fdc3-get-agent/test/support/MockCSSStyleDeclaration.ts class MockCSSStyleDeclaration (line 1) | class MockCSSStyleDeclaration { method setProperty (line 2) | setProperty(name: string, value: string) { method removeProperty (line 6) | removeProperty(name: string) { FILE: packages/fdc3-get-agent/test/support/MockDocument.ts class MockDocument (line 5) | class MockDocument { method constructor (line 11) | constructor(name: string, window: MockWindow) { method createElement (line 20) | createElement(tag: string): HTMLElement { method getElementById (line 37) | getElementById(/*_id: string*/): HTMLElement | null { method shutdown (line 43) | shutdown() { method shutdownAllDocuments (line 48) | static shutdownAllDocuments() { FILE: packages/fdc3-get-agent/test/support/MockElement.ts class MockElement (line 4) | class MockElement { method constructor (line 9) | constructor(tag: string) { method setAttribute (line 15) | setAttribute(name: string, value: string) { method removeAttribute (line 19) | removeAttribute(name: string) { method appendChild (line 23) | appendChild(child: HTMLElement) { method removeChild (line 32) | removeChild(child: HTMLElement) { method remove (line 36) | remove() {} FILE: packages/fdc3-get-agent/test/support/MockFDC3Server.ts constant EMBED_URL (line 20) | const EMBED_URL = 'http://localhost:8080/static/da/embed.html'; constant CHANNEL_SELECTOR_URL (line 21) | const CHANNEL_SELECTOR_URL = 'https://mock.fdc3.com/channelSelector'; constant INTENT_RESOLVER_URL (line 22) | const INTENT_RESOLVER_URL = 'https://mock.fdc3.com/resolver'; class MockFDC3Server (line 24) | class MockFDC3Server implements FDC3Server { method constructor (line 36) | constructor( method cleanup (line 83) | cleanup(instanceId: InstanceID): void { method receive (line 88) | async receive(message: AppRequestMessage, from: string): Promise { method shutdown (line 97) | shutdown() { method hasReceivedGoodbye (line 101) | hasReceivedGoodbye(): boolean { method init (line 105) | init() { FILE: packages/fdc3-get-agent/test/support/MockIFrame.ts class MockIFrame (line 6) | class MockIFrame extends MockWindow { method constructor (line 12) | constructor(tag: string, cw: CustomWorld, parent: MockWindow, name: st... method load (line 22) | load(): void { method setAttribute (line 35) | setAttribute(name: string, value: string): void { method shutdown (line 81) | shutdown() { FILE: packages/fdc3-get-agent/test/support/MockStorage.ts class MockStorage (line 1) | class MockStorage implements Storage { method length (line 4) | get length(): number { method clear (line 8) | clear(): void { method getItem (line 12) | getItem(key: string): string | null { method key (line 16) | key(index: number): string | null { method removeItem (line 20) | removeItem(key: string): void { method setItem (line 24) | setItem(key: string, value: string): void { FILE: packages/fdc3-get-agent/test/support/MockWindow.ts type STANDARD_MESSAGES (line 14) | type STANDARD_MESSAGES = class MockWindow (line 21) | class MockWindow extends MockElement { method constructor (line 26) | constructor(tag: string, cw: CustomWorld, name: string) { method addEventListener (line 50) | addEventListener(type: string, callback: (e: Event) => void): void { method removeEventListener (line 57) | removeEventListener(type: string, el: EventListener): void { method dispatchEvent (line 67) | dispatchEvent(event: Event): void { method postMessage (line 76) | postMessage(msg: STANDARD_MESSAGES, targetOrigin: string, transfer: Me... method shutdown (line 107) | shutdown() { FILE: packages/fdc3-get-agent/test/support/TestServerContext.ts type ConnectionDetails (line 6) | type ConnectionDetails = AppRegistration & { type MessageRecord (line 14) | type MessageRecord = { class TestServerContext (line 25) | class TestServerContext implements ServerContext { method constructor (line 34) | constructor(cw: CustomWorld) { method setFDC3Server (line 38) | setFDC3Server(server: FDC3Server): void { method narrowIntents (line 42) | async narrowIntents(_raiser: AppIdentifier, appIntents: AppIntent[] /*... method getInstanceDetails (line 46) | getInstanceDetails(uuid: string) { method setInstanceDetails (line 50) | setInstanceDetails(uuid: InstanceID, appId: ConnectionDetails) { method getMatchingInstance (line 58) | getMatchingInstance(url: string): ConnectionDetails | undefined { method shutdown (line 75) | async shutdown(): Promise { method open (line 81) | async open(appId: string): Promise { method getConnectedApps (line 118) | async getConnectedApps(): Promise { method isAppConnected (line 122) | async isAppConnected(app: InstanceID): Promise { method setAppState (line 127) | async setAppState(app: InstanceID, newState: State): Promise { method getAllApps (line 138) | async getAllApps(): Promise { method provider (line 148) | provider(): string { method providerVersion (line 151) | providerVersion(): string { method fdc3Version (line 154) | fdc3Version(): string { method createUUID (line 158) | createUUID(): string { method getInstanceUUID (line 165) | getInstanceUUID(appId: AppIdentifier): InstanceID | undefined { method getFirstInstance (line 174) | getFirstInstance() { method post (line 178) | post(msg: object, to: InstanceID): Promise { method log (line 184) | log(message: string): void { FILE: packages/fdc3-get-agent/test/support/responses/AddEventListener.ts class AddEventListener (line 7) | class AddEventListener implements AutomaticResponse { method filter (line 10) | filter(t: string) { method action (line 14) | action(input: object, m: TestServerContext, from: InstanceID) { method createResponse (line 23) | private createResponse(i: AddEventListenerRequest): AddEventListenerRe... FILE: packages/fdc3-get-agent/test/support/responses/AutomaticResponses.ts type AutomaticResponse (line 4) | interface AutomaticResponse { FILE: packages/fdc3-get-agent/test/support/responses/Broadcast.ts class Broadcast (line 7) | class Broadcast implements AutomaticResponse { method filter (line 8) | filter(t: string) { method action (line 12) | action(input: object, m: TestServerContext, from: InstanceID) { method createBroadcastResponseMessage (line 21) | private createBroadcastResponseMessage(m: BroadcastRequest): Broadcast... FILE: packages/fdc3-get-agent/test/support/responses/CurrentChannel.ts class CurrentChannel (line 9) | class CurrentChannel implements AutomaticResponse { method filter (line 10) | filter(t: string) { method action (line 14) | action(input: object, m: TestServerContext, from: InstanceID) { method createResponse (line 22) | private createResponse(i: GetCurrentChannelRequest, m: TestServerConte... FILE: packages/fdc3-get-agent/test/support/responses/FindIntent.ts class FindIntent (line 7) | class FindIntent implements AutomaticResponse { method filter (line 8) | filter(t: string) { method action (line 12) | action(input: object, m: TestServerContext, from: InstanceID) { method createFindIntentResponseMessage (line 21) | private createFindIntentResponseMessage(m: FindIntentRequest): FindInt... FILE: packages/fdc3-get-agent/test/support/responses/GetInfo.ts class GetInfo (line 6) | class GetInfo implements AutomaticResponse { method filter (line 7) | filter(t: string) { method action (line 11) | action(input: object, m: TestServerContext, from: InstanceID) { method createResponse (line 19) | private createResponse(i: GetInfoRequest, m: TestServerContext): GetIn... FILE: packages/fdc3-get-agent/test/support/responses/Handshake.ts constant BAD_INSTANCE_ID (line 10) | const BAD_INSTANCE_ID = 'BAD_INSTANCE'; constant EXPECTED_IDENTITY_URL (line 11) | const EXPECTED_IDENTITY_URL = 'https://dummyOrigin.test/path'; constant ALTERNATIVE_IDENTITY_URL (line 12) | const ALTERNATIVE_IDENTITY_URL = 'https://dummyOrigin.test/alternativePa... class Handshake (line 14) | class Handshake implements AutomaticResponse { method constructor (line 17) | constructor(timeOut: boolean = false) { method filter (line 21) | filter(t: string) { method action (line 25) | action(input: object, m: TestServerContext, from: InstanceID) { method createResponse (line 37) | private createResponse( FILE: packages/fdc3-get-agent/test/support/responses/RaiseIntent.ts class RaiseIntent (line 6) | class RaiseIntent implements AutomaticResponse { method filter (line 7) | filter(t: string) { method createRaiseIntentAgentResponseMessage (line 11) | createRaiseIntentAgentResponseMessage(intentRequest: RaiseIntentReques... method action (line 29) | action(input: object, m: TestServerContext, from: InstanceID) { FILE: packages/fdc3-get-agent/test/support/responses/UnsubscribeEventListener.ts class UnsubscribeEventListener (line 10) | class UnsubscribeEventListener implements AutomaticResponse { method filter (line 11) | filter(t: string) { method action (line 15) | action(input: object, m: TestServerContext, from: InstanceID) { method createResponse (line 24) | private createResponse(i: EventListenerUnsubscribeRequest): EventListe... FILE: packages/fdc3-get-agent/test/support/responses/UserChannels.ts constant USER_CHANNELS (line 6) | const USER_CHANNELS = [ class UserChannels (line 21) | class UserChannels implements AutomaticResponse { method filter (line 22) | filter(t: string) { method action (line 26) | action(input: object, m: TestServerContext, from: InstanceID) { method createResponse (line 35) | private createResponse(i: GetUserChannelsRequest, m: TestServerContext... FILE: packages/fdc3-get-agent/test/world/index.ts type CustomWorldInterface (line 5) | interface CustomWorldInterface extends QuickPickleWorldInterface { class CustomWorld (line 13) | class CustomWorld extends QuickPickleWorld implements CustomWorldInterfa... method log (line 19) | log(message: string): void { FILE: packages/fdc3-schema/code-generation/generate-type-predicates.ts constant APP_REQUEST_MESSAGE (line 18) | const APP_REQUEST_MESSAGE = 'AppRequestMessage'; constant AGENT_RESPONSE_MESSAGE (line 19) | const AGENT_RESPONSE_MESSAGE = 'AgentResponseMessage'; constant AGENT_EVENT_MESSAGE (line 20) | const AGENT_EVENT_MESSAGE = 'AgentEventMessage'; function writeMessageUnionTypes (line 34) | function writeMessageUnionTypes() { function writeMessageUnion (line 42) | function writeMessageUnion(unionName: string, typeUnionName: string, typ... function writeTypePredicates (line 65) | function writeTypePredicates() { function findUnionType (line 119) | function findUnionType(typeAliases: TypeAliasDeclaration[], name: string... function findExisting (line 138) | function findExisting(name: string, kind: T, allDe... function writeValidPredicate (line 153) | function writeValidPredicate( function writeFastPredicate (line 182) | function writeFastPredicate( function writeTypeConstant (line 206) | function writeTypeConstant(matchingInterface: InterfaceDeclaration): void { function writeUnionType (line 232) | function writeUnionType(unionName: string, typeValues: string[]): void { function extractTypePropertyValue (line 258) | function extractTypePropertyValue(parentInterface: InterfaceDeclaration)... function isDefined (line 272) | function isDefined(value: T | null | undefined): value is T { FILE: packages/fdc3-schema/generated/api/BrowserTypes.ts type WebConnectionProtocol1Hello (line 100) | interface WebConnectionProtocol1Hello { type WebConnectionProtocol1HelloMeta (line 118) | interface WebConnectionProtocol1HelloMeta { type WebConnectionProtocol1HelloPayload (line 126) | interface WebConnectionProtocol1HelloPayload { type WebConnectionProtocol2LoadURL (line 166) | interface WebConnectionProtocol2LoadURL { type WebConnectionProtocol2LoadURLPayload (line 184) | interface WebConnectionProtocol2LoadURLPayload { type WebConnectionProtocol3Handshake (line 204) | interface WebConnectionProtocol3Handshake { type WebConnectionProtocol3HandshakePayload (line 222) | interface WebConnectionProtocol3HandshakePayload { type WebConnectionProtocol4ValidateAppIdentity (line 262) | interface WebConnectionProtocol4ValidateAppIdentity { type WebConnectionProtocol4ValidateAppIdentityPayload (line 280) | interface WebConnectionProtocol4ValidateAppIdentityPayload { type WebConnectionProtocol5ValidateAppIdentityFailedResponse (line 312) | interface WebConnectionProtocol5ValidateAppIdentityFailedResponse { type WebConnectionProtocol5ValidateAppIdentityFailedResponsePayload (line 330) | interface WebConnectionProtocol5ValidateAppIdentityFailedResponsePayload { type WebConnectionProtocol5ValidateAppIdentitySuccessResponse (line 344) | interface WebConnectionProtocol5ValidateAppIdentitySuccessResponse { type WebConnectionProtocol5ValidateAppIdentitySuccessResponsePayload (line 362) | interface WebConnectionProtocol5ValidateAppIdentitySuccessResponsePayload { type ImplementationMetadata (line 391) | interface ImplementationMetadata { type AppMetadata (line 433) | interface AppMetadata { type Icon (line 499) | interface Icon { type Image (line 518) | interface Image { type OptionalFeatures (line 541) | interface OptionalFeatures { type WebConnectionProtocol6Goodbye (line 573) | interface WebConnectionProtocol6Goodbye { type WebConnectionProtocol6GoodbyeMeta (line 587) | interface WebConnectionProtocol6GoodbyeMeta { type WebConnectionProtocolMessage (line 599) | interface WebConnectionProtocolMessage { type ConnectionStepMetadata (line 617) | interface ConnectionStepMetadata { type ConnectionStepMessageType (line 625) | type ConnectionStepMessageType = type AddContextListenerRequest (line 643) | interface AddContextListenerRequest { type AddContextListenerRequestMeta (line 662) | interface AddContextListenerRequestMeta { type AppIdentifier (line 702) | interface AppIdentifier { type AddContextListenerRequestPayload (line 724) | interface AddContextListenerRequestPayload { type AddContextListenerResponse (line 751) | interface AddContextListenerResponse { type AddContextListenerResponseMeta (line 772) | interface AddContextListenerResponseMeta { type AddContextListenerResponsePayload (line 788) | interface AddContextListenerResponsePayload { type PurpleError (line 801) | type PurpleError = type AddEventListenerRequest (line 819) | interface AddEventListenerRequest { type AddEventListenerRequestPayload (line 838) | interface AddEventListenerRequestPayload { type AddEventListenerResponse (line 861) | interface AddEventListenerResponse { type AddEventListenerResponsePayload (line 884) | interface AddEventListenerResponsePayload { type ResponsePayloadError (line 897) | type ResponsePayloadError = type AddIntentListenerRequest (line 933) | interface AddIntentListenerRequest { type AddIntentListenerRequestPayload (line 952) | interface AddIntentListenerRequestPayload { type AddIntentListenerResponse (line 970) | interface AddIntentListenerResponse { type PayloadObject (line 993) | interface PayloadObject { type FluffyError (line 1007) | type FluffyError = type AgentEventMessageMeta (line 1024) | interface AgentEventMessageMeta { type EventMessageType (line 1033) | type EventMessageType = type AgentResponseMessageMeta (line 1047) | interface AgentResponseMessageMeta { type AgentResponseMessageResponsePayload (line 1063) | interface AgentResponseMessageResponsePayload { type ResponseMessageType (line 1072) | type ResponseMessageType = type AppRequestMessageMeta (line 1105) | interface AppRequestMessageMeta { type RequestMessageType (line 1121) | type RequestMessageType = type BroadcastEvent (line 1158) | interface BroadcastEvent { type BroadcastEventMeta (line 1177) | interface BroadcastEventMeta { type BroadcastEventPayload (line 1185) | interface BroadcastEventPayload { type Context (line 1224) | interface Context { type BroadcastRequest (line 1275) | interface BroadcastRequest { type BroadcastRequestPayload (line 1294) | interface BroadcastRequestPayload { type BroadcastResponse (line 1316) | interface BroadcastResponse { type BroadcastResponseResponsePayload (line 1339) | interface BroadcastResponseResponsePayload { type ChannelChangedEvent (line 1355) | interface ChannelChangedEvent { type ChannelChangedEventPayload (line 1374) | interface ChannelChangedEventPayload { type ClearContextRequest (line 1397) | interface ClearContextRequest { type ClearContextRequestPayload (line 1416) | interface ClearContextRequestPayload { type ClearContextResponse (line 1439) | interface ClearContextResponse { type ContextClearedEvent (line 1468) | interface ContextClearedEvent { type ContextClearedEventPayload (line 1487) | interface ContextClearedEventPayload { type ContextListenerUnsubscribeRequest (line 1508) | interface ContextListenerUnsubscribeRequest { type ContextListenerUnsubscribeRequestPayload (line 1527) | interface ContextListenerUnsubscribeRequestPayload { type ContextListenerUnsubscribeResponse (line 1542) | interface ContextListenerUnsubscribeResponse { type CreatePrivateChannelRequest (line 1571) | interface CreatePrivateChannelRequest { type CreatePrivateChannelRequestPayload (line 1590) | interface CreatePrivateChannelRequestPayload {} type CreatePrivateChannelResponse (line 1603) | interface CreatePrivateChannelResponse { type CreatePrivateChannelResponsePayload (line 1626) | interface CreatePrivateChannelResponsePayload { type Channel (line 1645) | interface Channel { type DisplayMetadata (line 1674) | interface DisplayMetadata { type Type (line 1694) | type Type = 'app' | 'private' | 'user'; type EventListenerUnsubscribeRequest (line 1706) | interface EventListenerUnsubscribeRequest { type EventListenerUnsubscribeRequestPayload (line 1725) | interface EventListenerUnsubscribeRequestPayload { type EventListenerUnsubscribeResponse (line 1740) | interface EventListenerUnsubscribeResponse { type Fdc3UserInterfaceChannelSelected (line 1771) | interface Fdc3UserInterfaceChannelSelected { type Fdc3UserInterfaceChannelSelectedPayload (line 1785) | interface Fdc3UserInterfaceChannelSelectedPayload { type Fdc3UserInterfaceChannels (line 1805) | interface Fdc3UserInterfaceChannels { type Fdc3UserInterfaceChannelsPayload (line 1819) | interface Fdc3UserInterfaceChannelsPayload { type Fdc3UserInterfaceDrag (line 1845) | interface Fdc3UserInterfaceDrag { type Fdc3UserInterfaceDragPayload (line 1859) | interface Fdc3UserInterfaceDragPayload { type MouseOffsets (line 1869) | interface MouseOffsets { type Fdc3UserInterfaceHandshake (line 1887) | interface Fdc3UserInterfaceHandshake { type Fdc3UserInterfaceHandshakePayload (line 1901) | interface Fdc3UserInterfaceHandshakePayload { type Fdc3UserInterfaceHello (line 1921) | interface Fdc3UserInterfaceHello { type Fdc3UserInterfaceHelloPayload (line 1935) | interface Fdc3UserInterfaceHelloPayload { type InitialCSS (line 1951) | interface InitialCSS { type Fdc3UserInterfaceMessage (line 2004) | interface Fdc3UserInterfaceMessage { type Fdc3UserInterfaceMessageType (line 2018) | type Fdc3UserInterfaceMessageType = type Fdc3UserInterfaceResolve (line 2036) | interface Fdc3UserInterfaceResolve { type Fdc3UserInterfaceResolvePayload (line 2050) | interface Fdc3UserInterfaceResolvePayload { type AppIntent (line 2064) | interface AppIntent { type IntentMetadata (line 2080) | interface IntentMetadata { type Fdc3UserInterfaceResolveAction (line 2103) | interface Fdc3UserInterfaceResolveAction { type Fdc3UserInterfaceResolveActionPayload (line 2117) | interface Fdc3UserInterfaceResolveActionPayload { type Action (line 2129) | type Action = 'hover' | 'click' | 'cancel'; type Fdc3UserInterfaceRestyle (line 2144) | interface Fdc3UserInterfaceRestyle { type Fdc3UserInterfaceRestylePayload (line 2158) | interface Fdc3UserInterfaceRestylePayload { type UpdatedCSS (line 2170) | interface UpdatedCSS { type FindInstancesRequest (line 2223) | interface FindInstancesRequest { type FindInstancesRequestPayload (line 2242) | interface FindInstancesRequestPayload { type FindInstancesResponse (line 2257) | interface FindInstancesResponse { type FindInstancesResponsePayload (line 2284) | interface FindInstancesResponsePayload { type FindInstancesErrors (line 2314) | type FindInstancesErrors = type FindIntentRequest (line 2342) | interface FindIntentRequest { type FindIntentRequestPayload (line 2361) | interface FindIntentRequestPayload { type FindIntentResponse (line 2378) | interface FindIntentResponse { type FindIntentResponsePayload (line 2401) | interface FindIntentResponsePayload { type FindIntentsByContextRequest (line 2417) | interface FindIntentsByContextRequest { type FindIntentsByContextRequestPayload (line 2436) | interface FindIntentsByContextRequestPayload { type FindIntentsByContextResponse (line 2452) | interface FindIntentsByContextResponse { type FindIntentsByContextResponsePayload (line 2475) | interface FindIntentsByContextResponsePayload { type GetAppMetadataRequest (line 2490) | interface GetAppMetadataRequest { type GetAppMetadataRequestPayload (line 2509) | interface GetAppMetadataRequestPayload { type GetAppMetadataResponse (line 2524) | interface GetAppMetadataResponse { type GetAppMetadataResponsePayload (line 2547) | interface GetAppMetadataResponsePayload { type GetCurrentChannelRequest (line 2563) | interface GetCurrentChannelRequest { type GetCurrentChannelRequestPayload (line 2582) | interface GetCurrentChannelRequestPayload {} type GetCurrentChannelResponse (line 2595) | interface GetCurrentChannelResponse { type GetCurrentChannelResponsePayload (line 2618) | interface GetCurrentChannelResponsePayload { type GetCurrentContextRequest (line 2635) | interface GetCurrentContextRequest { type GetCurrentContextRequestPayload (line 2654) | interface GetCurrentContextRequestPayload { type GetCurrentContextResponse (line 2677) | interface GetCurrentContextResponse { type GetCurrentContextResponsePayload (line 2700) | interface GetCurrentContextResponsePayload { type GetInfoRequest (line 2720) | interface GetInfoRequest { type GetInfoRequestPayload (line 2739) | interface GetInfoRequestPayload {} type GetInfoResponse (line 2752) | interface GetInfoResponse { type GetInfoResponsePayload (line 2775) | interface GetInfoResponsePayload { type GetOrCreateChannelRequest (line 2791) | interface GetOrCreateChannelRequest { type GetOrCreateChannelRequestPayload (line 2810) | interface GetOrCreateChannelRequestPayload { type GetOrCreateChannelResponse (line 2828) | interface GetOrCreateChannelResponse { type GetOrCreateChannelResponsePayload (line 2851) | interface GetOrCreateChannelResponsePayload { type GetUserChannelsRequest (line 2866) | interface GetUserChannelsRequest { type GetUserChannelsRequestPayload (line 2885) | interface GetUserChannelsRequestPayload {} type GetUserChannelsResponse (line 2898) | interface GetUserChannelsResponse { type GetUserChannelsResponsePayload (line 2921) | interface GetUserChannelsResponsePayload { type HeartbeatAcknowledgementRequest (line 2937) | interface HeartbeatAcknowledgementRequest { type HeartbeatAcknowledgementRequestPayload (line 2956) | interface HeartbeatAcknowledgementRequestPayload { type HeartbeatEvent (line 2975) | interface HeartbeatEvent { type HeartbeatEventPayload (line 2994) | interface HeartbeatEventPayload {} type IntentEvent (line 3007) | interface IntentEvent { type IntentEventPayload (line 3026) | interface IntentEventPayload { type IntentListenerUnsubscribeRequest (line 3056) | interface IntentListenerUnsubscribeRequest { type IntentListenerUnsubscribeRequestPayload (line 3075) | interface IntentListenerUnsubscribeRequestPayload { type IntentListenerUnsubscribeResponse (line 3090) | interface IntentListenerUnsubscribeResponse { type IntentResultRequest (line 3120) | interface IntentResultRequest { type IntentResultRequestPayload (line 3139) | interface IntentResultRequestPayload { type IntentResult (line 3151) | interface IntentResult { type IntentResultResponse (line 3167) | interface IntentResultResponse { type JoinUserChannelRequest (line 3197) | interface JoinUserChannelRequest { type JoinUserChannelRequestPayload (line 3216) | interface JoinUserChannelRequestPayload { type JoinUserChannelResponse (line 3236) | interface JoinUserChannelResponse { type JoinUserChannelResponsePayload (line 3259) | interface JoinUserChannelResponsePayload { type LeaveCurrentChannelRequest (line 3273) | interface LeaveCurrentChannelRequest { type LeaveCurrentChannelRequestPayload (line 3292) | interface LeaveCurrentChannelRequestPayload {} type LeaveCurrentChannelResponse (line 3305) | interface LeaveCurrentChannelResponse { type LeaveCurrentChannelResponsePayload (line 3328) | interface LeaveCurrentChannelResponsePayload { type OpenRequest (line 3342) | interface OpenRequest { type OpenRequestPayload (line 3361) | interface OpenRequestPayload { type OpenResponse (line 3382) | interface OpenResponse { type OpenResponsePayload (line 3405) | interface OpenResponsePayload { type OpenErrorResponsePayload (line 3418) | type OpenErrorResponsePayload = type PrivateChannelAddEventListenerRequest (line 3442) | interface PrivateChannelAddEventListenerRequest { type PrivateChannelAddEventListenerRequestPayload (line 3461) | interface PrivateChannelAddEventListenerRequestPayload { type PrivateChannelEventType (line 3476) | type PrivateChannelEventType = 'addContextListener' | 'unsubscribe' | 'd... type PrivateChannelAddEventListenerResponse (line 3489) | interface PrivateChannelAddEventListenerResponse { type PrivateChannelAddEventListenerResponsePayload (line 3512) | interface PrivateChannelAddEventListenerResponsePayload { type PrivateChannelDisconnectRequest (line 3528) | interface PrivateChannelDisconnectRequest { type PrivateChannelDisconnectRequestPayload (line 3547) | interface PrivateChannelDisconnectRequestPayload { type PrivateChannelDisconnectResponse (line 3565) | interface PrivateChannelDisconnectResponse { type PrivateChannelDisconnectResponsePayload (line 3588) | interface PrivateChannelDisconnectResponsePayload { type PrivateChannelOnAddContextListenerEvent (line 3603) | interface PrivateChannelOnAddContextListenerEvent { type PrivateChannelOnAddContextListenerEventPayload (line 3622) | interface PrivateChannelOnAddContextListenerEventPayload { type PrivateChannelOnDisconnectEvent (line 3645) | interface PrivateChannelOnDisconnectEvent { type PrivateChannelOnDisconnectEventPayload (line 3664) | interface PrivateChannelOnDisconnectEventPayload { type PrivateChannelOnUnsubscribeEvent (line 3682) | interface PrivateChannelOnUnsubscribeEvent { type PrivateChannelOnUnsubscribeEventPayload (line 3701) | interface PrivateChannelOnUnsubscribeEventPayload { type PrivateChannelUnsubscribeEventListenerRequest (line 3723) | interface PrivateChannelUnsubscribeEventListenerRequest { type PrivateChannelUnsubscribeEventListenerRequestPayload (line 3742) | interface PrivateChannelUnsubscribeEventListenerRequestPayload { type PrivateChannelUnsubscribeEventListenerResponse (line 3757) | interface PrivateChannelUnsubscribeEventListenerResponse { type RaiseIntentForContextRequest (line 3785) | interface RaiseIntentForContextRequest { type RaiseIntentForContextRequestPayload (line 3804) | interface RaiseIntentForContextRequestPayload { type RaiseIntentForContextResponse (line 3820) | interface RaiseIntentForContextResponse { type RaiseIntentForContextResponsePayload (line 3856) | interface RaiseIntentForContextResponsePayload { type IntentResolution (line 3900) | interface IntentResolution { type RaiseIntentRequest (line 3924) | interface RaiseIntentRequest { type RaiseIntentRequestPayload (line 3943) | interface RaiseIntentRequestPayload { type RaiseIntentResponse (line 3960) | interface RaiseIntentResponse { type RaiseIntentResponsePayload (line 3996) | interface RaiseIntentResponsePayload { type RaiseIntentResultResponse (line 4025) | interface RaiseIntentResultResponse { type RaiseIntentResultResponsePayload (line 4048) | interface RaiseIntentResultResponsePayload { class Convert (line 4060) | class Convert { method toWebConnectionProtocol1Hello (line 4061) | public static toWebConnectionProtocol1Hello(json: string): WebConnecti... method webConnectionProtocol1HelloToJson (line 4065) | public static webConnectionProtocol1HelloToJson(value: WebConnectionPr... method toWebConnectionProtocol2LoadURL (line 4069) | public static toWebConnectionProtocol2LoadURL(json: string): WebConnec... method webConnectionProtocol2LoadURLToJson (line 4073) | public static webConnectionProtocol2LoadURLToJson(value: WebConnection... method toWebConnectionProtocol3Handshake (line 4077) | public static toWebConnectionProtocol3Handshake(json: string): WebConn... method webConnectionProtocol3HandshakeToJson (line 4081) | public static webConnectionProtocol3HandshakeToJson(value: WebConnecti... method toWebConnectionProtocol4ValidateAppIdentity (line 4085) | public static toWebConnectionProtocol4ValidateAppIdentity(json: string... method webConnectionProtocol4ValidateAppIdentityToJson (line 4089) | public static webConnectionProtocol4ValidateAppIdentityToJson( method toWebConnectionProtocol5ValidateAppIdentityFailedResponse (line 4095) | public static toWebConnectionProtocol5ValidateAppIdentityFailedResponse( method webConnectionProtocol5ValidateAppIdentityFailedResponseToJson (line 4101) | public static webConnectionProtocol5ValidateAppIdentityFailedResponseT... method toWebConnectionProtocol5ValidateAppIdentitySuccessResponse (line 4107) | public static toWebConnectionProtocol5ValidateAppIdentitySuccessResponse( method webConnectionProtocol5ValidateAppIdentitySuccessResponseToJson (line 4113) | public static webConnectionProtocol5ValidateAppIdentitySuccessResponse... method toWebConnectionProtocol6Goodbye (line 4119) | public static toWebConnectionProtocol6Goodbye(json: string): WebConnec... method webConnectionProtocol6GoodbyeToJson (line 4123) | public static webConnectionProtocol6GoodbyeToJson(value: WebConnection... method toWebConnectionProtocolMessage (line 4127) | public static toWebConnectionProtocolMessage(json: string): WebConnect... method webConnectionProtocolMessageToJson (line 4131) | public static webConnectionProtocolMessageToJson(value: WebConnectionP... method toAddContextListenerRequest (line 4135) | public static toAddContextListenerRequest(json: string): AddContextLis... method addContextListenerRequestToJson (line 4139) | public static addContextListenerRequestToJson(value: AddContextListene... method toAddContextListenerResponse (line 4143) | public static toAddContextListenerResponse(json: string): AddContextLi... method addContextListenerResponseToJson (line 4147) | public static addContextListenerResponseToJson(value: AddContextListen... method toAddEventListenerRequest (line 4151) | public static toAddEventListenerRequest(json: string): AddEventListene... method addEventListenerRequestToJson (line 4155) | public static addEventListenerRequestToJson(value: AddEventListenerReq... method toAddEventListenerResponse (line 4159) | public static toAddEventListenerResponse(json: string): AddEventListen... method addEventListenerResponseToJson (line 4163) | public static addEventListenerResponseToJson(value: AddEventListenerRe... method toAddIntentListenerRequest (line 4167) | public static toAddIntentListenerRequest(json: string): AddIntentListe... method addIntentListenerRequestToJson (line 4171) | public static addIntentListenerRequestToJson(value: AddIntentListenerR... method toAddIntentListenerResponse (line 4175) | public static toAddIntentListenerResponse(json: string): AddIntentList... method addIntentListenerResponseToJson (line 4179) | public static addIntentListenerResponseToJson(value: AddIntentListener... method toAgentEventMessage (line 4183) | public static toAgentEventMessage(json: string): AgentEventMessage { method agentEventMessageToJson (line 4187) | public static agentEventMessageToJson(value: AgentEventMessage): string { method toAgentResponseMessage (line 4191) | public static toAgentResponseMessage(json: string): AgentResponseMessa... method agentResponseMessageToJson (line 4195) | public static agentResponseMessageToJson(value: AgentResponseMessage):... method toAppRequestMessage (line 4199) | public static toAppRequestMessage(json: string): AppRequestMessage { method appRequestMessageToJson (line 4203) | public static appRequestMessageToJson(value: AppRequestMessage): string { method toBroadcastEvent (line 4207) | public static toBroadcastEvent(json: string): BroadcastEvent { method broadcastEventToJson (line 4211) | public static broadcastEventToJson(value: BroadcastEvent): string { method toBroadcastRequest (line 4215) | public static toBroadcastRequest(json: string): BroadcastRequest { method broadcastRequestToJson (line 4219) | public static broadcastRequestToJson(value: BroadcastRequest): string { method toBroadcastResponse (line 4223) | public static toBroadcastResponse(json: string): BroadcastResponse { method broadcastResponseToJson (line 4227) | public static broadcastResponseToJson(value: BroadcastResponse): string { method toChannelChangedEvent (line 4231) | public static toChannelChangedEvent(json: string): ChannelChangedEvent { method channelChangedEventToJson (line 4235) | public static channelChangedEventToJson(value: ChannelChangedEvent): s... method toClearContextRequest (line 4239) | public static toClearContextRequest(json: string): ClearContextRequest { method clearContextRequestToJson (line 4243) | public static clearContextRequestToJson(value: ClearContextRequest): s... method toClearContextResponse (line 4247) | public static toClearContextResponse(json: string): ClearContextRespon... method clearContextResponseToJson (line 4251) | public static clearContextResponseToJson(value: ClearContextResponse):... method toContextClearedEvent (line 4255) | public static toContextClearedEvent(json: string): ContextClearedEvent { method contextClearedEventToJson (line 4259) | public static contextClearedEventToJson(value: ContextClearedEvent): s... method toContextListenerUnsubscribeRequest (line 4263) | public static toContextListenerUnsubscribeRequest(json: string): Conte... method contextListenerUnsubscribeRequestToJson (line 4267) | public static contextListenerUnsubscribeRequestToJson(value: ContextLi... method toContextListenerUnsubscribeResponse (line 4271) | public static toContextListenerUnsubscribeResponse(json: string): Cont... method contextListenerUnsubscribeResponseToJson (line 4275) | public static contextListenerUnsubscribeResponseToJson(value: ContextL... method toCreatePrivateChannelRequest (line 4279) | public static toCreatePrivateChannelRequest(json: string): CreatePriva... method createPrivateChannelRequestToJson (line 4283) | public static createPrivateChannelRequestToJson(value: CreatePrivateCh... method toCreatePrivateChannelResponse (line 4287) | public static toCreatePrivateChannelResponse(json: string): CreatePriv... method createPrivateChannelResponseToJson (line 4291) | public static createPrivateChannelResponseToJson(value: CreatePrivateC... method toEventListenerUnsubscribeRequest (line 4295) | public static toEventListenerUnsubscribeRequest(json: string): EventLi... method eventListenerUnsubscribeRequestToJson (line 4299) | public static eventListenerUnsubscribeRequestToJson(value: EventListen... method toEventListenerUnsubscribeResponse (line 4303) | public static toEventListenerUnsubscribeResponse(json: string): EventL... method eventListenerUnsubscribeResponseToJson (line 4307) | public static eventListenerUnsubscribeResponseToJson(value: EventListe... method toFdc3UserInterfaceChannelSelected (line 4311) | public static toFdc3UserInterfaceChannelSelected(json: string): Fdc3Us... method fdc3UserInterfaceChannelSelectedToJson (line 4315) | public static fdc3UserInterfaceChannelSelectedToJson(value: Fdc3UserIn... method toFdc3UserInterfaceChannels (line 4319) | public static toFdc3UserInterfaceChannels(json: string): Fdc3UserInter... method fdc3UserInterfaceChannelsToJson (line 4323) | public static fdc3UserInterfaceChannelsToJson(value: Fdc3UserInterface... method toFdc3UserInterfaceDrag (line 4327) | public static toFdc3UserInterfaceDrag(json: string): Fdc3UserInterface... method fdc3UserInterfaceDragToJson (line 4331) | public static fdc3UserInterfaceDragToJson(value: Fdc3UserInterfaceDrag... method toFdc3UserInterfaceHandshake (line 4335) | public static toFdc3UserInterfaceHandshake(json: string): Fdc3UserInte... method fdc3UserInterfaceHandshakeToJson (line 4339) | public static fdc3UserInterfaceHandshakeToJson(value: Fdc3UserInterfac... method toFdc3UserInterfaceHello (line 4343) | public static toFdc3UserInterfaceHello(json: string): Fdc3UserInterfac... method fdc3UserInterfaceHelloToJson (line 4347) | public static fdc3UserInterfaceHelloToJson(value: Fdc3UserInterfaceHel... method toFdc3UserInterfaceMessage (line 4351) | public static toFdc3UserInterfaceMessage(json: string): Fdc3UserInterf... method fdc3UserInterfaceMessageToJson (line 4355) | public static fdc3UserInterfaceMessageToJson(value: Fdc3UserInterfaceM... method toFdc3UserInterfaceResolve (line 4359) | public static toFdc3UserInterfaceResolve(json: string): Fdc3UserInterf... method fdc3UserInterfaceResolveToJson (line 4363) | public static fdc3UserInterfaceResolveToJson(value: Fdc3UserInterfaceR... method toFdc3UserInterfaceResolveAction (line 4367) | public static toFdc3UserInterfaceResolveAction(json: string): Fdc3User... method fdc3UserInterfaceResolveActionToJson (line 4371) | public static fdc3UserInterfaceResolveActionToJson(value: Fdc3UserInte... method toFdc3UserInterfaceRestyle (line 4375) | public static toFdc3UserInterfaceRestyle(json: string): Fdc3UserInterf... method fdc3UserInterfaceRestyleToJson (line 4379) | public static fdc3UserInterfaceRestyleToJson(value: Fdc3UserInterfaceR... method toFindInstancesRequest (line 4383) | public static toFindInstancesRequest(json: string): FindInstancesReque... method findInstancesRequestToJson (line 4387) | public static findInstancesRequestToJson(value: FindInstancesRequest):... method toFindInstancesResponse (line 4391) | public static toFindInstancesResponse(json: string): FindInstancesResp... method findInstancesResponseToJson (line 4395) | public static findInstancesResponseToJson(value: FindInstancesResponse... method toFindIntentRequest (line 4399) | public static toFindIntentRequest(json: string): FindIntentRequest { method findIntentRequestToJson (line 4403) | public static findIntentRequestToJson(value: FindIntentRequest): string { method toFindIntentResponse (line 4407) | public static toFindIntentResponse(json: string): FindIntentResponse { method findIntentResponseToJson (line 4411) | public static findIntentResponseToJson(value: FindIntentResponse): str... method toFindIntentsByContextRequest (line 4415) | public static toFindIntentsByContextRequest(json: string): FindIntents... method findIntentsByContextRequestToJson (line 4419) | public static findIntentsByContextRequestToJson(value: FindIntentsByCo... method toFindIntentsByContextResponse (line 4423) | public static toFindIntentsByContextResponse(json: string): FindIntent... method findIntentsByContextResponseToJson (line 4427) | public static findIntentsByContextResponseToJson(value: FindIntentsByC... method toGetAppMetadataRequest (line 4431) | public static toGetAppMetadataRequest(json: string): GetAppMetadataReq... method getAppMetadataRequestToJson (line 4435) | public static getAppMetadataRequestToJson(value: GetAppMetadataRequest... method toGetAppMetadataResponse (line 4439) | public static toGetAppMetadataResponse(json: string): GetAppMetadataRe... method getAppMetadataResponseToJson (line 4443) | public static getAppMetadataResponseToJson(value: GetAppMetadataRespon... method toGetCurrentChannelRequest (line 4447) | public static toGetCurrentChannelRequest(json: string): GetCurrentChan... method getCurrentChannelRequestToJson (line 4451) | public static getCurrentChannelRequestToJson(value: GetCurrentChannelR... method toGetCurrentChannelResponse (line 4455) | public static toGetCurrentChannelResponse(json: string): GetCurrentCha... method getCurrentChannelResponseToJson (line 4459) | public static getCurrentChannelResponseToJson(value: GetCurrentChannel... method toGetCurrentContextRequest (line 4463) | public static toGetCurrentContextRequest(json: string): GetCurrentCont... method getCurrentContextRequestToJson (line 4467) | public static getCurrentContextRequestToJson(value: GetCurrentContextR... method toGetCurrentContextResponse (line 4471) | public static toGetCurrentContextResponse(json: string): GetCurrentCon... method getCurrentContextResponseToJson (line 4475) | public static getCurrentContextResponseToJson(value: GetCurrentContext... method toGetInfoRequest (line 4479) | public static toGetInfoRequest(json: string): GetInfoRequest { method getInfoRequestToJson (line 4483) | public static getInfoRequestToJson(value: GetInfoRequest): string { method toGetInfoResponse (line 4487) | public static toGetInfoResponse(json: string): GetInfoResponse { method getInfoResponseToJson (line 4491) | public static getInfoResponseToJson(value: GetInfoResponse): string { method toGetOrCreateChannelRequest (line 4495) | public static toGetOrCreateChannelRequest(json: string): GetOrCreateCh... method getOrCreateChannelRequestToJson (line 4499) | public static getOrCreateChannelRequestToJson(value: GetOrCreateChanne... method toGetOrCreateChannelResponse (line 4503) | public static toGetOrCreateChannelResponse(json: string): GetOrCreateC... method getOrCreateChannelResponseToJson (line 4507) | public static getOrCreateChannelResponseToJson(value: GetOrCreateChann... method toGetUserChannelsRequest (line 4511) | public static toGetUserChannelsRequest(json: string): GetUserChannelsR... method getUserChannelsRequestToJson (line 4515) | public static getUserChannelsRequestToJson(value: GetUserChannelsReque... method toGetUserChannelsResponse (line 4519) | public static toGetUserChannelsResponse(json: string): GetUserChannels... method getUserChannelsResponseToJson (line 4523) | public static getUserChannelsResponseToJson(value: GetUserChannelsResp... method toHeartbeatAcknowledgementRequest (line 4527) | public static toHeartbeatAcknowledgementRequest(json: string): Heartbe... method heartbeatAcknowledgementRequestToJson (line 4531) | public static heartbeatAcknowledgementRequestToJson(value: HeartbeatAc... method toHeartbeatEvent (line 4535) | public static toHeartbeatEvent(json: string): HeartbeatEvent { method heartbeatEventToJson (line 4539) | public static heartbeatEventToJson(value: HeartbeatEvent): string { method toIntentEvent (line 4543) | public static toIntentEvent(json: string): IntentEvent { method intentEventToJson (line 4547) | public static intentEventToJson(value: IntentEvent): string { method toIntentListenerUnsubscribeRequest (line 4551) | public static toIntentListenerUnsubscribeRequest(json: string): Intent... method intentListenerUnsubscribeRequestToJson (line 4555) | public static intentListenerUnsubscribeRequestToJson(value: IntentList... method toIntentListenerUnsubscribeResponse (line 4559) | public static toIntentListenerUnsubscribeResponse(json: string): Inten... method intentListenerUnsubscribeResponseToJson (line 4563) | public static intentListenerUnsubscribeResponseToJson(value: IntentLis... method toIntentResultRequest (line 4567) | public static toIntentResultRequest(json: string): IntentResultRequest { method intentResultRequestToJson (line 4571) | public static intentResultRequestToJson(value: IntentResultRequest): s... method toIntentResultResponse (line 4575) | public static toIntentResultResponse(json: string): IntentResultRespon... method intentResultResponseToJson (line 4579) | public static intentResultResponseToJson(value: IntentResultResponse):... method toJoinUserChannelRequest (line 4583) | public static toJoinUserChannelRequest(json: string): JoinUserChannelR... method joinUserChannelRequestToJson (line 4587) | public static joinUserChannelRequestToJson(value: JoinUserChannelReque... method toJoinUserChannelResponse (line 4591) | public static toJoinUserChannelResponse(json: string): JoinUserChannel... method joinUserChannelResponseToJson (line 4595) | public static joinUserChannelResponseToJson(value: JoinUserChannelResp... method toLeaveCurrentChannelRequest (line 4599) | public static toLeaveCurrentChannelRequest(json: string): LeaveCurrent... method leaveCurrentChannelRequestToJson (line 4603) | public static leaveCurrentChannelRequestToJson(value: LeaveCurrentChan... method toLeaveCurrentChannelResponse (line 4607) | public static toLeaveCurrentChannelResponse(json: string): LeaveCurren... method leaveCurrentChannelResponseToJson (line 4611) | public static leaveCurrentChannelResponseToJson(value: LeaveCurrentCha... method toOpenRequest (line 4615) | public static toOpenRequest(json: string): OpenRequest { method openRequestToJson (line 4619) | public static openRequestToJson(value: OpenRequest): string { method toOpenResponse (line 4623) | public static toOpenResponse(json: string): OpenResponse { method openResponseToJson (line 4627) | public static openResponseToJson(value: OpenResponse): string { method toPrivateChannelAddEventListenerRequest (line 4631) | public static toPrivateChannelAddEventListenerRequest(json: string): P... method privateChannelAddEventListenerRequestToJson (line 4635) | public static privateChannelAddEventListenerRequestToJson(value: Priva... method toPrivateChannelAddEventListenerResponse (line 4639) | public static toPrivateChannelAddEventListenerResponse(json: string): ... method privateChannelAddEventListenerResponseToJson (line 4643) | public static privateChannelAddEventListenerResponseToJson(value: Priv... method toPrivateChannelDisconnectRequest (line 4647) | public static toPrivateChannelDisconnectRequest(json: string): Private... method privateChannelDisconnectRequestToJson (line 4651) | public static privateChannelDisconnectRequestToJson(value: PrivateChan... method toPrivateChannelDisconnectResponse (line 4655) | public static toPrivateChannelDisconnectResponse(json: string): Privat... method privateChannelDisconnectResponseToJson (line 4659) | public static privateChannelDisconnectResponseToJson(value: PrivateCha... method toPrivateChannelOnAddContextListenerEvent (line 4663) | public static toPrivateChannelOnAddContextListenerEvent(json: string):... method privateChannelOnAddContextListenerEventToJson (line 4667) | public static privateChannelOnAddContextListenerEventToJson(value: Pri... method toPrivateChannelOnDisconnectEvent (line 4671) | public static toPrivateChannelOnDisconnectEvent(json: string): Private... method privateChannelOnDisconnectEventToJson (line 4675) | public static privateChannelOnDisconnectEventToJson(value: PrivateChan... method toPrivateChannelOnUnsubscribeEvent (line 4679) | public static toPrivateChannelOnUnsubscribeEvent(json: string): Privat... method privateChannelOnUnsubscribeEventToJson (line 4683) | public static privateChannelOnUnsubscribeEventToJson(value: PrivateCha... method toPrivateChannelUnsubscribeEventListenerRequest (line 4687) | public static toPrivateChannelUnsubscribeEventListenerRequest( method privateChannelUnsubscribeEventListenerRequestToJson (line 4693) | public static privateChannelUnsubscribeEventListenerRequestToJson( method toPrivateChannelUnsubscribeEventListenerResponse (line 4699) | public static toPrivateChannelUnsubscribeEventListenerResponse( method privateChannelUnsubscribeEventListenerResponseToJson (line 4705) | public static privateChannelUnsubscribeEventListenerResponseToJson( method toRaiseIntentForContextRequest (line 4711) | public static toRaiseIntentForContextRequest(json: string): RaiseInten... method raiseIntentForContextRequestToJson (line 4715) | public static raiseIntentForContextRequestToJson(value: RaiseIntentFor... method toRaiseIntentForContextResponse (line 4719) | public static toRaiseIntentForContextResponse(json: string): RaiseInte... method raiseIntentForContextResponseToJson (line 4723) | public static raiseIntentForContextResponseToJson(value: RaiseIntentFo... method toRaiseIntentRequest (line 4727) | public static toRaiseIntentRequest(json: string): RaiseIntentRequest { method raiseIntentRequestToJson (line 4731) | public static raiseIntentRequestToJson(value: RaiseIntentRequest): str... method toRaiseIntentResponse (line 4735) | public static toRaiseIntentResponse(json: string): RaiseIntentResponse { method raiseIntentResponseToJson (line 4739) | public static raiseIntentResponseToJson(value: RaiseIntentResponse): s... method toRaiseIntentResultResponse (line 4743) | public static toRaiseIntentResultResponse(json: string): RaiseIntentRe... method raiseIntentResultResponseToJson (line 4747) | public static raiseIntentResultResponseToJson(value: RaiseIntentResult... function invalidValue (line 4752) | function invalidValue(typ: any, val: any, key: any, parent: any = ''): n... function prettyTypeName (line 4759) | function prettyTypeName(typ: any): string { function jsonToJSProps (line 4777) | function jsonToJSProps(typ: any): any { function jsToJSONProps (line 4786) | function jsToJSONProps(typ: any): any { function transform (line 4795) | function transform(val: any, typ: any, getProps: any, key: any = '', par... function cast (line 4886) | function cast(val: any, typ: any): T { function uncast (line 4890) | function uncast(val: T, typ: any): any { function l (line 4894) | function l(typ: any) { function a (line 4898) | function a(typ: any) { function u (line 4902) | function u(...typs: any[]) { function o (line 4906) | function o(props: any[], additional: any) { function m (line 4910) | function m(additional: any) { function r (line 4914) | function r(name: string) { type AppRequestMessage (line 6413) | type AppRequestMessage = type AgentResponseMessage (line 6443) | type AgentResponseMessage = type AgentEventMessage (line 6473) | type AgentEventMessage = function isWebConnectionProtocol1Hello (line 6486) | function isWebConnectionProtocol1Hello(value: any): value is WebConnecti... function isValidWebConnectionProtocol1Hello (line 6493) | function isValidWebConnectionProtocol1Hello(value: any): value is WebCon... constant WEB_CONNECTION_PROTOCOL1_HELLO_TYPE (line 6502) | const WEB_CONNECTION_PROTOCOL1_HELLO_TYPE = 'WebConnectionProtocol1Hello'; function isWebConnectionProtocol2LoadURL (line 6507) | function isWebConnectionProtocol2LoadURL(value: any): value is WebConnec... function isValidWebConnectionProtocol2LoadURL (line 6514) | function isValidWebConnectionProtocol2LoadURL(value: any): value is WebC... constant WEB_CONNECTION_PROTOCOL2_LOAD_U_R_L_TYPE (line 6523) | const WEB_CONNECTION_PROTOCOL2_LOAD_U_R_L_TYPE = 'WebConnectionProtocol2... function isWebConnectionProtocol3Handshake (line 6528) | function isWebConnectionProtocol3Handshake(value: any): value is WebConn... function isValidWebConnectionProtocol3Handshake (line 6535) | function isValidWebConnectionProtocol3Handshake(value: any): value is We... constant WEB_CONNECTION_PROTOCOL3_HANDSHAKE_TYPE (line 6544) | const WEB_CONNECTION_PROTOCOL3_HANDSHAKE_TYPE = 'WebConnectionProtocol3H... function isWebConnectionProtocol4ValidateAppIdentity (line 6549) | function isWebConnectionProtocol4ValidateAppIdentity( function isValidWebConnectionProtocol4ValidateAppIdentity (line 6558) | function isValidWebConnectionProtocol4ValidateAppIdentity( constant WEB_CONNECTION_PROTOCOL4_VALIDATE_APP_IDENTITY_TYPE (line 6569) | const WEB_CONNECTION_PROTOCOL4_VALIDATE_APP_IDENTITY_TYPE = 'WebConnecti... function isWebConnectionProtocol5ValidateAppIdentityFailedResponse (line 6574) | function isWebConnectionProtocol5ValidateAppIdentityFailedResponse( function isValidWebConnectionProtocol5ValidateAppIdentityFailedResponse (line 6583) | function isValidWebConnectionProtocol5ValidateAppIdentityFailedResponse( constant WEB_CONNECTION_PROTOCOL5_VALIDATE_APP_IDENTITY_FAILED_RESPONSE_TYPE (line 6594) | const WEB_CONNECTION_PROTOCOL5_VALIDATE_APP_IDENTITY_FAILED_RESPONSE_TYPE = function isWebConnectionProtocol5ValidateAppIdentitySuccessResponse (line 6600) | function isWebConnectionProtocol5ValidateAppIdentitySuccessResponse( function isValidWebConnectionProtocol5ValidateAppIdentitySuccessResponse (line 6609) | function isValidWebConnectionProtocol5ValidateAppIdentitySuccessResponse( constant WEB_CONNECTION_PROTOCOL5_VALIDATE_APP_IDENTITY_SUCCESS_RESPONSE_TYPE (line 6620) | const WEB_CONNECTION_PROTOCOL5_VALIDATE_APP_IDENTITY_SUCCESS_RESPONSE_TY... function isWebConnectionProtocol6Goodbye (line 6626) | function isWebConnectionProtocol6Goodbye(value: any): value is WebConnec... function isValidWebConnectionProtocol6Goodbye (line 6633) | function isValidWebConnectionProtocol6Goodbye(value: any): value is WebC... constant WEB_CONNECTION_PROTOCOL6_GOODBYE_TYPE (line 6642) | const WEB_CONNECTION_PROTOCOL6_GOODBYE_TYPE = 'WebConnectionProtocol6Goo... function isValidWebConnectionProtocolMessage (line 6647) | function isValidWebConnectionProtocolMessage(value: any): value is WebCo... constant WEB_CONNECTION_PROTOCOL_MESSAGE_TYPE (line 6656) | const WEB_CONNECTION_PROTOCOL_MESSAGE_TYPE = 'WebConnectionProtocolMessa... function isAddContextListenerRequest (line 6661) | function isAddContextListenerRequest(value: any): value is AddContextLis... function isValidAddContextListenerRequest (line 6668) | function isValidAddContextListenerRequest(value: any): value is AddConte... constant ADD_CONTEXT_LISTENER_REQUEST_TYPE (line 6677) | const ADD_CONTEXT_LISTENER_REQUEST_TYPE = 'AddContextListenerRequest'; function isAddContextListenerResponse (line 6682) | function isAddContextListenerResponse(value: any): value is AddContextLi... function isValidAddContextListenerResponse (line 6689) | function isValidAddContextListenerResponse(value: any): value is AddCont... constant ADD_CONTEXT_LISTENER_RESPONSE_TYPE (line 6698) | const ADD_CONTEXT_LISTENER_RESPONSE_TYPE = 'AddContextListenerResponse'; function isAddEventListenerRequest (line 6703) | function isAddEventListenerRequest(value: any): value is AddEventListene... function isValidAddEventListenerRequest (line 6710) | function isValidAddEventListenerRequest(value: any): value is AddEventLi... constant ADD_EVENT_LISTENER_REQUEST_TYPE (line 6719) | const ADD_EVENT_LISTENER_REQUEST_TYPE = 'AddEventListenerRequest'; function isAddEventListenerResponse (line 6724) | function isAddEventListenerResponse(value: any): value is AddEventListen... function isValidAddEventListenerResponse (line 6731) | function isValidAddEventListenerResponse(value: any): value is AddEventL... constant ADD_EVENT_LISTENER_RESPONSE_TYPE (line 6740) | const ADD_EVENT_LISTENER_RESPONSE_TYPE = 'AddEventListenerResponse'; function isAddIntentListenerRequest (line 6745) | function isAddIntentListenerRequest(value: any): value is AddIntentListe... function isValidAddIntentListenerRequest (line 6752) | function isValidAddIntentListenerRequest(value: any): value is AddIntent... constant ADD_INTENT_LISTENER_REQUEST_TYPE (line 6761) | const ADD_INTENT_LISTENER_REQUEST_TYPE = 'AddIntentListenerRequest'; function isAddIntentListenerResponse (line 6766) | function isAddIntentListenerResponse(value: any): value is AddIntentList... function isValidAddIntentListenerResponse (line 6773) | function isValidAddIntentListenerResponse(value: any): value is AddInten... constant ADD_INTENT_LISTENER_RESPONSE_TYPE (line 6782) | const ADD_INTENT_LISTENER_RESPONSE_TYPE = 'AddIntentListenerResponse'; function isBroadcastEvent (line 6787) | function isBroadcastEvent(value: any): value is BroadcastEvent { function isValidBroadcastEvent (line 6794) | function isValidBroadcastEvent(value: any): value is BroadcastEvent { constant BROADCAST_EVENT_TYPE (line 6803) | const BROADCAST_EVENT_TYPE = 'BroadcastEvent'; function isBroadcastRequest (line 6808) | function isBroadcastRequest(value: any): value is BroadcastRequest { function isValidBroadcastRequest (line 6815) | function isValidBroadcastRequest(value: any): value is BroadcastRequest { constant BROADCAST_REQUEST_TYPE (line 6824) | const BROADCAST_REQUEST_TYPE = 'BroadcastRequest'; function isBroadcastResponse (line 6829) | function isBroadcastResponse(value: any): value is BroadcastResponse { function isValidBroadcastResponse (line 6836) | function isValidBroadcastResponse(value: any): value is BroadcastResponse { constant BROADCAST_RESPONSE_TYPE (line 6845) | const BROADCAST_RESPONSE_TYPE = 'BroadcastResponse'; function isChannelChangedEvent (line 6850) | function isChannelChangedEvent(value: any): value is ChannelChangedEvent { function isValidChannelChangedEvent (line 6857) | function isValidChannelChangedEvent(value: any): value is ChannelChanged... constant CHANNEL_CHANGED_EVENT_TYPE (line 6866) | const CHANNEL_CHANGED_EVENT_TYPE = 'ChannelChangedEvent'; function isClearContextRequest (line 6871) | function isClearContextRequest(value: any): value is ClearContextRequest { function isValidClearContextRequest (line 6878) | function isValidClearContextRequest(value: any): value is ClearContextRe... constant CLEAR_CONTEXT_REQUEST_TYPE (line 6887) | const CLEAR_CONTEXT_REQUEST_TYPE = 'ClearContextRequest'; function isClearContextResponse (line 6892) | function isClearContextResponse(value: any): value is ClearContextRespon... function isValidClearContextResponse (line 6899) | function isValidClearContextResponse(value: any): value is ClearContextR... constant CLEAR_CONTEXT_RESPONSE_TYPE (line 6908) | const CLEAR_CONTEXT_RESPONSE_TYPE = 'ClearContextResponse'; function isContextClearedEvent (line 6913) | function isContextClearedEvent(value: any): value is ContextClearedEvent { function isValidContextClearedEvent (line 6920) | function isValidContextClearedEvent(value: any): value is ContextCleared... constant CONTEXT_CLEARED_EVENT_TYPE (line 6929) | const CONTEXT_CLEARED_EVENT_TYPE = 'ContextClearedEvent'; function isContextListenerUnsubscribeRequest (line 6934) | function isContextListenerUnsubscribeRequest(value: any): value is Conte... function isValidContextListenerUnsubscribeRequest (line 6941) | function isValidContextListenerUnsubscribeRequest(value: any): value is ... constant CONTEXT_LISTENER_UNSUBSCRIBE_REQUEST_TYPE (line 6950) | const CONTEXT_LISTENER_UNSUBSCRIBE_REQUEST_TYPE = 'ContextListenerUnsubs... function isContextListenerUnsubscribeResponse (line 6955) | function isContextListenerUnsubscribeResponse(value: any): value is Cont... function isValidContextListenerUnsubscribeResponse (line 6962) | function isValidContextListenerUnsubscribeResponse(value: any): value is... constant CONTEXT_LISTENER_UNSUBSCRIBE_RESPONSE_TYPE (line 6971) | const CONTEXT_LISTENER_UNSUBSCRIBE_RESPONSE_TYPE = 'ContextListenerUnsub... function isCreatePrivateChannelRequest (line 6976) | function isCreatePrivateChannelRequest(value: any): value is CreatePriva... function isValidCreatePrivateChannelRequest (line 6983) | function isValidCreatePrivateChannelRequest(value: any): value is Create... constant CREATE_PRIVATE_CHANNEL_REQUEST_TYPE (line 6992) | const CREATE_PRIVATE_CHANNEL_REQUEST_TYPE = 'CreatePrivateChannelRequest'; function isCreatePrivateChannelResponse (line 6997) | function isCreatePrivateChannelResponse(value: any): value is CreatePriv... function isValidCreatePrivateChannelResponse (line 7004) | function isValidCreatePrivateChannelResponse(value: any): value is Creat... constant CREATE_PRIVATE_CHANNEL_RESPONSE_TYPE (line 7013) | const CREATE_PRIVATE_CHANNEL_RESPONSE_TYPE = 'CreatePrivateChannelRespon... function isEventListenerUnsubscribeRequest (line 7018) | function isEventListenerUnsubscribeRequest(value: any): value is EventLi... function isValidEventListenerUnsubscribeRequest (line 7025) | function isValidEventListenerUnsubscribeRequest(value: any): value is Ev... constant EVENT_LISTENER_UNSUBSCRIBE_REQUEST_TYPE (line 7034) | const EVENT_LISTENER_UNSUBSCRIBE_REQUEST_TYPE = 'EventListenerUnsubscrib... function isEventListenerUnsubscribeResponse (line 7039) | function isEventListenerUnsubscribeResponse(value: any): value is EventL... function isValidEventListenerUnsubscribeResponse (line 7046) | function isValidEventListenerUnsubscribeResponse(value: any): value is E... constant EVENT_LISTENER_UNSUBSCRIBE_RESPONSE_TYPE (line 7055) | const EVENT_LISTENER_UNSUBSCRIBE_RESPONSE_TYPE = 'EventListenerUnsubscri... function isFdc3UserInterfaceChannelSelected (line 7060) | function isFdc3UserInterfaceChannelSelected(value: any): value is Fdc3Us... function isValidFdc3UserInterfaceChannelSelected (line 7067) | function isValidFdc3UserInterfaceChannelSelected(value: any): value is F... constant FDC3_USER_INTERFACE_CHANNEL_SELECTED_TYPE (line 7076) | const FDC3_USER_INTERFACE_CHANNEL_SELECTED_TYPE = 'Fdc3UserInterfaceChan... function isFdc3UserInterfaceChannels (line 7081) | function isFdc3UserInterfaceChannels(value: any): value is Fdc3UserInter... function isValidFdc3UserInterfaceChannels (line 7088) | function isValidFdc3UserInterfaceChannels(value: any): value is Fdc3User... constant FDC3_USER_INTERFACE_CHANNELS_TYPE (line 7097) | const FDC3_USER_INTERFACE_CHANNELS_TYPE = 'Fdc3UserInterfaceChannels'; function isFdc3UserInterfaceDrag (line 7102) | function isFdc3UserInterfaceDrag(value: any): value is Fdc3UserInterface... function isValidFdc3UserInterfaceDrag (line 7109) | function isValidFdc3UserInterfaceDrag(value: any): value is Fdc3UserInte... constant FDC3_USER_INTERFACE_DRAG_TYPE (line 7118) | const FDC3_USER_INTERFACE_DRAG_TYPE = 'Fdc3UserInterfaceDrag'; function isFdc3UserInterfaceHandshake (line 7123) | function isFdc3UserInterfaceHandshake(value: any): value is Fdc3UserInte... function isValidFdc3UserInterfaceHandshake (line 7130) | function isValidFdc3UserInterfaceHandshake(value: any): value is Fdc3Use... constant FDC3_USER_INTERFACE_HANDSHAKE_TYPE (line 7139) | const FDC3_USER_INTERFACE_HANDSHAKE_TYPE = 'Fdc3UserInterfaceHandshake'; function isFdc3UserInterfaceHello (line 7144) | function isFdc3UserInterfaceHello(value: any): value is Fdc3UserInterfac... function isValidFdc3UserInterfaceHello (line 7151) | function isValidFdc3UserInterfaceHello(value: any): value is Fdc3UserInt... constant FDC3_USER_INTERFACE_HELLO_TYPE (line 7160) | const FDC3_USER_INTERFACE_HELLO_TYPE = 'Fdc3UserInterfaceHello'; function isValidFdc3UserInterfaceMessage (line 7165) | function isValidFdc3UserInterfaceMessage(value: any): value is Fdc3UserI... constant FDC3_USER_INTERFACE_MESSAGE_TYPE (line 7174) | const FDC3_USER_INTERFACE_MESSAGE_TYPE = 'Fdc3UserInterfaceMessage'; function isFdc3UserInterfaceResolve (line 7179) | function isFdc3UserInterfaceResolve(value: any): value is Fdc3UserInterf... function isValidFdc3UserInterfaceResolve (line 7186) | function isValidFdc3UserInterfaceResolve(value: any): value is Fdc3UserI... constant FDC3_USER_INTERFACE_RESOLVE_TYPE (line 7195) | const FDC3_USER_INTERFACE_RESOLVE_TYPE = 'Fdc3UserInterfaceResolve'; function isFdc3UserInterfaceResolveAction (line 7200) | function isFdc3UserInterfaceResolveAction(value: any): value is Fdc3User... function isValidFdc3UserInterfaceResolveAction (line 7207) | function isValidFdc3UserInterfaceResolveAction(value: any): value is Fdc... constant FDC3_USER_INTERFACE_RESOLVE_ACTION_TYPE (line 7216) | const FDC3_USER_INTERFACE_RESOLVE_ACTION_TYPE = 'Fdc3UserInterfaceResolv... function isFdc3UserInterfaceRestyle (line 7221) | function isFdc3UserInterfaceRestyle(value: any): value is Fdc3UserInterf... function isValidFdc3UserInterfaceRestyle (line 7228) | function isValidFdc3UserInterfaceRestyle(value: any): value is Fdc3UserI... constant FDC3_USER_INTERFACE_RESTYLE_TYPE (line 7237) | const FDC3_USER_INTERFACE_RESTYLE_TYPE = 'Fdc3UserInterfaceRestyle'; function isFindInstancesRequest (line 7242) | function isFindInstancesRequest(value: any): value is FindInstancesReque... function isValidFindInstancesRequest (line 7249) | function isValidFindInstancesRequest(value: any): value is FindInstances... constant FIND_INSTANCES_REQUEST_TYPE (line 7258) | const FIND_INSTANCES_REQUEST_TYPE = 'FindInstancesRequest'; function isFindInstancesResponse (line 7263) | function isFindInstancesResponse(value: any): value is FindInstancesResp... function isValidFindInstancesResponse (line 7270) | function isValidFindInstancesResponse(value: any): value is FindInstance... constant FIND_INSTANCES_RESPONSE_TYPE (line 7279) | const FIND_INSTANCES_RESPONSE_TYPE = 'FindInstancesResponse'; function isFindIntentRequest (line 7284) | function isFindIntentRequest(value: any): value is FindIntentRequest { function isValidFindIntentRequest (line 7291) | function isValidFindIntentRequest(value: any): value is FindIntentRequest { constant FIND_INTENT_REQUEST_TYPE (line 7300) | const FIND_INTENT_REQUEST_TYPE = 'FindIntentRequest'; function isFindIntentResponse (line 7305) | function isFindIntentResponse(value: any): value is FindIntentResponse { function isValidFindIntentResponse (line 7312) | function isValidFindIntentResponse(value: any): value is FindIntentRespo... constant FIND_INTENT_RESPONSE_TYPE (line 7321) | const FIND_INTENT_RESPONSE_TYPE = 'FindIntentResponse'; function isFindIntentsByContextRequest (line 7326) | function isFindIntentsByContextRequest(value: any): value is FindIntents... function isValidFindIntentsByContextRequest (line 7333) | function isValidFindIntentsByContextRequest(value: any): value is FindIn... constant FIND_INTENTS_BY_CONTEXT_REQUEST_TYPE (line 7342) | const FIND_INTENTS_BY_CONTEXT_REQUEST_TYPE = 'FindIntentsByContextRequest'; function isFindIntentsByContextResponse (line 7347) | function isFindIntentsByContextResponse(value: any): value is FindIntent... function isValidFindIntentsByContextResponse (line 7354) | function isValidFindIntentsByContextResponse(value: any): value is FindI... constant FIND_INTENTS_BY_CONTEXT_RESPONSE_TYPE (line 7363) | const FIND_INTENTS_BY_CONTEXT_RESPONSE_TYPE = 'FindIntentsByContextRespo... function isGetAppMetadataRequest (line 7368) | function isGetAppMetadataRequest(value: any): value is GetAppMetadataReq... function isValidGetAppMetadataRequest (line 7375) | function isValidGetAppMetadataRequest(value: any): value is GetAppMetada... constant GET_APP_METADATA_REQUEST_TYPE (line 7384) | const GET_APP_METADATA_REQUEST_TYPE = 'GetAppMetadataRequest'; function isGetAppMetadataResponse (line 7389) | function isGetAppMetadataResponse(value: any): value is GetAppMetadataRe... function isValidGetAppMetadataResponse (line 7396) | function isValidGetAppMetadataResponse(value: any): value is GetAppMetad... constant GET_APP_METADATA_RESPONSE_TYPE (line 7405) | const GET_APP_METADATA_RESPONSE_TYPE = 'GetAppMetadataResponse'; function isGetCurrentChannelRequest (line 7410) | function isGetCurrentChannelRequest(value: any): value is GetCurrentChan... function isValidGetCurrentChannelRequest (line 7417) | function isValidGetCurrentChannelRequest(value: any): value is GetCurren... constant GET_CURRENT_CHANNEL_REQUEST_TYPE (line 7426) | const GET_CURRENT_CHANNEL_REQUEST_TYPE = 'GetCurrentChannelRequest'; function isGetCurrentChannelResponse (line 7431) | function isGetCurrentChannelResponse(value: any): value is GetCurrentCha... function isValidGetCurrentChannelResponse (line 7438) | function isValidGetCurrentChannelResponse(value: any): value is GetCurre... constant GET_CURRENT_CHANNEL_RESPONSE_TYPE (line 7447) | const GET_CURRENT_CHANNEL_RESPONSE_TYPE = 'GetCurrentChannelResponse'; function isGetCurrentContextRequest (line 7452) | function isGetCurrentContextRequest(value: any): value is GetCurrentCont... function isValidGetCurrentContextRequest (line 7459) | function isValidGetCurrentContextRequest(value: any): value is GetCurren... constant GET_CURRENT_CONTEXT_REQUEST_TYPE (line 7468) | const GET_CURRENT_CONTEXT_REQUEST_TYPE = 'GetCurrentContextRequest'; function isGetCurrentContextResponse (line 7473) | function isGetCurrentContextResponse(value: any): value is GetCurrentCon... function isValidGetCurrentContextResponse (line 7480) | function isValidGetCurrentContextResponse(value: any): value is GetCurre... constant GET_CURRENT_CONTEXT_RESPONSE_TYPE (line 7489) | const GET_CURRENT_CONTEXT_RESPONSE_TYPE = 'GetCurrentContextResponse'; function isGetInfoRequest (line 7494) | function isGetInfoRequest(value: any): value is GetInfoRequest { function isValidGetInfoRequest (line 7501) | function isValidGetInfoRequest(value: any): value is GetInfoRequest { constant GET_INFO_REQUEST_TYPE (line 7510) | const GET_INFO_REQUEST_TYPE = 'GetInfoRequest'; function isGetInfoResponse (line 7515) | function isGetInfoResponse(value: any): value is GetInfoResponse { function isValidGetInfoResponse (line 7522) | function isValidGetInfoResponse(value: any): value is GetInfoResponse { constant GET_INFO_RESPONSE_TYPE (line 7531) | const GET_INFO_RESPONSE_TYPE = 'GetInfoResponse'; function isGetOrCreateChannelRequest (line 7536) | function isGetOrCreateChannelRequest(value: any): value is GetOrCreateCh... function isValidGetOrCreateChannelRequest (line 7543) | function isValidGetOrCreateChannelRequest(value: any): value is GetOrCre... constant GET_OR_CREATE_CHANNEL_REQUEST_TYPE (line 7552) | const GET_OR_CREATE_CHANNEL_REQUEST_TYPE = 'GetOrCreateChannelRequest'; function isGetOrCreateChannelResponse (line 7557) | function isGetOrCreateChannelResponse(value: any): value is GetOrCreateC... function isValidGetOrCreateChannelResponse (line 7564) | function isValidGetOrCreateChannelResponse(value: any): value is GetOrCr... constant GET_OR_CREATE_CHANNEL_RESPONSE_TYPE (line 7573) | const GET_OR_CREATE_CHANNEL_RESPONSE_TYPE = 'GetOrCreateChannelResponse'; function isGetUserChannelsRequest (line 7578) | function isGetUserChannelsRequest(value: any): value is GetUserChannelsR... function isValidGetUserChannelsRequest (line 7585) | function isValidGetUserChannelsRequest(value: any): value is GetUserChan... constant GET_USER_CHANNELS_REQUEST_TYPE (line 7594) | const GET_USER_CHANNELS_REQUEST_TYPE = 'GetUserChannelsRequest'; function isGetUserChannelsResponse (line 7599) | function isGetUserChannelsResponse(value: any): value is GetUserChannels... function isValidGetUserChannelsResponse (line 7606) | function isValidGetUserChannelsResponse(value: any): value is GetUserCha... constant GET_USER_CHANNELS_RESPONSE_TYPE (line 7615) | const GET_USER_CHANNELS_RESPONSE_TYPE = 'GetUserChannelsResponse'; function isHeartbeatAcknowledgementRequest (line 7620) | function isHeartbeatAcknowledgementRequest(value: any): value is Heartbe... function isValidHeartbeatAcknowledgementRequest (line 7627) | function isValidHeartbeatAcknowledgementRequest(value: any): value is He... constant HEARTBEAT_ACKNOWLEDGEMENT_REQUEST_TYPE (line 7636) | const HEARTBEAT_ACKNOWLEDGEMENT_REQUEST_TYPE = 'HeartbeatAcknowledgement... function isHeartbeatEvent (line 7641) | function isHeartbeatEvent(value: any): value is HeartbeatEvent { function isValidHeartbeatEvent (line 7648) | function isValidHeartbeatEvent(value: any): value is HeartbeatEvent { constant HEARTBEAT_EVENT_TYPE (line 7657) | const HEARTBEAT_EVENT_TYPE = 'HeartbeatEvent'; function isIntentEvent (line 7662) | function isIntentEvent(value: any): value is IntentEvent { function isValidIntentEvent (line 7669) | function isValidIntentEvent(value: any): value is IntentEvent { constant INTENT_EVENT_TYPE (line 7678) | const INTENT_EVENT_TYPE = 'IntentEvent'; function isIntentListenerUnsubscribeRequest (line 7683) | function isIntentListenerUnsubscribeRequest(value: any): value is Intent... function isValidIntentListenerUnsubscribeRequest (line 7690) | function isValidIntentListenerUnsubscribeRequest(value: any): value is I... constant INTENT_LISTENER_UNSUBSCRIBE_REQUEST_TYPE (line 7699) | const INTENT_LISTENER_UNSUBSCRIBE_REQUEST_TYPE = 'IntentListenerUnsubscr... function isIntentListenerUnsubscribeResponse (line 7704) | function isIntentListenerUnsubscribeResponse(value: any): value is Inten... function isValidIntentListenerUnsubscribeResponse (line 7711) | function isValidIntentListenerUnsubscribeResponse(value: any): value is ... constant INTENT_LISTENER_UNSUBSCRIBE_RESPONSE_TYPE (line 7720) | const INTENT_LISTENER_UNSUBSCRIBE_RESPONSE_TYPE = 'IntentListenerUnsubsc... function isIntentResultRequest (line 7725) | function isIntentResultRequest(value: any): value is IntentResultRequest { function isValidIntentResultRequest (line 7732) | function isValidIntentResultRequest(value: any): value is IntentResultRe... constant INTENT_RESULT_REQUEST_TYPE (line 7741) | const INTENT_RESULT_REQUEST_TYPE = 'IntentResultRequest'; function isIntentResultResponse (line 7746) | function isIntentResultResponse(value: any): value is IntentResultRespon... function isValidIntentResultResponse (line 7753) | function isValidIntentResultResponse(value: any): value is IntentResultR... constant INTENT_RESULT_RESPONSE_TYPE (line 7762) | const INTENT_RESULT_RESPONSE_TYPE = 'IntentResultResponse'; function isJoinUserChannelRequest (line 7767) | function isJoinUserChannelRequest(value: any): value is JoinUserChannelR... function isValidJoinUserChannelRequest (line 7774) | function isValidJoinUserChannelRequest(value: any): value is JoinUserCha... constant JOIN_USER_CHANNEL_REQUEST_TYPE (line 7783) | const JOIN_USER_CHANNEL_REQUEST_TYPE = 'JoinUserChannelRequest'; function isJoinUserChannelResponse (line 7788) | function isJoinUserChannelResponse(value: any): value is JoinUserChannel... function isValidJoinUserChannelResponse (line 7795) | function isValidJoinUserChannelResponse(value: any): value is JoinUserCh... constant JOIN_USER_CHANNEL_RESPONSE_TYPE (line 7804) | const JOIN_USER_CHANNEL_RESPONSE_TYPE = 'JoinUserChannelResponse'; function isLeaveCurrentChannelRequest (line 7809) | function isLeaveCurrentChannelRequest(value: any): value is LeaveCurrent... function isValidLeaveCurrentChannelRequest (line 7816) | function isValidLeaveCurrentChannelRequest(value: any): value is LeaveCu... constant LEAVE_CURRENT_CHANNEL_REQUEST_TYPE (line 7825) | const LEAVE_CURRENT_CHANNEL_REQUEST_TYPE = 'LeaveCurrentChannelRequest'; function isLeaveCurrentChannelResponse (line 7830) | function isLeaveCurrentChannelResponse(value: any): value is LeaveCurren... function isValidLeaveCurrentChannelResponse (line 7837) | function isValidLeaveCurrentChannelResponse(value: any): value is LeaveC... constant LEAVE_CURRENT_CHANNEL_RESPONSE_TYPE (line 7846) | const LEAVE_CURRENT_CHANNEL_RESPONSE_TYPE = 'LeaveCurrentChannelResponse'; function isOpenRequest (line 7851) | function isOpenRequest(value: any): value is OpenRequest { function isValidOpenRequest (line 7858) | function isValidOpenRequest(value: any): value is OpenRequest { constant OPEN_REQUEST_TYPE (line 7867) | const OPEN_REQUEST_TYPE = 'OpenRequest'; function isOpenResponse (line 7872) | function isOpenResponse(value: any): value is OpenResponse { function isValidOpenResponse (line 7879) | function isValidOpenResponse(value: any): value is OpenResponse { constant OPEN_RESPONSE_TYPE (line 7888) | const OPEN_RESPONSE_TYPE = 'OpenResponse'; function isPrivateChannelAddEventListenerRequest (line 7893) | function isPrivateChannelAddEventListenerRequest(value: any): value is P... function isValidPrivateChannelAddEventListenerRequest (line 7900) | function isValidPrivateChannelAddEventListenerRequest( constant PRIVATE_CHANNEL_ADD_EVENT_LISTENER_REQUEST_TYPE (line 7911) | const PRIVATE_CHANNEL_ADD_EVENT_LISTENER_REQUEST_TYPE = 'PrivateChannelA... function isPrivateChannelAddEventListenerResponse (line 7916) | function isPrivateChannelAddEventListenerResponse(value: any): value is ... function isValidPrivateChannelAddEventListenerResponse (line 7923) | function isValidPrivateChannelAddEventListenerResponse( constant PRIVATE_CHANNEL_ADD_EVENT_LISTENER_RESPONSE_TYPE (line 7934) | const PRIVATE_CHANNEL_ADD_EVENT_LISTENER_RESPONSE_TYPE = 'PrivateChannel... function isPrivateChannelDisconnectRequest (line 7939) | function isPrivateChannelDisconnectRequest(value: any): value is Private... function isValidPrivateChannelDisconnectRequest (line 7946) | function isValidPrivateChannelDisconnectRequest(value: any): value is Pr... constant PRIVATE_CHANNEL_DISCONNECT_REQUEST_TYPE (line 7955) | const PRIVATE_CHANNEL_DISCONNECT_REQUEST_TYPE = 'PrivateChannelDisconnec... function isPrivateChannelDisconnectResponse (line 7960) | function isPrivateChannelDisconnectResponse(value: any): value is Privat... function isValidPrivateChannelDisconnectResponse (line 7967) | function isValidPrivateChannelDisconnectResponse(value: any): value is P... constant PRIVATE_CHANNEL_DISCONNECT_RESPONSE_TYPE (line 7976) | const PRIVATE_CHANNEL_DISCONNECT_RESPONSE_TYPE = 'PrivateChannelDisconne... function isPrivateChannelOnAddContextListenerEvent (line 7981) | function isPrivateChannelOnAddContextListenerEvent( function isValidPrivateChannelOnAddContextListenerEvent (line 7990) | function isValidPrivateChannelOnAddContextListenerEvent( constant PRIVATE_CHANNEL_ON_ADD_CONTEXT_LISTENER_EVENT_TYPE (line 8001) | const PRIVATE_CHANNEL_ON_ADD_CONTEXT_LISTENER_EVENT_TYPE = 'PrivateChann... function isPrivateChannelOnDisconnectEvent (line 8006) | function isPrivateChannelOnDisconnectEvent(value: any): value is Private... function isValidPrivateChannelOnDisconnectEvent (line 8013) | function isValidPrivateChannelOnDisconnectEvent(value: any): value is Pr... constant PRIVATE_CHANNEL_ON_DISCONNECT_EVENT_TYPE (line 8022) | const PRIVATE_CHANNEL_ON_DISCONNECT_EVENT_TYPE = 'PrivateChannelOnDiscon... function isPrivateChannelOnUnsubscribeEvent (line 8027) | function isPrivateChannelOnUnsubscribeEvent(value: any): value is Privat... function isValidPrivateChannelOnUnsubscribeEvent (line 8034) | function isValidPrivateChannelOnUnsubscribeEvent(value: any): value is P... constant PRIVATE_CHANNEL_ON_UNSUBSCRIBE_EVENT_TYPE (line 8043) | const PRIVATE_CHANNEL_ON_UNSUBSCRIBE_EVENT_TYPE = 'PrivateChannelOnUnsub... function isPrivateChannelUnsubscribeEventListenerRequest (line 8048) | function isPrivateChannelUnsubscribeEventListenerRequest( function isValidPrivateChannelUnsubscribeEventListenerRequest (line 8057) | function isValidPrivateChannelUnsubscribeEventListenerRequest( constant PRIVATE_CHANNEL_UNSUBSCRIBE_EVENT_LISTENER_REQUEST_TYPE (line 8068) | const PRIVATE_CHANNEL_UNSUBSCRIBE_EVENT_LISTENER_REQUEST_TYPE = 'Private... function isPrivateChannelUnsubscribeEventListenerResponse (line 8073) | function isPrivateChannelUnsubscribeEventListenerResponse( function isValidPrivateChannelUnsubscribeEventListenerResponse (line 8082) | function isValidPrivateChannelUnsubscribeEventListenerResponse( constant PRIVATE_CHANNEL_UNSUBSCRIBE_EVENT_LISTENER_RESPONSE_TYPE (line 8093) | const PRIVATE_CHANNEL_UNSUBSCRIBE_EVENT_LISTENER_RESPONSE_TYPE = function isRaiseIntentForContextRequest (line 8099) | function isRaiseIntentForContextRequest(value: any): value is RaiseInten... function isValidRaiseIntentForContextRequest (line 8106) | function isValidRaiseIntentForContextRequest(value: any): value is Raise... constant RAISE_INTENT_FOR_CONTEXT_REQUEST_TYPE (line 8115) | const RAISE_INTENT_FOR_CONTEXT_REQUEST_TYPE = 'RaiseIntentForContextRequ... function isRaiseIntentForContextResponse (line 8120) | function isRaiseIntentForContextResponse(value: any): value is RaiseInte... function isValidRaiseIntentForContextResponse (line 8127) | function isValidRaiseIntentForContextResponse(value: any): value is Rais... constant RAISE_INTENT_FOR_CONTEXT_RESPONSE_TYPE (line 8136) | const RAISE_INTENT_FOR_CONTEXT_RESPONSE_TYPE = 'RaiseIntentForContextRes... function isRaiseIntentRequest (line 8141) | function isRaiseIntentRequest(value: any): value is RaiseIntentRequest { function isValidRaiseIntentRequest (line 8148) | function isValidRaiseIntentRequest(value: any): value is RaiseIntentRequ... constant RAISE_INTENT_REQUEST_TYPE (line 8157) | const RAISE_INTENT_REQUEST_TYPE = 'RaiseIntentRequest'; function isRaiseIntentResponse (line 8162) | function isRaiseIntentResponse(value: any): value is RaiseIntentResponse { function isValidRaiseIntentResponse (line 8169) | function isValidRaiseIntentResponse(value: any): value is RaiseIntentRes... constant RAISE_INTENT_RESPONSE_TYPE (line 8178) | const RAISE_INTENT_RESPONSE_TYPE = 'RaiseIntentResponse'; function isRaiseIntentResultResponse (line 8183) | function isRaiseIntentResultResponse(value: any): value is RaiseIntentRe... function isValidRaiseIntentResultResponse (line 8190) | function isValidRaiseIntentResultResponse(value: any): value is RaiseInt... constant RAISE_INTENT_RESULT_RESPONSE_TYPE (line 8199) | const RAISE_INTENT_RESULT_RESPONSE_TYPE = 'RaiseIntentResultResponse'; FILE: packages/fdc3-schema/generated/bridging/BridgingTypes.ts type AgentErrorResponseMessage (line 79) | interface AgentErrorResponseMessage { type AgentResponseMetadata (line 95) | interface AgentResponseMetadata { type ErrorResponseMessagePayload (line 104) | interface ErrorResponseMessagePayload { type ResponseErrorDetail (line 121) | type ResponseErrorDetail = type ResponseMessageType (line 151) | type ResponseMessageType = type AgentRequestMessage (line 163) | interface AgentRequestMessage { type AgentRequestMetadata (line 179) | interface AgentRequestMetadata { type BridgeParticipantIdentifier (line 243) | interface BridgeParticipantIdentifier { type SourceIdentifier (line 305) | interface SourceIdentifier { type RequestMessageType (line 331) | type RequestMessageType = type AgentResponseMessage (line 349) | interface AgentResponseMessage { type BridgeErrorResponseMessage (line 366) | interface BridgeErrorResponseMessage { type BridgeErrorResponseMessageMeta (line 383) | interface BridgeErrorResponseMessageMeta { type DesktopAgentIdentifier (line 409) | interface DesktopAgentIdentifier { type ResponseErrorMessagePayload (line 422) | interface ResponseErrorMessagePayload { type BridgeRequestMessage (line 430) | interface BridgeRequestMessage { type BridgeRequestMetadata (line 446) | interface BridgeRequestMetadata { type BridgeResponseMessage (line 467) | interface BridgeResponseMessage { type BridgeResponseMessageMeta (line 483) | interface BridgeResponseMessageMeta { type BroadcastAgentRequest (line 497) | interface BroadcastAgentRequest { type BroadcastAgentRequestMeta (line 513) | interface BroadcastAgentRequestMeta { type SourceObject (line 563) | interface SourceObject { type BroadcastAgentRequestPayload (line 588) | interface BroadcastAgentRequestPayload { type Context (line 616) | interface Context { type BroadcastBridgeRequest (line 672) | interface BroadcastBridgeRequest { type BroadcastBridgeRequestMeta (line 688) | interface BroadcastBridgeRequestMeta { type MetaSource (line 747) | interface MetaSource { type BroadcastBridgeRequestPayload (line 772) | interface BroadcastBridgeRequestPayload { type ConnectionStepMessage (line 787) | interface ConnectionStepMessage { type ConnectionStepMetadata (line 802) | interface ConnectionStepMetadata { type ConnectionStepMessageType (line 811) | type ConnectionStepMessageType = 'hello' | 'handshake' | 'authentication... type ConnectionStep2Hello (line 820) | interface ConnectionStep2Hello { type ConnectionStep2HelloMeta (line 835) | interface ConnectionStep2HelloMeta { type ConnectionStep2HelloPayload (line 842) | interface ConnectionStep2HelloPayload { type ConnectionStep3Handshake (line 873) | interface ConnectionStep3Handshake { type ConnectionStep3HandshakeMeta (line 888) | interface ConnectionStep3HandshakeMeta { type ConnectionStep3HandshakePayload (line 896) | interface ConnectionStep3HandshakePayload { type ConnectingAgentImplementationMetadata (line 919) | interface ConnectingAgentImplementationMetadata { type OptionalFeatures (line 945) | interface OptionalFeatures { type ConnectionStep4AuthenticationFailed (line 974) | interface ConnectionStep4AuthenticationFailed { type ConnectionStep4AuthenticationFailedMeta (line 989) | interface ConnectionStep4AuthenticationFailedMeta { type ConnectionStep4AuthenticationFailedPayload (line 998) | interface ConnectionStep4AuthenticationFailedPayload { type ConnectionStep6ConnectedAgentsUpdate (line 1014) | interface ConnectionStep6ConnectedAgentsUpdate { type ConnectionStep6ConnectedAgentsUpdateMeta (line 1029) | interface ConnectionStep6ConnectedAgentsUpdateMeta { type ConnectionStep6ConnectedAgentsUpdatePayload (line 1038) | interface ConnectionStep6ConnectedAgentsUpdatePayload { type DesktopAgentImplementationMetadata (line 1064) | interface DesktopAgentImplementationMetadata { type FindInstancesAgentErrorResponse (line 1101) | interface FindInstancesAgentErrorResponse { type FindInstancesAgentErrorResponseMeta (line 1117) | interface FindInstancesAgentErrorResponseMeta { type PayloadClass (line 1126) | interface PayloadClass { type FindInstancesErrors (line 1149) | type FindInstancesErrors = type FindInstancesAgentRequest (line 1182) | interface FindInstancesAgentRequest { type FindInstancesAgentRequestMeta (line 1198) | interface FindInstancesAgentRequestMeta { type DestinationObject (line 1262) | interface DestinationObject { type FindInstancesAgentRequestPayload (line 1287) | interface FindInstancesAgentRequestPayload { type AppIdentifier (line 1308) | interface AppIdentifier { type FindInstancesAgentResponse (line 1342) | interface FindInstancesAgentResponse { type FindInstancesAgentResponsePayload (line 1362) | interface FindInstancesAgentResponsePayload { type AppMetadata (line 1378) | interface AppMetadata { type Icon (line 1444) | interface Icon { type Image (line 1463) | interface Image { type FindInstancesBridgeErrorResponse (line 1488) | interface FindInstancesBridgeErrorResponse { type FindInstancesBridgeErrorResponseMeta (line 1505) | interface FindInstancesBridgeErrorResponseMeta { type MessagePayload (line 1517) | interface MessagePayload { type FindInstancesBridgeRequest (line 1526) | interface FindInstancesBridgeRequest { type FindInstancesBridgeRequestMeta (line 1542) | interface FindInstancesBridgeRequestMeta { type MetaSourceObject (line 1613) | interface MetaSourceObject { type FindInstancesBridgeRequestPayload (line 1638) | interface FindInstancesBridgeRequestPayload { type FindInstancesBridgeResponse (line 1648) | interface FindInstancesBridgeResponse { type FindInstancesBridgeResponsePayload (line 1668) | interface FindInstancesBridgeResponsePayload { type FindIntentAgentErrorResponse (line 1678) | interface FindIntentAgentErrorResponse { type FindIntentAgentErrorResponseMeta (line 1694) | interface FindIntentAgentErrorResponseMeta { type FindIntentAgentErrorResponsePayload (line 1703) | interface FindIntentAgentErrorResponsePayload { type FindIntentAgentRequest (line 1722) | interface FindIntentAgentRequest { type FindIntentAgentRequestMeta (line 1738) | interface FindIntentAgentRequestMeta { type FindIntentAgentRequestPayload (line 1757) | interface FindIntentAgentRequestPayload { type FindIntentAgentResponse (line 1778) | interface FindIntentAgentResponse { type FindIntentAgentResponseMeta (line 1794) | interface FindIntentAgentResponseMeta { type FindIntentAgentResponsePayload (line 1803) | interface FindIntentAgentResponsePayload { type AppIntent (line 1810) | interface AppIntent { type IntentMetadata (line 1826) | interface IntentMetadata { type FindIntentBridgeErrorResponse (line 1843) | interface FindIntentBridgeErrorResponse { type FindIntentBridgeErrorResponseMeta (line 1860) | interface FindIntentBridgeErrorResponseMeta { type FindIntentBridgeErrorResponsePayload (line 1872) | interface FindIntentBridgeErrorResponsePayload { type FindIntentBridgeRequest (line 1881) | interface FindIntentBridgeRequest { type FindIntentBridgeRequestMeta (line 1897) | interface FindIntentBridgeRequestMeta { type FindIntentBridgeRequestPayload (line 1917) | interface FindIntentBridgeRequestPayload { type FindIntentBridgeResponse (line 1929) | interface FindIntentBridgeResponse { type FindIntentBridgeResponseMeta (line 1945) | interface FindIntentBridgeResponseMeta { type FindIntentBridgeResponsePayload (line 1957) | interface FindIntentBridgeResponsePayload { type FindIntentsByContextAgentErrorResponse (line 1967) | interface FindIntentsByContextAgentErrorResponse { type FindIntentsByContextAgentErrorResponseMeta (line 1983) | interface FindIntentsByContextAgentErrorResponseMeta { type FindIntentsByContextAgentErrorResponsePayload (line 1992) | interface FindIntentsByContextAgentErrorResponsePayload { type FindIntentsByContextAgentRequest (line 2012) | interface FindIntentsByContextAgentRequest { type FindIntentsByContextAgentRequestMeta (line 2028) | interface FindIntentsByContextAgentRequestMeta { type FindIntentsByContextAgentRequestPayload (line 2047) | interface FindIntentsByContextAgentRequestPayload { type FindIntentsByContextAgentResponse (line 2067) | interface FindIntentsByContextAgentResponse { type FindIntentsByContextAgentResponseMeta (line 2083) | interface FindIntentsByContextAgentResponseMeta { type FindIntentsByContextAgentResponsePayload (line 2092) | interface FindIntentsByContextAgentResponsePayload { type FindIntentsByContextBridgeErrorResponse (line 2102) | interface FindIntentsByContextBridgeErrorResponse { type FindIntentsByContextBridgeErrorResponseMeta (line 2119) | interface FindIntentsByContextBridgeErrorResponseMeta { type FindIntentsByContextBridgeErrorResponsePayload (line 2131) | interface FindIntentsByContextBridgeErrorResponsePayload { type FindIntentsByContextBridgeRequest (line 2141) | interface FindIntentsByContextBridgeRequest { type FindIntentsByContextBridgeRequestMeta (line 2157) | interface FindIntentsByContextBridgeRequestMeta { type FindIntentsByContextBridgeRequestPayload (line 2177) | interface FindIntentsByContextBridgeRequestPayload { type FindIntentsByContextBridgeResponse (line 2188) | interface FindIntentsByContextBridgeResponse { type FindIntentsByContextBridgeResponseMeta (line 2204) | interface FindIntentsByContextBridgeResponseMeta { type FindIntentsByContextBridgeResponsePayload (line 2216) | interface FindIntentsByContextBridgeResponsePayload { type GetAppMetadataAgentErrorResponse (line 2226) | interface GetAppMetadataAgentErrorResponse { type GetAppMetadataAgentErrorResponseMeta (line 2242) | interface GetAppMetadataAgentErrorResponseMeta { type GetAppMetadataAgentErrorResponsePayload (line 2251) | interface GetAppMetadataAgentErrorResponsePayload { type GetAppMetadataAgentRequest (line 2270) | interface GetAppMetadataAgentRequest { type GetAppMetadataAgentRequestMeta (line 2286) | interface GetAppMetadataAgentRequestMeta { type GetAppMetadataAgentRequestPayload (line 2305) | interface GetAppMetadataAgentRequestPayload { type AppObject (line 2346) | interface AppObject { type GetAppMetadataAgentResponse (line 2383) | interface GetAppMetadataAgentResponse { type GetAppMetadataAgentResponseMeta (line 2399) | interface GetAppMetadataAgentResponseMeta { type GetAppMetadataAgentResponsePayload (line 2408) | interface GetAppMetadataAgentResponsePayload { type GetAppMetadataBridgeErrorResponse (line 2418) | interface GetAppMetadataBridgeErrorResponse { type GetAppMetadataBridgeErrorResponseMeta (line 2435) | interface GetAppMetadataBridgeErrorResponseMeta { type GetAppMetadataBridgeErrorResponsePayload (line 2447) | interface GetAppMetadataBridgeErrorResponsePayload { type GetAppMetadataBridgeRequest (line 2456) | interface GetAppMetadataBridgeRequest { type GetAppMetadataBridgeRequestMeta (line 2472) | interface GetAppMetadataBridgeRequestMeta { type GetAppMetadataBridgeRequestPayload (line 2492) | interface GetAppMetadataBridgeRequestPayload { type GetAppMetadataBridgeResponse (line 2502) | interface GetAppMetadataBridgeResponse { type GetAppMetadataBridgeResponseMeta (line 2518) | interface GetAppMetadataBridgeResponseMeta { type GetAppMetadataBridgeResponsePayload (line 2530) | interface GetAppMetadataBridgeResponsePayload { type OpenAgentErrorResponse (line 2540) | interface OpenAgentErrorResponse { type OpenAgentErrorResponseMeta (line 2556) | interface OpenAgentErrorResponseMeta { type OpenAgentErrorResponsePayload (line 2565) | interface OpenAgentErrorResponsePayload { type OpenErrorResponsePayload (line 2581) | type OpenErrorResponsePayload = type OpenAgentRequest (line 2610) | interface OpenAgentRequest { type OpenAgentRequestMeta (line 2626) | interface OpenAgentRequestMeta { type OpenAgentRequestPayload (line 2645) | interface OpenAgentRequestPayload { type AppToOpen (line 2689) | interface AppToOpen { type OpenAgentResponse (line 2726) | interface OpenAgentResponse { type OpenAgentResponseMeta (line 2742) | interface OpenAgentResponseMeta { type OpenAgentResponsePayload (line 2751) | interface OpenAgentResponsePayload { type OpenBridgeErrorResponse (line 2761) | interface OpenBridgeErrorResponse { type OpenBridgeErrorResponseMeta (line 2778) | interface OpenBridgeErrorResponseMeta { type OpenBridgeErrorResponsePayload (line 2790) | interface OpenBridgeErrorResponsePayload { type OpenBridgeRequest (line 2799) | interface OpenBridgeRequest { type OpenBridgeRequestMeta (line 2815) | interface OpenBridgeRequestMeta { type OpenBridgeRequestPayload (line 2835) | interface OpenBridgeRequestPayload { type OpenBridgeResponse (line 2849) | interface OpenBridgeResponse { type OpenBridgeResponseMeta (line 2865) | interface OpenBridgeResponseMeta { type OpenBridgeResponsePayload (line 2877) | interface OpenBridgeResponsePayload { type PrivateChannelBroadcastAgentRequest (line 2886) | interface PrivateChannelBroadcastAgentRequest { type PrivateChannelBroadcastAgentRequestMeta (line 2902) | interface PrivateChannelBroadcastAgentRequestMeta { type MetaDestination (line 2966) | interface MetaDestination { type PrivateChannelBroadcastAgentRequestPayload (line 2991) | interface PrivateChannelBroadcastAgentRequestPayload { type PrivateChannelBroadcastBridgeRequest (line 3017) | interface PrivateChannelBroadcastBridgeRequest { type PrivateChannelBroadcastBridgeRequestMeta (line 3033) | interface PrivateChannelBroadcastBridgeRequestMeta { type PrivateChannelBroadcastBridgeRequestPayload (line 3053) | interface PrivateChannelBroadcastBridgeRequestPayload { type PrivateChannelEventListenerAddedAgentRequest (line 3069) | interface PrivateChannelEventListenerAddedAgentRequest { type PrivateChannelEventListenerAddedAgentRequestMeta (line 3085) | interface PrivateChannelEventListenerAddedAgentRequestMeta { type PrivateChannelEventListenerAddedAgentRequestPayload (line 3104) | interface PrivateChannelEventListenerAddedAgentRequestPayload { type PrivateChannelEventType (line 3115) | type PrivateChannelEventType = 'addContextListener' | 'unsubscribe' | 'd... type PrivateChannelEventListenerAddedBridgeRequest (line 3132) | interface PrivateChannelEventListenerAddedBridgeRequest { type PrivateChannelEventListenerAddedBridgeRequestMeta (line 3148) | interface PrivateChannelEventListenerAddedBridgeRequestMeta { type PrivateChannelEventListenerAddedBridgeRequestPayload (line 3168) | interface PrivateChannelEventListenerAddedBridgeRequestPayload { type PrivateChannelEventListenerRemovedAgentRequest (line 3181) | interface PrivateChannelEventListenerRemovedAgentRequest { type PrivateChannelEventListenerRemovedAgentRequestMeta (line 3197) | interface PrivateChannelEventListenerRemovedAgentRequestMeta { type PrivateChannelEventListenerRemovedAgentRequestPayload (line 3216) | interface PrivateChannelEventListenerRemovedAgentRequestPayload { type PrivateChannelEventListenerRemovedBridgeRequest (line 3239) | interface PrivateChannelEventListenerRemovedBridgeRequest { type PrivateChannelEventListenerRemovedBridgeRequestMeta (line 3255) | interface PrivateChannelEventListenerRemovedBridgeRequestMeta { type PrivateChannelEventListenerRemovedBridgeRequestPayload (line 3275) | interface PrivateChannelEventListenerRemovedBridgeRequestPayload { type PrivateChannelOnAddContextListenerAgentRequest (line 3288) | interface PrivateChannelOnAddContextListenerAgentRequest { type PrivateChannelOnAddContextListenerAgentRequestMeta (line 3304) | interface PrivateChannelOnAddContextListenerAgentRequestMeta { type PrivateChannelOnAddContextListenerAgentRequestPayload (line 3323) | interface PrivateChannelOnAddContextListenerAgentRequestPayload { type PrivateChannelOnAddContextListenerBridgeRequest (line 3349) | interface PrivateChannelOnAddContextListenerBridgeRequest { type PrivateChannelOnAddContextListenerBridgeRequestMeta (line 3365) | interface PrivateChannelOnAddContextListenerBridgeRequestMeta { type PrivateChannelOnAddContextListenerBridgeRequestPayload (line 3385) | interface PrivateChannelOnAddContextListenerBridgeRequestPayload { type PrivateChannelOnDisconnectAgentRequest (line 3401) | interface PrivateChannelOnDisconnectAgentRequest { type PrivateChannelOnDisconnectAgentRequestMeta (line 3417) | interface PrivateChannelOnDisconnectAgentRequestMeta { type PrivateChannelOnDisconnectAgentRequestPayload (line 3436) | interface PrivateChannelOnDisconnectAgentRequestPayload { type PrivateChannelOnDisconnectBridgeRequest (line 3458) | interface PrivateChannelOnDisconnectBridgeRequest { type PrivateChannelOnDisconnectBridgeRequestMeta (line 3474) | interface PrivateChannelOnDisconnectBridgeRequestMeta { type PrivateChannelOnDisconnectBridgeRequestPayload (line 3494) | interface PrivateChannelOnDisconnectBridgeRequestPayload { type PrivateChannelOnUnsubscribeAgentRequest (line 3506) | interface PrivateChannelOnUnsubscribeAgentRequest { type PrivateChannelOnUnsubscribeAgentRequestMeta (line 3522) | interface PrivateChannelOnUnsubscribeAgentRequestMeta { type PrivateChannelOnUnsubscribeAgentRequestPayload (line 3541) | interface PrivateChannelOnUnsubscribeAgentRequestPayload { type PrivateChannelOnUnsubscribeBridgeRequest (line 3568) | interface PrivateChannelOnUnsubscribeBridgeRequest { type ERequestMetadata (line 3584) | interface ERequestMetadata { type PrivateChannelOnUnsubscribeBridgeRequestPayload (line 3604) | interface PrivateChannelOnUnsubscribeBridgeRequestPayload { type RaiseIntentAgentErrorResponse (line 3622) | interface RaiseIntentAgentErrorResponse { type RaiseIntentAgentErrorResponseMeta (line 3638) | interface RaiseIntentAgentErrorResponseMeta { type RaiseIntentAgentErrorResponsePayload (line 3649) | interface RaiseIntentAgentErrorResponsePayload { type RaiseIntentAgentRequest (line 3671) | interface RaiseIntentAgentRequest { type RaiseIntentAgentRequestMeta (line 3687) | interface RaiseIntentAgentRequestMeta { type RaiseIntentAgentRequestPayload (line 3706) | interface RaiseIntentAgentRequestPayload { type AppDestinationIdentifier (line 3749) | interface AppDestinationIdentifier { type RaiseIntentAgentResponse (line 3786) | interface RaiseIntentAgentResponse { type RaiseIntentAgentResponseMeta (line 3802) | interface RaiseIntentAgentResponseMeta { type RaiseIntentAgentResponsePayload (line 3811) | interface RaiseIntentAgentResponsePayload { type IntentResolution (line 3846) | interface IntentResolution { type RaiseIntentBridgeErrorResponse (line 3866) | interface RaiseIntentBridgeErrorResponse { type RaiseIntentBridgeErrorResponseMeta (line 3883) | interface RaiseIntentBridgeErrorResponseMeta { type RaiseIntentBridgeErrorResponsePayload (line 3897) | interface RaiseIntentBridgeErrorResponsePayload { type RaiseIntentBridgeRequest (line 3909) | interface RaiseIntentBridgeRequest { type RaiseIntentBridgeRequestMeta (line 3925) | interface RaiseIntentBridgeRequestMeta { type RaiseIntentBridgeRequestPayload (line 3945) | interface RaiseIntentBridgeRequestPayload { type RaiseIntentBridgeResponse (line 3957) | interface RaiseIntentBridgeResponse { type RaiseIntentBridgeResponseMeta (line 3973) | interface RaiseIntentBridgeResponseMeta { type RaiseIntentBridgeResponsePayload (line 3985) | interface RaiseIntentBridgeResponsePayload { type RaiseIntentResultAgentErrorResponse (line 3999) | interface RaiseIntentResultAgentErrorResponse { type RaiseIntentResultAgentErrorResponseMeta (line 4015) | interface RaiseIntentResultAgentErrorResponseMeta { type RaiseIntentResultAgentErrorResponsePayload (line 4024) | interface RaiseIntentResultAgentErrorResponsePayload { type RaiseIntentResultErrorMessage (line 4040) | type RaiseIntentResultErrorMessage = type RaiseIntentResultAgentResponse (line 4064) | interface RaiseIntentResultAgentResponse { type RaiseIntentResultAgentResponseMeta (line 4080) | interface RaiseIntentResultAgentResponseMeta { type RaiseIntentResultAgentResponsePayload (line 4089) | interface RaiseIntentResultAgentResponsePayload { type IntentResult (line 4093) | interface IntentResult { type Channel (line 4112) | interface Channel { type DisplayMetadata (line 4141) | interface DisplayMetadata { type Type (line 4161) | type Type = 'app' | 'private' | 'user'; type RaiseIntentResultBridgeErrorResponse (line 4170) | interface RaiseIntentResultBridgeErrorResponse { type RaiseIntentResultBridgeErrorResponseMeta (line 4187) | interface RaiseIntentResultBridgeErrorResponseMeta { type RaiseIntentResultBridgeErrorResponsePayload (line 4199) | interface RaiseIntentResultBridgeErrorResponsePayload { type RaiseIntentResultBridgeResponse (line 4209) | interface RaiseIntentResultBridgeResponse { type RaiseIntentResultBridgeResponseMeta (line 4225) | interface RaiseIntentResultBridgeResponseMeta { type RaiseIntentResultBridgeResponsePayload (line 4237) | interface RaiseIntentResultBridgeResponsePayload { class Convert (line 4243) | class Convert { method toAgentErrorResponseMessage (line 4244) | public static toAgentErrorResponseMessage(json: string): AgentErrorRes... method agentErrorResponseMessageToJson (line 4248) | public static agentErrorResponseMessageToJson(value: AgentErrorRespons... method toAgentRequestMessage (line 4252) | public static toAgentRequestMessage(json: string): AgentRequestMessage { method agentRequestMessageToJson (line 4256) | public static agentRequestMessageToJson(value: AgentRequestMessage): s... method toAgentResponseMessage (line 4260) | public static toAgentResponseMessage(json: string): AgentResponseMessa... method agentResponseMessageToJson (line 4264) | public static agentResponseMessageToJson(value: AgentResponseMessage):... method toBridgeErrorResponseMessage (line 4268) | public static toBridgeErrorResponseMessage(json: string): BridgeErrorR... method bridgeErrorResponseMessageToJson (line 4272) | public static bridgeErrorResponseMessageToJson(value: BridgeErrorRespo... method toBridgeRequestMessage (line 4276) | public static toBridgeRequestMessage(json: string): BridgeRequestMessa... method bridgeRequestMessageToJson (line 4280) | public static bridgeRequestMessageToJson(value: BridgeRequestMessage):... method toBridgeResponseMessage (line 4284) | public static toBridgeResponseMessage(json: string): BridgeResponseMes... method bridgeResponseMessageToJson (line 4288) | public static bridgeResponseMessageToJson(value: BridgeResponseMessage... method toBroadcastAgentRequest (line 4292) | public static toBroadcastAgentRequest(json: string): BroadcastAgentReq... method broadcastAgentRequestToJson (line 4296) | public static broadcastAgentRequestToJson(value: BroadcastAgentRequest... method toBroadcastBridgeRequest (line 4300) | public static toBroadcastBridgeRequest(json: string): BroadcastBridgeR... method broadcastBridgeRequestToJson (line 4304) | public static broadcastBridgeRequestToJson(value: BroadcastBridgeReque... method toBridgeCommonDefinitions (line 4308) | public static toBridgeCommonDefinitions(json: string): { [key: string]... method bridgeCommonDefinitionsToJson (line 4312) | public static bridgeCommonDefinitionsToJson(value: { [key: string]: an... method toConnectionStepMessage (line 4316) | public static toConnectionStepMessage(json: string): ConnectionStepMes... method connectionStepMessageToJson (line 4320) | public static connectionStepMessageToJson(value: ConnectionStepMessage... method toConnectionStep2Hello (line 4324) | public static toConnectionStep2Hello(json: string): ConnectionStep2Hel... method connectionStep2HelloToJson (line 4328) | public static connectionStep2HelloToJson(value: ConnectionStep2Hello):... method toConnectionStep3Handshake (line 4332) | public static toConnectionStep3Handshake(json: string): ConnectionStep... method connectionStep3HandshakeToJson (line 4336) | public static connectionStep3HandshakeToJson(value: ConnectionStep3Han... method toConnectionStep4AuthenticationFailed (line 4340) | public static toConnectionStep4AuthenticationFailed(json: string): Con... method connectionStep4AuthenticationFailedToJson (line 4344) | public static connectionStep4AuthenticationFailedToJson(value: Connect... method toConnectionStep6ConnectedAgentsUpdate (line 4348) | public static toConnectionStep6ConnectedAgentsUpdate(json: string): Co... method connectionStep6ConnectedAgentsUpdateToJson (line 4352) | public static connectionStep6ConnectedAgentsUpdateToJson(value: Connec... method toFindInstancesAgentErrorResponse (line 4356) | public static toFindInstancesAgentErrorResponse(json: string): FindIns... method findInstancesAgentErrorResponseToJson (line 4360) | public static findInstancesAgentErrorResponseToJson(value: FindInstanc... method toFindInstancesAgentRequest (line 4364) | public static toFindInstancesAgentRequest(json: string): FindInstances... method findInstancesAgentRequestToJson (line 4368) | public static findInstancesAgentRequestToJson(value: FindInstancesAgen... method toFindInstancesAgentResponse (line 4372) | public static toFindInstancesAgentResponse(json: string): FindInstance... method findInstancesAgentResponseToJson (line 4376) | public static findInstancesAgentResponseToJson(value: FindInstancesAge... method toFindInstancesBridgeErrorResponse (line 4380) | public static toFindInstancesBridgeErrorResponse(json: string): FindIn... method findInstancesBridgeErrorResponseToJson (line 4384) | public static findInstancesBridgeErrorResponseToJson(value: FindInstan... method toFindInstancesBridgeRequest (line 4388) | public static toFindInstancesBridgeRequest(json: string): FindInstance... method findInstancesBridgeRequestToJson (line 4392) | public static findInstancesBridgeRequestToJson(value: FindInstancesBri... method toFindInstancesBridgeResponse (line 4396) | public static toFindInstancesBridgeResponse(json: string): FindInstanc... method findInstancesBridgeResponseToJson (line 4400) | public static findInstancesBridgeResponseToJson(value: FindInstancesBr... method toFindIntentAgentErrorResponse (line 4404) | public static toFindIntentAgentErrorResponse(json: string): FindIntent... method findIntentAgentErrorResponseToJson (line 4408) | public static findIntentAgentErrorResponseToJson(value: FindIntentAgen... method toFindIntentAgentRequest (line 4412) | public static toFindIntentAgentRequest(json: string): FindIntentAgentR... method findIntentAgentRequestToJson (line 4416) | public static findIntentAgentRequestToJson(value: FindIntentAgentReque... method toFindIntentAgentResponse (line 4420) | public static toFindIntentAgentResponse(json: string): FindIntentAgent... method findIntentAgentResponseToJson (line 4424) | public static findIntentAgentResponseToJson(value: FindIntentAgentResp... method toFindIntentBridgeErrorResponse (line 4428) | public static toFindIntentBridgeErrorResponse(json: string): FindInten... method findIntentBridgeErrorResponseToJson (line 4432) | public static findIntentBridgeErrorResponseToJson(value: FindIntentBri... method toFindIntentBridgeRequest (line 4436) | public static toFindIntentBridgeRequest(json: string): FindIntentBridg... method findIntentBridgeRequestToJson (line 4440) | public static findIntentBridgeRequestToJson(value: FindIntentBridgeReq... method toFindIntentBridgeResponse (line 4444) | public static toFindIntentBridgeResponse(json: string): FindIntentBrid... method findIntentBridgeResponseToJson (line 4448) | public static findIntentBridgeResponseToJson(value: FindIntentBridgeRe... method toFindIntentsByContextAgentErrorResponse (line 4452) | public static toFindIntentsByContextAgentErrorResponse(json: string): ... method findIntentsByContextAgentErrorResponseToJson (line 4456) | public static findIntentsByContextAgentErrorResponseToJson(value: Find... method toFindIntentsByContextAgentRequest (line 4460) | public static toFindIntentsByContextAgentRequest(json: string): FindIn... method findIntentsByContextAgentRequestToJson (line 4464) | public static findIntentsByContextAgentRequestToJson(value: FindIntent... method toFindIntentsByContextAgentResponse (line 4468) | public static toFindIntentsByContextAgentResponse(json: string): FindI... method findIntentsByContextAgentResponseToJson (line 4472) | public static findIntentsByContextAgentResponseToJson(value: FindInten... method toFindIntentsByContextBridgeErrorResponse (line 4476) | public static toFindIntentsByContextBridgeErrorResponse(json: string):... method findIntentsByContextBridgeErrorResponseToJson (line 4480) | public static findIntentsByContextBridgeErrorResponseToJson(value: Fin... method toFindIntentsByContextBridgeRequest (line 4484) | public static toFindIntentsByContextBridgeRequest(json: string): FindI... method findIntentsByContextBridgeRequestToJson (line 4488) | public static findIntentsByContextBridgeRequestToJson(value: FindInten... method toFindIntentsByContextBridgeResponse (line 4492) | public static toFindIntentsByContextBridgeResponse(json: string): Find... method findIntentsByContextBridgeResponseToJson (line 4496) | public static findIntentsByContextBridgeResponseToJson(value: FindInte... method toGetAppMetadataAgentErrorResponse (line 4500) | public static toGetAppMetadataAgentErrorResponse(json: string): GetApp... method getAppMetadataAgentErrorResponseToJson (line 4504) | public static getAppMetadataAgentErrorResponseToJson(value: GetAppMeta... method toGetAppMetadataAgentRequest (line 4508) | public static toGetAppMetadataAgentRequest(json: string): GetAppMetada... method getAppMetadataAgentRequestToJson (line 4512) | public static getAppMetadataAgentRequestToJson(value: GetAppMetadataAg... method toGetAppMetadataAgentResponse (line 4516) | public static toGetAppMetadataAgentResponse(json: string): GetAppMetad... method getAppMetadataAgentResponseToJson (line 4520) | public static getAppMetadataAgentResponseToJson(value: GetAppMetadataA... method toGetAppMetadataBridgeErrorResponse (line 4524) | public static toGetAppMetadataBridgeErrorResponse(json: string): GetAp... method getAppMetadataBridgeErrorResponseToJson (line 4528) | public static getAppMetadataBridgeErrorResponseToJson(value: GetAppMet... method toGetAppMetadataBridgeRequest (line 4532) | public static toGetAppMetadataBridgeRequest(json: string): GetAppMetad... method getAppMetadataBridgeRequestToJson (line 4536) | public static getAppMetadataBridgeRequestToJson(value: GetAppMetadataB... method toGetAppMetadataBridgeResponse (line 4540) | public static toGetAppMetadataBridgeResponse(json: string): GetAppMeta... method getAppMetadataBridgeResponseToJson (line 4544) | public static getAppMetadataBridgeResponseToJson(value: GetAppMetadata... method toOpenAgentErrorResponse (line 4548) | public static toOpenAgentErrorResponse(json: string): OpenAgentErrorRe... method openAgentErrorResponseToJson (line 4552) | public static openAgentErrorResponseToJson(value: OpenAgentErrorRespon... method toOpenAgentRequest (line 4556) | public static toOpenAgentRequest(json: string): OpenAgentRequest { method openAgentRequestToJson (line 4560) | public static openAgentRequestToJson(value: OpenAgentRequest): string { method toOpenAgentResponse (line 4564) | public static toOpenAgentResponse(json: string): OpenAgentResponse { method openAgentResponseToJson (line 4568) | public static openAgentResponseToJson(value: OpenAgentResponse): string { method toOpenBridgeErrorResponse (line 4572) | public static toOpenBridgeErrorResponse(json: string): OpenBridgeError... method openBridgeErrorResponseToJson (line 4576) | public static openBridgeErrorResponseToJson(value: OpenBridgeErrorResp... method toOpenBridgeRequest (line 4580) | public static toOpenBridgeRequest(json: string): OpenBridgeRequest { method openBridgeRequestToJson (line 4584) | public static openBridgeRequestToJson(value: OpenBridgeRequest): string { method toOpenBridgeResponse (line 4588) | public static toOpenBridgeResponse(json: string): OpenBridgeResponse { method openBridgeResponseToJson (line 4592) | public static openBridgeResponseToJson(value: OpenBridgeResponse): str... method toPrivateChannelBroadcastAgentRequest (line 4596) | public static toPrivateChannelBroadcastAgentRequest(json: string): Pri... method privateChannelBroadcastAgentRequestToJson (line 4600) | public static privateChannelBroadcastAgentRequestToJson(value: Private... method toPrivateChannelBroadcastBridgeRequest (line 4604) | public static toPrivateChannelBroadcastBridgeRequest(json: string): Pr... method privateChannelBroadcastBridgeRequestToJson (line 4608) | public static privateChannelBroadcastBridgeRequestToJson(value: Privat... method toPrivateChannelEventListenerAddedAgentRequest (line 4612) | public static toPrivateChannelEventListenerAddedAgentRequest( method privateChannelEventListenerAddedAgentRequestToJson (line 4618) | public static privateChannelEventListenerAddedAgentRequestToJson( method toPrivateChannelEventListenerAddedBridgeRequest (line 4624) | public static toPrivateChannelEventListenerAddedBridgeRequest( method privateChannelEventListenerAddedBridgeRequestToJson (line 4630) | public static privateChannelEventListenerAddedBridgeRequestToJson( method toPrivateChannelEventListenerRemovedAgentRequest (line 4636) | public static toPrivateChannelEventListenerRemovedAgentRequest( method privateChannelEventListenerRemovedAgentRequestToJson (line 4642) | public static privateChannelEventListenerRemovedAgentRequestToJson( method toPrivateChannelEventListenerRemovedBridgeRequest (line 4648) | public static toPrivateChannelEventListenerRemovedBridgeRequest( method privateChannelEventListenerRemovedBridgeRequestToJson (line 4654) | public static privateChannelEventListenerRemovedBridgeRequestToJson( method toPrivateChannelOnAddContextListenerAgentRequest (line 4660) | public static toPrivateChannelOnAddContextListenerAgentRequest( method privateChannelOnAddContextListenerAgentRequestToJson (line 4666) | public static privateChannelOnAddContextListenerAgentRequestToJson( method toPrivateChannelOnAddContextListenerBridgeRequest (line 4672) | public static toPrivateChannelOnAddContextListenerBridgeRequest( method privateChannelOnAddContextListenerBridgeRequestToJson (line 4678) | public static privateChannelOnAddContextListenerBridgeRequestToJson( method toPrivateChannelOnDisconnectAgentRequest (line 4684) | public static toPrivateChannelOnDisconnectAgentRequest(json: string): ... method privateChannelOnDisconnectAgentRequestToJson (line 4688) | public static privateChannelOnDisconnectAgentRequestToJson(value: Priv... method toPrivateChannelOnDisconnectBridgeRequest (line 4692) | public static toPrivateChannelOnDisconnectBridgeRequest(json: string):... method privateChannelOnDisconnectBridgeRequestToJson (line 4696) | public static privateChannelOnDisconnectBridgeRequestToJson(value: Pri... method toPrivateChannelOnUnsubscribeAgentRequest (line 4700) | public static toPrivateChannelOnUnsubscribeAgentRequest(json: string):... method privateChannelOnUnsubscribeAgentRequestToJson (line 4704) | public static privateChannelOnUnsubscribeAgentRequestToJson(value: Pri... method toPrivateChannelOnUnsubscribeBridgeRequest (line 4708) | public static toPrivateChannelOnUnsubscribeBridgeRequest(json: string)... method privateChannelOnUnsubscribeBridgeRequestToJson (line 4712) | public static privateChannelOnUnsubscribeBridgeRequestToJson( method toRaiseIntentAgentErrorResponse (line 4718) | public static toRaiseIntentAgentErrorResponse(json: string): RaiseInte... method raiseIntentAgentErrorResponseToJson (line 4722) | public static raiseIntentAgentErrorResponseToJson(value: RaiseIntentAg... method toRaiseIntentAgentRequest (line 4726) | public static toRaiseIntentAgentRequest(json: string): RaiseIntentAgen... method raiseIntentAgentRequestToJson (line 4730) | public static raiseIntentAgentRequestToJson(value: RaiseIntentAgentReq... method toRaiseIntentAgentResponse (line 4734) | public static toRaiseIntentAgentResponse(json: string): RaiseIntentAge... method raiseIntentAgentResponseToJson (line 4738) | public static raiseIntentAgentResponseToJson(value: RaiseIntentAgentRe... method toRaiseIntentBridgeErrorResponse (line 4742) | public static toRaiseIntentBridgeErrorResponse(json: string): RaiseInt... method raiseIntentBridgeErrorResponseToJson (line 4746) | public static raiseIntentBridgeErrorResponseToJson(value: RaiseIntentB... method toRaiseIntentBridgeRequest (line 4750) | public static toRaiseIntentBridgeRequest(json: string): RaiseIntentBri... method raiseIntentBridgeRequestToJson (line 4754) | public static raiseIntentBridgeRequestToJson(value: RaiseIntentBridgeR... method toRaiseIntentBridgeResponse (line 4758) | public static toRaiseIntentBridgeResponse(json: string): RaiseIntentBr... method raiseIntentBridgeResponseToJson (line 4762) | public static raiseIntentBridgeResponseToJson(value: RaiseIntentBridge... method toRaiseIntentResultAgentErrorResponse (line 4766) | public static toRaiseIntentResultAgentErrorResponse(json: string): Rai... method raiseIntentResultAgentErrorResponseToJson (line 4770) | public static raiseIntentResultAgentErrorResponseToJson(value: RaiseIn... method toRaiseIntentResultAgentResponse (line 4774) | public static toRaiseIntentResultAgentResponse(json: string): RaiseInt... method raiseIntentResultAgentResponseToJson (line 4778) | public static raiseIntentResultAgentResponseToJson(value: RaiseIntentR... method toRaiseIntentResultBridgeErrorResponse (line 4782) | public static toRaiseIntentResultBridgeErrorResponse(json: string): Ra... method raiseIntentResultBridgeErrorResponseToJson (line 4786) | public static raiseIntentResultBridgeErrorResponseToJson(value: RaiseI... method toRaiseIntentResultBridgeResponse (line 4790) | public static toRaiseIntentResultBridgeResponse(json: string): RaiseIn... method raiseIntentResultBridgeResponseToJson (line 4794) | public static raiseIntentResultBridgeResponseToJson(value: RaiseIntent... function invalidValue (line 4799) | function invalidValue(typ: any, val: any, key: any, parent: any = ''): n... function prettyTypeName (line 4806) | function prettyTypeName(typ: any): string { function jsonToJSProps (line 4824) | function jsonToJSProps(typ: any): any { function jsToJSONProps (line 4833) | function jsToJSONProps(typ: any): any { function transform (line 4842) | function transform(val: any, typ: any, getProps: any, key: any = '', par... function cast (line 4933) | function cast(val: any, typ: any): T { function uncast (line 4937) | function uncast(val: T, typ: any): any { function l (line 4941) | function l(typ: any) { function a (line 4945) | function a(typ: any) { function u (line 4949) | function u(...typs: any[]) { function o (line 4953) | function o(props: any[], additional: any) { function m (line 4957) | function m(additional: any) { function r (line 4961) | function r(name: string) { FILE: packages/fdc3-standard/src/api/AppIdentifier.ts type AppIdentifier (line 13) | interface AppIdentifier { FILE: packages/fdc3-standard/src/api/AppIntent.ts type AppIntent (line 12) | interface AppIntent { FILE: packages/fdc3-standard/src/api/AppMetadata.ts type AppMetadata (line 17) | interface AppMetadata extends AppIdentifier { FILE: packages/fdc3-standard/src/api/Channel.ts type Channel (line 26) | interface Channel { FILE: packages/fdc3-standard/src/api/ContextMetadata.ts type ContextMetadata (line 14) | interface ContextMetadata { FILE: packages/fdc3-standard/src/api/DesktopAgent.ts type DesktopAgent (line 30) | interface DesktopAgent { FILE: packages/fdc3-standard/src/api/DesktopAgentIdentifier.ts type DesktopAgentIdentifier (line 14) | interface DesktopAgentIdentifier { FILE: packages/fdc3-standard/src/api/DisplayMetadata.ts type DisplayMetadata (line 11) | interface DisplayMetadata { FILE: packages/fdc3-standard/src/api/Errors.ts type AgentError (line 9) | enum AgentError { type OpenError (line 35) | enum OpenError { type ResolveError (line 62) | enum ResolveError { type ResultError (line 100) | enum ResultError { type ChannelError (line 111) | enum ChannelError { type BridgingError (line 131) | enum BridgingError { FILE: packages/fdc3-standard/src/api/Events.ts type ApiEvent (line 11) | interface ApiEvent { type EventHandler (line 23) | type EventHandler = (event: ApiEvent) => void; type FDC3EventTypes (line 28) | type FDC3EventTypes = 'userChannelChanged' | 'contextCleared'; type FDC3Event (line 34) | interface FDC3Event extends ApiEvent { type FDC3ChannelChangedEvent (line 42) | interface FDC3ChannelChangedEvent extends FDC3Event { type FDC3ContextClearedEvent (line 52) | interface FDC3ContextClearedEvent extends FDC3Event { type PrivateChannelEventTypes (line 62) | type PrivateChannelEventTypes = 'addContextListener' | 'unsubscribe' | '... type PrivateChannelEvent (line 68) | interface PrivateChannelEvent extends ApiEvent { type PrivateChannelAddContextListenerEvent (line 82) | interface PrivateChannelAddContextListenerEvent extends PrivateChannelEv... type PrivateChannelUnsubscribeEvent (line 97) | interface PrivateChannelUnsubscribeEvent extends PrivateChannelEvent { type PrivateChannelDisconnectEvent (line 110) | interface PrivateChannelDisconnectEvent extends PrivateChannelEvent { FILE: packages/fdc3-standard/src/api/GetAgent.ts type GetAgentType (line 39) | type GetAgentType = (params?: GetAgentParams) => Promise; type GetAgentParams (line 89) | type GetAgentParams = { type GetAgentLogLevels (line 113) | type GetAgentLogLevels = { type LogLevel (line 121) | enum LogLevel { type SessionStorageFormat (line 132) | type SessionStorageFormat = { type DesktopAgentDetails (line 142) | type DesktopAgentDetails = { type WebDesktopAgentType (line 185) | enum WebDesktopAgentType { constant DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX (line 206) | const DESKTOP_AGENT_SESSION_STORAGE_KEY_PREFIX = 'fdc3-desktop-agent-det... FILE: packages/fdc3-standard/src/api/Icon.ts type Icon (line 6) | interface Icon { FILE: packages/fdc3-standard/src/api/Image.ts type Image (line 6) | interface Image { FILE: packages/fdc3-standard/src/api/ImplementationMetadata.ts type ImplementationMetadata (line 11) | interface ImplementationMetadata { FILE: packages/fdc3-standard/src/api/IntentMetadata.ts type IntentMetadata (line 11) | interface IntentMetadata { FILE: packages/fdc3-standard/src/api/IntentResolution.ts type IntentResolution (line 36) | interface IntentResolution { FILE: packages/fdc3-standard/src/api/Listener.ts type Listener (line 6) | interface Listener { FILE: packages/fdc3-standard/src/api/Methods.ts function rejectIfNoGlobal (line 35) | function rejectIfNoGlobal(f: (fdc3: DesktopAgent) => Promise) { function isString (line 39) | function isString(app: AppIdentifier | string | undefined): app is string { function open (line 47) | function open(app: AppIdentifier | string, context?: Context): Promise { function raiseIntent (line 83) | function raiseIntent(intent: Intent, context: Context, app?: AppIdentifi... function raiseIntentForContext (line 95) | function raiseIntentForContext(context: Context, app?: AppIdentifier | s... function addIntentListener (line 107) | function addIntentListener(intent: Intent, handler: IntentHandler): Prom... function addContextListener (line 115) | function addContextListener( function addEventListener (line 135) | function addEventListener(eventType: FDC3EventTypes, handler: EventHandl... function getUserChannels (line 143) | function getUserChannels(): Promise { function getSystemChannels (line 160) | function getSystemChannels(): Promise { function joinUserChannel (line 169) | function joinUserChannel(channelId: string): Promise { function joinChannel (line 186) | function joinChannel(channelId: string): Promise { function getOrCreateChannel (line 195) | function getOrCreateChannel(channelId: string): Promise { function getCurrentChannel (line 203) | function getCurrentChannel(): Promise { function leaveCurrentChannel (line 211) | function leaveCurrentChannel(): Promise { function createPrivateChannel (line 219) | function createPrivateChannel(): Promise { function getInfo (line 227) | function getInfo(): Promise { function getAppMetadata (line 235) | function getAppMetadata(app: AppIdentifier): Promise { function findInstances (line 243) | function findInstances(app: AppIdentifier): Promise { function isStandardContextType (line 251) | function isStandardContextType(contextType: ContextType): contextType is... function isStandardIntent (line 259) | function isStandardIntent(intent: Intent): intent is StandardIntent { FILE: packages/fdc3-standard/src/api/PrivateChannel.ts type PrivateChannel (line 23) | interface PrivateChannel extends Channel { FILE: packages/fdc3-standard/src/api/RecommendedChannels.ts type UserChannelTemplate (line 9) | interface UserChannelTemplate { FILE: packages/fdc3-standard/src/api/Types.ts type ContextHandler (line 17) | type ContextHandler = (context: Context, metadata?: ContextMetadata) => ... type IntentResult (line 22) | type IntentResult = Context | Channel | void; type IntentHandler (line 32) | type IntentHandler = (context: Context, metadata?: ContextMetadata) => P... FILE: packages/fdc3-standard/src/context/ContextType.ts type StandardContextType (line 9) | type StandardContextType = type ExperimentalContextType (line 37) | type ExperimentalContextType = type ContextType (line 47) | type ContextType = StandardContextType | ExperimentalContextType | (stri... type ContextTypes (line 52) | enum ContextTypes { FILE: packages/fdc3-standard/src/index.ts constant FDC3_VERSION (line 36) | const FDC3_VERSION = '2.2'; type Window (line 39) | interface Window { FILE: packages/fdc3-standard/src/intents/Intents.ts type StandardIntent (line 9) | type StandardIntent = type Intent (line 33) | type Intent = StandardIntent | (string & {}); type Intents (line 38) | enum Intents { FILE: packages/fdc3-standard/src/internal/contextConfiguration.ts constant STANDARD_CONTEXT_TYPES (line 4) | const STANDARD_CONTEXT_TYPES = exhaustiveStringTuple()( FILE: packages/fdc3-standard/src/internal/typeHelpers.ts type AtLeastOne (line 1) | type AtLeastOne = [T, ...T[]]; FILE: packages/fdc3-standard/src/ui/ChannelSelector.ts type ChannelSelector (line 7) | interface ChannelSelector extends Connectable { FILE: packages/fdc3-standard/src/ui/Connectable.ts type Connectable (line 2) | interface Connectable { FILE: packages/fdc3-standard/src/ui/IntentResolver.ts type IntentResolutionChoice (line 6) | type IntentResolutionChoice = { type IntentResolver (line 14) | interface IntentResolver extends Connectable { FILE: packages/fdc3-standard/test/ContextTypeSync.test.ts function extractContextType (line 13) | function extractContextType(schemaPath: string): string | null { function getSchemaContextTypes (line 28) | function getSchemaContextTypes(): Set { FILE: packages/fdc3-standard/test/Methods.test.ts method toRejectWithUnavailableError (line 43) | toRejectWithUnavailableError(received) { method toThrowUnavailableError (line 47) | toThrowUnavailableError(received) { FILE: packages/fdc3/src/index.ts type Window (line 14) | interface Window { FILE: packages/testing/src/agent/index.ts class SimpleIntentResolver (line 10) | class SimpleIntentResolver implements IntentResolver { method constructor (line 13) | constructor(cw: PropsWorldLike) { method connect (line 17) | async connect(): Promise {} method disconnect (line 19) | async disconnect(): Promise {} method intentChosen (line 21) | async intentChosen(ir: IntentResult): Promise { method chooseIntent (line 26) | async chooseIntent(appIntents: AppIntent[], ctx: Context): Promise void... method connect (line 60) | async connect(): Promise {} method disconnect (line 62) | async disconnect(): Promise {} FILE: packages/testing/src/steps/generic.impl.ts function promiseShouldResolve (line 16) | async function promiseShouldResolve(world: PropsWorldLike, field: string... function promiseShouldResolveWithin10Seconds (line 26) | async function promiseShouldResolveWithin10Seconds(world: PropsWorldLike... function callWithMethod (line 36) | async function callWithMethod(world: PropsWorldLike, field: string, fnNa... function callWithMethodAndParam (line 47) | async function callWithMethodAndParam( function callWithMethodAndTwoParams (line 63) | async function callWithMethodAndTwoParams( function callWithMethodAndThreeParams (line 80) | async function callWithMethodAndThreeParams( function referToAs (line 103) | function referToAs(world: PropsWorldLike, from: string, to: string): void { function isArrayOfObjectsWithContents (line 107) | function isArrayOfObjectsWithContents(world: PropsWorldLike, field: stri... function isArrayOfObjectsWithLength (line 111) | function isArrayOfObjectsWithLength(world: PropsWorldLike, field: string... function isArrayOfStringsWithValues (line 117) | function isArrayOfStringsWithValues(world: PropsWorldLike, field: string... function isObjectWithContents (line 124) | function isObjectWithContents(world: PropsWorldLike, field: string, para... function isNull (line 129) | function isNull(world: PropsWorldLike, field: string): void { function isNotNull (line 133) | function isNotNull(world: PropsWorldLike, field: string): void { function isTrue (line 137) | function isTrue(world: PropsWorldLike, field: string): void { function isFalse (line 141) | function isFalse(world: PropsWorldLike, field: string): void { function isUndefined (line 145) | function isUndefined(world: PropsWorldLike, field: string): void { function isEmpty (line 149) | function isEmpty(world: PropsWorldLike, field: string): void { function isEqual (line 153) | function isEqual(world: PropsWorldLike, field: string, expected: string)... function isErrorWithMessage (line 159) | function isErrorWithMessage(world: PropsWorldLike, field: string, errorT... function isError (line 163) | function isError(world: PropsWorldLike, field: string): void { function isInvocationCounter (line 167) | function isInvocationCounter(world: PropsWorldLike, handlerName: string,... function isFunctionReturningPromiseOf (line 176) | function isFunctionReturningPromiseOf(world: PropsWorldLike, fnName: str... function waitForPeriod (line 183) | function waitForPeriod(_world: PropsWorldLike, ms: string): Promise { function schemasLoaded (line 189) | async function schemasLoaded(world: PropsWorldLike, schemaBasePath: stri... FILE: packages/testing/src/steps/generic.steps.ts function setupGenericSteps (line 6) | function setupGenericSteps(schemaBasePath: string): void { FILE: packages/testing/src/support/matching.ts type HashesProvider (line 5) | interface HashesProvider { function doesRowMatch (line 10) | function doesRowMatch(cw: PropsWorldLike, t: Record, dat... function indexOf (line 57) | function indexOf(cw: PropsWorldLike, rows: Record[], dat... function isNumeric (line 67) | function isNumeric(n: string) { function handleResolve (line 72) | function handleResolve(name: string, on: PropsWorldLike): any { function matchData (line 93) | function matchData(cw: PropsWorldLike, actual: any[], dt: HashesProvider) { FILE: packages/testing/src/world/PropsWorldLike.ts type PropsWorldLike (line 1) | interface PropsWorldLike { FILE: toolbox/fdc3-conformance/src/context-types.ts type CommonContext (line 1) | interface CommonContext { type AppControlContext (line 9) | interface AppControlContext extends CommonContext { type AppControlContextListener (line 16) | interface AppControlContextListener { type IntentUtilityContext (line 20) | interface IntentUtilityContext extends CommonContext { FILE: toolbox/fdc3-conformance/src/mock/channel-command.ts class Fdc3CommandExecutor (line 6) | class Fdc3CommandExecutor { method executeCommands (line 7) | async executeCommands(orderedCommands: string[], config: ChannelsAppCo... FILE: toolbox/fdc3-conformance/src/mock/general.ts type ContextSender (line 34) | interface ContextSender extends Context { FILE: toolbox/fdc3-conformance/src/mock/intent-a.ts function delayExecution (line 41) | async function delayExecution(delayMilliseconds: number | undefined): Pr... FILE: toolbox/fdc3-conformance/src/mock/interfaces.ts type IChannelService (line 3) | interface IChannelService { type IBroadcastService (line 15) | interface IBroadcastService { FILE: toolbox/fdc3-conformance/src/mock/support/channel-support.ts class ChannelServiceImpl (line 7) | class ChannelServiceImpl implements IChannelService { method constructor (line 8) | constructor(fdc3: DesktopAgent) { method joinRetrievedUserChannel (line 14) | async joinRetrievedUserChannel(channelId: string): Promise { method retrieveTestAppChannel (line 25) | async retrieveTestAppChannel(channelId: string): Promise { method broadcastContextItem (line 29) | async broadcastContextItem( method closeWindowOnCompletion (line 39) | async closeWindowOnCompletion(testId: string): Promise { method notifyTestOnCompletion (line 52) | async notifyTestOnCompletion(testId: string): Promise { method getBroadcastService (line 58) | private getBroadcastService(currentChannelType: string): IBroadcastSer... FILE: toolbox/fdc3-conformance/src/test/advanced/fdc3.findInstances.ts function validateResolutionSource (line 74) | function validateResolutionSource(resolution: IntentResolution, appIdent... function validateInstances (line 86) | function validateInstances(instances: AppIdentifier[], appIdentifier: Ap... FILE: toolbox/fdc3-conformance/src/test/advanced/fdc3.findIntent.ts function validateAppIntent (line 140) | function validateAppIntent( FILE: toolbox/fdc3-conformance/src/test/advanced/fdc3.findIntentsByContext.ts function validateIntents (line 52) | function validateIntents( FILE: toolbox/fdc3-conformance/src/test/advanced/fdc3.getAppMetadata.ts function validateMatchingInstanceIds (line 75) | function validateMatchingInstanceIds(instanceId1: string, instanceId2: s... FILE: toolbox/fdc3-conformance/src/test/advanced/fdc3.user-channels.ts function checkIfBothContextsReceived (line 282) | function checkIfBothContextsReceived() { FILE: toolbox/fdc3-conformance/src/test/fdc3-conformance-utils.ts function closeMockAppWindow (line 8) | async function closeMockAppWindow(testId: string, count: number = 1) { FILE: toolbox/fdc3-conformance/src/test/index.ts function executeTests (line 29) | function executeTests() { function executeManualTests (line 42) | function executeManualTests() { function returnToTestSelection (line 56) | function returnToTestSelection() { function toggleVersionSelector (line 60) | function toggleVersionSelector() { function toggleBackButton (line 72) | function toggleBackButton() { FILE: toolbox/fdc3-conformance/src/test/progressReporter.ts class ProgressReporter (line 5) | class ProgressReporter extends Mocha.reporters.Base { method constructor (line 15) | constructor(runner: Mocha.Runner, options?: Mocha.MochaOptions) { method onSuite (line 66) | private onSuite(suite: Mocha.Suite) { method onSuiteEnd (line 81) | private onSuiteEnd(suite: Mocha.Suite) { method onTest (line 86) | private onTest(test: Mocha.Test) { method onPass (line 97) | private onPass(test: Mocha.Test) { method onFail (line 106) | private onFail(test: Mocha.Test, err: Error) { method onEnd (line 119) | private onEnd() { method getSpeedClass (line 124) | private getSpeedClass(test: Mocha.Test): string { method addDuration (line 132) | private addDuration(li: HTMLElement, test: Mocha.Test) { method buildStatItem (line 142) | private buildStatItem(parent: HTMLElement, label: string, initialValue... method updateDuration (line 156) | private updateDuration() { method updateStats (line 161) | private updateStats() { FILE: toolbox/fdc3-conformance/src/test/support/channel-control.ts type ChannelControl (line 6) | interface ChannelControl { type ChannelsAppContext (line 50) | type ChannelsAppContext = Context & { type ChannelsAppConfig (line 61) | type ChannelsAppConfig = { constant APP_CHANNEL_AND_BROADCAST (line 76) | const APP_CHANNEL_AND_BROADCAST = [commands.retrieveTestAppChannel, comm... constant APP_CHANNEL_AND_BROADCAST_TWICE (line 78) | const APP_CHANNEL_AND_BROADCAST_TWICE = [ constant JOIN_AND_BROADCAST (line 84) | const JOIN_AND_BROADCAST = [commands.joinRetrievedUserChannel, commands.... constant JOIN_AND_BROADCAST_TWICE (line 86) | const JOIN_AND_BROADCAST_TWICE = [ FILE: toolbox/fdc3-conformance/src/test/support/channels-support.ts class ChannelControlImpl (line 7) | class ChannelControlImpl implements ChannelControl { method constructor (line 11) | constructor(fdc3: DesktopAgent) { method closeMockApp (line 87) | async closeMockApp(testId: string) { method getRandomId (line 141) | getRandomId(): string { function validateListenerObject (line 148) | function validateListenerObject(listenerObject: Listener) { function buildChannelsAppContext (line 153) | function buildChannelsAppContext(mockAppCommands: string[], config: Chan... FILE: toolbox/fdc3-conformance/src/test/support/intent-support.ts class RaiseIntentControl (line 20) | class RaiseIntentControl { method constructor (line 23) | constructor(fdc3: DesktopAgent) { method receiveContext (line 27) | async receiveContext(contextType: string, waitTime?: number, count: nu... method openIntentApp (line 52) | async openIntentApp(appId: string): Promise { method createAppChannel (line 60) | async createAppChannel(channelId: string): Promise { method createPrivateChannel (line 64) | async createPrivateChannel(): Promise { method validatePrivateChannel (line 68) | validatePrivateChannel(privChan: PrivateChannel): void { method raiseIntent (line 72) | async raiseIntent( method findInstances (line 99) | async findInstances(appId: string): Promise { method getIntentResult (line 107) | getIntentResult(intentResolution: IntentResolution): Promise { method getAppInstances (line 99) | async getAppInstances(): Promise { method getAppMetadata (line 103) | async getAppMetadata(appIdentifier?: AppIdentifier): Promise { method raiseIntent (line 117) | async raiseIntent(intent: string, contextType: string, appIdentifier: ... method getInfo (line 121) | async getInfo(): Promise { type MetadataContext (line 126) | interface MetadataContext extends Context { FILE: toolbox/fdc3-conformance/src/test/support/open-control.ts type OpenControl (line 3) | interface OpenControl { type OpenCommonConfig (line 46) | type OpenCommonConfig = { FILE: toolbox/fdc3-conformance/src/test/support/open-support.ts class OpenControlImpl (line 14) | class OpenControlImpl implements OpenControl { method constructor (line 17) | constructor(fdc3: DesktopAgent) { method closeMockApp (line 64) | async closeMockApp(testId: string) { method createTargetAppIdentifier (line 68) | createTargetAppIdentifier(appId: string) { FILE: toolbox/fdc3-conformance/src/test/testSuite.ts type testSet (line 34) | type testSet = { [key: string]: (() => Promise)[] }; function stripSuites (line 71) | function stripSuites(ts: testSet[]): (() => Promise)[] { function getPackNames (line 96) | function getPackNames(): string[] { function getPackMembers (line 100) | function getPackMembers(packName: string): string[] { FILE: toolbox/fdc3-conformance/src/utils.ts function failAfterTimeout (line 4) | function failAfterTimeout(timeoutMs: number = constants.WaitTime): Promi... function wait (line 12) | async function wait(timeoutMs?: number): Promise { function wrapPromise (line 20) | function wrapPromise(): { function handleFail (line 40) | function handleFail(documentation: string, ex: unknown): never { function appIdMatches (line 50) | function appIdMatches(received: string, expected: string): boolean { FILE: toolbox/fdc3-explained/1.0/main.js function fdc3Init (line 12) | function fdc3Init(callback) { function enablePage (line 33) | function enablePage() { function updateProviderDetails (line 49) | function updateProviderDetails(details) { function broadcastFDC3Context (line 53) | function broadcastFDC3Context() { FILE: toolbox/fdc3-explained/1.1/main.js function fdc3OnReady (line 10) | function fdc3OnReady(success, error) { function main (line 32) | function main() { function displayFDC3Support (line 45) | function displayFDC3Support() { function getPlatform (line 58) | function getPlatform() { function updateProviderDetails (line 70) | function updateProviderDetails(details) { function populateHTML (line 75) | async function populateHTML() { function setUpEventListeners (line 106) | function setUpEventListeners() { function populateChannelsDropDown (line 128) | function populateChannelsDropDown(newOptionText) { function joinChannel (line 142) | function joinChannel() { function broadcastFDC3Context (line 152) | async function broadcastFDC3Context() { function getContext (line 161) | async function getContext(contextType) { function addAppChannel (line 180) | async function addAppChannel() { function raiseIntent (line 208) | async function raiseIntent() { FILE: toolbox/fdc3-explained/1.2/main.js function fdc3OnReady (line 7) | function fdc3OnReady(success, error) { function documentLoaded (line 17) | function documentLoaded(cb) { function main (line 34) | function main() { function displayFDC3Support (line 47) | function displayFDC3Support() { function getPlatform (line 60) | function getPlatform() { function updateProviderDetails (line 69) | function updateProviderDetails(details) { function updateFDC3Version (line 74) | function updateFDC3Version(details) { function populateHTML (line 79) | async function populateHTML() { function setUpEventListeners (line 111) | function setUpEventListeners() { function populateChannelsDropDown (line 133) | function populateChannelsDropDown(newOptionText) { function joinChannel (line 147) | function joinChannel() { function broadcastFDC3Context (line 157) | async function broadcastFDC3Context() { function getContext (line 166) | async function getContext(contextType) { function displayContext (line 183) | function displayContext(text) { function addAppChannel (line 188) | async function addAppChannel() { function raiseIntent (line 216) | async function raiseIntent() { FILE: toolbox/fdc3-for-web/demo/src/client/apps/app1.ts function createContext (line 3) | function createContext(i: number) { function startBroadcasting (line 16) | async function startBroadcasting() { FILE: toolbox/fdc3-for-web/demo/src/client/da/DemoServerContext.ts type Opener (line 15) | enum Opener { type RunningAppRegistration (line 20) | type RunningAppRegistration = AppRegistration & { type LaunchingAppRegistration (line 26) | type LaunchingAppRegistration = AppRegistration & { type DemoAppRegistration (line 31) | type DemoAppRegistration = RunningAppRegistration | LaunchingAppRegistra... function isWebAppLaunchDetails (line 34) | function isWebAppLaunchDetails(details: object): details is { url: strin... function isLaunchingAppRegistration (line 39) | function isLaunchingAppRegistration( function isRunningAppRegistration (line 46) | function isRunningAppRegistration( class DemoServerContext (line 52) | class DemoServerContext implements ServerContext { method constructor (line 58) | constructor(socket: Socket, directory: Directory) { method setFDC3Server (line 63) | setFDC3Server(server: FDC3Server): void { method narrowIntents (line 67) | async narrowIntents(_raiser: AppIdentifier, appIntents: AppIntent[] /*... method setInstanceDetails (line 74) | setInstanceDetails(uuid: InstanceID, meta: RunningAppRegistration | La... method getInstanceForWindow (line 111) | async getInstanceForWindow(window: Window): Promise { method openFrame (line 184) | openFrame(url: string): Promise { method openTab (line 198) | openTab(url: string): Promise { method openUrl (line 205) | async openUrl(url: string): Promise { method open (line 216) | async open(appId: string, _source?: AppIdentifier): Promise { method getConnectedApps (line 247) | async getConnectedApps(): Promise { method isAppConnected (line 251) | async isAppConnected(app: InstanceID): Promise { method setAppState (line 256) | async setAppState(app: InstanceID, newState: State): Promise { method getAllApps (line 271) | async getAllApps(): Promise { method log (line 281) | log(message: string): void { method provider (line 285) | provider(): string { method providerVersion (line 289) | providerVersion(): string { method fdc3Version (line 293) | fdc3Version(): string { FILE: toolbox/fdc3-for-web/demo/src/client/da/FDC3_2_1_JSONDirectory.ts function loadRemotely (line 3) | async function loadRemotely(u: string) { function load (line 8) | async function load(url: string): Promise { class FDC3_2_1_JSONDirectory (line 20) | class FDC3_2_1_JSONDirectory extends BasicDirectory { method constructor (line 21) | constructor() { method load (line 25) | async load(url: string) { FILE: toolbox/fdc3-for-web/demo/src/client/da/dummy-desktop-agent.ts type WebConnectionProtocol2LoadURL (line 18) | type WebConnectionProtocol2LoadURL = BrowserTypes.WebConnectionProtocol2... function createAppStartButton (line 20) | function createAppStartButton(app: DirectoryApp, sc: ServerContext { FILE: toolbox/fdc3-for-web/fdc3-web-impl/src/directory/BasicDirectory.ts function genericResultTypeSame (line 3) | function genericResultTypeSame(real: string | undefined, required: strin... class BasicDirectory (line 20) | class BasicDirectory implements Directory { method constructor (line 23) | constructor(apps: DirectoryApp[]) { method intentMatches (line 27) | private intentMatches( method retrieveIntentsForApp (line 40) | private retrieveIntentsForApp(a: DirectoryApp): DirectoryIntent[] { method retrieveAllIntents (line 53) | retrieveAllIntents(): DirectoryIntent[] { method retrieveIntents (line 59) | retrieveIntents( method retrieveApps (line 70) | retrieveApps( method retrieveAppsById (line 83) | retrieveAppsById(appId: string): DirectoryApp[] { method retrieveAllApps (line 87) | retrieveAllApps(): DirectoryApp[] { FILE: toolbox/fdc3-for-web/fdc3-web-impl/src/directory/DirectoryInterface.ts type schemas (line 3) | type schemas = components['schemas']; type DirectoryIntent (line 5) | type DirectoryIntent = schemas['Intent'] & { intentName: string; appId: ... type DirectoryApp (line 6) | type DirectoryApp = schemas['Application']; type WebAppDetails (line 7) | type WebAppDetails = schemas['WebAppDetails']; type Directory (line 14) | interface Directory { FILE: toolbox/fdc3-for-web/fdc3-web-impl/src/handlers/BroadcastHandler.ts type PrivateChannelEvents (line 31) | type PrivateChannelEvents = type ContextListenerRegistration (line 36) | type ContextListenerRegistration = { type PrivateChannelEventListener (line 44) | type PrivateChannelEventListener = { type DesktopAgentEventListener (line 52) | type DesktopAgentEventListener = { type ChannelType (line 59) | enum ChannelType { type ChannelState (line 65) | type ChannelState = { function onlyUniqueAppIds (line 72) | function onlyUniqueAppIds(value: AppIdentifier, index: number, self: App... class BroadcastHandler (line 77) | class BroadcastHandler implements MessageHandler { method constructor (line 84) | constructor(initialChannelState: ChannelState[]) { method shutdown (line 88) | shutdown(): void {} method cleanup (line 90) | cleanup(instanceId: InstanceID, sc: ServerContext): v... method getCurrentChannel (line 126) | getCurrentChannel(from: FullAppIdentifier): ChannelState | null { method fireChannelChangedEvent (line 130) | fireChannelChangedEvent(channelId: string | null, sc: ServerContext):... method heartbeatTimes (line 94) | heartbeatTimes(): HeartbeatDetails[] { method shutdown (line 107) | shutdown(): void { method accept (line 111) | async accept( method sendHeartbeat (line 135) | async sendHeartbeat(sc: ServerContext, app: FullAppId... FILE: toolbox/fdc3-for-web/fdc3-web-impl/src/handlers/IntentHandler.ts type ListenerRegistration (line 27) | type ListenerRegistration = { type IntentRequest (line 34) | type IntentRequest = { function forwardRequest (line 45) | async function forwardRequest( class PendingIntent (line 91) | class PendingIntent { method constructor (line 98) | constructor(r: IntentRequest, sc: ServerContext, ih: ... method accept (line 113) | async accept(arg0: ListenerRegistration): Promise { class IntentHandler (line 126) | class IntentHandler implements MessageHandler { method constructor (line 133) | constructor(d: Directory, timeoutMs: number) { method cleanup (line 138) | cleanup(instanceId: InstanceID /*, _sc: ServerContext... method shutdown (line 150) | shutdown(): void {} method narrowIntents (line 152) | async narrowIntents( method accept (line 162) | async accept(msg: AppRequestMessage, sc: ServerContext*/... method shutdown (line 113) | shutdown(): void {} method accept (line 115) | async accept( method handleAddContextListener (line 152) | handleAddContextListener( method filterPublicDetails (line 187) | filterPublicDetails(appD: DirectoryApp, appID: AppIdentifier): AppMeta... method getAppMetadata (line 201) | getAppMetadata(arg0: GetAppMetadataRequest, sc: ServerContext, from... method getInfo (line 257) | async getInfo(arg0: GetInfoRequest, sc: ServerContext... method getImplementationMetadata (line 273) | getImplementationMetadata(sc: ServerContext, appIdent... method handleValidate (line 288) | async handleValidate( FILE: toolbox/fdc3-for-web/fdc3-web-impl/src/handlers/support.ts type FullAppIdentifier (line 6) | interface FullAppIdentifier { function isFullAppIdentifier (line 11) | function isFullAppIdentifier(identifier: AppIdentifier | FullAppIdentifi... function successResponse (line 16) | function successResponse( function errorResponse (line 26) | function errorResponse( function successResponseId (line 36) | function successResponseId( function errorResponseId (line 55) | function errorResponseId( FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/step-definitions/app-channel.steps.ts type GetOrCreateChannelRequest (line 6) | type GetOrCreateChannelRequest = BrowserTypes.GetOrCreateChannelRequest; FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/step-definitions/broadcast.steps.ts type AddContextListenerRequest (line 9) | type AddContextListenerRequest = BrowserTypes.AddContextListenerRequest; type ContextListenerUnsubscribeRequest (line 10) | type ContextListenerUnsubscribeRequest = BrowserTypes.ContextListenerUns... type BroadcastRequest (line 11) | type BroadcastRequest = BrowserTypes.BroadcastRequest; type GetCurrentContextRequest (line 12) | type GetCurrentContextRequest = BrowserTypes.GetCurrentContextRequest; FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/step-definitions/event-listeners.steps.ts type AddEventListenerRequest (line 8) | type AddEventListenerRequest = BrowserTypes.AddEventListenerRequest; type EventListenerUnsubscribeRequest (line 9) | type EventListenerUnsubscribeRequest = BrowserTypes.EventListenerUnsubsc... FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/step-definitions/generic.steps.ts constant APP_FIELD (line 12) | const APP_FIELD = 'apps'; function defaultChannels (line 67) | function defaultChannels() { function createMeta (line 99) | function createMeta(cw: CustomWorld, appStr: string) { FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/step-definitions/intents.steps.ts type FindIntentRequest (line 9) | type FindIntentRequest = BrowserTypes.FindIntentRequest; type FindIntentsByContextRequest (line 10) | type FindIntentsByContextRequest = BrowserTypes.FindIntentsByContextRequ... type AddIntentListenerRequest (line 11) | type AddIntentListenerRequest = BrowserTypes.AddIntentListenerRequest; type IntentListenerUnsubscribeRequest (line 12) | type IntentListenerUnsubscribeRequest = BrowserTypes.IntentListenerUnsub... type RaiseIntentRequest (line 13) | type RaiseIntentRequest = BrowserTypes.RaiseIntentRequest; type RaiseIntentForContextRequest (line 14) | type RaiseIntentForContextRequest = BrowserTypes.RaiseIntentForContextRe... type IntentResultRequest (line 15) | type IntentResultRequest = BrowserTypes.IntentResultRequest; type ListensFor (line 17) | type ListensFor = { function decamelize (line 25) | function decamelize(str: string, separator: string) { function convertDataTableToListensFor (line 34) | function convertDataTableToListensFor(cw: CustomWorld, dt: DataTable): L... function raise (line 155) | function raise( function raiseWithContext (line 177) | function raiseWithContext( function raiseWithInvalidTarget (line 197) | function raiseWithInvalidTarget( function raiseWithContextAnInvalidTarget (line 217) | function raiseWithContextAnInvalidTarget( FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/step-definitions/private-channel.steps.ts type CreatePrivateChannelRequest (line 7) | type CreatePrivateChannelRequest = BrowserTypes.CreatePrivateChannelRequ... type PrivateChannelAddEventListenerRequest (line 8) | type PrivateChannelAddEventListenerRequest = BrowserTypes.PrivateChannel... type PrivateChannelUnsubscribeEventListenerRequest (line 9) | type PrivateChannelUnsubscribeEventListenerRequest = BrowserTypes.Privat... type PrivateChannelDisconnectRequest (line 10) | type PrivateChannelDisconnectRequest = BrowserTypes.PrivateChannelDiscon... FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/step-definitions/start-app.steps.ts type OpenRequest (line 10) | type OpenRequest = BrowserTypes.OpenRequest; type GetAppMetadataRequest (line 11) | type GetAppMetadataRequest = BrowserTypes.GetAppMetadataRequest; type FindInstancesRequest (line 12) | type FindInstancesRequest = BrowserTypes.FindInstancesRequest; type WebConnectionProtocol4ValidateAppIdentity (line 13) | type WebConnectionProtocol4ValidateAppIdentity = BrowserTypes.WebConnect... FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/step-definitions/user-channel.steps.ts type GetUserChannelsRequest (line 7) | type GetUserChannelsRequest = BrowserTypes.GetUserChannelsRequest; type GetCurrentChannelRequest (line 8) | type GetCurrentChannelRequest = BrowserTypes.GetCurrentChannelRequest; type JoinUserChannelRequest (line 9) | type JoinUserChannelRequest = BrowserTypes.JoinUserChannelRequest; type LeaveCurrentChannelRequest (line 10) | type LeaveCurrentChannelRequest = BrowserTypes.LeaveCurrentChannelRequest; type GetCurrentContextRequest (line 11) | type GetCurrentContextRequest = BrowserTypes.GetCurrentContextRequest; FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/support/TestServerContext.ts type ConnectionDetails (line 7) | type ConnectionDetails = AppRegistration & { type MessageRecord (line 11) | type MessageRecord = { class TestServerContext (line 17) | class TestServerContext implements ServerContext { method constructor (line 25) | constructor(cw: CustomWorld) { method setFDC3Server (line 29) | setFDC3Server(server: FDC3Server): void { method narrowIntents (line 34) | async narrowIntents(_raiser: AppIdentifier, appIntents: AppIntent[], _... method getInstanceDetails (line 38) | getInstanceDetails(uuid: string) { method setInstanceDetails (line 42) | setInstanceDetails(uuid: InstanceID, appId: ConnectionDetails) { method open (line 50) | async open(appId: string): Promise { method setAppState (line 61) | async setAppState(app: InstanceID, newState: State): Promise { method getConnectedApps (line 72) | async getConnectedApps(): Promise { method getAllApps (line 76) | async getAllApps(): Promise { method isAppConnected (line 86) | async isAppConnected(app: InstanceID): Promise { method provider (line 91) | provider(): string { method providerVersion (line 94) | providerVersion(): string { method fdc3Version (line 97) | fdc3Version(): string { method createUUID (line 101) | createUUID(): string { method post (line 105) | async post(msg: object, to: InstanceID): Promise { method log (line 124) | log(message: string): void { method getInstanceUUID (line 131) | getInstanceUUID(appId: AppIdentifier): InstanceID { FILE: toolbox/fdc3-for-web/fdc3-web-impl/test/world/index.ts type CustomWorldInterface (line 6) | interface CustomWorldInterface extends QuickPickleWorldInterface { class CustomWorld (line 13) | class CustomWorld extends QuickPickleWorld implements CustomWorldInterfa... method log (line 18) | log(message: string): void { FILE: toolbox/fdc3-for-web/reference-ui/src/contrast.ts function selectHighestContrast (line 3) | function selectHighestContrast(bgColorCSS: string, ...candidates: string... FILE: toolbox/fdc3-for-web/reference-ui/src/intent_resolver.ts function createIcon (line 76) | function createIcon(icons: Icon[] | undefined): HTMLElement { FILE: toolbox/fdc3-workbench/src/components/AppChannels.tsx type ListenerOptionType (line 94) | interface ListenerOptionType { FILE: toolbox/fdc3-workbench/src/components/ChannelField.tsx type ListenerOptionType (line 23) | interface ListenerOptionType { type FilterOptionsState (line 29) | interface FilterOptionsState { type TabChangeHandler (line 87) | type TabChangeHandler = (event: React.ChangeEvent | null, newVal... FILE: toolbox/fdc3-workbench/src/components/ContextCreate.tsx type OptionType (line 32) | interface OptionType { FILE: toolbox/fdc3-workbench/src/components/ContextLinking.tsx type FilterOptionsState (line 19) | interface FilterOptionsState { type ListenerOptionType (line 24) | interface ListenerOptionType { type ListenerSetValue (line 30) | type ListenerSetValue = (value: ListenerOptionType | null) => void; type ListenerSetError (line 32) | type ListenerSetError = (error: string | false) => void; FILE: toolbox/fdc3-workbench/src/components/ContextTemplates.tsx type FilterOptionsState (line 14) | interface FilterOptionsState { type OptionType (line 19) | interface OptionType { type SetValue (line 24) | type SetValue = (value: OptionType | null) => void; type SetError (line 26) | type SetError = (error: string | false) => void; FILE: toolbox/fdc3-workbench/src/components/Header.tsx type Window (line 12) | interface Window { FILE: toolbox/fdc3-workbench/src/components/Intents.tsx type FilterOptionsState (line 56) | interface FilterOptionsState { type ListenerOptionType (line 61) | interface ListenerOptionType { type ListenerSetValue (line 66) | type ListenerSetValue = (value: ListenerOptionType | null) => void; type ListenerSetError (line 68) | type ListenerSetError = (error: string | false) => void; FILE: toolbox/fdc3-workbench/src/components/Workbench/SystemLogItem.tsx type SystemLogItemProps (line 11) | interface SystemLogItemProps { FILE: toolbox/fdc3-workbench/src/components/common/AccordionContent.tsx type AccordionContentProps (line 12) | interface AccordionContentProps { FILE: toolbox/fdc3-workbench/src/components/common/AccordionList.tsx type AccordionListItem (line 12) | interface AccordionListItem { type AccordionListProps (line 18) | interface AccordionListProps { FILE: toolbox/fdc3-workbench/src/components/common/DialogModal.tsx type DialogModalProps (line 9) | interface DialogModalProps { function DialogModal (line 16) | function DialogModal(props: DialogModalProps) { FILE: toolbox/fdc3-workbench/src/components/common/JsonInput.tsx type JsonInputProps (line 13) | interface JsonInputProps { FILE: toolbox/fdc3-workbench/src/components/common/TabPanel.tsx type TabPanelProps (line 10) | interface TabPanelProps { FILE: toolbox/fdc3-workbench/src/fixtures/logMessages.ts type LogMessages (line 7) | type LogMessages = Record { class SystemLogStore (line 53) | class SystemLogStore { method constructor (line 56) | constructor() { method addLog (line 63) | addLog({ name, type, value, body, variant }: LogItemCreator) { FILE: toolbox/fdc3-workbench/src/utility/Fdc3Api.ts type fdc3_1IntentResolution (line 8) | interface fdc3_1IntentResolution extends fdc3_1.IntentResolution { type fdc3_2IntentResolution (line 12) | interface fdc3_2IntentResolution extends fdc3_2.IntentResolution { type fdc3_1ImplementationMetadata (line 16) | interface fdc3_1ImplementationMetadata extends fdc3_1.ImplementationMeta... type fdc3_2ImplementationMetadata (line 20) | interface fdc3_2ImplementationMetadata extends fdc3_2.ImplementationMeta... type ContextType (line 24) | type ContextType = { type Fdc3Listener (line 33) | interface Fdc3Listener { type IntentResolution (line 42) | type IntentResolution = fdc3_1IntentResolution | fdc3_2IntentResolution; type TargetApp (line 44) | type TargetApp = fdc3_1.TargetApp; type ImplementationMetadata (line 46) | type ImplementationMetadata = fdc3_1ImplementationMetadata | fdc3_2Imple... type AppMetadata (line 48) | type AppMetadata = fdc3_2.AppMetadata; type AppIntent (line 53) | type AppIntent = fdc3_1.AppIntent | fdc3_2.AppIntent; type Context (line 55) | type Context = fdc3_1.Context | fdc3_2.Context; type PrivateChannel (line 59) | type PrivateChannel = fdc3_2.PrivateChannel; type IntentTargetOption (line 61) | type IntentTargetOption = { type ContextTargetOption (line 68) | type ContextTargetOption = { intent: string; targetOptions: IntentTarget... function getWorkbenchAgent (line 70) | function getWorkbenchAgent(): Promise { function getTargetOptions (line 76) | async function getTargetOptions(intent: string, context: ContextType): P... function getTargetOptionsForContext (line 132) | async function getTargetOptionsForContext(context: ContextType): Promise... FILE: website/replaceConformanceUrls.js function getBaseUrl (line 17) | function getBaseUrl() { FILE: website/schema2Markdown.js function processProperty (line 7) | function processProperty(propertyName, propertyDetails, required, curren... function renderType (line 81) | function renderType(type, optionalEnum) { function renderEnum (line 89) | function renderEnum(ref) { function renderRef (line 94) | function renderRef(contextRef, currentSchemaFilePath) { function hasAllOf (line 154) | function hasAllOf(allOfArray) { function hasProperties (line 161) | function hasProperties(schema) { function generateObjectMD (line 166) | function generateObjectMD(schema, objectName, schemaFolderName, filePath) { function escapeExperimental (line 246) | function escapeExperimental(text) { function generateFrontMatter (line 250) | function generateFrontMatter(title, description) { function processSchemaFile (line 257) | function processSchemaFile(schemaFile, schemaFolderName) { function retrieveSchemaFile (line 285) | function retrieveSchemaFile (schemaFilePath, currentFilePath) { function retrieveFolderName (line 303) | function retrieveFolderName (schemaFilePath) { function retrievePathInSchema (line 317) | function retrievePathInSchema(schemaData, pathInSchema) { function retrieveTitleFromSchemaData (line 336) | function retrieveTitleFromSchemaData(schemaData, pathInSchema) { function parseSchemaFolder (line 356) | function parseSchemaFolder(schemaFolderName) { function main (line 383) | function main() { FILE: website/src/components/Benefits/index.js function Benefits (line 7) | function Benefits() { FILE: website/src/components/Callout/index.js function Callout (line 5) | function Callout({children}) { FILE: website/src/components/Conformance/index.js function Conformance (line 6) | function Conformance() { FILE: website/src/components/ConformanceShowcase/index.js function Publisher (line 14) | function Publisher({name}) { function ConformanceItem (line 20) | function ConformanceItem({ publisher, badge }) { FILE: website/src/components/GetInvolved/index.js function Benefits (line 13) | function Benefits() { FILE: website/src/components/MonoIcon/index.js function Icon (line 6) | function Icon() { FILE: website/src/components/NewSplashTop/index.js function NewSplashTop (line 5) | function NewSplashTop() { FILE: website/src/components/Parts/index.js function Parts (line 7) | function Parts() { FILE: website/src/components/Training/index.js function Training (line 5) | function Training() { FILE: website/src/components/TypeText/index.js function TypeText (line 5) | function TypeText({children}) { FILE: website/src/components/UseCases/index.js function UseCases (line 7) | function UseCases() { FILE: website/src/components/UserShowcase/index.js function UserShowcase (line 8) | function UserShowcase() { FILE: website/src/components/WhatIsIt/index.js function Benefits (line 6) | function Benefits() { FILE: website/src/components/implementationFilters.js function setType (line 1) | function setType(theType) { FILE: website/src/pages/community.js function Implementation (line 44) | function Implementation({ type, title, publisher, image, infoLink, docsL... function ImplementationsShowcase (line 87) | function ImplementationsShowcase() { FILE: website/src/pages/training.js function Implementation (line 10) | function Implementation({ type, title, publisher, image, infoLink, docsL...