@aws-sdk/client-partnercentral-selling 3.1075.0 → 3.1076.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultPartnerCentralSellingHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AcceptEngagementInvitation$, AssignOpportunity$, AssociateOpportunity$, CreateEngagement$, CreateEngagementContext$, CreateEngagementInvitation$, CreateOpportunity$, CreateResourceSnapshot$, CreateResourceSnapshotJob$, DeleteResourceSnapshotJob$, DisassociateOpportunity$, GetAwsOpportunitySummary$, GetEngagement$, GetEngagementInvitation$, GetOpportunity$, GetProspectingFromEngagementTask$, GetResourceSnapshot$, GetResourceSnapshotJob$, GetSellingSystemSettings$, ListEngagementByAcceptingInvitationTasks$, ListEngagementFromOpportunityTasks$, ListEngagementInvitations$, ListEngagementMembers$, ListEngagementResourceAssociations$, ListEngagements$, ListOpportunities$, ListOpportunityFromEngagementTasks$, ListProspectingFromEngagementTasks$, ListResourceSnapshotJobs$, ListResourceSnapshots$, ListSolutions$, ListTagsForResource$, PutSellingSystemSettings$, RejectEngagementInvitation$, StartEngagementByAcceptingInvitationTask$, StartEngagementFromOpportunityTask$, StartOpportunityFromEngagementTask$, StartProspectingFromEngagementTask$, StartResourceSnapshotJob$, StopResourceSnapshotJob$, SubmitOpportunity$, TagResource$, UntagResource$, UpdateEngagementContext$, UpdateOpportunity$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { PartnerCentralSellingServiceException } = require("./models/PartnerCentralSellingServiceException");
18
- exports.PartnerCentralSellingServiceException = PartnerCentralSellingServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultPartnerCentralSellingHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "partnercentral-selling",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultPartnerCentralSellingHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -29,6 +65,1906 @@ const commonParams = {
29
65
  Region: { type: "builtInParams", name: "region" },
30
66
  };
31
67
 
