diff --git a/assert/package.json b/assert/package.json index 1cd7766..c82951e 100644 --- a/assert/package.json +++ b/assert/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/assert", - "version": "0.10.3", + "version": "0.10.4", "description": "Extra assert library", "type": "module", "repository": { diff --git a/dtc-aws-plugin/package.json b/dtc-aws-plugin/package.json index 66392d5..c54b12b 100644 --- a/dtc-aws-plugin/package.json +++ b/dtc-aws-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/dtc-aws-plugin", - "version": "0.10.3", + "version": "0.10.4", "description": "AWS plugin for Declarative TestCases", "repository": { "type": "git", diff --git a/dtc-graphql-plugin/package.json b/dtc-graphql-plugin/package.json index 478849c..8779c7f 100644 --- a/dtc-graphql-plugin/package.json +++ b/dtc-graphql-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/dtc-graphql-plugin", - "version": "0.10.3", + "version": "0.10.4", "description": "GraphQl plugin for Declarative TestCases", "repository": { "type": "git", diff --git a/dtc-mysql-plugin/package.json b/dtc-mysql-plugin/package.json index 6dfd3f7..a9e47e1 100644 --- a/dtc-mysql-plugin/package.json +++ b/dtc-mysql-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/dtc-mysql-plugin", - "version": "0.10.3", + "version": "0.10.4", "description": "MySQL plugin for Declarative TestCases", "repository": { "type": "git", diff --git a/dtc-playwright-plugin/package.json b/dtc-playwright-plugin/package.json index cf49192..b06362a 100644 --- a/dtc-playwright-plugin/package.json +++ b/dtc-playwright-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/dtc-playwright-plugin", - "version": "0.10.3", + "version": "0.10.4", "description": "Playwright plugin for Declarative TestCases", "repository": { "type": "git", diff --git a/dtc/package.json b/dtc/package.json index e1f11c7..5eab71a 100644 --- a/dtc/package.json +++ b/dtc/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/dtc", - "version": "0.10.3", + "version": "0.10.4", "description": "Declarative TestCases", "repository": { "type": "git", diff --git a/dtc/src/plugins/http-mock-plugin.ts b/dtc/src/plugins/http-mock-plugin.ts index 11b2dc5..e9428ec 100644 --- a/dtc/src/plugins/http-mock-plugin.ts +++ b/dtc/src/plugins/http-mock-plugin.ts @@ -1,7 +1,7 @@ import nodeAssert from 'node:assert/strict' import extraAssert from '@cgauge/assert' import nock from 'nock' -import {is, optional, record, union} from '@cgauge/type-guard' +import {is, optional, record, union, unknown} from '@cgauge/type-guard' const MockHttp = { url: String, @@ -10,8 +10,8 @@ const MockHttp = { status: optional(Number), queries: optional(record(String, union(String, [String]))), headers: optional(record(String, String)), - body: optional(union(String, record(String, String))), - response: optional(union(String, record(String, String))), + body: optional(union(String, record(String, unknown))), + response: optional(union(String, record(String, unknown))), } export const partialBodyCheck = (expected: string | Record) => (body: Record) => { diff --git a/nock-aws/package.json b/nock-aws/package.json index b56e70e..b9dbed0 100644 --- a/nock-aws/package.json +++ b/nock-aws/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/nock-aws", - "version": "0.10.3", + "version": "0.10.4", "description": "AWS Request mocker based on Nock", "repository": { "type": "git", diff --git a/type-guard/package.json b/type-guard/package.json index 548ccde..80fcb70 100644 --- a/type-guard/package.json +++ b/type-guard/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/type-guard", - "version": "0.10.3", + "version": "0.10.4", "description": "Typescript type guards", "repository": { "type": "git", diff --git a/yaml/package.json b/yaml/package.json index 16a510d..9efe32d 100644 --- a/yaml/package.json +++ b/yaml/package.json @@ -1,6 +1,6 @@ { "name": "@cgauge/yaml", - "version": "0.10.3", + "version": "0.10.4", "description": "YAML parser with extra tags", "repository": { "type": "git",