@aws-sdk/client-entityresolution 3.948.0 → 3.953.0
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/dist-cjs/index.js +553 -384
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AddPolicyStatementCommand.js +2 -2
- package/dist-es/commands/BatchDeleteUniqueIdCommand.js +2 -2
- package/dist-es/commands/CreateIdMappingWorkflowCommand.js +2 -2
- package/dist-es/commands/CreateIdNamespaceCommand.js +2 -2
- package/dist-es/commands/CreateMatchingWorkflowCommand.js +2 -2
- package/dist-es/commands/CreateSchemaMappingCommand.js +2 -2
- package/dist-es/commands/DeleteIdMappingWorkflowCommand.js +2 -2
- package/dist-es/commands/DeleteIdNamespaceCommand.js +2 -2
- package/dist-es/commands/DeleteMatchingWorkflowCommand.js +2 -2
- package/dist-es/commands/DeletePolicyStatementCommand.js +2 -2
- package/dist-es/commands/DeleteSchemaMappingCommand.js +2 -2
- package/dist-es/commands/GenerateMatchIdCommand.js +2 -2
- package/dist-es/commands/GetIdMappingJobCommand.js +2 -2
- package/dist-es/commands/GetIdMappingWorkflowCommand.js +2 -2
- package/dist-es/commands/GetIdNamespaceCommand.js +2 -2
- package/dist-es/commands/GetMatchIdCommand.js +2 -2
- package/dist-es/commands/GetMatchingJobCommand.js +2 -2
- package/dist-es/commands/GetMatchingWorkflowCommand.js +2 -2
- package/dist-es/commands/GetPolicyCommand.js +2 -2
- package/dist-es/commands/GetProviderServiceCommand.js +2 -2
- package/dist-es/commands/GetSchemaMappingCommand.js +2 -2
- package/dist-es/commands/ListIdMappingJobsCommand.js +2 -2
- package/dist-es/commands/ListIdMappingWorkflowsCommand.js +2 -2
- package/dist-es/commands/ListIdNamespacesCommand.js +2 -2
- package/dist-es/commands/ListMatchingJobsCommand.js +2 -2
- package/dist-es/commands/ListMatchingWorkflowsCommand.js +2 -2
- package/dist-es/commands/ListProviderServicesCommand.js +2 -2
- package/dist-es/commands/ListSchemaMappingsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutPolicyCommand.js +2 -2
- package/dist-es/commands/StartIdMappingJobCommand.js +2 -2
- package/dist-es/commands/StartMatchingJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateIdMappingWorkflowCommand.js +2 -2
- package/dist-es/commands/UpdateIdNamespaceCommand.js +2 -2
- package/dist-es/commands/UpdateMatchingWorkflowCommand.js +2 -2
- package/dist-es/commands/UpdateSchemaMappingCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +342 -341
- package/dist-types/EntityResolutionClient.d.ts +1 -10
- package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +2 -2
- package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +10 -2
- package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +5 -1
- package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +10 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +29 -8
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +169 -209
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +9 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -210
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateIdNamespace } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateIdNamespace$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateIdNamespaceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateIdNamespaceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSVeniceService", "UpdateIdNamespace", {})
|
|
13
13
|
.n("EntityResolutionClient", "UpdateIdNamespaceCommand")
|
|
14
|
-
.sc(UpdateIdNamespace)
|
|
14
|
+
.sc(UpdateIdNamespace$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateMatchingWorkflow } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateMatchingWorkflow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateMatchingWorkflowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateMatchingWorkflowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSVeniceService", "UpdateMatchingWorkflow", {})
|
|
13
13
|
.n("EntityResolutionClient", "UpdateMatchingWorkflowCommand")
|
|
14
|
-
.sc(UpdateMatchingWorkflow)
|
|
14
|
+
.sc(UpdateMatchingWorkflow$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSchemaMapping } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSchemaMapping$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSchemaMappingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSchemaMappingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSVeniceService", "UpdateSchemaMapping", {})
|
|
13
13
|
.n("EntityResolutionClient", "UpdateSchemaMappingCommand")
|
|
14
|
-
.sc(UpdateSchemaMapping)
|
|
14
|
+
.sc(UpdateSchemaMapping$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.entityresolution",
|
|
29
|
+
version: "2018-05-10",
|
|
30
|
+
serviceTarget: "AWSVeniceService",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "EntityResolution",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|