Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Reverted Pact interaction type for backwards compatibility #446

Merged
merged 2 commits into from
Aug 2, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions runtime/pact.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { PactWeb } from '@pact-foundation/pact-web';
import { InteractionObject } from '@pact-foundation/pact-web/dsl/interaction';
import { SkyAppConfig } from '@blackbaud/skyux-builder/runtime/config';

declare var Pact: any;
Expand Down Expand Up @@ -34,7 +33,7 @@ export class SkyPactService {
* @param provider The name of the provider service.
* @param interaction The provider interaction.
*/
public addInteraction(provider: string, interaction: InteractionObject): Promise<string> {
public addInteraction(provider: string, interaction: any): Promise<string> {
return this.pactProviders[provider].addInteraction(interaction);
}

Expand Down