68
+ var version = "3.1075.0";
69
+ var packageInfo = {
70
+ version: version};
71
+
72
+ const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
73
+ const _data = {
74
+ conditions: [
75
+ [a, [b]],
76
+ [a, c],
77
+ ["aws.partition", c, "PartitionResult"],
78
+ ["booleanEquals", [{ ref: "UseFIPS" }, true]]
79
+ ],
80
+ results: [
81
+ [-1],
82
+ [-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
83
+ [b, {}],
84
+ ["https://partnercentral-selling-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
85
+ ["https://partnercentral-selling.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
86
+ [-1, "Invalid Configuration: Missing Region"]
87
+ ]
88
+ };
89
+ const root = 2;
90
+ const r = 100_000_000;
91
+ const nodes = new Int32Array([
92
+ -1, 1, -1,
93
+ 0, 6, 3,
94
+ 1, 4, r + 5,
95
+ 2, 5, r + 5,
96
+ 3, r + 3, r + 4,
97
+ 3, r + 1, r + 2,
98
+ ]);
99
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
100
+
101
+ const cache = new EndpointCache({
102
+ size: 50,
103
+ params: ["Endpoint", "Region", "UseFIPS"],
104
+ });
105
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
106
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
107
+ endpointParams: endpointParams,
108
+ logger: context.logger,
109
+ }));
110
+ };
111
+ customEndpointFunctions.aws = awsEndpointFunctions;
112
+
113
+ class PartnerCentralSellingServiceException extends ServiceException {
114
+ constructor(options) {
115
+ super(options);
116
+ Object.setPrototypeOf(this, PartnerCentralSellingServiceException.prototype);
117
+ }
118
+ }
119
+
120
+ class AccessDeniedException extends PartnerCentralSellingServiceException {
121
+ name = "AccessDeniedException";
122
+ $fault = "client";
123
+ Message;
124
+ Reason;
125
+ constructor(opts) {
126
+ super({
127
+ name: "AccessDeniedException",
128
+ $fault: "client",
129
+ ...opts,
130
+ });
131
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
+ this.Message = opts.Message;
133
+ this.Reason = opts.Reason;
134
+ }
135
+ }
136
+ class ConflictException extends PartnerCentralSellingServiceException {
137
+ name = "ConflictException";
138
+ $fault = "client";
139
+ Message;
140
+ constructor(opts) {
141
+ super({
142
+ name: "ConflictException",
143
+ $fault: "client",
144
+ ...opts,
145
+ });
146
+ Object.setPrototypeOf(this, ConflictException.prototype);
147
+ this.Message = opts.Message;
148
+ }
149
+ }
150
+ class InternalServerException extends PartnerCentralSellingServiceException {
151
+ name = "InternalServerException";
152
+ $fault = "server";
153
+ Message;
154
+ constructor(opts) {
155
+ super({
156
+ name: "InternalServerException",
157
+ $fault: "server",
158
+ ...opts,
159
+ });
160
+ Object.setPrototypeOf(this, InternalServerException.prototype);
161
+ this.Message = opts.Message;
162
+ }
163
+ }
164
+ class ResourceNotFoundException extends PartnerCentralSellingServiceException {
165
+ name = "ResourceNotFoundException";
166
+ $fault = "client";
167
+ Message;
168
+ constructor(opts) {
169
+ super({
170
+ name: "ResourceNotFoundException",
171
+ $fault: "client",
172
+ ...opts,
173
+ });
174
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
175
+ this.Message = opts.Message;
176
+ }
177
+ }
178
+ class ThrottlingException extends PartnerCentralSellingServiceException {
179
+ name = "ThrottlingException";
180
+ $fault = "client";
181
+ Message;
182
+ constructor(opts) {
183
+ super({
184
+ name: "ThrottlingException",
185
+ $fault: "client",
186
+ ...opts,
187
+ });
188
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
189
+ this.Message = opts.Message;
190
+ }
191
+ }
192
+ class ValidationException extends PartnerCentralSellingServiceException {
193
+ name = "ValidationException";
194
+ $fault = "client";
195
+ Message;
196
+ Reason;
197
+ ErrorList;
198
+ constructor(opts) {
199
+ super({
200
+ name: "ValidationException",
201
+ $fault: "client",
202
+ ...opts,
203
+ });
204
+ Object.setPrototypeOf(this, ValidationException.prototype);
205
+ this.Message = opts.Message;
206
+ this.Reason = opts.Reason;
207
+ this.ErrorList = opts.ErrorList;
208
+ }
209
+ }
210
+ class ServiceQuotaExceededException extends PartnerCentralSellingServiceException {
211
+ name = "ServiceQuotaExceededException";
212
+ $fault = "client";
213
+ Message;
214
+ constructor(opts) {
215
+ super({
216
+ name: "ServiceQuotaExceededException",
217
+ $fault: "client",
218
+ ...opts,
219
+ });
220
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
221
+ this.Message = opts.Message;
222
+ }
223
+ }
224
+
225
+ const _A = "Alias";
226
+ const _AA = "AwsAccount";
227
+ const _AAI = "AwsAccountId";
228
+ const _AAIOAL = "AwsAccountIdOrAliasList";
229
+ const _AAL = "AwsAccountList";
230
+ const _AC = "AssigneeContact";
231
+ const _ACD = "AfterCreatedDate";
232
+ const _ACd = "AdditionalComments";
233
+ const _ADE = "AccessDeniedException";
234
+ const _AEI = "AcceptEngagementInvitation";
235
+ const _AEIR = "AcceptEngagementInvitationRequest";
236
+ const _AFU = "AwsFundingUsed";
237
+ const _AI = "AccountId";
238
+ const _ALMD = "AfterLastModifiedDate";
239
+ const _AM = "AwsMaturity";
240
+ const _AMO = "AwsMarketplaceOffers";
241
+ const _AMOS = "AwsMarketplaceOfferSets";
242
+ const _AMm = "AmountMap";
243
+ const _AN = "AccountName";
244
+ const _AO = "AssignOpportunity";
245
+ const _AOC = "AwsOpportunityCustomer";
246
+ const _AOI = "AwsOpportunityInsights";
247
+ const _AOLC = "AwsOpportunityLifeCycle";
248
+ const _AOP = "AwsOpportunityProject";
249
+ const _AOR = "AssignOpportunityRequest";
250
+ const _AORE = "AwsOpportunityRelatedEntities";
251
+ const _AORs = "AssociateOpportunityRequest";
252
+ const _AOSFV = "AwsOpportunitySummaryFullView";
253
+ const _AOTML = "AwsOpportunityTeamMembersList";
254
+ const _AOs = "AssociateOpportunity";
255
+ const _AP = "AddressPart";
256
+ const _APD = "AwsProductDetails";
257
+ const _API = "AwsProductInsights";
258
+ const _APL = "AwsProductsList";
259
+ const _APO = "AwsProductOptimization";
260
+ const _APOL = "AwsProductOptimizationsList";
261
+ const _APSIBS = "AwsProductsSpendInsightsBySource";
262
+ const _APp = "ApnPrograms";
263
+ const _APw = "AwsPartition";
264
+ const _APws = "AwsProducts";
265
+ const _AR = "AccountReceiver";
266
+ const _AS = "AccountSummary";
267
+ const _ASd = "AddressSummary";
268
+ const _ASw = "AwsSubmission";
269
+ const _ATCD = "AfterTargetCloseDate";
270
+ const _ATM = "AwsTeamMember";
271
+ const _AWS = "AWS";
272
+ const _Ac = "Account";
273
+ const _Ad = "Address";
274
+ const _Am = "Amount";
275
+ const _Ar = "Arn";
276
+ const _As = "Assignee";
277
+ const _At = "Attributes";
278
+ const _Aw = "Aws";
279
+ const _BCD = "BeforeCreatedDate";
280
+ const _BLMD = "BeforeLastModifiedDate";
281
+ const _BP = "BusinessProblem";
282
+ const _BT = "BusinessTitle";
283
+ const _BTCD = "BeforeTargetCloseDate";
284
+ const _C = "Catalog";
285
+ const _CA = "CreatedAt";
286
+ const _CAu = "CustomerAction";
287
+ const _CB = "CreatedBy";
288
+ const _CBP = "CustomerBusinessProblem";
289
+ const _CBT = "ContactBusinessTitle";
290
+ const _CC = "CountryCode";
291
+ const _CCL = "CustomerContactsList";
292
+ const _CCN = "CustomerCompanyName";
293
+ const _CCu = "CurrencyCode";
294
+ const _CD = "CreatedDate";
295
+ const _CDF = "CreatedDateFilter";
296
+ const _CE = "ConflictException";
297
+ const _CEC = "CompletedEngagementCount";
298
+ const _CECR = "CreateEngagementContextRequest";
299
+ const _CECRr = "CreateEngagementContextResponse";
300
+ const _CECr = "CreateEngagementContext";
301
+ const _CEI = "CreateEngagementInvitation";
302
+ const _CEIR = "CreateEngagementInvitationRequest";
303
+ const _CEIRr = "CreateEngagementInvitationResponse";
304
+ const _CER = "CreateEngagementRequest";
305
+ const _CERr = "CreateEngagementResponse";
306
+ const _CEr = "CreateEngagement";
307
+ const _CI = "ContextId";
308
+ const _CIo = "ContextIdentifier";
309
+ const _CLR = "ClosedLostReason";
310
+ const _CM = "CosellMotion";
311
+ const _CN = "CompanyName";
312
+ const _CNa = "CampaignName";
313
+ const _CNo = "CompetitorName";
314
+ const _CO = "CreateOpportunity";
315
+ const _COR = "CreateOpportunityRequest";
316
+ const _CORr = "CreateOpportunityResponse";
317
+ const _CP = "CustomerProject";
318
+ const _CPC = "CustomerProjectsContext";
319
+ const _CRS = "CreateResourceSnapshot";
320
+ const _CRSJ = "CreateResourceSnapshotJob";
321
+ const _CRSJR = "CreateResourceSnapshotJobRequest";
322
+ const _CRSJRr = "CreateResourceSnapshotJobResponse";
323
+ const _CRSR = "CreateResourceSnapshotRequest";
324
+ const _CRSRr = "CreateResourceSnapshotResponse";
325
+ const _CS = "CustomerSummary";
326
+ const _CSo = "CompanySize";
327
+ const _CT = "ClientToken";
328
+ const _CTo = "ContextTypes";
329
+ const _CUC = "CustomerUseCase";
330
+ const _CWU = "CompanyWebsiteUrl";
331
+ const _Ca = "Categories";
332
+ const _Cat = "Category";
333
+ const _Ch = "Channels";
334
+ const _Ci = "City";
335
+ const _Co = "Contacts";
336
+ const _Cod = "Code";
337
+ const _Con = "Contact";
338
+ const _Cont = "Contexts";
339
+ const _Cou = "Country";
340
+ const _Cu = "Customer";
341
+ const _D = "Duns";
342
+ const _DM = "DeliveryModels";
343
+ const _DMe = "DeliveryModel";
344
+ const _DN = "DunsNumber";
345
+ const _DO = "DisassociateOpportunity";
346
+ const _DOR = "DisassociateOpportunityRequest";
347
+ const _DRSJ = "DeleteResourceSnapshotJob";
348
+ const _DRSJR = "DeleteResourceSnapshotJobRequest";
349
+ const _De = "Description";
350
+ const _Det = "Details";
351
+ const _E = "Email";
352
+ const _EA = "EngagementArn";
353
+ const _EC = "EngagementCustomer";
354
+ const _ECB = "ExcludeCreatedBy";
355
+ const _ECBP = "EngagementCustomerBusinessProblem";
356
+ const _ECD = "EngagementContextDetails";
357
+ const _ECDx = "ExpectedContractDuration";
358
+ const _ECI = "EngagementContextId";
359
+ const _ECP = "EngagementContextPayload";
360
+ const _ECPD = "EngagementCustomerProjectDetails";
361
+ const _ECS = "ExpectedCustomerSpend";
362
+ const _ECSL = "ExpectedCustomerSpendList";
363
+ const _ECT = "ExcludeContextTypes";
364
+ const _ECn = "EngagementContexts";
365
+ const _ED = "ExpirationDate";
366
+ const _EDf = "EffectiveDate";
367
+ const _EDn = "EngagementDescription";
368
+ const _EI = "EngagementIdentifier";
369
+ const _EII = "EngagementInvitationIdentifier";
370
+ const _EIIn = "EngagementInvitationId";
371
+ const _EIS = "EngagementInvitationSummary";
372
+ const _EISn = "EngagementInvitationSummaries";
373
+ const _EIn = "EngagementId";
374
+ const _EL = "ErrorList";
375
+ const _ELMA = "EngagementLastModifiedAt";
376
+ const _EM = "EngagementMember";
377
+ const _EML = "EngagementMemberList";
378
+ const _EMS = "EngagementMemberSummary";
379
+ const _EMSn = "EngagementMemberSummaries";
380
+ const _EMn = "EngagementMembers";
381
+ const _EMx = "ExistingMembers";
382
+ const _EP = "EligiblePrograms";
383
+ const _EPR = "EngagementProspectingResult";
384
+ const _EPRL = "EngagementProspectingResultList";
385
+ const _ERAS = "EngagementResourceAssociationSummary";
386
+ const _ERASL = "EngagementResourceAssociationSummaryList";
387
+ const _ERASn = "EngagementResourceAssociationSummaries";
388
+ const _ES = "EngagementScore";
389
+ const _ESL = "EngagementSummaryList";
390
+ const _ESn = "EngagementSort";
391
+ const _ESng = "EngagementSummary";
392
+ const _ET = "EngagementTitle";
393
+ const _ETn = "EndTime";
394
+ const _EU = "EstimationUrl";
395
+ const _En = "Engagements";
396
+ const _F = "Frequency";
397
+ const _FEC = "FailedEngagementCount";
398
+ const _FN = "FirstName";
399
+ const _FNi = "FieldName";
400
+ const _G = "Geo";
401
+ const _GAOS = "GetAwsOpportunitySummary";
402
+ const _GAOSR = "GetAwsOpportunitySummaryRequest";
403
+ const _GAOSRe = "GetAwsOpportunitySummaryResponse";
404
+ const _GE = "GetEngagement";
405
+ const _GEI = "GetEngagementInvitation";
406
+ const _GEIR = "GetEngagementInvitationRequest";
407
+ const _GEIRe = "GetEngagementInvitationResponse";
408
+ const _GER = "GetEngagementRequest";
409
+ const _GERe = "GetEngagementResponse";
410
+ const _GO = "GetOpportunity";
411
+ const _GOR = "GetOpportunityRequest";
412
+ const _GORe = "GetOpportunityResponse";
413
+ const _GPFET = "GetProspectingFromEngagementTask";
414
+ const _GPFETR = "GetProspectingFromEngagementTaskRequest";
415
+ const _GPFETRe = "GetProspectingFromEngagementTaskResponse";
416
+ const _GRS = "GetResourceSnapshot";
417
+ const _GRSJ = "GetResourceSnapshotJob";
418
+ const _GRSJR = "GetResourceSnapshotJobRequest";
419
+ const _GRSJRe = "GetResourceSnapshotJobResponse";
420
+ const _GRSR = "GetResourceSnapshotRequest";
421
+ const _GRSRe = "GetResourceSnapshotResponse";
422
+ const _GSSS = "GetSellingSystemSettings";
423
+ const _GSSSR = "GetSellingSystemSettingsRequest";
424
+ const _GSSSRe = "GetSellingSystemSettingsResponse";
425
+ const _I = "Identifier";
426
+ const _ID = "InvitationDate";
427
+ const _IDn = "InteractionDate";
428
+ const _IM = "InvitationMessage";
429
+ const _ISE = "InternalServerException";
430
+ const _IT = "InvolvementType";
431
+ const _ITCR = "InvolvementTypeChangeReason";
432
+ const _Id = "Id";
433
+ const _Ide = "Identifiers";
434
+ const _In = "Industry";
435
+ const _Ins = "Insights";
436
+ const _Int = "Interactions";
437
+ const _Inte = "Interaction";
438
+ const _Inv = "Invitation";
439
+ const _JT = "JobTitle";
440
+ const _K = "Key";
441
+ const _L = "Lifecycle";
442
+ const _LC = "LifeCycle";
443
+ const _LCFV = "LifeCycleForView";
444
+ const _LCRS = "LifeCycleReviewStatus";
445
+ const _LCS = "LifeCycleSummary";
446
+ const _LCSi = "LifeCycleStage";
447
+ const _LCe = "LeadContact";
448
+ const _LCea = "LeadContext";
449
+ const _LCead = "LeadCustomer";
450
+ const _LE = "ListEngagements";
451
+ const _LEBAIT = "ListEngagementByAcceptingInvitationTasks";
452
+ const _LEBAITR = "ListEngagementByAcceptingInvitationTasksRequest";
453
+ const _LEBAITRi = "ListEngagementByAcceptingInvitationTasksResponse";
454
+ const _LEBAITS = "ListEngagementByAcceptingInvitationTaskSummary";
455
+ const _LEBAITSi = "ListEngagementByAcceptingInvitationTaskSummaries";
456
+ const _LEFOT = "ListEngagementFromOpportunityTasks";
457
+ const _LEFOTR = "ListEngagementFromOpportunityTasksRequest";
458
+ const _LEFOTRi = "ListEngagementFromOpportunityTasksResponse";
459
+ const _LEFOTS = "ListEngagementFromOpportunityTaskSummary";
460
+ const _LEFOTSi = "ListEngagementFromOpportunityTaskSummaries";
461
+ const _LEI = "ListEngagementInvitations";
462
+ const _LEIR = "ListEngagementInvitationsRequest";
463
+ const _LEIRi = "ListEngagementInvitationsResponse";
464
+ const _LEM = "ListEngagementMembers";
465
+ const _LEMR = "ListEngagementMembersRequest";
466
+ const _LEMRi = "ListEngagementMembersResponse";
467
+ const _LER = "ListEngagementsRequest";
468
+ const _LERA = "ListEngagementResourceAssociations";
469
+ const _LERAR = "ListEngagementResourceAssociationsRequest";
470
+ const _LERARi = "ListEngagementResourceAssociationsResponse";
471
+ const _LERi = "ListEngagementsResponse";
472
+ const _LF = "LastFailure";
473
+ const _LI = "LeadInsights";
474
+ const _LIC = "LeadInvitationCustomer";
475
+ const _LII = "LeadInvitationInteraction";
476
+ const _LIL = "LeadInteractionList";
477
+ const _LIP = "LeadInvitationPayload";
478
+ const _LIe = "LeadInteraction";
479
+ const _LIea = "LeadInvitation";
480
+ const _LMD = "LastModifiedDate";
481
+ const _LN = "LastName";
482
+ const _LO = "ListOpportunities";
483
+ const _LOFET = "ListOpportunityFromEngagementTasks";
484
+ const _LOFETR = "ListOpportunityFromEngagementTasksRequest";
485
+ const _LOFETRi = "ListOpportunityFromEngagementTasksResponse";
486
+ const _LOFETS = "ListOpportunityFromEngagementTaskSummary";
487
+ const _LOFETSi = "ListOpportunityFromEngagementTaskSummaries";
488
+ const _LOR = "ListOpportunitiesRequest";
489
+ const _LORi = "ListOpportunitiesResponse";
490
+ const _LPFET = "ListProspectingFromEngagementTasks";
491
+ const _LPFETR = "ListProspectingFromEngagementTasksRequest";
492
+ const _LPFETRi = "ListProspectingFromEngagementTasksResponse";
493
+ const _LRS = "LeadReadinessScore";
494
+ const _LRSJ = "ListResourceSnapshotJobs";
495
+ const _LRSJR = "ListResourceSnapshotJobsRequest";
496
+ const _LRSJRi = "ListResourceSnapshotJobsResponse";
497
+ const _LRSR = "ListResourceSnapshotsRequest";
498
+ const _LRSRi = "ListResourceSnapshotsResponse";
499
+ const _LRSi = "ListResourceSnapshots";
500
+ const _LS = "ListSolutions";
501
+ const _LSED = "LastSuccessfulExecutionDate";
502
+ const _LSR = "ListSolutionsRequest";
503
+ const _LSRi = "ListSolutionsResponse";
504
+ const _LTFR = "ListTagsForResource";
505
+ const _LTFRR = "ListTagsForResourceRequest";
506
+ const _LTFRRi = "ListTagsForResourceResponse";
507
+ const _LTSB = "ListTasksSortBase";
508
+ const _Le = "Lead";
509
+ const _M = "Message";
510
+ const _MA = "MonetaryAmount";
511
+ const _MAo = "ModifiedAt";
512
+ const _MB = "ModifiedBy";
513
+ const _MC = "MemberCount";
514
+ const _MCN = "MemberCompanyName";
515
+ const _MES = "MarketplaceEngagementScore";
516
+ const _MR = "MaxResults";
517
+ const _MS = "MarketSegment";
518
+ const _MV = "MonetaryValue";
519
+ const _Ma = "Marketing";
520
+ const _N = "Name";
521
+ const _NBA = "NextBestActions";
522
+ const _NS = "NextSteps";
523
+ const _NSH = "NextStepsHistory";
524
+ const _NSHe = "NextStepsHistories";
525
+ const _NSa = "NationalSecurity";
526
+ const _NT = "NextToken";
527
+ const _O = "Origin";
528
+ const _OA = "OptimizedAmount";
529
+ const _OCN = "OtherCompetitorNames";
530
+ const _OEIS = "OpportunityEngagementInvitationSort";
531
+ const _OI = "OtherIndustry";
532
+ const _OIP = "OpportunityInvitationPayload";
533
+ const _OIp = "OpportunityIdentifier";
534
+ const _OIpp = "OpportunityId";
535
+ const _OIppo = "OpportunityInvitation";
536
+ const _OQ = "OpportunityQuality";
537
+ const _OS = "OpportunitySummaries";
538
+ const _OSD = "OtherSolutionDescription";
539
+ const _OSV = "OpportunitySummaryView";
540
+ const _OSp = "OpportunitySort";
541
+ const _OSpp = "OpportunitySummary";
542
+ const _OT = "OpportunityTeam";
543
+ const _OTp = "OpportunityType";
544
+ const _Op = "Optimizations";
545
+ const _P = "Phone";
546
+ const _PC = "PostalCode";
547
+ const _PCr = "ProductCode";
548
+ const _PD = "ProjectDetails";
549
+ const _PFETS = "ProspectingFromEngagementTaskSort";
550
+ const _PI = "ProspectingInsights";
551
+ const _PN = "PhoneNumber";
552
+ const _PNFA = "PrimaryNeedsFromAws";
553
+ const _PNSH = "ProfileNextStepsHistory";
554
+ const _PNSHr = "ProfileNextStepsHistories";
555
+ const _POI = "PartnerOpportunityIdentifier";
556
+ const _POTML = "PartnerOpportunityTeamMembersList";
557
+ const _PPS = "PublicProfileSummary";
558
+ const _PR = "ProspectingResult";
559
+ const _PRA = "ProspectingResultAws";
560
+ const _PRC = "ProspectingResultCustomer";
561
+ const _PS = "PiiString";
562
+ const _PSA = "PotentialSavingsAmount";
563
+ const _PSSS = "PutSellingSystemSettings";
564
+ const _PSSSR = "PutSellingSystemSettingsRequest";
565
+ const _PSSSRu = "PutSellingSystemSettingsResponse";
566
+ const _PSr = "ProjectSummary";
567
+ const _PT = "PayloadType";
568
+ const _PTS = "ProspectingTaskSummary";
569
+ const _PTSL = "ProspectingTaskSummaryList";
570
+ const _PTa = "ParticipantType";
571
+ const _PV = "ProjectView";
572
+ const _Pa = "Partner";
573
+ const _Pay = "Payload";
574
+ const _Pr = "Project";
575
+ const _QS = "QualificationStatus";
576
+ const _R = "Reason";
577
+ const _RA = "ResourceArn";
578
+ const _RC = "ReasonCode";
579
+ const _RCe = "ReviewComments";
580
+ const _REI = "RelatedEntityIdentifier";
581
+ const _REIR = "RejectEngagementInvitationRequest";
582
+ const _REIe = "RelatedEntityIds";
583
+ const _REIej = "RejectEngagementInvitation";
584
+ const _REIel = "RelatedEntityIdentifiers";
585
+ const _RET = "RelatedEntityType";
586
+ const _RI = "ResourceIdentifier";
587
+ const _RIe = "ResourceId";
588
+ const _RL = "RecommendationList";
589
+ const _RNFE = "ResourceNotFoundException";
590
+ const _ROI = "RelatedOpportunityId";
591
+ const _ROIe = "RelatedOpportunityIdentifier";
592
+ const _RR = "RejectionReason";
593
+ const _RRe = "ReceiverResponsibilities";
594
+ const _RS = "ReviewStatus";
595
+ const _RSJI = "ResourceSnapshotJobIdentifier";
596
+ const _RSJIe = "ResourceSnapshotJobId";
597
+ const _RSJRA = "ResourceSnapshotJobRoleArn";
598
+ const _RSJRI = "ResourceSnapshotJobRoleIdentifier";
599
+ const _RSJS = "ResourceSnapshotJobSummaries";
600
+ const _RSJSL = "ResourceSnapshotJobSummaryList";
601
+ const _RSJSe = "ResourceSnapshotJobSummary";
602
+ const _RSP = "ResourceSnapshotPayload";
603
+ const _RSR = "ReviewStatusReason";
604
+ const _RSS = "ResourceSnapshotSummaries";
605
+ const _RSSL = "ResourceSnapshotSummaryList";
606
+ const _RSSe = "ResourceSnapshotSummary";
607
+ const _RSTI = "ResourceSnapshotTemplateIdentifier";
608
+ const _RSTN = "ResourceSnapshotTemplateName";
609
+ const _RT = "ResourceType";
610
+ const _Re = "Recommendations";
611
+ const _Rec = "Receiver";
612
+ const _Reco = "Recommendation";
613
+ const _Reg = "Region";
614
+ const _Rev = "Revision";
615
+ const _S = "Stage";
616
+ const _SA = "StreetAddress";
617
+ const _SAAI = "SenderAwsAccountId";
618
+ const _SAa = "SavingsAmount";
619
+ const _SAal = "SalesActivities";
620
+ const _SAt = "StartAfter";
621
+ const _SB = "SortBy";
622
+ const _SBo = "SolutionBase";
623
+ const _SBt = "StartBefore";
624
+ const _SC = "ServiceCode";
625
+ const _SCE = "SenderContactEmail";
626
+ const _SCL = "SenderContactList";
627
+ const _SCN = "SenderCompanyName";
628
+ const _SCe = "SenderContacts";
629
+ const _SCen = "SenderContact";
630
+ const _SCo = "SolutionCategory";
631
+ const _SEBAIT = "StartEngagementByAcceptingInvitationTask";
632
+ const _SEBAITR = "StartEngagementByAcceptingInvitationTaskRequest";
633
+ const _SEBAITRt = "StartEngagementByAcceptingInvitationTaskResponse";
634
+ const _SEFOT = "StartEngagementFromOpportunityTask";
635
+ const _SEFOTR = "StartEngagementFromOpportunityTaskRequest";
636
+ const _SEFOTRt = "StartEngagementFromOpportunityTaskResponse";
637
+ const _SI = "SourceId";
638
+ const _SIu = "SubIndustry";
639
+ const _SL = "SolutionList";
640
+ const _SN = "SourceName";
641
+ const _SO = "SortOrder";
642
+ const _SOFET = "StartOpportunityFromEngagementTask";
643
+ const _SOFETR = "StartOpportunityFromEngagementTaskRequest";
644
+ const _SOFETRt = "StartOpportunityFromEngagementTaskResponse";
645
+ const _SOR = "StateOrRegion";
646
+ const _SORu = "SubmitOpportunityRequest";
647
+ const _SOo = "SortObject";
648
+ const _SOu = "SubmitOpportunity";
649
+ const _SPFET = "StartProspectingFromEngagementTask";
650
+ const _SPFETR = "StartProspectingFromEngagementTaskRequest";
651
+ const _SPFETRt = "StartProspectingFromEngagementTaskResponse";
652
+ const _SQEE = "ServiceQuotaExceededException";
653
+ const _SR = "SoftwareRevenue";
654
+ const _SRSJ = "StartResourceSnapshotJob";
655
+ const _SRSJR = "StartResourceSnapshotJobRequest";
656
+ const _SRSJRt = "StopResourceSnapshotJobRequest";
657
+ const _SRSJt = "StopResourceSnapshotJob";
658
+ const _SRu = "SubRegion";
659
+ const _SS = "SolutionSummaries";
660
+ const _SSC = "SolutionSubCategory";
661
+ const _SSo = "SolutionScore";
662
+ const _SSol = "SolutionSort";
663
+ const _ST = "StartTime";
664
+ const _STo = "SourceType";
665
+ const _Sc = "Score";
666
+ const _Se = "Segment";
667
+ const _So = "Solutions";
668
+ const _Sor = "Sort";
669
+ const _Sou = "Source";
670
+ const _St = "Status";
671
+ const _T = "Type";
672
+ const _TA = "TotalAmount";
673
+ const _TABC = "TotalAmountByCategory";
674
+ const _TAa = "TaskArn";
675
+ const _TC = "TargetCompany";
676
+ const _TCD = "TargetCloseDate";
677
+ const _TCDF = "TargetCloseDateFilter";
678
+ const _TCDa = "TargetCompletionDate";
679
+ const _TE = "ThrottlingException";
680
+ const _TEC = "TotalEngagementCount";
681
+ const _TI = "TaskIdentifier";
682
+ const _TIa = "TaskId";
683
+ const _TK = "TagKeys";
684
+ const _TL = "TagList";
685
+ const _TMA = "TargetMemberAccounts";
686
+ const _TN = "TaskName";
687
+ const _TOA = "TotalOptimizedAmount";
688
+ const _TPSA = "TotalPotentialSavingsAmount";
689
+ const _TR = "TagResource";
690
+ const _TRR = "TagResourceRequest";
691
+ const _TRRa = "TagResourceResponse";
692
+ const _TS = "TaskStatus";
693
+ const _TSa = "TaskSummaries";
694
+ const _Ta = "Tags";
695
+ const _Tag = "Tag";
696
+ const _Te = "Term";
697
+ const _Ti = "Title";
698
+ const _Tim = "Time";
699
+ const _Tr = "Trend";
700
+ const _U = "Usecase";
701
+ const _UC = "UseCases";
702
+ const _UEC = "UpdateEngagementContext";
703
+ const _UECP = "UpdateEngagementContextPayload";
704
+ const _UECR = "UpdateEngagementContextRequest";
705
+ const _UECRp = "UpdateEngagementContextResponse";
706
+ const _ULC = "UpdateLeadContext";
707
+ const _UO = "UpdateOpportunity";
708
+ const _UOR = "UpdateOpportunityRequest";
709
+ const _UORp = "UpdateOpportunityResponse";
710
+ const _UR = "UntagResource";
711
+ const _URR = "UntagResourceRequest";
712
+ const _URRn = "UntagResourceResponse";
713
+ const _V = "Visibility";
714
+ const _VE = "ValidationException";
715
+ const _VEE = "ValidationExceptionError";
716
+ const _VEEL = "ValidationExceptionErrorList";
717
+ const _Va = "Value";
718
+ const _WU = "WebsiteUrl";
719
+ const _c = "client";
720
+ const _e = "error";
721
+ const _h = "http";
722
+ const _hE = "httpError";
723
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.partnercentralselling";
724
+ const _se = "server";
725
+ const n0 = "com.amazonaws.partnercentralselling";
726
+ const _s_registry = TypeRegistry.for(_s);
727
+ var PartnerCentralSellingServiceException$ = [-3, _s, "PartnerCentralSellingServiceException", 0, [], []];
728
+ _s_registry.registerError(PartnerCentralSellingServiceException$, PartnerCentralSellingServiceException);
729
+ const n0_registry = TypeRegistry.for(n0);
730
+ var AccessDeniedException$ = [-3, n0, _ADE,
731
+ { [_e]: _c, [_hE]: 403 },
732
+ [_M, _R],
733
+ [0, 0]
734
+ ];
735
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
736
+ var ConflictException$ = [-3, n0, _CE,
737
+ { [_e]: _c, [_hE]: 409 },
738
+ [_M],
739
+ [0]
740
+ ];
741
+ n0_registry.registerError(ConflictException$, ConflictException);
742
+ var InternalServerException$ = [-3, n0, _ISE,
743
+ { [_e]: _se, [_hE]: 500 },
744
+ [_M],
745
+ [0]
746
+ ];
747
+ n0_registry.registerError(InternalServerException$, InternalServerException);
748
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
749
+ { [_e]: _c, [_hE]: 404 },
750
+ [_M],
751
+ [0]
752
+ ];
753
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
754
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
755
+ { [_e]: _c, [_hE]: 402 },
756
+ [_M],
757
+ [0]
758
+ ];
759
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
760
+ var ThrottlingException$ = [-3, n0, _TE,
761
+ { [_e]: _c, [_hE]: 429 },
762
+ [_M],
763
+ [0]
764
+ ];
765
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
766
+ var ValidationException$ = [-3, n0, _VE,
767
+ { [_e]: _c, [_hE]: 400 },
768
+ [_M, _R, _EL],
769
+ [0, 0, () => ValidationExceptionErrorList], 2
770
+ ];
771
+ n0_registry.registerError(ValidationException$, ValidationException);
772
+ const errorTypeRegistries = [
773
+ _s_registry,
774
+ n0_registry,
775
+ ];
776
+ var AddressPart = [0, n0, _AP, 8, 0];
777
+ var Alias = [0, n0, _A, 8, 0];
778
+ var Amount = [0, n0, _Am, 8, 0];
779
+ var AwsAccount = [0, n0, _AA, 8, 0];
780
+ var CompanyName = [0, n0, _CN, 8, 0];
781
+ var CompanyWebsiteUrl = [0, n0, _CWU, 8, 0];
782
+ var CountryCode$1 = [0, n0, _CC, 8, 0];
783
+ var CurrencyCode$1 = [0, n0, _CCu, 8, 0];
784
+ var DunsNumber = [0, n0, _DN, 8, 0];
785
+ var Email = [0, n0, _E, 8, 0];
786
+ var EngagementCustomerBusinessProblem = [0, n0, _ECBP, 8, 0];
787
+ var InvitationMessage = [0, n0, _IM, 8, 0];
788
+ var JobTitle = [0, n0, _JT, 8, 0];
789
+ var MemberCompanyName = [0, n0, _MCN, 8, 0];
790
+ var MonetaryAmount = [0, n0, _MA, 8, 0];
791
+ var Name = [0, n0, _N, 8, 0];
792
+ var PhoneNumber = [0, n0, _PN, 8, 0];
793
+ var PiiString = [0, n0, _PS, 8, 0];
794
+ var SenderContactEmail = [0, n0, _SCE, 8, 0];
795
+ var WebsiteUrl = [0, n0, _WU, 8, 0];
796
+ var AcceptEngagementInvitationRequest$ = [3, n0, _AEIR,
797
+ 0,
798
+ [_C, _I],
799
+ [0, 0], 2
800
+ ];
801
+ var Account$ = [3, n0, _Ac,
802
+ 0,
803
+ [_CN, _In, _OI, _WU, _AAI, _Ad, _D],
804
+ [[() => Name, 0], 0, 0, [() => WebsiteUrl, 0], [() => AwsAccount, 0], [() => Address$, 0], [() => DunsNumber, 0]], 1
805
+ ];
806
+ var AccountReceiver$ = [3, n0, _AR,
807
+ 0,
808
+ [_AAI, _A],
809
+ [[() => AwsAccount, 0], [() => Alias, 0]], 1
810
+ ];
811
+ var AccountSummary$ = [3, n0, _AS,
812
+ 0,
813
+ [_CN, _In, _OI, _WU, _Ad],
814
+ [[() => Name, 0], 0, 0, [() => WebsiteUrl, 0], [() => AddressSummary$, 0]], 1
815
+ ];
816
+ var Address$ = [3, n0, _Ad,
817
+ 0,
818
+ [_Ci, _PC, _SOR, _CC, _SA],
819
+ [[() => AddressPart, 0], [() => AddressPart, 0], [() => AddressPart, 0], [() => CountryCode$1, 0], [() => AddressPart, 0]]
820
+ ];
821
+ var AddressSummary$ = [3, n0, _ASd,
822
+ 0,
823
+ [_Ci, _PC, _SOR, _CC],
824
+ [[() => AddressPart, 0], [() => AddressPart, 0], [() => AddressPart, 0], [() => CountryCode$1, 0]]
825
+ ];
826
+ var AssigneeContact$ = [3, n0, _AC,
827
+ 0,
828
+ [_E, _FN, _LN, _BT, _P],
829
+ [[() => Email, 0], [() => Name, 0], [() => Name, 0], [() => JobTitle, 0], [() => PhoneNumber, 0]], 4
830
+ ];
831
+ var AssignOpportunityRequest$ = [3, n0, _AOR,
832
+ 0,
833
+ [_C, _I, _As],
834
+ [0, 0, [() => AssigneeContact$, 0]], 3
835
+ ];
836
+ var AssociateOpportunityRequest$ = [3, n0, _AORs,
837
+ 0,
838
+ [_C, _OIp, _RET, _REI],
839
+ [0, 0, 0, 0], 4
840
+ ];
841
+ var AwsOpportunityCustomer$ = [3, n0, _AOC,
842
+ 0,
843
+ [_Co],
844
+ [[() => CustomerContactsList, 0]]
845
+ ];
846
+ var AwsOpportunityInsights$ = [3, n0, _AOI,
847
+ 0,
848
+ [_NBA, _ES, _APSIBS, _OQ, _Re],
849
+ [0, 0, [() => AwsProductsSpendInsightsBySource$, 0], () => OpportunityQuality$, () => RecommendationList]
850
+ ];
851
+ var AwsOpportunityLifeCycle$ = [3, n0, _AOLC,
852
+ 0,
853
+ [_TCD, _CLR, _S, _NS, _NSH],
854
+ [0, 0, 0, [() => PiiString, 0], () => ProfileNextStepsHistories]
855
+ ];
856
+ var AwsOpportunityProject$ = [3, n0, _AOP,
857
+ 0,
858
+ [_ECS, _APw],
859
+ [[() => ExpectedCustomerSpendList, 0], 0]
860
+ ];
861
+ var AwsOpportunityRelatedEntities$ = [3, n0, _AORE,
862
+ 0,
863
+ [_APws, _So],
864
+ [64 | 0, 64 | 0]
865
+ ];
866
+ var AwsOpportunitySummaryFullView$ = [3, n0, _AOSFV,
867
+ 0,
868
+ [_ROI, _O, _IT, _V, _LC, _OT, _Ins, _ITCR, _REIe, _Cu, _Pr, _CM],
869
+ [0, 0, 0, 0, [() => AwsOpportunityLifeCycle$, 0], [() => AwsOpportunityTeamMembersList, 0], [() => AwsOpportunityInsights$, 0], 0, () => AwsOpportunityRelatedEntities$, [() => AwsOpportunityCustomer$, 0], [() => AwsOpportunityProject$, 0], 0]
870
+ ];
871
+ var AwsProductDetails$ = [3, n0, _APD,
872
+ 0,
873
+ [_PCr, _Ca, _Op, _SC, _Am, _OA, _PSA],
874
+ [0, 64 | 0, [() => AwsProductOptimizationsList, 0], 0, [() => MonetaryAmount, 0], [() => MonetaryAmount, 0], [() => MonetaryAmount, 0]], 3
875
+ ];
876
+ var AwsProductInsights$ = [3, n0, _API,
877
+ 0,
878
+ [_CCu, _F, _TABC, _APws, _TA, _TOA, _TPSA],
879
+ [[() => CurrencyCode$1, 0], 0, [() => AmountMap, 0], [() => AwsProductsList, 0], [() => MonetaryAmount, 0], [() => MonetaryAmount, 0], [() => MonetaryAmount, 0]], 4
880
+ ];
881
+ var AwsProductOptimization$ = [3, n0, _APO,
882
+ 0,
883
+ [_De, _SAa],
884
+ [0, [() => MonetaryAmount, 0]], 2
885
+ ];
886
+ var AwsProductsSpendInsightsBySource$ = [3, n0, _APSIBS,
887
+ 0,
888
+ [_Pa, _AWS],
889
+ [[() => AwsProductInsights$, 0], [() => AwsProductInsights$, 0]]
890
+ ];
891
+ var AwsSubmission$ = [3, n0, _ASw,
892
+ 0,
893
+ [_IT, _V],
894
+ [0, 0], 1
895
+ ];
896
+ var AwsTeamMember$ = [3, n0, _ATM,
897
+ 0,
898
+ [_E, _FN, _LN, _BT],
899
+ [[() => Email, 0], [() => Name, 0], [() => Name, 0], 0]
900
+ ];
901
+ var Contact$ = [3, n0, _Con,
902
+ 0,
903
+ [_E, _FN, _LN, _BT, _P],
904
+ [[() => Email, 0], [() => Name, 0], [() => Name, 0], [() => JobTitle, 0], [() => PhoneNumber, 0]]
905
+ ];
906
+ var CreatedDateFilter$ = [3, n0, _CDF,
907
+ 0,
908
+ [_ACD, _BCD],
909
+ [5, 5]
910
+ ];
911
+ var CreateEngagementContextRequest$ = [3, n0, _CECR,
912
+ 0,
913
+ [_C, _EI, _T, _Pay, _CT],
914
+ [0, 0, 0, [() => EngagementContextPayload$, 0], [0, 4]], 4
915
+ ];
916
+ var CreateEngagementContextResponse$ = [3, n0, _CECRr,
917
+ 0,
918
+ [_EIn, _EA, _ELMA, _CI],
919
+ [0, 0, 5, 0]
920
+ ];
921
+ var CreateEngagementInvitationRequest$ = [3, n0, _CEIR,
922
+ 0,
923
+ [_C, _EI, _Inv, _CT],
924
+ [0, 0, [() => Invitation$, 0], [0, 4]], 3
925
+ ];
926
+ var CreateEngagementInvitationResponse$ = [3, n0, _CEIRr,
927
+ 0,
928
+ [_Id, _Ar],
929
+ [0, 0], 2
930
+ ];
931
+ var CreateEngagementRequest$ = [3, n0, _CER,
932
+ 0,
933
+ [_C, _Ti, _De, _CT, _Cont],
934
+ [0, 0, 0, [0, 4], [() => EngagementContexts, 0]], 3
935
+ ];
936
+ var CreateEngagementResponse$ = [3, n0, _CERr,
937
+ 0,
938
+ [_Id, _Ar, _MAo],
939
+ [0, 0, 5]
940
+ ];
941
+ var CreateOpportunityRequest$ = [3, n0, _COR,
942
+ 0,
943
+ [_C, _PNFA, _NSa, _POI, _Cu, _Pr, _OTp, _Ma, _SR, _CT, _LC, _O, _OT, _Ta],
944
+ [0, 64 | 0, 0, 0, [() => Customer$, 0], [() => Project$, 0], 0, () => Marketing$, [() => SoftwareRevenue$, 0], [0, 4], [() => LifeCycle$, 0], 0, [() => PartnerOpportunityTeamMembersList, 0], () => TagList], 1
945
+ ];
946
+ var CreateOpportunityResponse$ = [3, n0, _CORr,
947
+ 0,
948
+ [_Id, _POI, _LMD],
949
+ [0, 0, 5], 1
950
+ ];
951
+ var CreateResourceSnapshotJobRequest$ = [3, n0, _CRSJR,
952
+ 0,
953
+ [_C, _EI, _RT, _RI, _RSTI, _CT, _Ta],
954
+ [0, 0, 0, 0, 0, [0, 4], () => TagList], 5
955
+ ];
956
+ var CreateResourceSnapshotJobResponse$ = [3, n0, _CRSJRr,
957
+ 0,
958
+ [_Id, _Ar],
959
+ [0, 0]
960
+ ];
961
+ var CreateResourceSnapshotRequest$ = [3, n0, _CRSR,
962
+ 0,
963
+ [_C, _EI, _RT, _RI, _RSTI, _CT],
964
+ [0, 0, 0, 0, 0, [0, 4]], 5
965
+ ];
966
+ var CreateResourceSnapshotResponse$ = [3, n0, _CRSRr,
967
+ 0,
968
+ [_Ar, _Rev],
969
+ [0, 1]
970
+ ];
971
+ var Customer$ = [3, n0, _Cu,
972
+ 0,
973
+ [_Ac, _Co],
974
+ [[() => Account$, 0], [() => CustomerContactsList, 0]]
975
+ ];
976
+ var CustomerProjectsContext$ = [3, n0, _CPC,
977
+ 0,
978
+ [_Cu, _Pr],
979
+ [[() => EngagementCustomer$, 0], [() => EngagementCustomerProjectDetails$, 0]]
980
+ ];
981
+ var CustomerSummary$ = [3, n0, _CS,
982
+ 0,
983
+ [_Ac],
984
+ [[() => AccountSummary$, 0]]
985
+ ];
986
+ var DeleteResourceSnapshotJobRequest$ = [3, n0, _DRSJR,
987
+ 0,
988
+ [_C, _RSJI],
989
+ [0, 0], 2
990
+ ];
991
+ var DisassociateOpportunityRequest$ = [3, n0, _DOR,
992
+ 0,
993
+ [_C, _OIp, _RET, _REI],
994
+ [0, 0, 0, 0], 4
995
+ ];
996
+ var EngagementContextDetails$ = [3, n0, _ECD,
997
+ 0,
998
+ [_T, _Id, _Pay],
999
+ [0, 0, [() => EngagementContextPayload$, 0]], 1
1000
+ ];
1001
+ var EngagementCustomer$ = [3, n0, _EC,
1002
+ 0,
1003
+ [_In, _CN, _WU, _CC],
1004
+ [0, [() => CompanyName, 0], [() => CompanyWebsiteUrl, 0], [() => CountryCode$1, 0]], 4
1005
+ ];
1006
+ var EngagementCustomerProjectDetails$ = [3, n0, _ECPD,
1007
+ 0,
1008
+ [_Ti, _BP, _TCDa],
1009
+ [0, [() => EngagementCustomerBusinessProblem, 0], 0], 3
1010
+ ];
1011
+ var EngagementInvitationSummary$ = [3, n0, _EIS,
1012
+ 0,
1013
+ [_Id, _C, _Ar, _PT, _EIn, _ET, _St, _ID, _ED, _SAAI, _SCN, _Rec, _PTa],
1014
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, [() => AwsAccount, 0], 0, [() => Receiver$, 0], 0], 2
1015
+ ];
1016
+ var EngagementMember$ = [3, n0, _EM,
1017
+ 0,
1018
+ [_CN, _WU, _AI],
1019
+ [[() => MemberCompanyName, 0], 0, [() => AwsAccount, 0]]
1020
+ ];
1021
+ var EngagementMemberSummary$ = [3, n0, _EMS,
1022
+ 0,
1023
+ [_CN, _WU],
1024
+ [[() => MemberCompanyName, 0], 0]
1025
+ ];
1026
+ var EngagementProspectingResult$ = [3, n0, _EPR,
1027
+ 0,
1028
+ [_EI, _St, _ECI, _RC, _M],
1029
+ [0, 0, 0, 0, 0], 2
1030
+ ];
1031
+ var EngagementResourceAssociationSummary$ = [3, n0, _ERAS,
1032
+ 0,
1033
+ [_C, _EIn, _RT, _RIe, _CB],
1034
+ [0, 0, 0, 0, [() => AwsAccount, 0]], 1
1035
+ ];
1036
+ var EngagementSort$ = [3, n0, _ESn,
1037
+ 0,
1038
+ [_SO, _SB],
1039
+ [0, 0], 2
1040
+ ];
1041
+ var EngagementSummary$ = [3, n0, _ESng,
1042
+ 0,
1043
+ [_Ar, _Id, _Ti, _CA, _CB, _MC, _MAo, _MB, _CTo],
1044
+ [0, 0, 0, 5, [() => AwsAccount, 0], 1, 5, [() => AwsAccount, 0], 64 | 0]
1045
+ ];
1046
+ var ExpectedContractDuration$ = [3, n0, _ECDx,
1047
+ 0,
1048
+ [_Te, _Va],
1049
+ [0, 0], 2
1050
+ ];
1051
+ var ExpectedCustomerSpend$ = [3, n0, _ECS,
1052
+ 0,
1053
+ [_CCu, _F, _TC, _Am, _EU],
1054
+ [[() => CurrencyCode$1, 0], 0, 0, [() => Amount, 0], 0], 3
1055
+ ];
1056
+ var GetAwsOpportunitySummaryRequest$ = [3, n0, _GAOSR,
1057
+ 0,
1058
+ [_C, _ROIe],
1059
+ [0, 0], 2
1060
+ ];
1061
+ var GetAwsOpportunitySummaryResponse$ = [3, n0, _GAOSRe,
1062
+ 0,
1063
+ [_C, _ROI, _O, _IT, _V, _LC, _OT, _Ins, _ITCR, _REIe, _Cu, _Pr, _CM],
1064
+ [0, 0, 0, 0, 0, [() => AwsOpportunityLifeCycle$, 0], [() => AwsOpportunityTeamMembersList, 0], [() => AwsOpportunityInsights$, 0], 0, () => AwsOpportunityRelatedEntities$, [() => AwsOpportunityCustomer$, 0], [() => AwsOpportunityProject$, 0], 0], 1
1065
+ ];
1066
+ var GetEngagementInvitationRequest$ = [3, n0, _GEIR,
1067
+ 0,
1068
+ [_C, _I],
1069
+ [0, 0], 2
1070
+ ];
1071
+ var GetEngagementInvitationResponse$ = [3, n0, _GEIRe,
1072
+ 0,
1073
+ [_Id, _C, _Ar, _PT, _EIn, _ET, _St, _ID, _ED, _SAAI, _SCN, _Rec, _RR, _Pay, _IM, _EDn, _EMx],
1074
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, [() => AwsAccount, 0], 0, [() => Receiver$, 0], 0, [() => Payload$, 0], [() => InvitationMessage, 0], 0, [() => EngagementMemberSummaries, 0]], 2
1075
+ ];
1076
+ var GetEngagementRequest$ = [3, n0, _GER,
1077
+ 0,
1078
+ [_C, _I],
1079
+ [0, 0], 2
1080
+ ];
1081
+ var GetEngagementResponse$ = [3, n0, _GERe,
1082
+ 0,
1083
+ [_Id, _Ar, _Ti, _De, _CA, _CB, _MC, _MAo, _MB, _Cont],
1084
+ [0, 0, 0, 0, 5, [() => AwsAccount, 0], 1, 5, [() => AwsAccount, 0], [() => EngagementContexts, 0]]
1085
+ ];
1086
+ var GetOpportunityRequest$ = [3, n0, _GOR,
1087
+ 0,
1088
+ [_C, _I],
1089
+ [0, 0], 2
1090
+ ];
1091
+ var GetOpportunityResponse$ = [3, n0, _GORe,
1092
+ 0,
1093
+ [_C, _Id, _LMD, _CD, _REIel, _PNFA, _NSa, _POI, _Cu, _Pr, _OTp, _Ma, _SR, _Ar, _LC, _OT],
1094
+ [0, 0, 5, 5, () => RelatedEntityIdentifiers$, 64 | 0, 0, 0, [() => Customer$, 0], [() => Project$, 0], 0, () => Marketing$, [() => SoftwareRevenue$, 0], 0, [() => LifeCycle$, 0], [() => PartnerOpportunityTeamMembersList, 0]], 5
1095
+ ];
1096
+ var GetProspectingFromEngagementTaskRequest$ = [3, n0, _GPFETR,
1097
+ 0,
1098
+ [_C, _TI],
1099
+ [0, 0], 2
1100
+ ];
1101
+ var GetProspectingFromEngagementTaskResponse$ = [3, n0, _GPFETRe,
1102
+ 0,
1103
+ [_TIa, _TAa, _TN, _ST, _En, _ETn],
1104
+ [0, 0, 0, 5, () => EngagementProspectingResultList, 5], 5
1105
+ ];
1106
+ var GetResourceSnapshotJobRequest$ = [3, n0, _GRSJR,
1107
+ 0,
1108
+ [_C, _RSJI],
1109
+ [0, 0], 2
1110
+ ];
1111
+ var GetResourceSnapshotJobResponse$ = [3, n0, _GRSJRe,
1112
+ 0,
1113
+ [_C, _Id, _Ar, _EIn, _RT, _RIe, _RA, _RSTN, _CA, _St, _LSED, _LF],
1114
+ [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0], 1
1115
+ ];
1116
+ var GetResourceSnapshotRequest$ = [3, n0, _GRSR,
1117
+ 0,
1118
+ [_C, _EI, _RT, _RI, _RSTI, _Rev],
1119
+ [0, 0, 0, 0, 0, 1], 5
1120
+ ];
1121
+ var GetResourceSnapshotResponse$ = [3, n0, _GRSRe,
1122
+ 0,
1123
+ [_C, _Ar, _CB, _CA, _EIn, _RT, _RIe, _RSTN, _Rev, _Pay, _TMA],
1124
+ [0, 0, [() => AwsAccount, 0], 5, 0, 0, 0, 0, 1, [() => ResourceSnapshotPayload$, 0], [() => AwsAccountIdOrAliasList, 0]], 1
1125
+ ];
1126
+ var GetSellingSystemSettingsRequest$ = [3, n0, _GSSSR,
1127
+ 0,
1128
+ [_C],
1129
+ [0], 1
1130
+ ];
1131
+ var GetSellingSystemSettingsResponse$ = [3, n0, _GSSSRe,
1132
+ 0,
1133
+ [_C, _RSJRA],
1134
+ [0, 0], 1
1135
+ ];
1136
+ var Invitation$ = [3, n0, _Inv,
1137
+ 0,
1138
+ [_M, _Rec, _Pay],
1139
+ [[() => InvitationMessage, 0], [() => Receiver$, 0], [() => Payload$, 0]], 3
1140
+ ];
1141
+ var LastModifiedDate$ = [3, n0, _LMD,
1142
+ 0,
1143
+ [_ALMD, _BLMD],
1144
+ [5, 5]
1145
+ ];
1146
+ var LeadContact$ = [3, n0, _LCe,
1147
+ 0,
1148
+ [_BT, _E, _FN, _LN, _P],
1149
+ [[() => JobTitle, 0], [() => Email, 0], [() => Name, 0], [() => Name, 0], [() => PhoneNumber, 0]], 4
1150
+ ];
1151
+ var LeadContext$ = [3, n0, _LCea,
1152
+ 0,
1153
+ [_Cu, _Int, _Ins, _QS],
1154
+ [[() => LeadCustomer$, 0], [() => LeadInteractionList, 0], () => LeadInsights$, 0], 2
1155
+ ];
1156
+ var LeadCustomer$ = [3, n0, _LCead,
1157
+ 0,
1158
+ [_CN, _Ad, _In, _WU, _AM, _MS],
1159
+ [[() => CompanyName, 0], [() => AddressSummary$, 0], 0, [() => CompanyWebsiteUrl, 0], 0, 0], 2
1160
+ ];
1161
+ var LeadInsights$ = [3, n0, _LI,
1162
+ 0,
1163
+ [_LRS],
1164
+ [0]
1165
+ ];
1166
+ var LeadInteraction$ = [3, n0, _LIe,
1167
+ 0,
1168
+ [_STo, _SI, _SN, _CAu, _Con, _U, _IDn, _BP],
1169
+ [0, 0, 0, 0, [() => LeadContact$, 0], 0, 5, [() => EngagementCustomerBusinessProblem, 0]], 5
1170
+ ];
1171
+ var LeadInvitationCustomer$ = [3, n0, _LIC,
1172
+ 0,
1173
+ [_CN, _CC, _In, _WU, _AM, _MS],
1174
+ [[() => CompanyName, 0], [() => CountryCode$1, 0], 0, [() => CompanyWebsiteUrl, 0], 0, 0], 2
1175
+ ];
1176
+ var LeadInvitationInteraction$ = [3, n0, _LII,
1177
+ 0,
1178
+ [_STo, _SI, _SN, _CBT, _U],
1179
+ [0, 0, 0, [() => JobTitle, 0], 0], 4
1180
+ ];
1181
+ var LeadInvitationPayload$ = [3, n0, _LIP,
1182
+ 0,
1183
+ [_Cu, _Inte],
1184
+ [[() => LeadInvitationCustomer$, 0], [() => LeadInvitationInteraction$, 0]], 2
1185
+ ];
1186
+ var LifeCycle$ = [3, n0, _LC,
1187
+ 0,
1188
+ [_S, _CLR, _NS, _TCD, _RS, _RCe, _RSR, _NSH],
1189
+ [0, 0, [() => PiiString, 0], 0, 0, 0, 0, () => NextStepsHistories]
1190
+ ];
1191
+ var LifeCycleForView$ = [3, n0, _LCFV,
1192
+ 0,
1193
+ [_TCD, _RS, _S, _NS],
1194
+ [0, 0, 0, [() => PiiString, 0]]
1195
+ ];
1196
+ var LifeCycleSummary$ = [3, n0, _LCS,
1197
+ 0,
1198
+ [_S, _CLR, _NS, _TCD, _RS, _RCe, _RSR],
1199
+ [0, 0, [() => PiiString, 0], 0, 0, 0, 0]
1200
+ ];
1201
+ var ListEngagementByAcceptingInvitationTasksRequest$ = [3, n0, _LEBAITR,
1202
+ 0,
1203
+ [_C, _MR, _NT, _Sor, _TS, _OIp, _EII, _TI],
1204
+ [0, 1, 0, () => ListTasksSortBase$, 64 | 0, 64 | 0, 64 | 0, 64 | 0], 1
1205
+ ];
1206
+ var ListEngagementByAcceptingInvitationTasksResponse$ = [3, n0, _LEBAITRi,
1207
+ 0,
1208
+ [_TSa, _NT],
1209
+ [() => ListEngagementByAcceptingInvitationTaskSummaries, 0]
1210
+ ];
1211
+ var ListEngagementByAcceptingInvitationTaskSummary$ = [3, n0, _LEBAITS,
1212
+ 0,
1213
+ [_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIIn],
1214
+ [0, 0, 5, 0, 0, 0, 0, 0, 0]
1215
+ ];
1216
+ var ListEngagementFromOpportunityTasksRequest$ = [3, n0, _LEFOTR,
1217
+ 0,
1218
+ [_C, _MR, _NT, _Sor, _TS, _TI, _OIp, _EI],
1219
+ [0, 1, 0, () => ListTasksSortBase$, 64 | 0, 64 | 0, 64 | 0, 64 | 0], 1
1220
+ ];
1221
+ var ListEngagementFromOpportunityTasksResponse$ = [3, n0, _LEFOTRi,
1222
+ 0,
1223
+ [_TSa, _NT],
1224
+ [() => ListEngagementFromOpportunityTaskSummaries, 0]
1225
+ ];
1226
+ var ListEngagementFromOpportunityTaskSummary$ = [3, n0, _LEFOTS,
1227
+ 0,
1228
+ [_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIn, _EIIn],
1229
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 0]
1230
+ ];
1231
+ var ListEngagementInvitationsRequest$ = [3, n0, _LEIR,
1232
+ 0,
1233
+ [_C, _PTa, _MR, _NT, _Sor, _PT, _St, _EI, _SAAI],
1234
+ [0, 0, 1, 0, () => OpportunityEngagementInvitationSort$, 64 | 0, 64 | 0, 64 | 0, [() => AwsAccountIdOrAliasList, 0]], 2
1235
+ ];
1236
+ var ListEngagementInvitationsResponse$ = [3, n0, _LEIRi,
1237
+ 0,
1238
+ [_EISn, _NT],
1239
+ [[() => EngagementInvitationSummaries, 0], 0]
1240
+ ];
1241
+ var ListEngagementMembersRequest$ = [3, n0, _LEMR,
1242
+ 0,
1243
+ [_C, _I, _MR, _NT],
1244
+ [0, 0, 1, 0], 2
1245
+ ];
1246
+ var ListEngagementMembersResponse$ = [3, n0, _LEMRi,
1247
+ 0,
1248
+ [_EML, _NT],
1249
+ [[() => EngagementMembers, 0], 0], 1
1250
+ ];
1251
+ var ListEngagementResourceAssociationsRequest$ = [3, n0, _LERAR,
1252
+ 0,
1253
+ [_C, _MR, _NT, _EI, _RT, _RI, _CB],
1254
+ [0, 1, 0, 0, 0, 0, [() => AwsAccount, 0]], 1
1255
+ ];
1256
+ var ListEngagementResourceAssociationsResponse$ = [3, n0, _LERARi,
1257
+ 0,
1258
+ [_ERASn, _NT],
1259
+ [[() => EngagementResourceAssociationSummaryList, 0], 0], 1
1260
+ ];
1261
+ var ListEngagementsRequest$ = [3, n0, _LER,
1262
+ 0,
1263
+ [_C, _CB, _ECB, _CTo, _ECT, _Sor, _MR, _NT, _EI],
1264
+ [0, [() => AwsAccountList, 0], [() => AwsAccountList, 0], 64 | 0, 64 | 0, () => EngagementSort$, 1, 0, 64 | 0], 1
1265
+ ];
1266
+ var ListEngagementsResponse$ = [3, n0, _LERi,
1267
+ 0,
1268
+ [_ESL, _NT],
1269
+ [[() => EngagementSummaryList, 0], 0], 1
1270
+ ];
1271
+ var ListOpportunitiesRequest$ = [3, n0, _LOR,
1272
+ 0,
1273
+ [_C, _MR, _NT, _Sor, _LMD, _I, _LCSi, _LCRS, _CCN, _CD, _TCD],
1274
+ [0, 1, 0, () => OpportunitySort$, () => LastModifiedDate$, 64 | 0, 64 | 0, 64 | 0, 64 | 0, () => CreatedDateFilter$, () => TargetCloseDateFilter$], 1
1275
+ ];
1276
+ var ListOpportunitiesResponse$ = [3, n0, _LORi,
1277
+ 0,
1278
+ [_OS, _NT],
1279
+ [[() => OpportunitySummaries, 0], 0], 1
1280
+ ];
1281
+ var ListOpportunityFromEngagementTasksRequest$ = [3, n0, _LOFETR,
1282
+ 0,
1283
+ [_C, _MR, _NT, _Sor, _TS, _TI, _OIp, _EI, _CIo],
1284
+ [0, 1, 0, () => ListTasksSortBase$, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0], 1
1285
+ ];
1286
+ var ListOpportunityFromEngagementTasksResponse$ = [3, n0, _LOFETRi,
1287
+ 0,
1288
+ [_TSa, _NT],
1289
+ [() => ListOpportunityFromEngagementTaskSummaries, 0]
1290
+ ];
1291
+ var ListOpportunityFromEngagementTaskSummary$ = [3, n0, _LOFETS,
1292
+ 0,
1293
+ [_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIn, _CI],
1294
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 0]
1295
+ ];
1296
+ var ListProspectingFromEngagementTasksRequest$ = [3, n0, _LPFETR,
1297
+ 0,
1298
+ [_C, _MR, _NT, _TI, _TN, _SAt, _SBt, _Sor],
1299
+ [0, 1, 0, 64 | 0, 64 | 0, 5, 5, () => ProspectingFromEngagementTaskSort$], 1
1300
+ ];
1301
+ var ListProspectingFromEngagementTasksResponse$ = [3, n0, _LPFETRi,
1302
+ 0,
1303
+ [_TSa, _NT],
1304
+ [() => ProspectingTaskSummaryList, 0], 1
1305
+ ];
1306
+ var ListResourceSnapshotJobsRequest$ = [3, n0, _LRSJR,
1307
+ 0,
1308
+ [_C, _MR, _NT, _EI, _St, _Sor],
1309
+ [0, 1, 0, 0, 0, () => SortObject$], 1
1310
+ ];
1311
+ var ListResourceSnapshotJobsResponse$ = [3, n0, _LRSJRi,
1312
+ 0,
1313
+ [_RSJS, _NT],
1314
+ [() => ResourceSnapshotJobSummaryList, 0], 1
1315
+ ];
1316
+ var ListResourceSnapshotsRequest$ = [3, n0, _LRSR,
1317
+ 0,
1318
+ [_C, _EI, _MR, _NT, _RT, _RI, _RSTI, _CB],
1319
+ [0, 0, 1, 0, 0, 0, 0, [() => AwsAccount, 0]], 2
1320
+ ];
1321
+ var ListResourceSnapshotsResponse$ = [3, n0, _LRSRi,
1322
+ 0,
1323
+ [_RSS, _NT],
1324
+ [[() => ResourceSnapshotSummaryList, 0], 0], 1
1325
+ ];
1326
+ var ListSolutionsRequest$ = [3, n0, _LSR,
1327
+ 0,
1328
+ [_C, _MR, _NT, _Sor, _St, _I, _Cat],
1329
+ [0, 1, 0, () => SolutionSort$, 64 | 0, 64 | 0, 64 | 0], 1
1330
+ ];
1331
+ var ListSolutionsResponse$ = [3, n0, _LSRi,
1332
+ 0,
1333
+ [_SS, _NT],
1334
+ [() => SolutionList, 0], 1
1335
+ ];
1336
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1337
+ 0,
1338
+ [_RA],
1339
+ [0], 1
1340
+ ];
1341
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1342
+ 0,
1343
+ [_Ta],
1344
+ [() => TagList], 1
1345
+ ];
1346
+ var ListTasksSortBase$ = [3, n0, _LTSB,
1347
+ 0,
1348
+ [_SO, _SB],
1349
+ [0, 0], 2
1350
+ ];
1351
+ var Marketing$ = [3, n0, _Ma,
1352
+ 0,
1353
+ [_CNa, _Sou, _UC, _Ch, _AFU],
1354
+ [0, 0, 64 | 0, 64 | 0, 0]
1355
+ ];
1356
+ var MonetaryValue$ = [3, n0, _MV,
1357
+ 0,
1358
+ [_Am, _CCu],
1359
+ [0, [() => CurrencyCode$1, 0]], 2
1360
+ ];
1361
+ var NextStepsHistory$ = [3, n0, _NSH,
1362
+ 0,
1363
+ [_Va, _Tim],
1364
+ [0, 5], 2
1365
+ ];
1366
+ var OpportunityEngagementInvitationSort$ = [3, n0, _OEIS,
1367
+ 0,
1368
+ [_SO, _SB],
1369
+ [0, 0], 2
1370
+ ];
1371
+ var OpportunityInvitationPayload$ = [3, n0, _OIP,
1372
+ 0,
1373
+ [_RRe, _Cu, _Pr, _SCe],
1374
+ [64 | 0, [() => EngagementCustomer$, 0], [() => ProjectDetails$, 0], [() => SenderContactList, 0]], 3
1375
+ ];
1376
+ var OpportunityQuality$ = [3, n0, _OQ,
1377
+ 0,
1378
+ [_Sc, _Tr],
1379
+ [1, 0]
1380
+ ];
1381
+ var OpportunitySort$ = [3, n0, _OSp,
1382
+ 0,
1383
+ [_SO, _SB],
1384
+ [0, 0], 2
1385
+ ];
1386
+ var OpportunitySummary$ = [3, n0, _OSpp,
1387
+ 0,
1388
+ [_C, _Id, _Ar, _POI, _OTp, _LMD, _CD, _LC, _Cu, _Pr],
1389
+ [0, 0, 0, 0, 0, 5, 5, [() => LifeCycleSummary$, 0], [() => CustomerSummary$, 0], [() => ProjectSummary$, 0]], 1
1390
+ ];
1391
+ var OpportunitySummaryView$ = [3, n0, _OSV,
1392
+ 0,
1393
+ [_OTp, _L, _OT, _PNFA, _Cu, _Pr, _REIel],
1394
+ [0, [() => LifeCycleForView$, 0], [() => PartnerOpportunityTeamMembersList, 0], 64 | 0, [() => Customer$, 0], [() => ProjectView$, 0], () => RelatedEntityIdentifiers$]
1395
+ ];
1396
+ var ProfileNextStepsHistory$ = [3, n0, _PNSH,
1397
+ 0,
1398
+ [_Va, _Tim],
1399
+ [0, 5], 2
1400
+ ];
1401
+ var Project$ = [3, n0, _Pr,
1402
+ 0,
1403
+ [_DM, _ECS, _ECDx, _Ti, _APp, _CBP, _CUC, _ROIe, _SAal, _CNo, _OCN, _OSD, _ACd, _APw],
1404
+ [64 | 0, [() => ExpectedCustomerSpendList, 0], () => ExpectedContractDuration$, [() => PiiString, 0], 64 | 0, [() => PiiString, 0], 0, 0, 64 | 0, 0, 0, [() => PiiString, 0], 0, 0]
1405
+ ];
1406
+ var ProjectDetails$ = [3, n0, _PD,
1407
+ 0,
1408
+ [_BP, _Ti, _TCDa, _ECS],
1409
+ [[() => EngagementCustomerBusinessProblem, 0], 0, 0, [() => ExpectedCustomerSpendList, 0]], 4
1410
+ ];
1411
+ var ProjectSummary$ = [3, n0, _PSr,
1412
+ 0,
1413
+ [_DM, _ECS, _ECDx],
1414
+ [64 | 0, [() => ExpectedCustomerSpendList, 0], () => ExpectedContractDuration$]
1415
+ ];
1416
+ var ProjectView$ = [3, n0, _PV,
1417
+ 0,
1418
+ [_DM, _ECS, _ECDx, _CUC, _SAal, _OSD],
1419
+ [64 | 0, [() => ExpectedCustomerSpendList, 0], () => ExpectedContractDuration$, 0, 64 | 0, [() => PiiString, 0]]
1420
+ ];
1421
+ var ProspectingFromEngagementTaskSort$ = [3, n0, _PFETS,
1422
+ 0,
1423
+ [_SO, _SB],
1424
+ [0, 0], 2
1425
+ ];
1426
+ var ProspectingInsights$ = [3, n0, _PI,
1427
+ 0,
1428
+ [_MES, _SSo, _SCo, _SSC],
1429
+ [0, 0, 0, 0]
1430
+ ];
1431
+ var ProspectingResult$ = [3, n0, _PR,
1432
+ 0,
1433
+ [_Aw],
1434
+ [[() => ProspectingResultAws$, 0]]
1435
+ ];
1436
+ var ProspectingResultAws$ = [3, n0, _PRA,
1437
+ 0,
1438
+ [_ST, _ETn, _TIa, _TAa, _TN, _Cu, _Ins],
1439
+ [5, 5, 0, 0, 0, [() => ProspectingResultCustomer$, 0], () => ProspectingInsights$]
1440
+ ];
1441
+ var ProspectingResultCustomer$ = [3, n0, _PRC,
1442
+ 0,
1443
+ [_AN, _G, _Reg, _SRu, _Cou, _In, _SIu, _Se, _CSo, _EP, _PPS],
1444
+ [0, 0, 0, 0, [() => CountryCode$1, 0], 0, 0, 0, 0, 64 | 0, 0]
1445
+ ];
1446
+ var ProspectingTaskSummary$ = [3, n0, _PTS,
1447
+ 0,
1448
+ [_TIa, _TAa, _TN, _ST, _TEC, _CEC, _FEC, _ETn],
1449
+ [0, 0, 0, 5, 1, 1, 1, 5], 7
1450
+ ];
1451
+ var PutSellingSystemSettingsRequest$ = [3, n0, _PSSSR,
1452
+ 0,
1453
+ [_C, _RSJRI],
1454
+ [0, 0], 1
1455
+ ];
1456
+ var PutSellingSystemSettingsResponse$ = [3, n0, _PSSSRu,
1457
+ 0,
1458
+ [_C, _RSJRA],
1459
+ [0, 0], 1
1460
+ ];
1461
+ var Recommendation$ = [3, n0, _Reco,
1462
+ 0,
1463
+ [_T, _Det, _At],
1464
+ [0, 0, 128 | 0], 2
1465
+ ];
1466
+ var RejectEngagementInvitationRequest$ = [3, n0, _REIR,
1467
+ 0,
1468
+ [_C, _I, _RR],
1469
+ [0, 0, 0], 2
1470
+ ];
1471
+ var RelatedEntityIdentifiers$ = [3, n0, _REIel,
1472
+ 0,
1473
+ [_AMO, _AMOS, _So, _APws],
1474
+ [64 | 0, 64 | 0, 64 | 0, 64 | 0]
1475
+ ];
1476
+ var ResourceSnapshotJobSummary$ = [3, n0, _RSJSe,
1477
+ 0,
1478
+ [_Id, _Ar, _EIn, _St],
1479
+ [0, 0, 0, 0]
1480
+ ];
1481
+ var ResourceSnapshotSummary$ = [3, n0, _RSSe,
1482
+ 0,
1483
+ [_Ar, _Rev, _RT, _RIe, _RSTN, _CB],
1484
+ [0, 1, 0, 0, 0, [() => AwsAccount, 0]]
1485
+ ];
1486
+ var SenderContact$ = [3, n0, _SCen,
1487
+ 0,
1488
+ [_E, _FN, _LN, _BT, _P],
1489
+ [[() => SenderContactEmail, 0], [() => Name, 0], [() => Name, 0], [() => JobTitle, 0], [() => PhoneNumber, 0]], 1
1490
+ ];
1491
+ var SoftwareRevenue$ = [3, n0, _SR,
1492
+ 0,
1493
+ [_DMe, _Va, _EDf, _ED],
1494
+ [0, [() => MonetaryValue$, 0], 0, 0]
1495
+ ];
1496
+ var SolutionBase$ = [3, n0, _SBo,
1497
+ 0,
1498
+ [_C, _Id, _N, _St, _Cat, _CD, _Ar],
1499
+ [0, 0, 0, 0, 0, 5, 0], 6
1500
+ ];
1501
+ var SolutionSort$ = [3, n0, _SSol,
1502
+ 0,
1503
+ [_SO, _SB],
1504
+ [0, 0], 2
1505
+ ];
1506
+ var SortObject$ = [3, n0, _SOo,
1507
+ 0,
1508
+ [_SB, _SO],
1509
+ [0, 0]
1510
+ ];
1511
+ var StartEngagementByAcceptingInvitationTaskRequest$ = [3, n0, _SEBAITR,
1512
+ 0,
1513
+ [_C, _I, _CT, _Ta],
1514
+ [0, 0, [0, 4], () => TagList], 2
1515
+ ];
1516
+ var StartEngagementByAcceptingInvitationTaskResponse$ = [3, n0, _SEBAITRt,
1517
+ 0,
1518
+ [_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIIn],
1519
+ [0, 0, 5, 0, 0, 0, 0, 0, 0]
1520
+ ];
1521
+ var StartEngagementFromOpportunityTaskRequest$ = [3, n0, _SEFOTR,
1522
+ 0,
1523
+ [_C, _I, _ASw, _CT, _Ta],
1524
+ [0, 0, () => AwsSubmission$, [0, 4], () => TagList], 3
1525
+ ];
1526
+ var StartEngagementFromOpportunityTaskResponse$ = [3, n0, _SEFOTRt,
1527
+ 0,
1528
+ [_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIn, _EIIn],
1529
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 0]
1530
+ ];
1531
+ var StartOpportunityFromEngagementTaskRequest$ = [3, n0, _SOFETR,
1532
+ 0,
1533
+ [_C, _I, _CIo, _CT, _Ta],
1534
+ [0, 0, 0, [0, 4], () => TagList], 3
1535
+ ];
1536
+ var StartOpportunityFromEngagementTaskResponse$ = [3, n0, _SOFETRt,
1537
+ 0,
1538
+ [_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIn, _CI],
1539
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 0]
1540
+ ];
1541
+ var StartProspectingFromEngagementTaskRequest$ = [3, n0, _SPFETR,
1542
+ 0,
1543
+ [_C, _Ide, _TN, _CT],
1544
+ [0, 64 | 0, 0, [0, 4]], 3
1545
+ ];
1546
+ var StartProspectingFromEngagementTaskResponse$ = [3, n0, _SPFETRt,
1547
+ 0,
1548
+ [_Ide, _TN, _ST, _TS, _M, _RC, _TIa, _TAa],
1549
+ [64 | 0, 0, 5, 0, 0, 0, 0, 0], 4
1550
+ ];
1551
+ var StartResourceSnapshotJobRequest$ = [3, n0, _SRSJR,
1552
+ 0,
1553
+ [_C, _RSJI],
1554
+ [0, 0], 2
1555
+ ];
1556
+ var StopResourceSnapshotJobRequest$ = [3, n0, _SRSJRt,
1557
+ 0,
1558
+ [_C, _RSJI],
1559
+ [0, 0], 2
1560
+ ];
1561
+ var SubmitOpportunityRequest$ = [3, n0, _SORu,
1562
+ 0,
1563
+ [_C, _I, _IT, _V],
1564
+ [0, 0, 0, 0], 3
1565
+ ];
1566
+ var Tag$ = [3, n0, _Tag,
1567
+ 0,
1568
+ [_K, _Va],
1569
+ [0, 0], 2
1570
+ ];
1571
+ var TagResourceRequest$ = [3, n0, _TRR,
1572
+ 0,
1573
+ [_RA, _Ta],
1574
+ [0, () => TagList], 2
1575
+ ];
1576
+ var TagResourceResponse$ = [3, n0, _TRRa,
1577
+ 0,
1578
+ [],
1579
+ []
1580
+ ];
1581
+ var TargetCloseDateFilter$ = [3, n0, _TCDF,
1582
+ 0,
1583
+ [_ATCD, _BTCD],
1584
+ [0, 0]
1585
+ ];
1586
+ var UntagResourceRequest$ = [3, n0, _URR,
1587
+ 0,
1588
+ [_RA, _TK],
1589
+ [0, 64 | 0], 2
1590
+ ];
1591
+ var UntagResourceResponse$ = [3, n0, _URRn,
1592
+ 0,
1593
+ [],
1594
+ []
1595
+ ];
1596
+ var UpdateEngagementContextRequest$ = [3, n0, _UECR,
1597
+ 0,
1598
+ [_C, _EI, _CIo, _ELMA, _T, _Pay],
1599
+ [0, 0, 0, 5, 0, [() => UpdateEngagementContextPayload$, 0]], 6
1600
+ ];
1601
+ var UpdateEngagementContextResponse$ = [3, n0, _UECRp,
1602
+ 0,
1603
+ [_EIn, _EA, _ELMA, _CI],
1604
+ [0, 0, 5, 0], 4
1605
+ ];
1606
+ var UpdateLeadContext$ = [3, n0, _ULC,
1607
+ 0,
1608
+ [_Cu, _QS, _Inte, _Ins],
1609
+ [[() => LeadCustomer$, 0], 0, [() => LeadInteraction$, 0], () => LeadInsights$], 1
1610
+ ];
1611
+ var UpdateOpportunityRequest$ = [3, n0, _UOR,
1612
+ 0,
1613
+ [_C, _LMD, _I, _PNFA, _NSa, _POI, _Cu, _Pr, _OTp, _Ma, _SR, _LC],
1614
+ [0, 5, 0, 64 | 0, 0, 0, [() => Customer$, 0], [() => Project$, 0], 0, () => Marketing$, [() => SoftwareRevenue$, 0], [() => LifeCycle$, 0]], 3
1615
+ ];
1616
+ var UpdateOpportunityResponse$ = [3, n0, _UORp,
1617
+ 0,
1618
+ [_Id, _LMD],
1619
+ [0, 5], 2
1620
+ ];
1621
+ var ValidationExceptionError$ = [3, n0, _VEE,
1622
+ 0,
1623
+ [_M, _Cod, _FNi],
1624
+ [0, 0, 0], 2
1625
+ ];
1626
+ var __Unit = "unit";
1627
+ var AwsAccountIdOrAliasList = [1, n0, _AAIOAL,
1628
+ 0, [() => AwsAccount,
1629
+ 0]
1630
+ ];
1631
+ var AwsAccountList = [1, n0, _AAL,
1632
+ 0, [() => AwsAccount,
1633
+ 0]
1634
+ ];
1635
+ var AwsOpportunityTeamMembersList = [1, n0, _AOTML,
1636
+ 0, [() => AwsTeamMember$,
1637
+ 0]
1638
+ ];
1639
+ var AwsProductOptimizationsList = [1, n0, _APOL,
1640
+ 0, [() => AwsProductOptimization$,
1641
+ 0]
1642
+ ];
1643
+ var AwsProductsList = [1, n0, _APL,
1644
+ 0, [() => AwsProductDetails$,
1645
+ 0]
1646
+ ];
1647
+ var CustomerContactsList = [1, n0, _CCL,
1648
+ 0, [() => Contact$,
1649
+ 0]
1650
+ ];
1651
+ var EngagementContexts = [1, n0, _ECn,
1652
+ 0, [() => EngagementContextDetails$,
1653
+ 0]
1654
+ ];
1655
+ var EngagementInvitationSummaries = [1, n0, _EISn,
1656
+ 0, [() => EngagementInvitationSummary$,
1657
+ 0]
1658
+ ];
1659
+ var EngagementMembers = [1, n0, _EMn,
1660
+ 0, [() => EngagementMember$,
1661
+ 0]
1662
+ ];
1663
+ var EngagementMemberSummaries = [1, n0, _EMSn,
1664
+ 0, [() => EngagementMemberSummary$,
1665
+ 0]
1666
+ ];
1667
+ var EngagementProspectingResultList = [1, n0, _EPRL,
1668
+ 0, () => EngagementProspectingResult$
1669
+ ];
1670
+ var EngagementResourceAssociationSummaryList = [1, n0, _ERASL,
1671
+ 0, [() => EngagementResourceAssociationSummary$,
1672
+ 0]
1673
+ ];
1674
+ var EngagementSummaryList = [1, n0, _ESL,
1675
+ 0, [() => EngagementSummary$,
1676
+ 0]
1677
+ ];
1678
+ var ExpectedCustomerSpendList = [1, n0, _ECSL,
1679
+ 0, [() => ExpectedCustomerSpend$,
1680
+ 0]
1681
+ ];
1682
+ var LeadInteractionList = [1, n0, _LIL,
1683
+ 0, [() => LeadInteraction$,
1684
+ 0]
1685
+ ];
1686
+ var ListEngagementByAcceptingInvitationTaskSummaries = [1, n0, _LEBAITSi,
1687
+ 0, () => ListEngagementByAcceptingInvitationTaskSummary$
1688
+ ];
1689
+ var ListEngagementFromOpportunityTaskSummaries = [1, n0, _LEFOTSi,
1690
+ 0, () => ListEngagementFromOpportunityTaskSummary$
1691
+ ];
1692
+ var ListOpportunityFromEngagementTaskSummaries = [1, n0, _LOFETSi,
1693
+ 0, () => ListOpportunityFromEngagementTaskSummary$
1694
+ ];
1695
+ var NextStepsHistories = [1, n0, _NSHe,
1696
+ 0, () => NextStepsHistory$
1697
+ ];
1698
+ var OpportunitySummaries = [1, n0, _OS,
1699
+ 0, [() => OpportunitySummary$,
1700
+ 0]
1701
+ ];
1702
+ var PartnerOpportunityTeamMembersList = [1, n0, _POTML,
1703
+ 0, [() => Contact$,
1704
+ 0]
1705
+ ];
1706
+ var ProfileNextStepsHistories = [1, n0, _PNSHr,
1707
+ 0, () => ProfileNextStepsHistory$
1708
+ ];
1709
+ var ProspectingTaskSummaryList = [1, n0, _PTSL,
1710
+ 0, () => ProspectingTaskSummary$
1711
+ ];
1712
+ var RecommendationList = [1, n0, _RL,
1713
+ 0, () => Recommendation$
1714
+ ];
1715
+ var ResourceSnapshotJobSummaryList = [1, n0, _RSJSL,
1716
+ 0, () => ResourceSnapshotJobSummary$
1717
+ ];
1718
+ var ResourceSnapshotSummaryList = [1, n0, _RSSL,
1719
+ 0, [() => ResourceSnapshotSummary$,
1720
+ 0]
1721
+ ];
1722
+ var SenderContactList = [1, n0, _SCL,
1723
+ 0, [() => SenderContact$,
1724
+ 0]
1725
+ ];
1726
+ var SolutionList = [1, n0, _SL,
1727
+ 0, () => SolutionBase$
1728
+ ];
1729
+ var TagList = [1, n0, _TL,
1730
+ 0, () => Tag$
1731
+ ];
1732
+ var ValidationExceptionErrorList = [1, n0, _VEEL,
1733
+ 0, () => ValidationExceptionError$
1734
+ ];
1735
+ var AmountMap = [2, n0, _AMm,
1736
+ 0, [0,
1737
+ 0],
1738
+ [() => MonetaryAmount,
1739
+ 0]
1740
+ ];
1741
+ var EngagementContextPayload$ = [4, n0, _ECP,
1742
+ 0,
1743
+ [_CP, _Le, _PR],
1744
+ [[() => CustomerProjectsContext$, 0], [() => LeadContext$, 0], [() => ProspectingResult$, 0]]
1745
+ ];
1746
+ var Payload$ = [4, n0, _Pay,
1747
+ 0,
1748
+ [_OIppo, _LIea],
1749
+ [[() => OpportunityInvitationPayload$, 0], [() => LeadInvitationPayload$, 0]]
1750
+ ];
1751
+ var Receiver$ = [4, n0, _Rec,
1752
+ 0,
1753
+ [_Ac],
1754
+ [[() => AccountReceiver$, 0]]
1755
+ ];
1756
+ var ResourceSnapshotPayload$ = [4, n0, _RSP,
1757
+ 0,
1758
+ [_OSpp, _AOSFV],
1759
+ [[() => OpportunitySummaryView$, 0], [() => AwsOpportunitySummaryFullView$, 0]]
1760
+ ];
1761
+ var UpdateEngagementContextPayload$ = [4, n0, _UECP,
1762
+ 0,
1763
+ [_Le, _CP, _PR],
1764
+ [[() => UpdateLeadContext$, 0], [() => CustomerProjectsContext$, 0], [() => ProspectingResult$, 0]]
1765
+ ];
1766
+ var AcceptEngagementInvitation$ = [9, n0, _AEI,
1767
+ { [_h]: ["POST", "/AcceptEngagementInvitation", 200] }, () => AcceptEngagementInvitationRequest$, () => __Unit
1768
+ ];
1769
+ var AssignOpportunity$ = [9, n0, _AO,
1770
+ { [_h]: ["POST", "/AssignOpportunity", 200] }, () => AssignOpportunityRequest$, () => __Unit
1771
+ ];
1772
+ var AssociateOpportunity$ = [9, n0, _AOs,
1773
+ { [_h]: ["POST", "/AssociateOpportunity", 200] }, () => AssociateOpportunityRequest$, () => __Unit
1774
+ ];
1775
+ var CreateEngagement$ = [9, n0, _CEr,
1776
+ { [_h]: ["POST", "/CreateEngagement", 200] }, () => CreateEngagementRequest$, () => CreateEngagementResponse$
1777
+ ];
1778
+ var CreateEngagementContext$ = [9, n0, _CECr,
1779
+ { [_h]: ["POST", "/CreateEngagementContext", 200] }, () => CreateEngagementContextRequest$, () => CreateEngagementContextResponse$
1780
+ ];
1781
+ var CreateEngagementInvitation$ = [9, n0, _CEI,
1782
+ { [_h]: ["POST", "/CreateEngagementInvitation", 200] }, () => CreateEngagementInvitationRequest$, () => CreateEngagementInvitationResponse$
1783
+ ];
1784
+ var CreateOpportunity$ = [9, n0, _CO,
1785
+ { [_h]: ["POST", "/CreateOpportunity", 200] }, () => CreateOpportunityRequest$, () => CreateOpportunityResponse$
1786
+ ];
1787
+ var CreateResourceSnapshot$ = [9, n0, _CRS,
1788
+ { [_h]: ["POST", "/CreateResourceSnapshot", 200] }, () => CreateResourceSnapshotRequest$, () => CreateResourceSnapshotResponse$
1789
+ ];
1790
+ var CreateResourceSnapshotJob$ = [9, n0, _CRSJ,
1791
+ { [_h]: ["POST", "/CreateResourceSnapshotJob", 200] }, () => CreateResourceSnapshotJobRequest$, () => CreateResourceSnapshotJobResponse$
1792
+ ];
1793
+ var DeleteResourceSnapshotJob$ = [9, n0, _DRSJ,
1794
+ { [_h]: ["POST", "/DeleteResourceSnapshotJob", 204] }, () => DeleteResourceSnapshotJobRequest$, () => __Unit
1795
+ ];
1796
+ var DisassociateOpportunity$ = [9, n0, _DO,
1797
+ { [_h]: ["POST", "/DisassociateOpportunity", 200] }, () => DisassociateOpportunityRequest$, () => __Unit
1798
+ ];
1799
+ var GetAwsOpportunitySummary$ = [9, n0, _GAOS,
1800
+ { [_h]: ["POST", "/GetAwsOpportunitySummary", 200] }, () => GetAwsOpportunitySummaryRequest$, () => GetAwsOpportunitySummaryResponse$
1801
+ ];
1802
+ var GetEngagement$ = [9, n0, _GE,
1803
+ { [_h]: ["POST", "/GetEngagement", 200] }, () => GetEngagementRequest$, () => GetEngagementResponse$
1804
+ ];
1805
+ var GetEngagementInvitation$ = [9, n0, _GEI,
1806
+ { [_h]: ["POST", "/GetEngagementInvitation", 200] }, () => GetEngagementInvitationRequest$, () => GetEngagementInvitationResponse$
1807
+ ];
1808
+ var GetOpportunity$ = [9, n0, _GO,
1809
+ { [_h]: ["POST", "/GetOpportunity", 200] }, () => GetOpportunityRequest$, () => GetOpportunityResponse$
1810
+ ];
1811
+ var GetProspectingFromEngagementTask$ = [9, n0, _GPFET,
1812
+ { [_h]: ["POST", "/GetProspectingFromEngagementTask", 200] }, () => GetProspectingFromEngagementTaskRequest$, () => GetProspectingFromEngagementTaskResponse$
1813
+ ];
1814
+ var GetResourceSnapshot$ = [9, n0, _GRS,
1815
+ { [_h]: ["POST", "/GetResourceSnapshot", 200] }, () => GetResourceSnapshotRequest$, () => GetResourceSnapshotResponse$
1816
+ ];
1817
+ var GetResourceSnapshotJob$ = [9, n0, _GRSJ,
1818
+ { [_h]: ["POST", "/GetResourceSnapshotJob", 200] }, () => GetResourceSnapshotJobRequest$, () => GetResourceSnapshotJobResponse$
1819
+ ];
1820
+ var GetSellingSystemSettings$ = [9, n0, _GSSS,
1821
+ { [_h]: ["POST", "/GetSellingSystemSettings", 200] }, () => GetSellingSystemSettingsRequest$, () => GetSellingSystemSettingsResponse$
1822
+ ];
1823
+ var ListEngagementByAcceptingInvitationTasks$ = [9, n0, _LEBAIT,
1824
+ { [_h]: ["POST", "/ListEngagementByAcceptingInvitationTasks", 200] }, () => ListEngagementByAcceptingInvitationTasksRequest$, () => ListEngagementByAcceptingInvitationTasksResponse$
1825
+ ];
1826
+ var ListEngagementFromOpportunityTasks$ = [9, n0, _LEFOT,
1827
+ { [_h]: ["POST", "/ListEngagementFromOpportunityTasks", 200] }, () => ListEngagementFromOpportunityTasksRequest$, () => ListEngagementFromOpportunityTasksResponse$
1828
+ ];
1829
+ var ListEngagementInvitations$ = [9, n0, _LEI,
1830
+ { [_h]: ["POST", "/ListEngagementInvitations", 200] }, () => ListEngagementInvitationsRequest$, () => ListEngagementInvitationsResponse$
1831
+ ];
1832
+ var ListEngagementMembers$ = [9, n0, _LEM,
1833
+ { [_h]: ["POST", "/ListEngagementMembers", 200] }, () => ListEngagementMembersRequest$, () => ListEngagementMembersResponse$
1834
+ ];
1835
+ var ListEngagementResourceAssociations$ = [9, n0, _LERA,
1836
+ { [_h]: ["POST", "/ListEngagementResourceAssociations", 200] }, () => ListEngagementResourceAssociationsRequest$, () => ListEngagementResourceAssociationsResponse$
1837
+ ];
1838
+ var ListEngagements$ = [9, n0, _LE,
1839
+ { [_h]: ["POST", "/ListEngagements", 200] }, () => ListEngagementsRequest$, () => ListEngagementsResponse$
1840
+ ];
1841
+ var ListOpportunities$ = [9, n0, _LO,
1842
+ { [_h]: ["POST", "/ListOpportunities", 200] }, () => ListOpportunitiesRequest$, () => ListOpportunitiesResponse$
1843
+ ];
1844
+ var ListOpportunityFromEngagementTasks$ = [9, n0, _LOFET,
1845
+ { [_h]: ["POST", "/ListOpportunityFromEngagementTasks", 200] }, () => ListOpportunityFromEngagementTasksRequest$, () => ListOpportunityFromEngagementTasksResponse$
1846
+ ];
1847
+ var ListProspectingFromEngagementTasks$ = [9, n0, _LPFET,
1848
+ { [_h]: ["POST", "/ListProspectingFromEngagementTasks", 200] }, () => ListProspectingFromEngagementTasksRequest$, () => ListProspectingFromEngagementTasksResponse$
1849
+ ];
1850
+ var ListResourceSnapshotJobs$ = [9, n0, _LRSJ,
1851
+ { [_h]: ["POST", "/ListResourceSnapshotJobs", 200] }, () => ListResourceSnapshotJobsRequest$, () => ListResourceSnapshotJobsResponse$
1852
+ ];
1853
+ var ListResourceSnapshots$ = [9, n0, _LRSi,
1854
+ { [_h]: ["POST", "/ListResourceSnapshots", 200] }, () => ListResourceSnapshotsRequest$, () => ListResourceSnapshotsResponse$
1855
+ ];
1856
+ var ListSolutions$ = [9, n0, _LS,
1857
+ { [_h]: ["POST", "/ListSolutions", 200] }, () => ListSolutionsRequest$, () => ListSolutionsResponse$
1858
+ ];
1859
+ var ListTagsForResource$ = [9, n0, _LTFR,
1860
+ { [_h]: ["POST", "/ListTagsForResource", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1861
+ ];
1862
+ var PutSellingSystemSettings$ = [9, n0, _PSSS,
1863
+ { [_h]: ["POST", "/PutSellingSystemSettings", 200] }, () => PutSellingSystemSettingsRequest$, () => PutSellingSystemSettingsResponse$
1864
+ ];
1865
+ var RejectEngagementInvitation$ = [9, n0, _REIej,
1866
+ { [_h]: ["POST", "/RejectEngagementInvitation", 200] }, () => RejectEngagementInvitationRequest$, () => __Unit
1867
+ ];
1868
+ var StartEngagementByAcceptingInvitationTask$ = [9, n0, _SEBAIT,
1869
+ { [_h]: ["POST", "/StartEngagementByAcceptingInvitationTask", 200] }, () => StartEngagementByAcceptingInvitationTaskRequest$, () => StartEngagementByAcceptingInvitationTaskResponse$
1870
+ ];
1871
+ var StartEngagementFromOpportunityTask$ = [9, n0, _SEFOT,
1872
+ { [_h]: ["POST", "/StartEngagementFromOpportunityTask", 200] }, () => StartEngagementFromOpportunityTaskRequest$, () => StartEngagementFromOpportunityTaskResponse$
1873
+ ];
1874
+ var StartOpportunityFromEngagementTask$ = [9, n0, _SOFET,
1875
+ { [_h]: ["POST", "/StartOpportunityFromEngagementTask", 200] }, () => StartOpportunityFromEngagementTaskRequest$, () => StartOpportunityFromEngagementTaskResponse$
1876
+ ];
1877
+ var StartProspectingFromEngagementTask$ = [9, n0, _SPFET,
1878
+ { [_h]: ["POST", "/StartProspectingFromEngagementTask", 200] }, () => StartProspectingFromEngagementTaskRequest$, () => StartProspectingFromEngagementTaskResponse$
1879
+ ];
1880
+ var StartResourceSnapshotJob$ = [9, n0, _SRSJ,
1881
+ { [_h]: ["POST", "/StartResourceSnapshotJob", 204] }, () => StartResourceSnapshotJobRequest$, () => __Unit
1882
+ ];
1883
+ var StopResourceSnapshotJob$ = [9, n0, _SRSJt,
1884
+ { [_h]: ["POST", "/StopResourceSnapshotJob", 204] }, () => StopResourceSnapshotJobRequest$, () => __Unit
1885
+ ];
1886
+ var SubmitOpportunity$ = [9, n0, _SOu,
1887
+ { [_h]: ["POST", "/SubmitOpportunity", 200] }, () => SubmitOpportunityRequest$, () => __Unit
1888
+ ];
1889
+ var TagResource$ = [9, n0, _TR,
1890
+ { [_h]: ["POST", "/TagResource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1891
+ ];
1892
+ var UntagResource$ = [9, n0, _UR,
1893
+ { [_h]: ["POST", "/UntagResource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1894
+ ];
1895
+ var UpdateEngagementContext$ = [9, n0, _UEC,
1896
+ { [_h]: ["POST", "/UpdateEngagementContext", 200] }, () => UpdateEngagementContextRequest$, () => UpdateEngagementContextResponse$
1897
+ ];
1898
+ var UpdateOpportunity$ = [9, n0, _UO,
1899
+ { [_h]: ["POST", "/UpdateOpportunity", 200] }, () => UpdateOpportunityRequest$, () => UpdateOpportunityResponse$
1900
+ ];
1901
+
1902
+ const getRuntimeConfig$1 = (config) => {
1903
+ return {
1904
+ apiVersion: "2022-07-26",
1905
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1906
+ base64Encoder: config?.base64Encoder ?? toBase64,
1907
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1908
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1909
+ extensions: config?.extensions ?? [],
1910
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultPartnerCentralSellingHttpAuthSchemeProvider,
1911
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1912
+ {
1913
+ schemeId: "aws.auth#sigv4",
1914
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1915
+ signer: new AwsSdkSigV4Signer(),
1916
+ },
1917
+ ],
1918
+ logger: config?.logger ?? new NoOpLogger(),
1919
+ protocol: config?.protocol ?? AwsJson1_0Protocol,
1920
+ protocolSettings: config?.protocolSettings ?? {
1921
+ defaultNamespace: "com.amazonaws.partnercentralselling",
1922
+ errorTypeRegistries,
1923
+ version: "2022-07-26",
1924
+ serviceTarget: "AWSPartnerCentralSelling",
1925
+ },
1926
+ serviceId: config?.serviceId ?? "PartnerCentral Selling",
1927
+ urlParser: config?.urlParser ?? parseUrl,
1928
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1929
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1930
+ };
1931
+ };
1932
+
1933
+ const getRuntimeConfig = (config) => {
1934
+ emitWarningIfUnsupportedVersion(process.version);
1935
+ const defaultsMode = resolveDefaultsModeConfig(config);
1936
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1937
+ const clientSharedValues = getRuntimeConfig$1(config);
1938
+ emitWarningIfUnsupportedVersion$1(process.version);
1939
+ const loaderConfig = {
1940
+ profile: config?.profile,
1941
+ logger: clientSharedValues.logger,
1942
+ };
1943
+ return {
1944
+ ...clientSharedValues,
1945
+ ...config,
1946
+ runtime: "node",
1947
+ defaultsMode,
1948
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1949
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1950
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1951
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1952
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1953
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1954
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1955
+ retryMode: config?.retryMode ??
1956
+ loadConfig({
1957
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1958
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1959
+ }, config),
1960
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1961
+ streamCollector: config?.streamCollector ?? streamCollector,
1962
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1963
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1964
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1965
+ };
1966
+ };
1967
+
32
1968
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
33
1969
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
34
1970
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1567,104 +3503,337 @@ const SolutionStatus = {
1567
3503
  INACTIVE: "Inactive",
1568
3504
  };
1569
3505
 
3506
+ exports.AcceptEngagementInvitation$ = AcceptEngagementInvitation$;
1570
3507
  exports.AcceptEngagementInvitationCommand = AcceptEngagementInvitationCommand;
3508
+ exports.AcceptEngagementInvitationRequest$ = AcceptEngagementInvitationRequest$;
3509
+ exports.AccessDeniedException = AccessDeniedException;
3510
+ exports.AccessDeniedException$ = AccessDeniedException$;
1571
3511
  exports.AccessDeniedExceptionErrorCode = AccessDeniedExceptionErrorCode;
3512
+ exports.Account$ = Account$;
3513
+ exports.AccountReceiver$ = AccountReceiver$;
3514
+ exports.AccountSummary$ = AccountSummary$;
3515
+ exports.Address$ = Address$;
3516
+ exports.AddressSummary$ = AddressSummary$;
3517
+ exports.AssignOpportunity$ = AssignOpportunity$;
1572
3518
  exports.AssignOpportunityCommand = AssignOpportunityCommand;
3519
+ exports.AssignOpportunityRequest$ = AssignOpportunityRequest$;
3520
+ exports.AssigneeContact$ = AssigneeContact$;
3521
+ exports.AssociateOpportunity$ = AssociateOpportunity$;
1573
3522
  exports.AssociateOpportunityCommand = AssociateOpportunityCommand;
3523
+ exports.AssociateOpportunityRequest$ = AssociateOpportunityRequest$;
1574
3524
  exports.AwsClosedLostReason = AwsClosedLostReason;
1575
3525
  exports.AwsFundingUsed = AwsFundingUsed;
1576
3526
  exports.AwsMemberBusinessTitle = AwsMemberBusinessTitle;
3527
+ exports.AwsOpportunityCustomer$ = AwsOpportunityCustomer$;
3528
+ exports.AwsOpportunityInsights$ = AwsOpportunityInsights$;
3529
+ exports.AwsOpportunityLifeCycle$ = AwsOpportunityLifeCycle$;
3530
+ exports.AwsOpportunityProject$ = AwsOpportunityProject$;
3531
+ exports.AwsOpportunityRelatedEntities$ = AwsOpportunityRelatedEntities$;
1577
3532
  exports.AwsOpportunityStage = AwsOpportunityStage;
3533
+ exports.AwsOpportunitySummaryFullView$ = AwsOpportunitySummaryFullView$;
1578
3534
  exports.AwsPartition = AwsPartition;
3535
+ exports.AwsProductDetails$ = AwsProductDetails$;
3536
+ exports.AwsProductInsights$ = AwsProductInsights$;
3537
+ exports.AwsProductOptimization$ = AwsProductOptimization$;
3538
+ exports.AwsProductsSpendInsightsBySource$ = AwsProductsSpendInsightsBySource$;
3539
+ exports.AwsSubmission$ = AwsSubmission$;
3540
+ exports.AwsTeamMember$ = AwsTeamMember$;
1579
3541
  exports.Channel = Channel;
1580
3542
  exports.ClosedLostReason = ClosedLostReason;
1581
3543
  exports.CompetitorName = CompetitorName;
3544
+ exports.ConflictException = ConflictException;
3545
+ exports.ConflictException$ = ConflictException$;
3546
+ exports.Contact$ = Contact$;
1582
3547
  exports.CountryCode = CountryCode;
3548
+ exports.CreateEngagement$ = CreateEngagement$;
1583
3549
  exports.CreateEngagementCommand = CreateEngagementCommand;
3550
+ exports.CreateEngagementContext$ = CreateEngagementContext$;
1584
3551
  exports.CreateEngagementContextCommand = CreateEngagementContextCommand;
3552
+ exports.CreateEngagementContextRequest$ = CreateEngagementContextRequest$;
3553
+ exports.CreateEngagementContextResponse$ = CreateEngagementContextResponse$;
3554
+ exports.CreateEngagementInvitation$ = CreateEngagementInvitation$;
1585
3555
  exports.CreateEngagementInvitationCommand = CreateEngagementInvitationCommand;
3556
+ exports.CreateEngagementInvitationRequest$ = CreateEngagementInvitationRequest$;
3557
+ exports.CreateEngagementInvitationResponse$ = CreateEngagementInvitationResponse$;
3558
+ exports.CreateEngagementRequest$ = CreateEngagementRequest$;
3559
+ exports.CreateEngagementResponse$ = CreateEngagementResponse$;
3560
+ exports.CreateOpportunity$ = CreateOpportunity$;
1586
3561
  exports.CreateOpportunityCommand = CreateOpportunityCommand;
3562
+ exports.CreateOpportunityRequest$ = CreateOpportunityRequest$;
3563
+ exports.CreateOpportunityResponse$ = CreateOpportunityResponse$;
3564
+ exports.CreateResourceSnapshot$ = CreateResourceSnapshot$;
1587
3565
  exports.CreateResourceSnapshotCommand = CreateResourceSnapshotCommand;
3566
+ exports.CreateResourceSnapshotJob$ = CreateResourceSnapshotJob$;
1588
3567
  exports.CreateResourceSnapshotJobCommand = CreateResourceSnapshotJobCommand;
3568
+ exports.CreateResourceSnapshotJobRequest$ = CreateResourceSnapshotJobRequest$;
3569
+ exports.CreateResourceSnapshotJobResponse$ = CreateResourceSnapshotJobResponse$;
3570
+ exports.CreateResourceSnapshotRequest$ = CreateResourceSnapshotRequest$;
3571
+ exports.CreateResourceSnapshotResponse$ = CreateResourceSnapshotResponse$;
3572
+ exports.CreatedDateFilter$ = CreatedDateFilter$;
1589
3573
  exports.CurrencyCode = CurrencyCode;
3574
+ exports.Customer$ = Customer$;
3575
+ exports.CustomerProjectsContext$ = CustomerProjectsContext$;
3576
+ exports.CustomerSummary$ = CustomerSummary$;
3577
+ exports.DeleteResourceSnapshotJob$ = DeleteResourceSnapshotJob$;
1590
3578
  exports.DeleteResourceSnapshotJobCommand = DeleteResourceSnapshotJobCommand;
3579
+ exports.DeleteResourceSnapshotJobRequest$ = DeleteResourceSnapshotJobRequest$;
1591
3580
  exports.DeliveryModel = DeliveryModel;
3581
+ exports.DisassociateOpportunity$ = DisassociateOpportunity$;
1592
3582
  exports.DisassociateOpportunityCommand = DisassociateOpportunityCommand;
3583
+ exports.DisassociateOpportunityRequest$ = DisassociateOpportunityRequest$;
3584
+ exports.EngagementContextDetails$ = EngagementContextDetails$;
3585
+ exports.EngagementContextPayload$ = EngagementContextPayload$;
1593
3586
  exports.EngagementContextType = EngagementContextType;
3587
+ exports.EngagementCustomer$ = EngagementCustomer$;
3588
+ exports.EngagementCustomerProjectDetails$ = EngagementCustomerProjectDetails$;
1594
3589
  exports.EngagementInvitationPayloadType = EngagementInvitationPayloadType;
3590
+ exports.EngagementInvitationSummary$ = EngagementInvitationSummary$;
3591
+ exports.EngagementMember$ = EngagementMember$;
3592
+ exports.EngagementMemberSummary$ = EngagementMemberSummary$;
3593
+ exports.EngagementProspectingResult$ = EngagementProspectingResult$;
3594
+ exports.EngagementResourceAssociationSummary$ = EngagementResourceAssociationSummary$;
1595
3595
  exports.EngagementScore = EngagementScore;
3596
+ exports.EngagementSort$ = EngagementSort$;
1596
3597
  exports.EngagementSortName = EngagementSortName;
3598
+ exports.EngagementSummary$ = EngagementSummary$;
3599
+ exports.ExpectedContractDuration$ = ExpectedContractDuration$;
1597
3600
  exports.ExpectedContractDurationTerm = ExpectedContractDurationTerm;
3601
+ exports.ExpectedCustomerSpend$ = ExpectedCustomerSpend$;
3602
+ exports.GetAwsOpportunitySummary$ = GetAwsOpportunitySummary$;
1598
3603
  exports.GetAwsOpportunitySummaryCommand = GetAwsOpportunitySummaryCommand;
3604
+ exports.GetAwsOpportunitySummaryRequest$ = GetAwsOpportunitySummaryRequest$;
3605
+ exports.GetAwsOpportunitySummaryResponse$ = GetAwsOpportunitySummaryResponse$;
3606
+ exports.GetEngagement$ = GetEngagement$;
1599
3607
  exports.GetEngagementCommand = GetEngagementCommand;
3608
+ exports.GetEngagementInvitation$ = GetEngagementInvitation$;
1600
3609
  exports.GetEngagementInvitationCommand = GetEngagementInvitationCommand;
3610
+ exports.GetEngagementInvitationRequest$ = GetEngagementInvitationRequest$;
3611
+ exports.GetEngagementInvitationResponse$ = GetEngagementInvitationResponse$;
3612
+ exports.GetEngagementRequest$ = GetEngagementRequest$;
3613
+ exports.GetEngagementResponse$ = GetEngagementResponse$;
3614
+ exports.GetOpportunity$ = GetOpportunity$;
1601
3615
  exports.GetOpportunityCommand = GetOpportunityCommand;
3616
+ exports.GetOpportunityRequest$ = GetOpportunityRequest$;
3617
+ exports.GetOpportunityResponse$ = GetOpportunityResponse$;
3618
+ exports.GetProspectingFromEngagementTask$ = GetProspectingFromEngagementTask$;
1602
3619
  exports.GetProspectingFromEngagementTaskCommand = GetProspectingFromEngagementTaskCommand;
3620
+ exports.GetProspectingFromEngagementTaskRequest$ = GetProspectingFromEngagementTaskRequest$;
3621
+ exports.GetProspectingFromEngagementTaskResponse$ = GetProspectingFromEngagementTaskResponse$;
3622
+ exports.GetResourceSnapshot$ = GetResourceSnapshot$;
1603
3623
  exports.GetResourceSnapshotCommand = GetResourceSnapshotCommand;
3624
+ exports.GetResourceSnapshotJob$ = GetResourceSnapshotJob$;
1604
3625
  exports.GetResourceSnapshotJobCommand = GetResourceSnapshotJobCommand;
3626
+ exports.GetResourceSnapshotJobRequest$ = GetResourceSnapshotJobRequest$;
3627
+ exports.GetResourceSnapshotJobResponse$ = GetResourceSnapshotJobResponse$;
3628
+ exports.GetResourceSnapshotRequest$ = GetResourceSnapshotRequest$;
3629
+ exports.GetResourceSnapshotResponse$ = GetResourceSnapshotResponse$;
3630
+ exports.GetSellingSystemSettings$ = GetSellingSystemSettings$;
1605
3631
  exports.GetSellingSystemSettingsCommand = GetSellingSystemSettingsCommand;
3632
+ exports.GetSellingSystemSettingsRequest$ = GetSellingSystemSettingsRequest$;
3633
+ exports.GetSellingSystemSettingsResponse$ = GetSellingSystemSettingsResponse$;
1606
3634
  exports.Industry = Industry;
3635
+ exports.InternalServerException = InternalServerException;
3636
+ exports.InternalServerException$ = InternalServerException$;
3637
+ exports.Invitation$ = Invitation$;
1607
3638
  exports.InvitationStatus = InvitationStatus;
1608
3639
  exports.InvolvementTypeChangeReason = InvolvementTypeChangeReason;
3640
+ exports.LastModifiedDate$ = LastModifiedDate$;
3641
+ exports.LeadContact$ = LeadContact$;
3642
+ exports.LeadContext$ = LeadContext$;
3643
+ exports.LeadCustomer$ = LeadCustomer$;
3644
+ exports.LeadInsights$ = LeadInsights$;
3645
+ exports.LeadInteraction$ = LeadInteraction$;
3646
+ exports.LeadInvitationCustomer$ = LeadInvitationCustomer$;
3647
+ exports.LeadInvitationInteraction$ = LeadInvitationInteraction$;
3648
+ exports.LeadInvitationPayload$ = LeadInvitationPayload$;
3649
+ exports.LifeCycle$ = LifeCycle$;
3650
+ exports.LifeCycleForView$ = LifeCycleForView$;
3651
+ exports.LifeCycleSummary$ = LifeCycleSummary$;
3652
+ exports.ListEngagementByAcceptingInvitationTaskSummary$ = ListEngagementByAcceptingInvitationTaskSummary$;
3653
+ exports.ListEngagementByAcceptingInvitationTasks$ = ListEngagementByAcceptingInvitationTasks$;
1609
3654
  exports.ListEngagementByAcceptingInvitationTasksCommand = ListEngagementByAcceptingInvitationTasksCommand;
3655
+ exports.ListEngagementByAcceptingInvitationTasksRequest$ = ListEngagementByAcceptingInvitationTasksRequest$;
3656
+ exports.ListEngagementByAcceptingInvitationTasksResponse$ = ListEngagementByAcceptingInvitationTasksResponse$;
3657
+ exports.ListEngagementFromOpportunityTaskSummary$ = ListEngagementFromOpportunityTaskSummary$;
3658
+ exports.ListEngagementFromOpportunityTasks$ = ListEngagementFromOpportunityTasks$;
1610
3659
  exports.ListEngagementFromOpportunityTasksCommand = ListEngagementFromOpportunityTasksCommand;
3660
+ exports.ListEngagementFromOpportunityTasksRequest$ = ListEngagementFromOpportunityTasksRequest$;
3661
+ exports.ListEngagementFromOpportunityTasksResponse$ = ListEngagementFromOpportunityTasksResponse$;
3662
+ exports.ListEngagementInvitations$ = ListEngagementInvitations$;
1611
3663
  exports.ListEngagementInvitationsCommand = ListEngagementInvitationsCommand;
3664
+ exports.ListEngagementInvitationsRequest$ = ListEngagementInvitationsRequest$;
3665
+ exports.ListEngagementInvitationsResponse$ = ListEngagementInvitationsResponse$;
3666
+ exports.ListEngagementMembers$ = ListEngagementMembers$;
1612
3667
  exports.ListEngagementMembersCommand = ListEngagementMembersCommand;
3668
+ exports.ListEngagementMembersRequest$ = ListEngagementMembersRequest$;
3669
+ exports.ListEngagementMembersResponse$ = ListEngagementMembersResponse$;
3670
+ exports.ListEngagementResourceAssociations$ = ListEngagementResourceAssociations$;
1613
3671
  exports.ListEngagementResourceAssociationsCommand = ListEngagementResourceAssociationsCommand;
3672
+ exports.ListEngagementResourceAssociationsRequest$ = ListEngagementResourceAssociationsRequest$;
3673
+ exports.ListEngagementResourceAssociationsResponse$ = ListEngagementResourceAssociationsResponse$;
3674
+ exports.ListEngagements$ = ListEngagements$;
1614
3675
  exports.ListEngagementsCommand = ListEngagementsCommand;
3676
+ exports.ListEngagementsRequest$ = ListEngagementsRequest$;
3677
+ exports.ListEngagementsResponse$ = ListEngagementsResponse$;
3678
+ exports.ListOpportunities$ = ListOpportunities$;
1615
3679
  exports.ListOpportunitiesCommand = ListOpportunitiesCommand;
3680
+ exports.ListOpportunitiesRequest$ = ListOpportunitiesRequest$;
3681
+ exports.ListOpportunitiesResponse$ = ListOpportunitiesResponse$;
3682
+ exports.ListOpportunityFromEngagementTaskSummary$ = ListOpportunityFromEngagementTaskSummary$;
3683
+ exports.ListOpportunityFromEngagementTasks$ = ListOpportunityFromEngagementTasks$;
1616
3684
  exports.ListOpportunityFromEngagementTasksCommand = ListOpportunityFromEngagementTasksCommand;
3685
+ exports.ListOpportunityFromEngagementTasksRequest$ = ListOpportunityFromEngagementTasksRequest$;
3686
+ exports.ListOpportunityFromEngagementTasksResponse$ = ListOpportunityFromEngagementTasksResponse$;
3687
+ exports.ListProspectingFromEngagementTasks$ = ListProspectingFromEngagementTasks$;
1617
3688
  exports.ListProspectingFromEngagementTasksCommand = ListProspectingFromEngagementTasksCommand;
3689
+ exports.ListProspectingFromEngagementTasksRequest$ = ListProspectingFromEngagementTasksRequest$;
3690
+ exports.ListProspectingFromEngagementTasksResponse$ = ListProspectingFromEngagementTasksResponse$;
3691
+ exports.ListResourceSnapshotJobs$ = ListResourceSnapshotJobs$;
1618
3692
  exports.ListResourceSnapshotJobsCommand = ListResourceSnapshotJobsCommand;
3693
+ exports.ListResourceSnapshotJobsRequest$ = ListResourceSnapshotJobsRequest$;
3694
+ exports.ListResourceSnapshotJobsResponse$ = ListResourceSnapshotJobsResponse$;
3695
+ exports.ListResourceSnapshots$ = ListResourceSnapshots$;
1619
3696
  exports.ListResourceSnapshotsCommand = ListResourceSnapshotsCommand;
3697
+ exports.ListResourceSnapshotsRequest$ = ListResourceSnapshotsRequest$;
3698
+ exports.ListResourceSnapshotsResponse$ = ListResourceSnapshotsResponse$;
3699
+ exports.ListSolutions$ = ListSolutions$;
1620
3700
  exports.ListSolutionsCommand = ListSolutionsCommand;
3701
+ exports.ListSolutionsRequest$ = ListSolutionsRequest$;
3702
+ exports.ListSolutionsResponse$ = ListSolutionsResponse$;
3703
+ exports.ListTagsForResource$ = ListTagsForResource$;
1621
3704
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3705
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
3706
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
3707
+ exports.ListTasksSortBase$ = ListTasksSortBase$;
1622
3708
  exports.ListTasksSortName = ListTasksSortName;
1623
3709
  exports.MarketSegment = MarketSegment;
3710
+ exports.Marketing$ = Marketing$;
1624
3711
  exports.MarketingSource = MarketingSource;
3712
+ exports.MonetaryValue$ = MonetaryValue$;
1625
3713
  exports.NationalSecurity = NationalSecurity;
3714
+ exports.NextStepsHistory$ = NextStepsHistory$;
3715
+ exports.OpportunityEngagementInvitationSort$ = OpportunityEngagementInvitationSort$;
1626
3716
  exports.OpportunityEngagementInvitationSortName = OpportunityEngagementInvitationSortName;
3717
+ exports.OpportunityInvitationPayload$ = OpportunityInvitationPayload$;
1627
3718
  exports.OpportunityOrigin = OpportunityOrigin;
3719
+ exports.OpportunityQuality$ = OpportunityQuality$;
3720
+ exports.OpportunitySort$ = OpportunitySort$;
1628
3721
  exports.OpportunitySortName = OpportunitySortName;
3722
+ exports.OpportunitySummary$ = OpportunitySummary$;
3723
+ exports.OpportunitySummaryView$ = OpportunitySummaryView$;
1629
3724
  exports.OpportunityType = OpportunityType;
1630
3725
  exports.ParticipantType = ParticipantType;
1631
3726
  exports.PartnerCentralSelling = PartnerCentralSelling;
1632
3727
  exports.PartnerCentralSellingClient = PartnerCentralSellingClient;
3728
+ exports.PartnerCentralSellingServiceException = PartnerCentralSellingServiceException;
3729
+ exports.PartnerCentralSellingServiceException$ = PartnerCentralSellingServiceException$;
3730
+ exports.Payload$ = Payload$;
1633
3731
  exports.PaymentFrequency = PaymentFrequency;
1634
3732
  exports.PrimaryNeedFromAws = PrimaryNeedFromAws;
3733
+ exports.ProfileNextStepsHistory$ = ProfileNextStepsHistory$;
3734
+ exports.Project$ = Project$;
3735
+ exports.ProjectDetails$ = ProjectDetails$;
3736
+ exports.ProjectSummary$ = ProjectSummary$;
3737
+ exports.ProjectView$ = ProjectView$;
3738
+ exports.ProspectingFromEngagementTaskSort$ = ProspectingFromEngagementTaskSort$;
1635
3739
  exports.ProspectingFromEngagementTaskSortName = ProspectingFromEngagementTaskSortName;
3740
+ exports.ProspectingInsights$ = ProspectingInsights$;
3741
+ exports.ProspectingResult$ = ProspectingResult$;
3742
+ exports.ProspectingResultAws$ = ProspectingResultAws$;
3743
+ exports.ProspectingResultCustomer$ = ProspectingResultCustomer$;
1636
3744
  exports.ProspectingTaskStatus = ProspectingTaskStatus;
3745
+ exports.ProspectingTaskSummary$ = ProspectingTaskSummary$;
3746
+ exports.PutSellingSystemSettings$ = PutSellingSystemSettings$;
1637
3747
  exports.PutSellingSystemSettingsCommand = PutSellingSystemSettingsCommand;
3748
+ exports.PutSellingSystemSettingsRequest$ = PutSellingSystemSettingsRequest$;
3749
+ exports.PutSellingSystemSettingsResponse$ = PutSellingSystemSettingsResponse$;
1638
3750
  exports.ReasonCode = ReasonCode;
3751
+ exports.Receiver$ = Receiver$;
1639
3752
  exports.ReceiverResponsibility = ReceiverResponsibility;
3753
+ exports.Recommendation$ = Recommendation$;
3754
+ exports.RejectEngagementInvitation$ = RejectEngagementInvitation$;
1640
3755
  exports.RejectEngagementInvitationCommand = RejectEngagementInvitationCommand;
3756
+ exports.RejectEngagementInvitationRequest$ = RejectEngagementInvitationRequest$;
3757
+ exports.RelatedEntityIdentifiers$ = RelatedEntityIdentifiers$;
1641
3758
  exports.RelatedEntityType = RelatedEntityType;
3759
+ exports.ResourceNotFoundException = ResourceNotFoundException;
3760
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1642
3761
  exports.ResourceSnapshotJobStatus = ResourceSnapshotJobStatus;
3762
+ exports.ResourceSnapshotJobSummary$ = ResourceSnapshotJobSummary$;
3763
+ exports.ResourceSnapshotPayload$ = ResourceSnapshotPayload$;
3764
+ exports.ResourceSnapshotSummary$ = ResourceSnapshotSummary$;
1643
3765
  exports.ResourceType = ResourceType;
1644
3766
  exports.RevenueModel = RevenueModel;
1645
3767
  exports.ReviewStatus = ReviewStatus;
1646
3768
  exports.SalesActivity = SalesActivity;
1647
3769
  exports.SalesInvolvementType = SalesInvolvementType;
3770
+ exports.SenderContact$ = SenderContact$;
3771
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
3772
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
3773
+ exports.SoftwareRevenue$ = SoftwareRevenue$;
3774
+ exports.SolutionBase$ = SolutionBase$;
3775
+ exports.SolutionSort$ = SolutionSort$;
1648
3776
  exports.SolutionSortName = SolutionSortName;
1649
3777
  exports.SolutionStatus = SolutionStatus;
1650
3778
  exports.SortBy = SortBy;
3779
+ exports.SortObject$ = SortObject$;
1651
3780
  exports.SortOrder = SortOrder;
1652
3781
  exports.Stage = Stage;
3782
+ exports.StartEngagementByAcceptingInvitationTask$ = StartEngagementByAcceptingInvitationTask$;
1653
3783
  exports.StartEngagementByAcceptingInvitationTaskCommand = StartEngagementByAcceptingInvitationTaskCommand;
3784
+ exports.StartEngagementByAcceptingInvitationTaskRequest$ = StartEngagementByAcceptingInvitationTaskRequest$;
3785
+ exports.StartEngagementByAcceptingInvitationTaskResponse$ = StartEngagementByAcceptingInvitationTaskResponse$;
3786
+ exports.StartEngagementFromOpportunityTask$ = StartEngagementFromOpportunityTask$;
1654
3787
  exports.StartEngagementFromOpportunityTaskCommand = StartEngagementFromOpportunityTaskCommand;
3788
+ exports.StartEngagementFromOpportunityTaskRequest$ = StartEngagementFromOpportunityTaskRequest$;
3789
+ exports.StartEngagementFromOpportunityTaskResponse$ = StartEngagementFromOpportunityTaskResponse$;
3790
+ exports.StartOpportunityFromEngagementTask$ = StartOpportunityFromEngagementTask$;
1655
3791
  exports.StartOpportunityFromEngagementTaskCommand = StartOpportunityFromEngagementTaskCommand;
3792
+ exports.StartOpportunityFromEngagementTaskRequest$ = StartOpportunityFromEngagementTaskRequest$;
3793
+ exports.StartOpportunityFromEngagementTaskResponse$ = StartOpportunityFromEngagementTaskResponse$;
3794
+ exports.StartProspectingFromEngagementTask$ = StartProspectingFromEngagementTask$;
1656
3795
  exports.StartProspectingFromEngagementTaskCommand = StartProspectingFromEngagementTaskCommand;
3796
+ exports.StartProspectingFromEngagementTaskRequest$ = StartProspectingFromEngagementTaskRequest$;
3797
+ exports.StartProspectingFromEngagementTaskResponse$ = StartProspectingFromEngagementTaskResponse$;
3798
+ exports.StartResourceSnapshotJob$ = StartResourceSnapshotJob$;
1657
3799
  exports.StartResourceSnapshotJobCommand = StartResourceSnapshotJobCommand;
3800
+ exports.StartResourceSnapshotJobRequest$ = StartResourceSnapshotJobRequest$;
3801
+ exports.StopResourceSnapshotJob$ = StopResourceSnapshotJob$;
1658
3802
  exports.StopResourceSnapshotJobCommand = StopResourceSnapshotJobCommand;
3803
+ exports.StopResourceSnapshotJobRequest$ = StopResourceSnapshotJobRequest$;
3804
+ exports.SubmitOpportunity$ = SubmitOpportunity$;
1659
3805
  exports.SubmitOpportunityCommand = SubmitOpportunityCommand;
3806
+ exports.SubmitOpportunityRequest$ = SubmitOpportunityRequest$;
3807
+ exports.Tag$ = Tag$;
3808
+ exports.TagResource$ = TagResource$;
1660
3809
  exports.TagResourceCommand = TagResourceCommand;
3810
+ exports.TagResourceRequest$ = TagResourceRequest$;
3811
+ exports.TagResourceResponse$ = TagResourceResponse$;
3812
+ exports.TargetCloseDateFilter$ = TargetCloseDateFilter$;
1661
3813
  exports.TaskStatus = TaskStatus;
3814
+ exports.ThrottlingException = ThrottlingException;
3815
+ exports.ThrottlingException$ = ThrottlingException$;
3816
+ exports.UntagResource$ = UntagResource$;
1662
3817
  exports.UntagResourceCommand = UntagResourceCommand;
3818
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
3819
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
3820
+ exports.UpdateEngagementContext$ = UpdateEngagementContext$;
1663
3821
  exports.UpdateEngagementContextCommand = UpdateEngagementContextCommand;
3822
+ exports.UpdateEngagementContextPayload$ = UpdateEngagementContextPayload$;
3823
+ exports.UpdateEngagementContextRequest$ = UpdateEngagementContextRequest$;
3824
+ exports.UpdateEngagementContextResponse$ = UpdateEngagementContextResponse$;
3825
+ exports.UpdateLeadContext$ = UpdateLeadContext$;
3826
+ exports.UpdateOpportunity$ = UpdateOpportunity$;
1664
3827
  exports.UpdateOpportunityCommand = UpdateOpportunityCommand;
3828
+ exports.UpdateOpportunityRequest$ = UpdateOpportunityRequest$;
3829
+ exports.UpdateOpportunityResponse$ = UpdateOpportunityResponse$;
3830
+ exports.ValidationException = ValidationException;
3831
+ exports.ValidationException$ = ValidationException$;
3832
+ exports.ValidationExceptionError$ = ValidationExceptionError$;
1665
3833
  exports.ValidationExceptionErrorCode = ValidationExceptionErrorCode;
1666
3834
  exports.ValidationExceptionReason = ValidationExceptionReason;
1667
3835
  exports.Visibility = Visibility;
3836
+ exports.errorTypeRegistries = errorTypeRegistries;
1668
3837
  exports.paginateListEngagementByAcceptingInvitationTasks = paginateListEngagementByAcceptingInvitationTasks;
1669
3838
  exports.paginateListEngagementFromOpportunityTasks = paginateListEngagementFromOpportunityTasks;
1670
3839
  exports.paginateListEngagementInvitations = paginateListEngagementInvitations;