@aws-sdk/client-partnercentral-selling 3.692.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/LICENSE +201 -0
- package/README.md +357 -0
- package/dist-cjs/PartnerCentralSelling.js +39 -0
- package/dist-cjs/PartnerCentralSellingClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/AssignOpportunityCommand.js +27 -0
- package/dist-cjs/commands/AssociateOpportunityCommand.js +26 -0
- package/dist-cjs/commands/CreateOpportunityCommand.js +27 -0
- package/dist-cjs/commands/DisassociateOpportunityCommand.js +26 -0
- package/dist-cjs/commands/GetAwsOpportunitySummaryCommand.js +27 -0
- package/dist-cjs/commands/GetEngagementInvitationCommand.js +27 -0
- package/dist-cjs/commands/GetOpportunityCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementInvitationsCommand.js +27 -0
- package/dist-cjs/commands/ListOpportunitiesCommand.js +27 -0
- package/dist-cjs/commands/ListSolutionsCommand.js +26 -0
- package/dist-cjs/commands/RejectEngagementInvitationCommand.js +26 -0
- package/dist-cjs/commands/StartEngagementByAcceptingInvitationTaskCommand.js +26 -0
- package/dist-cjs/commands/StartEngagementFromOpportunityTaskCommand.js +26 -0
- package/dist-cjs/commands/UpdateOpportunityCommand.js +27 -0
- package/dist-cjs/commands/index.js +17 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/PartnerCentralSellingServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +1097 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListEngagementInvitationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListOpportunitiesPaginator.js +7 -0
- package/dist-cjs/pagination/ListSolutionsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_0.js +732 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/PartnerCentralSelling.js +35 -0
- package/dist-es/PartnerCentralSellingClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AssignOpportunityCommand.js +23 -0
- package/dist-es/commands/AssociateOpportunityCommand.js +22 -0
- package/dist-es/commands/CreateOpportunityCommand.js +23 -0
- package/dist-es/commands/DisassociateOpportunityCommand.js +22 -0
- package/dist-es/commands/GetAwsOpportunitySummaryCommand.js +23 -0
- package/dist-es/commands/GetEngagementInvitationCommand.js +23 -0
- package/dist-es/commands/GetOpportunityCommand.js +23 -0
- package/dist-es/commands/ListEngagementInvitationsCommand.js +23 -0
- package/dist-es/commands/ListOpportunitiesCommand.js +23 -0
- package/dist-es/commands/ListSolutionsCommand.js +22 -0
- package/dist-es/commands/RejectEngagementInvitationCommand.js +22 -0
- package/dist-es/commands/StartEngagementByAcceptingInvitationTaskCommand.js +22 -0
- package/dist-es/commands/StartEngagementFromOpportunityTaskCommand.js +22 -0
- package/dist-es/commands/UpdateOpportunityCommand.js +23 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/PartnerCentralSellingServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +1055 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListEngagementInvitationsPaginator.js +4 -0
- package/dist-es/pagination/ListOpportunitiesPaginator.js +4 -0
- package/dist-es/pagination/ListSolutionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_json1_0.js +701 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/PartnerCentralSelling.d.ts +147 -0
- package/dist-types/PartnerCentralSellingClient.d.ts +222 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/AssignOpportunityCommand.d.ts +117 -0
- package/dist-types/commands/AssociateOpportunityCommand.d.ts +145 -0
- package/dist-types/commands/CreateOpportunityCommand.d.ts +244 -0
- package/dist-types/commands/DisassociateOpportunityCommand.d.ts +115 -0
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +167 -0
- package/dist-types/commands/GetEngagementInvitationCommand.d.ts +156 -0
- package/dist-types/commands/GetOpportunityCommand.d.ts +227 -0
- package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +134 -0
- package/dist-types/commands/ListOpportunitiesCommand.d.ts +197 -0
- package/dist-types/commands/ListSolutionsCommand.d.ts +123 -0
- package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +104 -0
- package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +127 -0
- package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +130 -0
- package/dist-types/commands/UpdateOpportunityCommand.d.ts +214 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +53 -0
- package/dist-types/models/PartnerCentralSellingServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +4383 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListEngagementInvitationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOpportunitiesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSolutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +128 -0
- package/dist-types/runtimeConfig.browser.d.ts +48 -0
- package/dist-types/runtimeConfig.d.ts +48 -0
- package/dist-types/runtimeConfig.native.d.ts +47 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +257 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +205 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/AssignOpportunityCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/AssociateOpportunityCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateOpportunityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateOpportunityCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAwsOpportunitySummaryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetEngagementInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetOpportunityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListEngagementInvitationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListOpportunitiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSolutionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RejectEngagementInvitationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartEngagementFromOpportunityTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateOpportunityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/PartnerCentralSellingServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1419 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListEngagementInvitationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOpportunitiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +173 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +103 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { PartnerCentralSellingClient } from "../PartnerCentralSellingClient";
|
|
3
|
+
export interface PartnerCentralSellingPaginationConfiguration
|
|
4
|
+
extends PaginationConfiguration {
|
|
5
|
+
client: PartnerCentralSellingClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEngagementInvitationsCommandInput,
|
|
4
|
+
ListEngagementInvitationsCommandOutput,
|
|
5
|
+
} from "../commands/ListEngagementInvitationsCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEngagementInvitations: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListEngagementInvitationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEngagementInvitationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListOpportunitiesCommandInput,
|
|
4
|
+
ListOpportunitiesCommandOutput,
|
|
5
|
+
} from "../commands/ListOpportunitiesCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListOpportunities: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListOpportunitiesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListOpportunitiesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSolutionsCommandInput,
|
|
4
|
+
ListSolutionsCommandOutput,
|
|
5
|
+
} from "../commands/ListSolutionsCommand";
|
|
6
|
+
import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSolutions: (
|
|
8
|
+
config: PartnerCentralSellingPaginationConfiguration,
|
|
9
|
+
input: ListSolutionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSolutionsCommandOutput>;
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AssignOpportunityCommandInput,
|
|
8
|
+
AssignOpportunityCommandOutput,
|
|
9
|
+
} from "../commands/AssignOpportunityCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateOpportunityCommandInput,
|
|
12
|
+
AssociateOpportunityCommandOutput,
|
|
13
|
+
} from "../commands/AssociateOpportunityCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateOpportunityCommandInput,
|
|
16
|
+
CreateOpportunityCommandOutput,
|
|
17
|
+
} from "../commands/CreateOpportunityCommand";
|
|
18
|
+
import {
|
|
19
|
+
DisassociateOpportunityCommandInput,
|
|
20
|
+
DisassociateOpportunityCommandOutput,
|
|
21
|
+
} from "../commands/DisassociateOpportunityCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetAwsOpportunitySummaryCommandInput,
|
|
24
|
+
GetAwsOpportunitySummaryCommandOutput,
|
|
25
|
+
} from "../commands/GetAwsOpportunitySummaryCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetEngagementInvitationCommandInput,
|
|
28
|
+
GetEngagementInvitationCommandOutput,
|
|
29
|
+
} from "../commands/GetEngagementInvitationCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetOpportunityCommandInput,
|
|
32
|
+
GetOpportunityCommandOutput,
|
|
33
|
+
} from "../commands/GetOpportunityCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListEngagementInvitationsCommandInput,
|
|
36
|
+
ListEngagementInvitationsCommandOutput,
|
|
37
|
+
} from "../commands/ListEngagementInvitationsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListOpportunitiesCommandInput,
|
|
40
|
+
ListOpportunitiesCommandOutput,
|
|
41
|
+
} from "../commands/ListOpportunitiesCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListSolutionsCommandInput,
|
|
44
|
+
ListSolutionsCommandOutput,
|
|
45
|
+
} from "../commands/ListSolutionsCommand";
|
|
46
|
+
import {
|
|
47
|
+
RejectEngagementInvitationCommandInput,
|
|
48
|
+
RejectEngagementInvitationCommandOutput,
|
|
49
|
+
} from "../commands/RejectEngagementInvitationCommand";
|
|
50
|
+
import {
|
|
51
|
+
StartEngagementByAcceptingInvitationTaskCommandInput,
|
|
52
|
+
StartEngagementByAcceptingInvitationTaskCommandOutput,
|
|
53
|
+
} from "../commands/StartEngagementByAcceptingInvitationTaskCommand";
|
|
54
|
+
import {
|
|
55
|
+
StartEngagementFromOpportunityTaskCommandInput,
|
|
56
|
+
StartEngagementFromOpportunityTaskCommandOutput,
|
|
57
|
+
} from "../commands/StartEngagementFromOpportunityTaskCommand";
|
|
58
|
+
import {
|
|
59
|
+
UpdateOpportunityCommandInput,
|
|
60
|
+
UpdateOpportunityCommandOutput,
|
|
61
|
+
} from "../commands/UpdateOpportunityCommand";
|
|
62
|
+
export declare const se_AssignOpportunityCommand: (
|
|
63
|
+
input: AssignOpportunityCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const se_AssociateOpportunityCommand: (
|
|
67
|
+
input: AssociateOpportunityCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const se_CreateOpportunityCommand: (
|
|
71
|
+
input: CreateOpportunityCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_DisassociateOpportunityCommand: (
|
|
75
|
+
input: DisassociateOpportunityCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_GetAwsOpportunitySummaryCommand: (
|
|
79
|
+
input: GetAwsOpportunitySummaryCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_GetEngagementInvitationCommand: (
|
|
83
|
+
input: GetEngagementInvitationCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_GetOpportunityCommand: (
|
|
87
|
+
input: GetOpportunityCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_ListEngagementInvitationsCommand: (
|
|
91
|
+
input: ListEngagementInvitationsCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_ListOpportunitiesCommand: (
|
|
95
|
+
input: ListOpportunitiesCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_ListSolutionsCommand: (
|
|
99
|
+
input: ListSolutionsCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_RejectEngagementInvitationCommand: (
|
|
103
|
+
input: RejectEngagementInvitationCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_StartEngagementByAcceptingInvitationTaskCommand: (
|
|
107
|
+
input: StartEngagementByAcceptingInvitationTaskCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const se_StartEngagementFromOpportunityTaskCommand: (
|
|
111
|
+
input: StartEngagementFromOpportunityTaskCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_UpdateOpportunityCommand: (
|
|
115
|
+
input: UpdateOpportunityCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const de_AssignOpportunityCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<AssignOpportunityCommandOutput>;
|
|
122
|
+
export declare const de_AssociateOpportunityCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<AssociateOpportunityCommandOutput>;
|
|
126
|
+
export declare const de_CreateOpportunityCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<CreateOpportunityCommandOutput>;
|
|
130
|
+
export declare const de_DisassociateOpportunityCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<DisassociateOpportunityCommandOutput>;
|
|
134
|
+
export declare const de_GetAwsOpportunitySummaryCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<GetAwsOpportunitySummaryCommandOutput>;
|
|
138
|
+
export declare const de_GetEngagementInvitationCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<GetEngagementInvitationCommandOutput>;
|
|
142
|
+
export declare const de_GetOpportunityCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<GetOpportunityCommandOutput>;
|
|
146
|
+
export declare const de_ListEngagementInvitationsCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<ListEngagementInvitationsCommandOutput>;
|
|
150
|
+
export declare const de_ListOpportunitiesCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<ListOpportunitiesCommandOutput>;
|
|
154
|
+
export declare const de_ListSolutionsCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<ListSolutionsCommandOutput>;
|
|
158
|
+
export declare const de_RejectEngagementInvitationCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<RejectEngagementInvitationCommandOutput>;
|
|
162
|
+
export declare const de_StartEngagementByAcceptingInvitationTaskCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<StartEngagementByAcceptingInvitationTaskCommandOutput>;
|
|
166
|
+
export declare const de_StartEngagementFromOpportunityTaskCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<StartEngagementFromOpportunityTaskCommandOutput>;
|
|
170
|
+
export declare const de_UpdateOpportunityCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<UpdateOpportunityCommandOutput>;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: PartnerCentralSellingClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
14
|
+
defaultUserAgentProvider: (
|
|
15
|
+
config?:
|
|
16
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
17
|
+
| undefined
|
|
18
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
23
|
+
| RequestHandler;
|
|
24
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
26
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
|
+
apiVersion: string;
|
|
30
|
+
cacheMiddleware?: boolean | undefined;
|
|
31
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
32
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
33
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
34
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
35
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
serviceId: string;
|
|
38
|
+
logger: import("@smithy/types").Logger;
|
|
39
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
+
userAgentAppId?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
44
|
+
| undefined;
|
|
45
|
+
retryStrategy?:
|
|
46
|
+
| import("@smithy/types").RetryStrategy
|
|
47
|
+
| import("@smithy/types").RetryStrategyV2
|
|
48
|
+
| undefined;
|
|
49
|
+
endpoint?:
|
|
50
|
+
| ((
|
|
51
|
+
| string
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
) &
|
|
57
|
+
(
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Provider<string>
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
))
|
|
65
|
+
| undefined;
|
|
66
|
+
endpointProvider: (
|
|
67
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
68
|
+
context?: {
|
|
69
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
70
|
+
}
|
|
71
|
+
) => import("@smithy/types").EndpointV2;
|
|
72
|
+
tls?: boolean | undefined;
|
|
73
|
+
serviceConfiguredEndpoint?: undefined;
|
|
74
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
75
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralSellingHttpAuthSchemeProvider;
|
|
76
|
+
credentials?:
|
|
77
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
78
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
79
|
+
| undefined;
|
|
80
|
+
signer?:
|
|
81
|
+
| import("@smithy/types").RequestSigner
|
|
82
|
+
| ((
|
|
83
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
84
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
85
|
+
| undefined;
|
|
86
|
+
signingEscapePath?: boolean | undefined;
|
|
87
|
+
systemClockOffset?: number | undefined;
|
|
88
|
+
signingRegion?: string | undefined;
|
|
89
|
+
signerConstructor?:
|
|
90
|
+
| (new (
|
|
91
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
93
|
+
) => import("@smithy/types").RequestSigner)
|
|
94
|
+
| undefined;
|
|
95
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: PartnerCentralSellingClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>;
|
|
18
|
+
defaultUserAgentProvider: (
|
|
19
|
+
config?:
|
|
20
|
+
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
21
|
+
| undefined
|
|
22
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
23
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
24
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
25
|
+
requestHandler:
|
|
26
|
+
| RequestHandler
|
|
27
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
28
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
29
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
33
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
cacheMiddleware?: boolean | undefined;
|
|
36
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
37
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
38
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
39
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
40
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
41
|
+
disableHostPrefix: boolean;
|
|
42
|
+
serviceId: string;
|
|
43
|
+
logger: import("@smithy/types").Logger;
|
|
44
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
45
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
+
retryStrategy?:
|
|
47
|
+
| import("@smithy/types").RetryStrategy
|
|
48
|
+
| import("@smithy/types").RetryStrategyV2
|
|
49
|
+
| undefined;
|
|
50
|
+
endpoint?:
|
|
51
|
+
| ((
|
|
52
|
+
| string
|
|
53
|
+
| import("@smithy/types").Endpoint
|
|
54
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
55
|
+
| import("@smithy/types").EndpointV2
|
|
56
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
57
|
+
) &
|
|
58
|
+
(
|
|
59
|
+
| string
|
|
60
|
+
| import("@smithy/types").Provider<string>
|
|
61
|
+
| import("@smithy/types").Endpoint
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
63
|
+
| import("@smithy/types").EndpointV2
|
|
64
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
65
|
+
))
|
|
66
|
+
| undefined;
|
|
67
|
+
endpointProvider: (
|
|
68
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
69
|
+
context?: {
|
|
70
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
71
|
+
}
|
|
72
|
+
) => import("@smithy/types").EndpointV2;
|
|
73
|
+
tls?: boolean | undefined;
|
|
74
|
+
serviceConfiguredEndpoint?: undefined;
|
|
75
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
76
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralSellingHttpAuthSchemeProvider;
|
|
77
|
+
credentials?:
|
|
78
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
79
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
80
|
+
| undefined;
|
|
81
|
+
signer?:
|
|
82
|
+
| import("@smithy/types").RequestSigner
|
|
83
|
+
| ((
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
85
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
86
|
+
| undefined;
|
|
87
|
+
signingEscapePath?: boolean | undefined;
|
|
88
|
+
systemClockOffset?: number | undefined;
|
|
89
|
+
signingRegion?: string | undefined;
|
|
90
|
+
signerConstructor?:
|
|
91
|
+
| (new (
|
|
92
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
93
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
94
|
+
) => import("@smithy/types").RequestSigner)
|
|
95
|
+
| undefined;
|
|
96
|
+
};
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: PartnerCentralSellingClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
9
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
10
|
+
| Record<string, unknown>
|
|
11
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
apiVersion: string;
|
|
14
|
+
cacheMiddleware?: boolean | undefined;
|
|
15
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
16
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
20
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
21
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
22
|
+
disableHostPrefix: boolean;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
27
|
+
defaultUserAgentProvider: (
|
|
28
|
+
config?:
|
|
29
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
30
|
+
| undefined
|
|
31
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
32
|
+
credentialDefaultProvider: (
|
|
33
|
+
input: any
|
|
34
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
35
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
36
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
37
|
+
logger: import("@smithy/types").Logger;
|
|
38
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
+
defaultsMode:
|
|
40
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
41
|
+
| import("@smithy/types").Provider<
|
|
42
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
43
|
+
>;
|
|
44
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
45
|
+
userAgentAppId?:
|
|
46
|
+
| string
|
|
47
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
48
|
+
| undefined;
|
|
49
|
+
retryStrategy?:
|
|
50
|
+
| import("@smithy/types").RetryStrategy
|
|
51
|
+
| import("@smithy/types").RetryStrategyV2
|
|
52
|
+
| undefined;
|
|
53
|
+
endpoint?:
|
|
54
|
+
| string
|
|
55
|
+
| import("@smithy/types").Endpoint
|
|
56
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
57
|
+
| import("@smithy/types").EndpointV2
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
59
|
+
| undefined;
|
|
60
|
+
endpointProvider: (
|
|
61
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
62
|
+
context?: {
|
|
63
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
64
|
+
}
|
|
65
|
+
) => import("@smithy/types").EndpointV2;
|
|
66
|
+
tls?: boolean | undefined;
|
|
67
|
+
serviceConfiguredEndpoint?: undefined;
|
|
68
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralSellingHttpAuthSchemeProvider;
|
|
70
|
+
credentials?:
|
|
71
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
72
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
73
|
+
| undefined;
|
|
74
|
+
signer?:
|
|
75
|
+
| import("@smithy/types").RequestSigner
|
|
76
|
+
| ((
|
|
77
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
78
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
79
|
+
| undefined;
|
|
80
|
+
signingEscapePath?: boolean | undefined;
|
|
81
|
+
systemClockOffset?: number | undefined;
|
|
82
|
+
signingRegion?: string | undefined;
|
|
83
|
+
signerConstructor?:
|
|
84
|
+
| (new (
|
|
85
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
86
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
87
|
+
) => import("@smithy/types").RequestSigner)
|
|
88
|
+
| undefined;
|
|
89
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: PartnerCentralSellingClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
7
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (
|
|
10
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
11
|
+
context?: {
|
|
12
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
13
|
+
}
|
|
14
|
+
) => import("@smithy/types").EndpointV2;
|
|
15
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
16
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralSellingHttpAuthSchemeProvider;
|
|
17
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
|
+
logger: import("@smithy/types").Logger;
|
|
19
|
+
serviceId: string;
|
|
20
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
21
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
23
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PartnerCentralSellingExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: PartnerCentralSellingExtensionConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|
package/package.json
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-partnercentral-selling",
|
|
3
|
+
"description": "AWS SDK for JavaScript Partnercentral Selling Client for Node.js, Browser and React Native",
|
|
4
|
+
"version": "3.692.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
+
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
10
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
13
|
+
"extract:docs": "api-extractor run --local",
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo partnercentral-selling"
|
|
15
|
+
},
|
|
16
|
+
"main": "./dist-cjs/index.js",
|
|
17
|
+
"types": "./dist-types/index.d.ts",
|
|
18
|
+
"module": "./dist-es/index.js",
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
|
+
"@smithy/util-base64": "^3.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
|
+
"@smithy/util-utf8": "^3.0.0",
|
|
61
|
+
"@types/uuid": "^9.0.1",
|
|
62
|
+
"tslib": "^2.6.2",
|
|
63
|
+
"uuid": "^9.0.1"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@tsconfig/node16": "16.1.3",
|
|
67
|
+
"@types/node": "^16.18.96",
|
|
68
|
+
"concurrently": "7.0.0",
|
|
69
|
+
"downlevel-dts": "0.10.1",
|
|
70
|
+
"rimraf": "3.0.2",
|
|
71
|
+
"typescript": "~4.9.5"
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=16.0.0"
|
|
75
|
+
},
|
|
76
|
+
"typesVersions": {
|
|
77
|
+
"<4.0": {
|
|
78
|
+
"dist-types/*": [
|
|
79
|
+
"dist-types/ts3.4/*"
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"files": [
|
|
84
|
+
"dist-*/**"
|
|
85
|
+
],
|
|
86
|
+
"author": {
|
|
87
|
+
"name": "AWS SDK for JavaScript Team",
|
|
88
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
89
|
+
},
|
|
90
|
+
"license": "Apache-2.0",
|
|
91
|
+
"browser": {
|
|
92
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
93
|
+
},
|
|
94
|
+
"react-native": {
|
|
95
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
96
|
+
},
|
|
97
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-partnercentral-selling",
|
|
98
|
+
"repository": {
|
|
99
|
+
"type": "git",
|
|
100
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
101
|
+
"directory": "clients/client-partnercentral-selling"
|
|
102
|
+
}
|
|
103
|
+
}
|