@aws-sdk/client-iotsitewise 3.858.0 → 3.860.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/README.md +32 -0
- package/dist-cjs/index.js +271 -39
- package/dist-es/IoTSiteWise.js +8 -0
- package/dist-es/commands/DeleteAssetModelInterfaceRelationshipCommand.js +22 -0
- package/dist-es/commands/DescribeAssetModelInterfaceRelationshipCommand.js +22 -0
- package/dist-es/commands/InvokeAssistantCommand.js +2 -1
- package/dist-es/commands/ListInterfaceRelationshipsCommand.js +22 -0
- package/dist-es/commands/PutAssetModelInterfaceRelationshipCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +1 -50
- package/dist-es/models/models_1.js +50 -0
- package/dist-es/pagination/ListInterfaceRelationshipsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +151 -0
- package/dist-types/IoTSiteWise.d.ts +28 -0
- package/dist-types/IoTSiteWiseClient.d.ts +6 -2
- package/dist-types/commands/CreateAssetModelCommand.d.ts +12 -7
- package/dist-types/commands/CreateAssetModelCompositeModelCommand.d.ts +2 -2
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAssetModelInterfaceRelationshipCommand.d.ts +110 -0
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +13 -6
- package/dist-types/commands/DescribeAssetModelCompositeModelCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAssetModelInterfaceRelationshipCommand.d.ts +103 -0
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +4 -4
- package/dist-types/commands/InvokeAssistantCommand.d.ts +2 -1
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +8 -2
- package/dist-types/commands/ListAssetModelsCommand.d.ts +2 -2
- package/dist-types/commands/ListComputationModelDataBindingUsagesCommand.d.ts +3 -6
- package/dist-types/commands/ListComputationModelResolveToResourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListInterfaceRelationshipsCommand.d.ts +96 -0
- package/dist-types/commands/PutAssetModelInterfaceRelationshipCommand.d.ts +126 -0
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +4 -4
- package/dist-types/commands/UpdateAssetModelCompositeModelCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +245 -361
- package/dist-types/models/models_1.d.ts +494 -41
- package/dist-types/pagination/ListInterfaceRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +86 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteAssetModelInterfaceRelationshipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeAssetModelInterfaceRelationshipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/InvokeAssistantCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListInterfaceRelationshipsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAssetModelInterfaceRelationshipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +41 -180
- package/dist-types/ts3.4/models/models_1.d.ts +217 -0
- package/dist-types/ts3.4/pagination/ListInterfaceRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotsitewise",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotsitewise Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.860.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iotsitewise",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.858.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.859.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|