@aws-sdk/client-service-catalog-appregistry 3.300.0 → 3.301.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-types/commands/AssociateAttributeGroupCommand.d.ts +1 -1
- package/dist-types/commands/AssociateResourceCommand.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -2
- package/dist-types/commands/CreateAttributeGroupCommand.d.ts +2 -2
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAttributeGroupCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateAttributeGroupCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetAssociatedResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetAttributeGroupCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAttributeGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListAttributeGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/SyncResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAttributeGroupCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -28,7 +28,7 @@ export interface AssociateAttributeGroupCommandOutput extends AssociateAttribute
|
|
|
28
28
|
* import { ServiceCatalogAppRegistryClient, AssociateAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
29
29
|
* // const { ServiceCatalogAppRegistryClient, AssociateAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
30
30
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // AssociateAttributeGroupRequest
|
|
32
32
|
* application: "STRING_VALUE", // required
|
|
33
33
|
* attributeGroup: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -33,7 +33,7 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
|
|
|
33
33
|
* import { ServiceCatalogAppRegistryClient, AssociateResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
34
34
|
* // const { ServiceCatalogAppRegistryClient, AssociateResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
35
35
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // AssociateResourceRequest
|
|
37
37
|
* application: "STRING_VALUE", // required
|
|
38
38
|
* resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE", // required
|
|
39
39
|
* resource: "STRING_VALUE", // required
|
|
@@ -26,10 +26,10 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, CreateApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, CreateApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateApplicationRequest
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
|
-
* tags: {
|
|
32
|
+
* tags: { // Tags
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* clientToken: "STRING_VALUE", // required
|
|
@@ -29,11 +29,11 @@ export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupR
|
|
|
29
29
|
* import { ServiceCatalogAppRegistryClient, CreateAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
30
30
|
* // const { ServiceCatalogAppRegistryClient, CreateAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
31
31
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateAttributeGroupRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* description: "STRING_VALUE",
|
|
35
35
|
* attributes: "STRING_VALUE", // required
|
|
36
|
-
* tags: {
|
|
36
|
+
* tags: { // Tags
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* clientToken: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, DeleteApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, DeleteApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteApplicationRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteApplicationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupR
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, DeleteAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, DeleteAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteAttributeGroupRequest
|
|
30
30
|
* attributeGroup: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteAttributeGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DisassociateAttributeGroupCommandOutput extends DisassociateAtt
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, DisassociateAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, DisassociateAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisassociateAttributeGroupRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* attributeGroup: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, DisassociateResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, DisassociateResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisassociateResourceRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE", // required
|
|
32
32
|
* resource: "STRING_VALUE", // required
|
|
@@ -44,7 +44,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
44
44
|
* import { ServiceCatalogAppRegistryClient, GetApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
45
45
|
* // const { ServiceCatalogAppRegistryClient, GetApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
46
46
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
47
|
-
* const input = {
|
|
47
|
+
* const input = { // GetApplicationRequest
|
|
48
48
|
* application: "STRING_VALUE", // required
|
|
49
49
|
* };
|
|
50
50
|
* const command = new GetApplicationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourc
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, GetAssociatedResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, GetAssociatedResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetAssociatedResourceRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE", // required
|
|
32
32
|
* resource: "STRING_VALUE", // required
|
|
@@ -31,7 +31,7 @@ export interface GetAttributeGroupCommandOutput extends GetAttributeGroupRespons
|
|
|
31
31
|
* import { ServiceCatalogAppRegistryClient, GetAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
32
32
|
* // const { ServiceCatalogAppRegistryClient, GetAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
33
33
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // GetAttributeGroupRequest
|
|
35
35
|
* attributeGroup: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetAttributeGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListApplicationsCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListApplicationsCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListApplicationsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociat
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListAssociatedAttributeGroupsCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListAssociatedAttributeGroupsCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAssociatedAttributeGroupsRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -46,7 +46,7 @@ export interface ListAssociatedResourcesCommandOutput extends ListAssociatedReso
|
|
|
46
46
|
* import { ServiceCatalogAppRegistryClient, ListAssociatedResourcesCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
47
47
|
* // const { ServiceCatalogAppRegistryClient, ListAssociatedResourcesCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
48
48
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
49
|
-
* const input = {
|
|
49
|
+
* const input = { // ListAssociatedResourcesRequest
|
|
50
50
|
* application: "STRING_VALUE", // required
|
|
51
51
|
* nextToken: "STRING_VALUE",
|
|
52
52
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsRes
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListAttributeGroupsCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListAttributeGroupsCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAttributeGroupsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttr
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAttributeGroupsForApplicationRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListTagsForResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListTagsForResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -29,9 +29,9 @@ export interface PutConfigurationCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { ServiceCatalogAppRegistryClient, PutConfigurationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
30
30
|
* // const { ServiceCatalogAppRegistryClient, PutConfigurationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
31
31
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
32
|
-
* const input = {
|
|
33
|
-
* configuration: {
|
|
34
|
-
* tagQueryConfiguration: {
|
|
32
|
+
* const input = { // PutConfigurationRequest
|
|
33
|
+
* configuration: { // AppRegistryConfiguration
|
|
34
|
+
* tagQueryConfiguration: { // TagQueryConfiguration
|
|
35
35
|
* tagKey: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* },
|
|
@@ -27,7 +27,7 @@ export interface SyncResourceCommandOutput extends SyncResourceResponse, __Metad
|
|
|
27
27
|
* import { ServiceCatalogAppRegistryClient, SyncResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
28
28
|
* // const { ServiceCatalogAppRegistryClient, SyncResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
29
29
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // SyncResourceRequest
|
|
31
31
|
* resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE", // required
|
|
32
32
|
* resource: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -28,9 +28,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
28
28
|
* import { ServiceCatalogAppRegistryClient, TagResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
29
29
|
* // const { ServiceCatalogAppRegistryClient, TagResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
30
30
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
32
|
* resourceArn: "STRING_VALUE", // required
|
|
33
|
-
* tags: { // required
|
|
33
|
+
* tags: { // Tags // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { ServiceCatalogAppRegistryClient, UntagResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
28
28
|
* // const { ServiceCatalogAppRegistryClient, UntagResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
29
29
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* resourceArn: "STRING_VALUE", // required
|
|
32
|
-
* tagKeys: [ // required
|
|
32
|
+
* tagKeys: [ // TagKeys // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, UpdateApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, UpdateApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateApplicationRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* description: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupR
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, UpdateAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, UpdateAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateAttributeGroupRequest
|
|
30
30
|
* attributeGroup: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* description: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-catalog-appregistry",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Catalog Appregistry Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|