Skip to content

Commit

Permalink
Added dist, bumped to alpha.2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
robmoffat committed Jan 16, 2025
1 parent 6ccd641 commit 5ff5066
Show file tree
Hide file tree
Showing 72 changed files with 156 additions and 163 deletions.
99 changes: 44 additions & 55 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/fdc3-agent-proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@finos/fdc3-agent-proxy",
"version": "2.2.0-alpha.1",
"version": "2.2.0-alpha.2",
"author": "Fintech Open Source Foundation (FINOS)",
"homepage": "https://fdc3.finos.org",
"repository": {
Expand All @@ -23,14 +23,14 @@
"lint": "eslint src/"
},
"dependencies": {
"@finos/fdc3-standard": "2.2.0-alpha.1"
"@finos/fdc3-standard": "2.2.0-alpha.2"
},
"devDependencies": {
"@cucumber/cucumber": "10.3.1",
"@cucumber/html-formatter": "11.0.4",
"@cucumber/pretty-formatter": "1.0.1",
"@eslint/js": "^9.16.0",
"@finos/testing": "2.2.0-alpha.1",
"@finos/testing": "2.2.0-alpha.2",
"@types/expect": "24.3.0",
"@types/lodash": "4.14.167",
"@types/node": "^20.16.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/fdc3-agent-proxy/src/Messaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
AppRequestMessage,
AgentResponseMessage,
WebConnectionProtocol6Goodbye,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';

export interface Messaging {
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/fdc3-agent-proxy/src/apps/DefaultAppSupport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
GetInfoResponse,
OpenRequest,
OpenResponse,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';
import { throwIfUndefined } from '../util';
export class DefaultAppSupport implements AppSupport {
readonly messaging: Messaging;
Expand Down
2 changes: 1 addition & 1 deletion packages/fdc3-agent-proxy/src/channels/DefaultChannel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
BroadcastResponse,
GetCurrentContextRequest,
GetCurrentContextResponse,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';

export class DefaultChannel implements Channel {
protected readonly messaging: Messaging;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
LeaveCurrentChannelRequest,
JoinUserChannelResponse,
JoinUserChannelRequest,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';
import { throwIfUndefined } from '../util';

export class DefaultChannelSupport implements ChannelSupport {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { RegisterableListener } from '../listeners/RegisterableListener';
import {
PrivateChannelDisconnectRequest,
PrivateChannelDisconnectResponse,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';

export class DefaultPrivateChannel extends DefaultChannel implements PrivateChannel {
constructor(messaging: Messaging, id: string) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
RaiseIntentRequest,
RaiseIntentResponse,
RaiseIntentResultResponse,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';
import { throwIfUndefined } from '../util';

const convertIntentResult = async (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
IntentListenerUnsubscribeResponse,
EventListenerUnsubscribeResponse,
PrivateChannelUnsubscribeEventListenerResponse,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';
import { Messaging } from '../Messaging';
import { RegisterableListener } from './RegisterableListener';
import { throwIfUndefined } from '../util';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ import { ContextHandler, Channel } from '@finos/fdc3-standard';
import { Messaging } from '../Messaging';
import { AbstractListener } from './AbstractListener';
import { UserChannelContextListener } from './UserChannelContextListener';
import { AddContextListenerRequest, BroadcastEvent } from '@finos/fdc3-schema/generated/api/BrowserTypes';
import { AddContextListenerRequest, BroadcastEvent } from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';

export class DefaultContextListener
extends AbstractListener<ContextHandler, AddContextListenerRequest>
implements UserChannelContextListener {
implements UserChannelContextListener
{
private channelId: string | null;
private readonly messageType: string;
private readonly contextType: string | null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
IntentResultRequest,
IntentResultResponse,
//RaiseIntentResponse,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';

export class DefaultIntentListener extends AbstractListener<IntentHandler, AddIntentListenerRequest> {
readonly intent: string;
Expand Down
2 changes: 1 addition & 1 deletion packages/fdc3-agent-proxy/src/listeners/EventListener.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ApiEvent, EventHandler } from '@finos/fdc3-standard';
import { Messaging } from '../Messaging';
import { RegisterableListener } from './RegisterableListener';
import { AgentEventMessage } from '@finos/fdc3-schema/generated/api/BrowserTypes';
import { AgentEventMessage } from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';

export class EventListener implements RegisterableListener {
readonly id: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
AgentEventMessage,
HeartbeatAcknowledgementRequest,
HeartbeatEvent,
} from '@finos/fdc3-schema/generated/api/BrowserTypes';
} from '@finos/fdc3-schema/dist/generated/api/BrowserTypes';
import { Messaging } from '../Messaging';
import { RegisterableListener } from './RegisterableListener';

Expand Down
Loading

0 comments on commit 5ff5066

Please sign in to comment.