@pact-foundation/pact 10.2.0 → 10.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [10.2.1](https://github.com/pact-foundation/pact-js/compare/v10.2.0...v10.2.1) (2022-11-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Fixes and Improvements
|
|
9
|
+
|
|
10
|
+
* remove absolute import paths in types. Fixes [#974](https://github.com/pact-foundation/pact-js/issues/974) ([a20ad80](https://github.com/pact-foundation/pact-js/commit/a20ad8038dc560168da20d4a22cd65381d93af26))
|
|
11
|
+
|
|
5
12
|
## [10.2.0](https://github.com/pact-foundation/pact-js/compare/v10.1.4...v10.2.0) (2022-11-10)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as express from 'express';
|
|
2
2
|
import { LogLevel } from '../../options';
|
|
3
3
|
import { JsonMap, AnyJson } from '../../../common/jsonTypes';
|
|
4
|
-
import { MessageProviders } from '
|
|
4
|
+
import { MessageProviders } from '../../message';
|
|
5
5
|
export declare type Hook = () => Promise<unknown>;
|
|
6
6
|
/**
|
|
7
7
|
* State handlers map a state description to a function
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { VerifierOptions as PactCoreVerifierOptions } from '@pact-foundation/pact-core';
|
|
2
|
-
import { MessageProviderOptions } from '
|
|
2
|
+
import { MessageProviderOptions } from '../options';
|
|
3
3
|
import { ProxyOptions } from './proxy/types';
|
|
4
4
|
declare type ExcludedPactNodeVerifierKeys = Exclude<keyof PactCoreVerifierOptions, 'providerBaseUrl'>;
|
|
5
5
|
export declare type PactNodeVerificationExcludedOptions = Pick<PactCoreVerifierOptions, ExcludedPactNodeVerifierKeys>;
|