@aws-sdk/client-partnercentral-selling 3.699.0 → 3.709.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 +206 -45
- package/dist-cjs/PartnerCentralSelling.js +42 -0
- package/dist-cjs/commands/AcceptEngagementInvitationCommand.js +26 -0
- package/dist-cjs/commands/CreateEngagementCommand.js +27 -0
- package/dist-cjs/commands/CreateEngagementInvitationCommand.js +27 -0
- package/dist-cjs/commands/CreateResourceSnapshotCommand.js +26 -0
- package/dist-cjs/commands/CreateResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/DeleteResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/GetEngagementCommand.js +27 -0
- package/dist-cjs/commands/GetResourceSnapshotCommand.js +27 -0
- package/dist-cjs/commands/GetResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/GetSellingSystemSettingsCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementByAcceptingInvitationTasksCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementFromOpportunityTasksCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementInvitationsCommand.js +1 -1
- package/dist-cjs/commands/ListEngagementMembersCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementResourceAssociationsCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementsCommand.js +27 -0
- package/dist-cjs/commands/ListResourceSnapshotJobsCommand.js +26 -0
- package/dist-cjs/commands/ListResourceSnapshotsCommand.js +27 -0
- package/dist-cjs/commands/PutSellingSystemSettingsCommand.js +26 -0
- package/dist-cjs/commands/StartResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/StopResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/SubmitOpportunityCommand.js +26 -0
- package/dist-cjs/commands/index.js +21 -0
- package/dist-cjs/models/models_0.js +281 -87
- package/dist-cjs/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementFromOpportunityTasksPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementMembersPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementResourceAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementsPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceSnapshotJobsPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceSnapshotsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_0.js +599 -1
- package/dist-es/PartnerCentralSelling.js +42 -0
- package/dist-es/commands/AcceptEngagementInvitationCommand.js +22 -0
- package/dist-es/commands/CreateEngagementCommand.js +23 -0
- package/dist-es/commands/CreateEngagementInvitationCommand.js +23 -0
- package/dist-es/commands/CreateResourceSnapshotCommand.js +22 -0
- package/dist-es/commands/CreateResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/DeleteResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/GetEngagementCommand.js +23 -0
- package/dist-es/commands/GetResourceSnapshotCommand.js +23 -0
- package/dist-es/commands/GetResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/GetSellingSystemSettingsCommand.js +22 -0
- package/dist-es/commands/ListEngagementByAcceptingInvitationTasksCommand.js +22 -0
- package/dist-es/commands/ListEngagementFromOpportunityTasksCommand.js +22 -0
- package/dist-es/commands/ListEngagementInvitationsCommand.js +2 -2
- package/dist-es/commands/ListEngagementMembersCommand.js +23 -0
- package/dist-es/commands/ListEngagementResourceAssociationsCommand.js +23 -0
- package/dist-es/commands/ListEngagementsCommand.js +23 -0
- package/dist-es/commands/ListResourceSnapshotJobsCommand.js +22 -0
- package/dist-es/commands/ListResourceSnapshotsCommand.js +23 -0
- package/dist-es/commands/PutSellingSystemSettingsCommand.js +22 -0
- package/dist-es/commands/StartResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/StopResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/SubmitOpportunityCommand.js +22 -0
- package/dist-es/commands/index.js +21 -0
- package/dist-es/models/models_0.js +249 -81
- package/dist-es/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementFromOpportunityTasksPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementMembersPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementResourceAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementsPaginator.js +4 -0
- package/dist-es/pagination/ListResourceSnapshotJobsPaginator.js +4 -0
- package/dist-es/pagination/ListResourceSnapshotsPaginator.js +4 -0
- package/dist-es/pagination/index.js +7 -0
- package/dist-es/protocols/Aws_json1_0.js +556 -1
- package/dist-types/PartnerCentralSelling.d.ts +182 -42
- package/dist-types/PartnerCentralSellingClient.d.ts +58 -44
- package/dist-types/commands/AcceptEngagementInvitationCommand.d.ts +103 -0
- package/dist-types/commands/AssignOpportunityCommand.d.ts +27 -32
- package/dist-types/commands/AssociateOpportunityCommand.d.ts +40 -46
- package/dist-types/commands/CreateEngagementCommand.d.ts +136 -0
- package/dist-types/commands/CreateEngagementInvitationCommand.d.ts +158 -0
- package/dist-types/commands/CreateOpportunityCommand.d.ts +40 -46
- package/dist-types/commands/CreateResourceSnapshotCommand.d.ts +117 -0
- package/dist-types/commands/CreateResourceSnapshotJobCommand.d.ts +119 -0
- package/dist-types/commands/DeleteResourceSnapshotJobCommand.d.ts +96 -0
- package/dist-types/commands/DisassociateOpportunityCommand.d.ts +29 -34
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +24 -28
- package/dist-types/commands/GetEngagementCommand.d.ts +124 -0
- package/dist-types/commands/GetEngagementInvitationCommand.d.ts +34 -24
- package/dist-types/commands/GetOpportunityCommand.d.ts +24 -29
- package/dist-types/commands/GetResourceSnapshotCommand.d.ts +186 -0
- package/dist-types/commands/GetResourceSnapshotJobCommand.d.ts +109 -0
- package/dist-types/commands/GetSellingSystemSettingsCommand.d.ts +95 -0
- package/dist-types/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +128 -0
- package/dist-types/commands/ListEngagementFromOpportunityTasksCommand.d.ts +129 -0
- package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +34 -25
- package/dist-types/commands/ListEngagementMembersCommand.d.ts +109 -0
- package/dist-types/commands/ListEngagementResourceAssociationsCommand.d.ts +112 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +123 -0
- package/dist-types/commands/ListOpportunitiesCommand.d.ts +35 -39
- package/dist-types/commands/ListResourceSnapshotJobsCommand.d.ts +108 -0
- package/dist-types/commands/ListResourceSnapshotsCommand.d.ts +113 -0
- package/dist-types/commands/ListSolutionsCommand.d.ts +20 -20
- package/dist-types/commands/PutSellingSystemSettingsCommand.d.ts +96 -0
- package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +22 -27
- package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +37 -35
- package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +37 -35
- package/dist-types/commands/StartResourceSnapshotJobCommand.d.ts +95 -0
- package/dist-types/commands/StopResourceSnapshotJobCommand.d.ts +95 -0
- package/dist-types/commands/SubmitOpportunityCommand.d.ts +106 -0
- package/dist-types/commands/UpdateOpportunityCommand.d.ts +33 -35
- package/dist-types/commands/index.d.ts +21 -0
- package/dist-types/index.d.ts +35 -42
- package/dist-types/models/models_0.d.ts +4764 -2209
- package/dist-types/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementMembersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementResourceAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceSnapshotJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceSnapshotsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +7 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +189 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +375 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +126 -0
- package/dist-types/ts3.4/commands/AcceptEngagementInvitationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateEngagementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateEngagementInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResourceSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResourceSnapshotJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetEngagementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetResourceSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourceSnapshotJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSellingSystemSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementFromOpportunityTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementMembersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementResourceAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListResourceSnapshotJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListResourceSnapshotsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutSellingSystemSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StopResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/SubmitOpportunityCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/index.d.ts +21 -0
- package/dist-types/ts3.4/models/models_0.d.ts +587 -86
- package/dist-types/ts3.4/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementMembersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementResourceAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceSnapshotJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceSnapshotsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +252 -0
- package/package.json +35 -35
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
4
|
+
ListEngagementByAcceptingInvitationTasksCommandOutput,
|
|
5
|
+
} from "../commands/ListEngagementByAcceptingInvitationTasksCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEngagementByAcceptingInvitationTasks: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEngagementByAcceptingInvitationTasksCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEngagementFromOpportunityTasksCommandInput,
|
|
4
|
+
ListEngagementFromOpportunityTasksCommandOutput,
|
|
5
|
+
} from "../commands/ListEngagementFromOpportunityTasksCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEngagementFromOpportunityTasks: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListEngagementFromOpportunityTasksCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEngagementFromOpportunityTasksCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEngagementMembersCommandInput,
|
|
4
|
+
ListEngagementMembersCommandOutput,
|
|
5
|
+
} from "../commands/ListEngagementMembersCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEngagementMembers: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListEngagementMembersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEngagementMembersCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEngagementResourceAssociationsCommandInput,
|
|
4
|
+
ListEngagementResourceAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/ListEngagementResourceAssociationsCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEngagementResourceAssociations: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListEngagementResourceAssociationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEngagementResourceAssociationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEngagementsCommandInput,
|
|
4
|
+
ListEngagementsCommandOutput,
|
|
5
|
+
} from "../commands/ListEngagementsCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEngagements: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListEngagementsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEngagementsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListResourceSnapshotJobsCommandInput,
|
|
4
|
+
ListResourceSnapshotJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListResourceSnapshotJobsCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListResourceSnapshotJobs: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListResourceSnapshotJobsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListResourceSnapshotJobsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListResourceSnapshotsCommandInput,
|
|
4
|
+
ListResourceSnapshotsCommandOutput,
|
|
5
|
+
} from "../commands/ListResourceSnapshotsCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListResourceSnapshots: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListResourceSnapshotsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListResourceSnapshotsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListEngagementByAcceptingInvitationTasksPaginator";
|
|
3
|
+
export * from "./ListEngagementFromOpportunityTasksPaginator";
|
|
2
4
|
export * from "./ListEngagementInvitationsPaginator";
|
|
5
|
+
export * from "./ListEngagementMembersPaginator";
|
|
6
|
+
export * from "./ListEngagementResourceAssociationsPaginator";
|
|
7
|
+
export * from "./ListEngagementsPaginator";
|
|
3
8
|
export * from "./ListOpportunitiesPaginator";
|
|
9
|
+
export * from "./ListResourceSnapshotJobsPaginator";
|
|
10
|
+
export * from "./ListResourceSnapshotsPaginator";
|
|
4
11
|
export * from "./ListSolutionsPaginator";
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AcceptEngagementInvitationCommandInput,
|
|
8
|
+
AcceptEngagementInvitationCommandOutput,
|
|
9
|
+
} from "../commands/AcceptEngagementInvitationCommand";
|
|
6
10
|
import {
|
|
7
11
|
AssignOpportunityCommandInput,
|
|
8
12
|
AssignOpportunityCommandOutput,
|
|
@@ -11,10 +15,30 @@ import {
|
|
|
11
15
|
AssociateOpportunityCommandInput,
|
|
12
16
|
AssociateOpportunityCommandOutput,
|
|
13
17
|
} from "../commands/AssociateOpportunityCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateEngagementCommandInput,
|
|
20
|
+
CreateEngagementCommandOutput,
|
|
21
|
+
} from "../commands/CreateEngagementCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateEngagementInvitationCommandInput,
|
|
24
|
+
CreateEngagementInvitationCommandOutput,
|
|
25
|
+
} from "../commands/CreateEngagementInvitationCommand";
|
|
14
26
|
import {
|
|
15
27
|
CreateOpportunityCommandInput,
|
|
16
28
|
CreateOpportunityCommandOutput,
|
|
17
29
|
} from "../commands/CreateOpportunityCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateResourceSnapshotCommandInput,
|
|
32
|
+
CreateResourceSnapshotCommandOutput,
|
|
33
|
+
} from "../commands/CreateResourceSnapshotCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateResourceSnapshotJobCommandInput,
|
|
36
|
+
CreateResourceSnapshotJobCommandOutput,
|
|
37
|
+
} from "../commands/CreateResourceSnapshotJobCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteResourceSnapshotJobCommandInput,
|
|
40
|
+
DeleteResourceSnapshotJobCommandOutput,
|
|
41
|
+
} from "../commands/DeleteResourceSnapshotJobCommand";
|
|
18
42
|
import {
|
|
19
43
|
DisassociateOpportunityCommandInput,
|
|
20
44
|
DisassociateOpportunityCommandOutput,
|
|
@@ -23,6 +47,10 @@ import {
|
|
|
23
47
|
GetAwsOpportunitySummaryCommandInput,
|
|
24
48
|
GetAwsOpportunitySummaryCommandOutput,
|
|
25
49
|
} from "../commands/GetAwsOpportunitySummaryCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetEngagementCommandInput,
|
|
52
|
+
GetEngagementCommandOutput,
|
|
53
|
+
} from "../commands/GetEngagementCommand";
|
|
26
54
|
import {
|
|
27
55
|
GetEngagementInvitationCommandInput,
|
|
28
56
|
GetEngagementInvitationCommandOutput,
|
|
@@ -31,18 +59,62 @@ import {
|
|
|
31
59
|
GetOpportunityCommandInput,
|
|
32
60
|
GetOpportunityCommandOutput,
|
|
33
61
|
} from "../commands/GetOpportunityCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetResourceSnapshotCommandInput,
|
|
64
|
+
GetResourceSnapshotCommandOutput,
|
|
65
|
+
} from "../commands/GetResourceSnapshotCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetResourceSnapshotJobCommandInput,
|
|
68
|
+
GetResourceSnapshotJobCommandOutput,
|
|
69
|
+
} from "../commands/GetResourceSnapshotJobCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetSellingSystemSettingsCommandInput,
|
|
72
|
+
GetSellingSystemSettingsCommandOutput,
|
|
73
|
+
} from "../commands/GetSellingSystemSettingsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
76
|
+
ListEngagementByAcceptingInvitationTasksCommandOutput,
|
|
77
|
+
} from "../commands/ListEngagementByAcceptingInvitationTasksCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListEngagementFromOpportunityTasksCommandInput,
|
|
80
|
+
ListEngagementFromOpportunityTasksCommandOutput,
|
|
81
|
+
} from "../commands/ListEngagementFromOpportunityTasksCommand";
|
|
34
82
|
import {
|
|
35
83
|
ListEngagementInvitationsCommandInput,
|
|
36
84
|
ListEngagementInvitationsCommandOutput,
|
|
37
85
|
} from "../commands/ListEngagementInvitationsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListEngagementMembersCommandInput,
|
|
88
|
+
ListEngagementMembersCommandOutput,
|
|
89
|
+
} from "../commands/ListEngagementMembersCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListEngagementResourceAssociationsCommandInput,
|
|
92
|
+
ListEngagementResourceAssociationsCommandOutput,
|
|
93
|
+
} from "../commands/ListEngagementResourceAssociationsCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListEngagementsCommandInput,
|
|
96
|
+
ListEngagementsCommandOutput,
|
|
97
|
+
} from "../commands/ListEngagementsCommand";
|
|
38
98
|
import {
|
|
39
99
|
ListOpportunitiesCommandInput,
|
|
40
100
|
ListOpportunitiesCommandOutput,
|
|
41
101
|
} from "../commands/ListOpportunitiesCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListResourceSnapshotJobsCommandInput,
|
|
104
|
+
ListResourceSnapshotJobsCommandOutput,
|
|
105
|
+
} from "../commands/ListResourceSnapshotJobsCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListResourceSnapshotsCommandInput,
|
|
108
|
+
ListResourceSnapshotsCommandOutput,
|
|
109
|
+
} from "../commands/ListResourceSnapshotsCommand";
|
|
42
110
|
import {
|
|
43
111
|
ListSolutionsCommandInput,
|
|
44
112
|
ListSolutionsCommandOutput,
|
|
45
113
|
} from "../commands/ListSolutionsCommand";
|
|
114
|
+
import {
|
|
115
|
+
PutSellingSystemSettingsCommandInput,
|
|
116
|
+
PutSellingSystemSettingsCommandOutput,
|
|
117
|
+
} from "../commands/PutSellingSystemSettingsCommand";
|
|
46
118
|
import {
|
|
47
119
|
RejectEngagementInvitationCommandInput,
|
|
48
120
|
RejectEngagementInvitationCommandOutput,
|
|
@@ -55,10 +127,26 @@ import {
|
|
|
55
127
|
StartEngagementFromOpportunityTaskCommandInput,
|
|
56
128
|
StartEngagementFromOpportunityTaskCommandOutput,
|
|
57
129
|
} from "../commands/StartEngagementFromOpportunityTaskCommand";
|
|
130
|
+
import {
|
|
131
|
+
StartResourceSnapshotJobCommandInput,
|
|
132
|
+
StartResourceSnapshotJobCommandOutput,
|
|
133
|
+
} from "../commands/StartResourceSnapshotJobCommand";
|
|
134
|
+
import {
|
|
135
|
+
StopResourceSnapshotJobCommandInput,
|
|
136
|
+
StopResourceSnapshotJobCommandOutput,
|
|
137
|
+
} from "../commands/StopResourceSnapshotJobCommand";
|
|
138
|
+
import {
|
|
139
|
+
SubmitOpportunityCommandInput,
|
|
140
|
+
SubmitOpportunityCommandOutput,
|
|
141
|
+
} from "../commands/SubmitOpportunityCommand";
|
|
58
142
|
import {
|
|
59
143
|
UpdateOpportunityCommandInput,
|
|
60
144
|
UpdateOpportunityCommandOutput,
|
|
61
145
|
} from "../commands/UpdateOpportunityCommand";
|
|
146
|
+
export declare const se_AcceptEngagementInvitationCommand: (
|
|
147
|
+
input: AcceptEngagementInvitationCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
62
150
|
export declare const se_AssignOpportunityCommand: (
|
|
63
151
|
input: AssignOpportunityCommandInput,
|
|
64
152
|
context: __SerdeContext
|
|
@@ -67,10 +155,30 @@ export declare const se_AssociateOpportunityCommand: (
|
|
|
67
155
|
input: AssociateOpportunityCommandInput,
|
|
68
156
|
context: __SerdeContext
|
|
69
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_CreateEngagementCommand: (
|
|
159
|
+
input: CreateEngagementCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const se_CreateEngagementInvitationCommand: (
|
|
163
|
+
input: CreateEngagementInvitationCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
70
166
|
export declare const se_CreateOpportunityCommand: (
|
|
71
167
|
input: CreateOpportunityCommandInput,
|
|
72
168
|
context: __SerdeContext
|
|
73
169
|
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_CreateResourceSnapshotCommand: (
|
|
171
|
+
input: CreateResourceSnapshotCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_CreateResourceSnapshotJobCommand: (
|
|
175
|
+
input: CreateResourceSnapshotJobCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_DeleteResourceSnapshotJobCommand: (
|
|
179
|
+
input: DeleteResourceSnapshotJobCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
74
182
|
export declare const se_DisassociateOpportunityCommand: (
|
|
75
183
|
input: DisassociateOpportunityCommandInput,
|
|
76
184
|
context: __SerdeContext
|
|
@@ -79,6 +187,10 @@ export declare const se_GetAwsOpportunitySummaryCommand: (
|
|
|
79
187
|
input: GetAwsOpportunitySummaryCommandInput,
|
|
80
188
|
context: __SerdeContext
|
|
81
189
|
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const se_GetEngagementCommand: (
|
|
191
|
+
input: GetEngagementCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
82
194
|
export declare const se_GetEngagementInvitationCommand: (
|
|
83
195
|
input: GetEngagementInvitationCommandInput,
|
|
84
196
|
context: __SerdeContext
|
|
@@ -87,18 +199,62 @@ export declare const se_GetOpportunityCommand: (
|
|
|
87
199
|
input: GetOpportunityCommandInput,
|
|
88
200
|
context: __SerdeContext
|
|
89
201
|
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_GetResourceSnapshotCommand: (
|
|
203
|
+
input: GetResourceSnapshotCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const se_GetResourceSnapshotJobCommand: (
|
|
207
|
+
input: GetResourceSnapshotJobCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const se_GetSellingSystemSettingsCommand: (
|
|
211
|
+
input: GetSellingSystemSettingsCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const se_ListEngagementByAcceptingInvitationTasksCommand: (
|
|
215
|
+
input: ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const se_ListEngagementFromOpportunityTasksCommand: (
|
|
219
|
+
input: ListEngagementFromOpportunityTasksCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
90
222
|
export declare const se_ListEngagementInvitationsCommand: (
|
|
91
223
|
input: ListEngagementInvitationsCommandInput,
|
|
92
224
|
context: __SerdeContext
|
|
93
225
|
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const se_ListEngagementMembersCommand: (
|
|
227
|
+
input: ListEngagementMembersCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const se_ListEngagementResourceAssociationsCommand: (
|
|
231
|
+
input: ListEngagementResourceAssociationsCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const se_ListEngagementsCommand: (
|
|
235
|
+
input: ListEngagementsCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
94
238
|
export declare const se_ListOpportunitiesCommand: (
|
|
95
239
|
input: ListOpportunitiesCommandInput,
|
|
96
240
|
context: __SerdeContext
|
|
97
241
|
) => Promise<__HttpRequest>;
|
|
242
|
+
export declare const se_ListResourceSnapshotJobsCommand: (
|
|
243
|
+
input: ListResourceSnapshotJobsCommandInput,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<__HttpRequest>;
|
|
246
|
+
export declare const se_ListResourceSnapshotsCommand: (
|
|
247
|
+
input: ListResourceSnapshotsCommandInput,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<__HttpRequest>;
|
|
98
250
|
export declare const se_ListSolutionsCommand: (
|
|
99
251
|
input: ListSolutionsCommandInput,
|
|
100
252
|
context: __SerdeContext
|
|
101
253
|
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const se_PutSellingSystemSettingsCommand: (
|
|
255
|
+
input: PutSellingSystemSettingsCommandInput,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<__HttpRequest>;
|
|
102
258
|
export declare const se_RejectEngagementInvitationCommand: (
|
|
103
259
|
input: RejectEngagementInvitationCommandInput,
|
|
104
260
|
context: __SerdeContext
|
|
@@ -111,10 +267,26 @@ export declare const se_StartEngagementFromOpportunityTaskCommand: (
|
|
|
111
267
|
input: StartEngagementFromOpportunityTaskCommandInput,
|
|
112
268
|
context: __SerdeContext
|
|
113
269
|
) => Promise<__HttpRequest>;
|
|
270
|
+
export declare const se_StartResourceSnapshotJobCommand: (
|
|
271
|
+
input: StartResourceSnapshotJobCommandInput,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<__HttpRequest>;
|
|
274
|
+
export declare const se_StopResourceSnapshotJobCommand: (
|
|
275
|
+
input: StopResourceSnapshotJobCommandInput,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<__HttpRequest>;
|
|
278
|
+
export declare const se_SubmitOpportunityCommand: (
|
|
279
|
+
input: SubmitOpportunityCommandInput,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<__HttpRequest>;
|
|
114
282
|
export declare const se_UpdateOpportunityCommand: (
|
|
115
283
|
input: UpdateOpportunityCommandInput,
|
|
116
284
|
context: __SerdeContext
|
|
117
285
|
) => Promise<__HttpRequest>;
|
|
286
|
+
export declare const de_AcceptEngagementInvitationCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<AcceptEngagementInvitationCommandOutput>;
|
|
118
290
|
export declare const de_AssignOpportunityCommand: (
|
|
119
291
|
output: __HttpResponse,
|
|
120
292
|
context: __SerdeContext
|
|
@@ -123,10 +295,30 @@ export declare const de_AssociateOpportunityCommand: (
|
|
|
123
295
|
output: __HttpResponse,
|
|
124
296
|
context: __SerdeContext
|
|
125
297
|
) => Promise<AssociateOpportunityCommandOutput>;
|
|
298
|
+
export declare const de_CreateEngagementCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<CreateEngagementCommandOutput>;
|
|
302
|
+
export declare const de_CreateEngagementInvitationCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<CreateEngagementInvitationCommandOutput>;
|
|
126
306
|
export declare const de_CreateOpportunityCommand: (
|
|
127
307
|
output: __HttpResponse,
|
|
128
308
|
context: __SerdeContext
|
|
129
309
|
) => Promise<CreateOpportunityCommandOutput>;
|
|
310
|
+
export declare const de_CreateResourceSnapshotCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<CreateResourceSnapshotCommandOutput>;
|
|
314
|
+
export declare const de_CreateResourceSnapshotJobCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<CreateResourceSnapshotJobCommandOutput>;
|
|
318
|
+
export declare const de_DeleteResourceSnapshotJobCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<DeleteResourceSnapshotJobCommandOutput>;
|
|
130
322
|
export declare const de_DisassociateOpportunityCommand: (
|
|
131
323
|
output: __HttpResponse,
|
|
132
324
|
context: __SerdeContext
|
|
@@ -135,6 +327,10 @@ export declare const de_GetAwsOpportunitySummaryCommand: (
|
|
|
135
327
|
output: __HttpResponse,
|
|
136
328
|
context: __SerdeContext
|
|
137
329
|
) => Promise<GetAwsOpportunitySummaryCommandOutput>;
|
|
330
|
+
export declare const de_GetEngagementCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<GetEngagementCommandOutput>;
|
|
138
334
|
export declare const de_GetEngagementInvitationCommand: (
|
|
139
335
|
output: __HttpResponse,
|
|
140
336
|
context: __SerdeContext
|
|
@@ -143,18 +339,62 @@ export declare const de_GetOpportunityCommand: (
|
|
|
143
339
|
output: __HttpResponse,
|
|
144
340
|
context: __SerdeContext
|
|
145
341
|
) => Promise<GetOpportunityCommandOutput>;
|
|
342
|
+
export declare const de_GetResourceSnapshotCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<GetResourceSnapshotCommandOutput>;
|
|
346
|
+
export declare const de_GetResourceSnapshotJobCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<GetResourceSnapshotJobCommandOutput>;
|
|
350
|
+
export declare const de_GetSellingSystemSettingsCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<GetSellingSystemSettingsCommandOutput>;
|
|
354
|
+
export declare const de_ListEngagementByAcceptingInvitationTasksCommand: (
|
|
355
|
+
output: __HttpResponse,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<ListEngagementByAcceptingInvitationTasksCommandOutput>;
|
|
358
|
+
export declare const de_ListEngagementFromOpportunityTasksCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<ListEngagementFromOpportunityTasksCommandOutput>;
|
|
146
362
|
export declare const de_ListEngagementInvitationsCommand: (
|
|
147
363
|
output: __HttpResponse,
|
|
148
364
|
context: __SerdeContext
|
|
149
365
|
) => Promise<ListEngagementInvitationsCommandOutput>;
|
|
366
|
+
export declare const de_ListEngagementMembersCommand: (
|
|
367
|
+
output: __HttpResponse,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<ListEngagementMembersCommandOutput>;
|
|
370
|
+
export declare const de_ListEngagementResourceAssociationsCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<ListEngagementResourceAssociationsCommandOutput>;
|
|
374
|
+
export declare const de_ListEngagementsCommand: (
|
|
375
|
+
output: __HttpResponse,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<ListEngagementsCommandOutput>;
|
|
150
378
|
export declare const de_ListOpportunitiesCommand: (
|
|
151
379
|
output: __HttpResponse,
|
|
152
380
|
context: __SerdeContext
|
|
153
381
|
) => Promise<ListOpportunitiesCommandOutput>;
|
|
382
|
+
export declare const de_ListResourceSnapshotJobsCommand: (
|
|
383
|
+
output: __HttpResponse,
|
|
384
|
+
context: __SerdeContext
|
|
385
|
+
) => Promise<ListResourceSnapshotJobsCommandOutput>;
|
|
386
|
+
export declare const de_ListResourceSnapshotsCommand: (
|
|
387
|
+
output: __HttpResponse,
|
|
388
|
+
context: __SerdeContext
|
|
389
|
+
) => Promise<ListResourceSnapshotsCommandOutput>;
|
|
154
390
|
export declare const de_ListSolutionsCommand: (
|
|
155
391
|
output: __HttpResponse,
|
|
156
392
|
context: __SerdeContext
|
|
157
393
|
) => Promise<ListSolutionsCommandOutput>;
|
|
394
|
+
export declare const de_PutSellingSystemSettingsCommand: (
|
|
395
|
+
output: __HttpResponse,
|
|
396
|
+
context: __SerdeContext
|
|
397
|
+
) => Promise<PutSellingSystemSettingsCommandOutput>;
|
|
158
398
|
export declare const de_RejectEngagementInvitationCommand: (
|
|
159
399
|
output: __HttpResponse,
|
|
160
400
|
context: __SerdeContext
|
|
@@ -167,6 +407,18 @@ export declare const de_StartEngagementFromOpportunityTaskCommand: (
|
|
|
167
407
|
output: __HttpResponse,
|
|
168
408
|
context: __SerdeContext
|
|
169
409
|
) => Promise<StartEngagementFromOpportunityTaskCommandOutput>;
|
|
410
|
+
export declare const de_StartResourceSnapshotJobCommand: (
|
|
411
|
+
output: __HttpResponse,
|
|
412
|
+
context: __SerdeContext
|
|
413
|
+
) => Promise<StartResourceSnapshotJobCommandOutput>;
|
|
414
|
+
export declare const de_StopResourceSnapshotJobCommand: (
|
|
415
|
+
output: __HttpResponse,
|
|
416
|
+
context: __SerdeContext
|
|
417
|
+
) => Promise<StopResourceSnapshotJobCommandOutput>;
|
|
418
|
+
export declare const de_SubmitOpportunityCommand: (
|
|
419
|
+
output: __HttpResponse,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<SubmitOpportunityCommandOutput>;
|
|
170
422
|
export declare const de_UpdateOpportunityCommand: (
|
|
171
423
|
output: __HttpResponse,
|
|
172
424
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-partnercentral-selling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Partnercentral Selling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.709.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",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.1.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
-
"@smithy/types": "^3.7.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.709.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.709.0",
|
|
25
|
+
"@aws-sdk/core": "3.709.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.709.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.709.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.709.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.709.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.709.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.709.0",
|
|
32
|
+
"@aws-sdk/types": "3.709.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.709.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.709.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.709.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.13",
|
|
37
|
+
"@smithy/core": "^2.5.5",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.2",
|
|
39
|
+
"@smithy/hash-node": "^3.0.11",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.11",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.13",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.5",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.30",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.11",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.11",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.12",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.2",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.8",
|
|
49
|
+
"@smithy/smithy-client": "^3.5.0",
|
|
50
|
+
"@smithy/types": "^3.7.2",
|
|
51
|
+
"@smithy/url-parser": "^3.0.11",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.30",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.30",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.7",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.11",
|
|
59
|
+
"@smithy/util-retry": "^3.0.11",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|