@aws-sdk/client-partnercentral-selling 3.1068.0 → 3.1070.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +237 -197
- package/dist-cjs/models/PartnerCentralSellingServiceException.js +4 -8
- package/dist-cjs/models/errors.js +15 -25
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +660 -331
- package/dist-es/PartnerCentralSelling.js +8 -0
- package/dist-es/commands/GetProspectingFromEngagementTaskCommand.js +16 -0
- package/dist-es/commands/ListProspectingFromEngagementTasksCommand.js +16 -0
- package/dist-es/commands/StartProspectingFromEngagementTaskCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +12 -0
- package/dist-es/pagination/ListProspectingFromEngagementTasksPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +200 -43
- package/dist-types/PartnerCentralSelling.d.ts +28 -0
- package/dist-types/PartnerCentralSellingClient.d.ts +5 -2
- package/dist-types/commands/CreateEngagementCommand.d.ts +34 -1
- package/dist-types/commands/CreateEngagementContextCommand.d.ts +34 -1
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +14 -0
- package/dist-types/commands/GetEngagementCommand.d.ts +34 -1
- package/dist-types/commands/GetProspectingFromEngagementTaskCommand.d.ts +105 -0
- package/dist-types/commands/GetResourceSnapshotCommand.d.ts +14 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +3 -3
- package/dist-types/commands/ListProspectingFromEngagementTasksCommand.d.ts +114 -0
- package/dist-types/commands/StartProspectingFromEngagementTaskCommand.d.ts +108 -0
- package/dist-types/commands/UpdateEngagementContextCommand.d.ts +34 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/enums.d.ts +28 -0
- package/dist-types/models/models_0.d.ts +529 -5
- package/dist-types/pagination/ListProspectingFromEngagementTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +19 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +70 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetProspectingFromEngagementTaskCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListProspectingFromEngagementTasksCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/StartProspectingFromEngagementTaskCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +136 -0
- package/dist-types/ts3.4/pagination/ListProspectingFromEngagementTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +19 -0
- package/package.json +8 -8
|
@@ -16,6 +16,7 @@ const _AM = "AwsMaturity";
|
|
|
16
16
|
const _AMO = "AwsMarketplaceOffers";
|
|
17
17
|
const _AMOS = "AwsMarketplaceOfferSets";
|
|
18
18
|
const _AMm = "AmountMap";
|
|
19
|
+
const _AN = "AccountName";
|
|
19
20
|
const _AO = "AssignOpportunity";
|
|
20
21
|
const _AOC = "AwsOpportunityCustomer";
|
|
21
22
|
const _AOI = "AwsOpportunityInsights";
|
|
@@ -49,6 +50,8 @@ const _Ad = "Address";
|
|
|
49
50
|
const _Am = "Amount";
|
|
50
51
|
const _Ar = "Arn";
|
|
51
52
|
const _As = "Assignee";
|
|
53
|
+
const _At = "Attributes";
|
|
54
|
+
const _Aw = "Aws";
|
|
52
55
|
const _BCD = "BeforeCreatedDate";
|
|
53
56
|
const _BLMD = "BeforeLastModifiedDate";
|
|
54
57
|
const _BP = "BusinessProblem";
|
|
@@ -67,9 +70,10 @@ const _CCu = "CurrencyCode";
|
|
|
67
70
|
const _CD = "CreatedDate";
|
|
68
71
|
const _CDF = "CreatedDateFilter";
|
|
69
72
|
const _CE = "ConflictException";
|
|
70
|
-
const _CEC = "
|
|
73
|
+
const _CEC = "CompletedEngagementCount";
|
|
71
74
|
const _CECR = "CreateEngagementContextRequest";
|
|
72
75
|
const _CECRr = "CreateEngagementContextResponse";
|
|
76
|
+
const _CECr = "CreateEngagementContext";
|
|
73
77
|
const _CEI = "CreateEngagementInvitation";
|
|
74
78
|
const _CEIR = "CreateEngagementInvitationRequest";
|
|
75
79
|
const _CEIRr = "CreateEngagementInvitationResponse";
|
|
@@ -79,6 +83,7 @@ const _CEr = "CreateEngagement";
|
|
|
79
83
|
const _CI = "ContextId";
|
|
80
84
|
const _CIo = "ContextIdentifier";
|
|
81
85
|
const _CLR = "ClosedLostReason";
|
|
86
|
+
const _CM = "CosellMotion";
|
|
82
87
|
const _CN = "CompanyName";
|
|
83
88
|
const _CNa = "CampaignName";
|
|
84
89
|
const _CNo = "CompetitorName";
|
|
@@ -94,6 +99,7 @@ const _CRSJRr = "CreateResourceSnapshotJobResponse";
|
|
|
94
99
|
const _CRSR = "CreateResourceSnapshotRequest";
|
|
95
100
|
const _CRSRr = "CreateResourceSnapshotResponse";
|
|
96
101
|
const _CS = "CustomerSummary";
|
|
102
|
+
const _CSo = "CompanySize";
|
|
97
103
|
const _CT = "ClientToken";
|
|
98
104
|
const _CTo = "ContextTypes";
|
|
99
105
|
const _CUC = "CustomerUseCase";
|
|
@@ -106,6 +112,7 @@ const _Co = "Contacts";
|
|
|
106
112
|
const _Cod = "Code";
|
|
107
113
|
const _Con = "Contact";
|
|
108
114
|
const _Cont = "Contexts";
|
|
115
|
+
const _Cou = "Country";
|
|
109
116
|
const _Cu = "Customer";
|
|
110
117
|
const _D = "Duns";
|
|
111
118
|
const _DM = "DeliveryModels";
|
|
@@ -116,6 +123,7 @@ const _DOR = "DisassociateOpportunityRequest";
|
|
|
116
123
|
const _DRSJ = "DeleteResourceSnapshotJob";
|
|
117
124
|
const _DRSJR = "DeleteResourceSnapshotJobRequest";
|
|
118
125
|
const _De = "Description";
|
|
126
|
+
const _Det = "Details";
|
|
119
127
|
const _E = "Email";
|
|
120
128
|
const _EA = "EngagementArn";
|
|
121
129
|
const _EC = "EngagementCustomer";
|
|
@@ -123,6 +131,7 @@ const _ECB = "ExcludeCreatedBy";
|
|
|
123
131
|
const _ECBP = "EngagementCustomerBusinessProblem";
|
|
124
132
|
const _ECD = "EngagementContextDetails";
|
|
125
133
|
const _ECDx = "ExpectedContractDuration";
|
|
134
|
+
const _ECI = "EngagementContextId";
|
|
126
135
|
const _ECP = "EngagementContextPayload";
|
|
127
136
|
const _ECPD = "EngagementCustomerProjectDetails";
|
|
128
137
|
const _ECS = "ExpectedCustomerSpend";
|
|
@@ -146,6 +155,9 @@ const _EMS = "EngagementMemberSummary";
|
|
|
146
155
|
const _EMSn = "EngagementMemberSummaries";
|
|
147
156
|
const _EMn = "EngagementMembers";
|
|
148
157
|
const _EMx = "ExistingMembers";
|
|
158
|
+
const _EP = "EligiblePrograms";
|
|
159
|
+
const _EPR = "EngagementProspectingResult";
|
|
160
|
+
const _EPRL = "EngagementProspectingResultList";
|
|
149
161
|
const _ERAS = "EngagementResourceAssociationSummary";
|
|
150
162
|
const _ERASL = "EngagementResourceAssociationSummaryList";
|
|
151
163
|
const _ERASn = "EngagementResourceAssociationSummaries";
|
|
@@ -154,10 +166,14 @@ const _ESL = "EngagementSummaryList";
|
|
|
154
166
|
const _ESn = "EngagementSort";
|
|
155
167
|
const _ESng = "EngagementSummary";
|
|
156
168
|
const _ET = "EngagementTitle";
|
|
169
|
+
const _ETn = "EndTime";
|
|
157
170
|
const _EU = "EstimationUrl";
|
|
171
|
+
const _En = "Engagements";
|
|
158
172
|
const _F = "Frequency";
|
|
173
|
+
const _FEC = "FailedEngagementCount";
|
|
159
174
|
const _FN = "FirstName";
|
|
160
175
|
const _FNi = "FieldName";
|
|
176
|
+
const _G = "Geo";
|
|
161
177
|
const _GAOS = "GetAwsOpportunitySummary";
|
|
162
178
|
const _GAOSR = "GetAwsOpportunitySummaryRequest";
|
|
163
179
|
const _GAOSRe = "GetAwsOpportunitySummaryResponse";
|
|
@@ -170,6 +186,9 @@ const _GERe = "GetEngagementResponse";
|
|
|
170
186
|
const _GO = "GetOpportunity";
|
|
171
187
|
const _GOR = "GetOpportunityRequest";
|
|
172
188
|
const _GORe = "GetOpportunityResponse";
|
|
189
|
+
const _GPFET = "GetProspectingFromEngagementTask";
|
|
190
|
+
const _GPFETR = "GetProspectingFromEngagementTaskRequest";
|
|
191
|
+
const _GPFETRe = "GetProspectingFromEngagementTaskResponse";
|
|
173
192
|
const _GRS = "GetResourceSnapshot";
|
|
174
193
|
const _GRSJ = "GetResourceSnapshotJob";
|
|
175
194
|
const _GRSJR = "GetResourceSnapshotJobRequest";
|
|
@@ -187,6 +206,7 @@ const _ISE = "InternalServerException";
|
|
|
187
206
|
const _IT = "InvolvementType";
|
|
188
207
|
const _ITCR = "InvolvementTypeChangeReason";
|
|
189
208
|
const _Id = "Id";
|
|
209
|
+
const _Ide = "Identifiers";
|
|
190
210
|
const _In = "Industry";
|
|
191
211
|
const _Ins = "Insights";
|
|
192
212
|
const _Int = "Interactions";
|
|
@@ -226,12 +246,13 @@ const _LERAR = "ListEngagementResourceAssociationsRequest";
|
|
|
226
246
|
const _LERARi = "ListEngagementResourceAssociationsResponse";
|
|
227
247
|
const _LERi = "ListEngagementsResponse";
|
|
228
248
|
const _LF = "LastFailure";
|
|
229
|
-
const _LI = "
|
|
249
|
+
const _LI = "LeadInsights";
|
|
230
250
|
const _LIC = "LeadInvitationCustomer";
|
|
231
251
|
const _LII = "LeadInvitationInteraction";
|
|
232
252
|
const _LIL = "LeadInteractionList";
|
|
233
253
|
const _LIP = "LeadInvitationPayload";
|
|
234
|
-
const _LIe = "
|
|
254
|
+
const _LIe = "LeadInteraction";
|
|
255
|
+
const _LIea = "LeadInvitation";
|
|
235
256
|
const _LMD = "LastModifiedDate";
|
|
236
257
|
const _LN = "LastName";
|
|
237
258
|
const _LO = "ListOpportunities";
|
|
@@ -242,12 +263,16 @@ const _LOFETS = "ListOpportunityFromEngagementTaskSummary";
|
|
|
242
263
|
const _LOFETSi = "ListOpportunityFromEngagementTaskSummaries";
|
|
243
264
|
const _LOR = "ListOpportunitiesRequest";
|
|
244
265
|
const _LORi = "ListOpportunitiesResponse";
|
|
245
|
-
const
|
|
266
|
+
const _LPFET = "ListProspectingFromEngagementTasks";
|
|
267
|
+
const _LPFETR = "ListProspectingFromEngagementTasksRequest";
|
|
268
|
+
const _LPFETRi = "ListProspectingFromEngagementTasksResponse";
|
|
269
|
+
const _LRS = "LeadReadinessScore";
|
|
246
270
|
const _LRSJ = "ListResourceSnapshotJobs";
|
|
247
271
|
const _LRSJR = "ListResourceSnapshotJobsRequest";
|
|
248
272
|
const _LRSJRi = "ListResourceSnapshotJobsResponse";
|
|
249
273
|
const _LRSR = "ListResourceSnapshotsRequest";
|
|
250
274
|
const _LRSRi = "ListResourceSnapshotsResponse";
|
|
275
|
+
const _LRSi = "ListResourceSnapshots";
|
|
251
276
|
const _LS = "ListSolutions";
|
|
252
277
|
const _LSED = "LastSuccessfulExecutionDate";
|
|
253
278
|
const _LSR = "ListSolutionsRequest";
|
|
@@ -263,6 +288,7 @@ const _MAo = "ModifiedAt";
|
|
|
263
288
|
const _MB = "ModifiedBy";
|
|
264
289
|
const _MC = "MemberCount";
|
|
265
290
|
const _MCN = "MemberCompanyName";
|
|
291
|
+
const _MES = "MarketplaceEngagementScore";
|
|
266
292
|
const _MR = "MaxResults";
|
|
267
293
|
const _MS = "MarketSegment";
|
|
268
294
|
const _MV = "MonetaryValue";
|
|
@@ -283,6 +309,7 @@ const _OIP = "OpportunityInvitationPayload";
|
|
|
283
309
|
const _OIp = "OpportunityIdentifier";
|
|
284
310
|
const _OIpp = "OpportunityId";
|
|
285
311
|
const _OIppo = "OpportunityInvitation";
|
|
312
|
+
const _OQ = "OpportunityQuality";
|
|
286
313
|
const _OS = "OpportunitySummaries";
|
|
287
314
|
const _OSD = "OtherSolutionDescription";
|
|
288
315
|
const _OSV = "OpportunitySummaryView";
|
|
@@ -295,12 +322,18 @@ const _P = "Phone";
|
|
|
295
322
|
const _PC = "PostalCode";
|
|
296
323
|
const _PCr = "ProductCode";
|
|
297
324
|
const _PD = "ProjectDetails";
|
|
325
|
+
const _PFETS = "ProspectingFromEngagementTaskSort";
|
|
326
|
+
const _PI = "ProspectingInsights";
|
|
298
327
|
const _PN = "PhoneNumber";
|
|
299
328
|
const _PNFA = "PrimaryNeedsFromAws";
|
|
300
329
|
const _PNSH = "ProfileNextStepsHistory";
|
|
301
330
|
const _PNSHr = "ProfileNextStepsHistories";
|
|
302
331
|
const _POI = "PartnerOpportunityIdentifier";
|
|
303
332
|
const _POTML = "PartnerOpportunityTeamMembersList";
|
|
333
|
+
const _PPS = "PublicProfileSummary";
|
|
334
|
+
const _PR = "ProspectingResult";
|
|
335
|
+
const _PRA = "ProspectingResultAws";
|
|
336
|
+
const _PRC = "ProspectingResultCustomer";
|
|
304
337
|
const _PS = "PiiString";
|
|
305
338
|
const _PSA = "PotentialSavingsAmount";
|
|
306
339
|
const _PSSS = "PutSellingSystemSettings";
|
|
@@ -308,6 +341,8 @@ const _PSSSR = "PutSellingSystemSettingsRequest";
|
|
|
308
341
|
const _PSSSRu = "PutSellingSystemSettingsResponse";
|
|
309
342
|
const _PSr = "ProjectSummary";
|
|
310
343
|
const _PT = "PayloadType";
|
|
344
|
+
const _PTS = "ProspectingTaskSummary";
|
|
345
|
+
const _PTSL = "ProspectingTaskSummaryList";
|
|
311
346
|
const _PTa = "ParticipantType";
|
|
312
347
|
const _PV = "ProjectView";
|
|
313
348
|
const _Pa = "Partner";
|
|
@@ -316,8 +351,8 @@ const _Pr = "Project";
|
|
|
316
351
|
const _QS = "QualificationStatus";
|
|
317
352
|
const _R = "Reason";
|
|
318
353
|
const _RA = "ResourceArn";
|
|
319
|
-
const _RC = "
|
|
320
|
-
const _RCe = "
|
|
354
|
+
const _RC = "ReasonCode";
|
|
355
|
+
const _RCe = "ReviewComments";
|
|
321
356
|
const _REI = "RelatedEntityIdentifier";
|
|
322
357
|
const _REIR = "RejectEngagementInvitationRequest";
|
|
323
358
|
const _REIe = "RelatedEntityIds";
|
|
@@ -326,6 +361,7 @@ const _REIel = "RelatedEntityIdentifiers";
|
|
|
326
361
|
const _RET = "RelatedEntityType";
|
|
327
362
|
const _RI = "ResourceIdentifier";
|
|
328
363
|
const _RIe = "ResourceId";
|
|
364
|
+
const _RL = "RecommendationList";
|
|
329
365
|
const _RNFE = "ResourceNotFoundException";
|
|
330
366
|
const _ROI = "RelatedOpportunityId";
|
|
331
367
|
const _ROIe = "RelatedOpportunityIdentifier";
|
|
@@ -347,21 +383,27 @@ const _RSSe = "ResourceSnapshotSummary";
|
|
|
347
383
|
const _RSTI = "ResourceSnapshotTemplateIdentifier";
|
|
348
384
|
const _RSTN = "ResourceSnapshotTemplateName";
|
|
349
385
|
const _RT = "ResourceType";
|
|
350
|
-
const _Re = "
|
|
386
|
+
const _Re = "Recommendations";
|
|
351
387
|
const _Rec = "Receiver";
|
|
388
|
+
const _Reco = "Recommendation";
|
|
389
|
+
const _Reg = "Region";
|
|
390
|
+
const _Rev = "Revision";
|
|
352
391
|
const _S = "Stage";
|
|
353
392
|
const _SA = "StreetAddress";
|
|
354
393
|
const _SAAI = "SenderAwsAccountId";
|
|
355
394
|
const _SAa = "SavingsAmount";
|
|
356
395
|
const _SAal = "SalesActivities";
|
|
396
|
+
const _SAt = "StartAfter";
|
|
357
397
|
const _SB = "SortBy";
|
|
358
398
|
const _SBo = "SolutionBase";
|
|
399
|
+
const _SBt = "StartBefore";
|
|
359
400
|
const _SC = "ServiceCode";
|
|
360
401
|
const _SCE = "SenderContactEmail";
|
|
361
402
|
const _SCL = "SenderContactList";
|
|
362
403
|
const _SCN = "SenderCompanyName";
|
|
363
404
|
const _SCe = "SenderContacts";
|
|
364
405
|
const _SCen = "SenderContact";
|
|
406
|
+
const _SCo = "SolutionCategory";
|
|
365
407
|
const _SEBAIT = "StartEngagementByAcceptingInvitationTask";
|
|
366
408
|
const _SEBAITR = "StartEngagementByAcceptingInvitationTaskRequest";
|
|
367
409
|
const _SEBAITRt = "StartEngagementByAcceptingInvitationTaskResponse";
|
|
@@ -369,6 +411,7 @@ const _SEFOT = "StartEngagementFromOpportunityTask";
|
|
|
369
411
|
const _SEFOTR = "StartEngagementFromOpportunityTaskRequest";
|
|
370
412
|
const _SEFOTRt = "StartEngagementFromOpportunityTaskResponse";
|
|
371
413
|
const _SI = "SourceId";
|
|
414
|
+
const _SIu = "SubIndustry";
|
|
372
415
|
const _SL = "SolutionList";
|
|
373
416
|
const _SN = "SourceName";
|
|
374
417
|
const _SO = "SortOrder";
|
|
@@ -379,16 +422,24 @@ const _SOR = "StateOrRegion";
|
|
|
379
422
|
const _SORu = "SubmitOpportunityRequest";
|
|
380
423
|
const _SOo = "SortObject";
|
|
381
424
|
const _SOu = "SubmitOpportunity";
|
|
425
|
+
const _SPFET = "StartProspectingFromEngagementTask";
|
|
426
|
+
const _SPFETR = "StartProspectingFromEngagementTaskRequest";
|
|
427
|
+
const _SPFETRt = "StartProspectingFromEngagementTaskResponse";
|
|
382
428
|
const _SQEE = "ServiceQuotaExceededException";
|
|
383
429
|
const _SR = "SoftwareRevenue";
|
|
384
430
|
const _SRSJ = "StartResourceSnapshotJob";
|
|
385
431
|
const _SRSJR = "StartResourceSnapshotJobRequest";
|
|
386
432
|
const _SRSJRt = "StopResourceSnapshotJobRequest";
|
|
387
433
|
const _SRSJt = "StopResourceSnapshotJob";
|
|
434
|
+
const _SRu = "SubRegion";
|
|
388
435
|
const _SS = "SolutionSummaries";
|
|
389
|
-
const
|
|
390
|
-
const
|
|
391
|
-
const
|
|
436
|
+
const _SSC = "SolutionSubCategory";
|
|
437
|
+
const _SSo = "SolutionScore";
|
|
438
|
+
const _SSol = "SolutionSort";
|
|
439
|
+
const _ST = "StartTime";
|
|
440
|
+
const _STo = "SourceType";
|
|
441
|
+
const _Sc = "Score";
|
|
442
|
+
const _Se = "Segment";
|
|
392
443
|
const _So = "Solutions";
|
|
393
444
|
const _Sor = "Sort";
|
|
394
445
|
const _Sou = "Source";
|
|
@@ -402,11 +453,13 @@ const _TCD = "TargetCloseDate";
|
|
|
402
453
|
const _TCDF = "TargetCloseDateFilter";
|
|
403
454
|
const _TCDa = "TargetCompletionDate";
|
|
404
455
|
const _TE = "ThrottlingException";
|
|
456
|
+
const _TEC = "TotalEngagementCount";
|
|
405
457
|
const _TI = "TaskIdentifier";
|
|
406
458
|
const _TIa = "TaskId";
|
|
407
459
|
const _TK = "TagKeys";
|
|
408
460
|
const _TL = "TagList";
|
|
409
461
|
const _TMA = "TargetMemberAccounts";
|
|
462
|
+
const _TN = "TaskName";
|
|
410
463
|
const _TOA = "TotalOptimizedAmount";
|
|
411
464
|
const _TPSA = "TotalPotentialSavingsAmount";
|
|
412
465
|
const _TR = "TagResource";
|
|
@@ -419,6 +472,7 @@ const _Tag = "Tag";
|
|
|
419
472
|
const _Te = "Term";
|
|
420
473
|
const _Ti = "Title";
|
|
421
474
|
const _Tim = "Time";
|
|
475
|
+
const _Tr = "Trend";
|
|
422
476
|
const _U = "Usecase";
|
|
423
477
|
const _UC = "UseCases";
|
|
424
478
|
const _UEC = "UpdateEngagementContext";
|
|
@@ -570,8 +624,8 @@ export var AwsOpportunityCustomer$ = [3, n0, _AOC,
|
|
|
570
624
|
];
|
|
571
625
|
export var AwsOpportunityInsights$ = [3, n0, _AOI,
|
|
572
626
|
0,
|
|
573
|
-
[_NBA, _ES, _APSIBS],
|
|
574
|
-
[0, 0, [() => AwsProductsSpendInsightsBySource$, 0]]
|
|
627
|
+
[_NBA, _ES, _APSIBS, _OQ, _Re],
|
|
628
|
+
[0, 0, [() => AwsProductsSpendInsightsBySource$, 0], () => OpportunityQuality$, () => RecommendationList]
|
|
575
629
|
];
|
|
576
630
|
export var AwsOpportunityLifeCycle$ = [3, n0, _AOLC,
|
|
577
631
|
0,
|
|
@@ -590,8 +644,8 @@ export var AwsOpportunityRelatedEntities$ = [3, n0, _AORE,
|
|
|
590
644
|
];
|
|
591
645
|
export var AwsOpportunitySummaryFullView$ = [3, n0, _AOSFV,
|
|
592
646
|
0,
|
|
593
|
-
[_ROI, _O, _IT, _V, _LC, _OT, _Ins, _ITCR, _REIe, _Cu, _Pr],
|
|
594
|
-
[0, 0, 0, 0, [() => AwsOpportunityLifeCycle$, 0], [() => AwsOpportunityTeamMembersList, 0], [() => AwsOpportunityInsights$, 0], 0, () => AwsOpportunityRelatedEntities$, [() => AwsOpportunityCustomer$, 0], [() => AwsOpportunityProject$, 0]]
|
|
647
|
+
[_ROI, _O, _IT, _V, _LC, _OT, _Ins, _ITCR, _REIe, _Cu, _Pr, _CM],
|
|
648
|
+
[0, 0, 0, 0, [() => AwsOpportunityLifeCycle$, 0], [() => AwsOpportunityTeamMembersList, 0], [() => AwsOpportunityInsights$, 0], 0, () => AwsOpportunityRelatedEntities$, [() => AwsOpportunityCustomer$, 0], [() => AwsOpportunityProject$, 0], 0]
|
|
595
649
|
];
|
|
596
650
|
export var AwsProductDetails$ = [3, n0, _APD,
|
|
597
651
|
0,
|
|
@@ -690,7 +744,7 @@ export var CreateResourceSnapshotRequest$ = [3, n0, _CRSR,
|
|
|
690
744
|
];
|
|
691
745
|
export var CreateResourceSnapshotResponse$ = [3, n0, _CRSRr,
|
|
692
746
|
0,
|
|
693
|
-
[_Ar,
|
|
747
|
+
[_Ar, _Rev],
|
|
694
748
|
[0, 1]
|
|
695
749
|
];
|
|
696
750
|
export var Customer$ = [3, n0, _Cu,
|
|
@@ -748,6 +802,11 @@ export var EngagementMemberSummary$ = [3, n0, _EMS,
|
|
|
748
802
|
[_CN, _WU],
|
|
749
803
|
[[() => MemberCompanyName, 0], 0]
|
|
750
804
|
];
|
|
805
|
+
export var EngagementProspectingResult$ = [3, n0, _EPR,
|
|
806
|
+
0,
|
|
807
|
+
[_EI, _St, _ECI, _RC, _M],
|
|
808
|
+
[0, 0, 0, 0, 0], 2
|
|
809
|
+
];
|
|
751
810
|
export var EngagementResourceAssociationSummary$ = [3, n0, _ERAS,
|
|
752
811
|
0,
|
|
753
812
|
[_C, _EIn, _RT, _RIe, _CB],
|
|
@@ -780,8 +839,8 @@ export var GetAwsOpportunitySummaryRequest$ = [3, n0, _GAOSR,
|
|
|
780
839
|
];
|
|
781
840
|
export var GetAwsOpportunitySummaryResponse$ = [3, n0, _GAOSRe,
|
|
782
841
|
0,
|
|
783
|
-
[_C, _ROI, _O, _IT, _V, _LC, _OT, _Ins, _ITCR, _REIe, _Cu, _Pr],
|
|
784
|
-
[0, 0, 0, 0, 0, [() => AwsOpportunityLifeCycle$, 0], [() => AwsOpportunityTeamMembersList, 0], [() => AwsOpportunityInsights$, 0], 0, () => AwsOpportunityRelatedEntities$, [() => AwsOpportunityCustomer$, 0], [() => AwsOpportunityProject$, 0]], 1
|
|
842
|
+
[_C, _ROI, _O, _IT, _V, _LC, _OT, _Ins, _ITCR, _REIe, _Cu, _Pr, _CM],
|
|
843
|
+
[0, 0, 0, 0, 0, [() => AwsOpportunityLifeCycle$, 0], [() => AwsOpportunityTeamMembersList, 0], [() => AwsOpportunityInsights$, 0], 0, () => AwsOpportunityRelatedEntities$, [() => AwsOpportunityCustomer$, 0], [() => AwsOpportunityProject$, 0], 0], 1
|
|
785
844
|
];
|
|
786
845
|
export var GetEngagementInvitationRequest$ = [3, n0, _GEIR,
|
|
787
846
|
0,
|
|
@@ -813,6 +872,16 @@ export var GetOpportunityResponse$ = [3, n0, _GORe,
|
|
|
813
872
|
[_C, _Id, _LMD, _CD, _REIel, _PNFA, _NSa, _POI, _Cu, _Pr, _OTp, _Ma, _SR, _Ar, _LC, _OT],
|
|
814
873
|
[0, 0, 5, 5, () => RelatedEntityIdentifiers$, 64 | 0, 0, 0, [() => Customer$, 0], [() => Project$, 0], 0, () => Marketing$, [() => SoftwareRevenue$, 0], 0, [() => LifeCycle$, 0], [() => PartnerOpportunityTeamMembersList, 0]], 5
|
|
815
874
|
];
|
|
875
|
+
export var GetProspectingFromEngagementTaskRequest$ = [3, n0, _GPFETR,
|
|
876
|
+
0,
|
|
877
|
+
[_C, _TI],
|
|
878
|
+
[0, 0], 2
|
|
879
|
+
];
|
|
880
|
+
export var GetProspectingFromEngagementTaskResponse$ = [3, n0, _GPFETRe,
|
|
881
|
+
0,
|
|
882
|
+
[_TIa, _TAa, _TN, _ST, _En, _ETn],
|
|
883
|
+
[0, 0, 0, 5, () => EngagementProspectingResultList, 5], 5
|
|
884
|
+
];
|
|
816
885
|
export var GetResourceSnapshotJobRequest$ = [3, n0, _GRSJR,
|
|
817
886
|
0,
|
|
818
887
|
[_C, _RSJI],
|
|
@@ -825,12 +894,12 @@ export var GetResourceSnapshotJobResponse$ = [3, n0, _GRSJRe,
|
|
|
825
894
|
];
|
|
826
895
|
export var GetResourceSnapshotRequest$ = [3, n0, _GRSR,
|
|
827
896
|
0,
|
|
828
|
-
[_C, _EI, _RT, _RI, _RSTI,
|
|
897
|
+
[_C, _EI, _RT, _RI, _RSTI, _Rev],
|
|
829
898
|
[0, 0, 0, 0, 0, 1], 5
|
|
830
899
|
];
|
|
831
900
|
export var GetResourceSnapshotResponse$ = [3, n0, _GRSRe,
|
|
832
901
|
0,
|
|
833
|
-
[_C, _Ar, _CB, _CA, _EIn, _RT, _RIe, _RSTN,
|
|
902
|
+
[_C, _Ar, _CB, _CA, _EIn, _RT, _RIe, _RSTN, _Rev, _Pay, _TMA],
|
|
834
903
|
[0, 0, [() => AwsAccount, 0], 5, 0, 0, 0, 0, 1, [() => ResourceSnapshotPayload$, 0], [() => AwsAccountIdOrAliasList, 0]], 1
|
|
835
904
|
];
|
|
836
905
|
export var GetSellingSystemSettingsRequest$ = [3, n0, _GSSSR,
|
|
@@ -860,17 +929,22 @@ export var LeadContact$ = [3, n0, _LCe,
|
|
|
860
929
|
];
|
|
861
930
|
export var LeadContext$ = [3, n0, _LCea,
|
|
862
931
|
0,
|
|
863
|
-
[_Cu, _Int, _QS],
|
|
864
|
-
[[() => LeadCustomer$, 0], [() => LeadInteractionList, 0], 0], 2
|
|
932
|
+
[_Cu, _Int, _Ins, _QS],
|
|
933
|
+
[[() => LeadCustomer$, 0], [() => LeadInteractionList, 0], () => LeadInsights$, 0], 2
|
|
865
934
|
];
|
|
866
935
|
export var LeadCustomer$ = [3, n0, _LCead,
|
|
867
936
|
0,
|
|
868
937
|
[_CN, _Ad, _In, _WU, _AM, _MS],
|
|
869
938
|
[[() => CompanyName, 0], [() => AddressSummary$, 0], 0, [() => CompanyWebsiteUrl, 0], 0, 0], 2
|
|
870
939
|
];
|
|
871
|
-
export var
|
|
940
|
+
export var LeadInsights$ = [3, n0, _LI,
|
|
872
941
|
0,
|
|
873
|
-
[
|
|
942
|
+
[_LRS],
|
|
943
|
+
[0]
|
|
944
|
+
];
|
|
945
|
+
export var LeadInteraction$ = [3, n0, _LIe,
|
|
946
|
+
0,
|
|
947
|
+
[_STo, _SI, _SN, _CAu, _Con, _U, _IDn, _BP],
|
|
874
948
|
[0, 0, 0, 0, [() => LeadContact$, 0], 0, 5, [() => EngagementCustomerBusinessProblem, 0]], 5
|
|
875
949
|
];
|
|
876
950
|
export var LeadInvitationCustomer$ = [3, n0, _LIC,
|
|
@@ -880,7 +954,7 @@ export var LeadInvitationCustomer$ = [3, n0, _LIC,
|
|
|
880
954
|
];
|
|
881
955
|
export var LeadInvitationInteraction$ = [3, n0, _LII,
|
|
882
956
|
0,
|
|
883
|
-
[
|
|
957
|
+
[_STo, _SI, _SN, _CBT, _U],
|
|
884
958
|
[0, 0, 0, [() => JobTitle, 0], 0], 4
|
|
885
959
|
];
|
|
886
960
|
export var LeadInvitationPayload$ = [3, n0, _LIP,
|
|
@@ -890,7 +964,7 @@ export var LeadInvitationPayload$ = [3, n0, _LIP,
|
|
|
890
964
|
];
|
|
891
965
|
export var LifeCycle$ = [3, n0, _LC,
|
|
892
966
|
0,
|
|
893
|
-
[_S, _CLR, _NS, _TCD, _RS,
|
|
967
|
+
[_S, _CLR, _NS, _TCD, _RS, _RCe, _RSR, _NSH],
|
|
894
968
|
[0, 0, [() => PiiString, 0], 0, 0, 0, 0, () => NextStepsHistories]
|
|
895
969
|
];
|
|
896
970
|
export var LifeCycleForView$ = [3, n0, _LCFV,
|
|
@@ -900,7 +974,7 @@ export var LifeCycleForView$ = [3, n0, _LCFV,
|
|
|
900
974
|
];
|
|
901
975
|
export var LifeCycleSummary$ = [3, n0, _LCS,
|
|
902
976
|
0,
|
|
903
|
-
[_S, _CLR, _NS, _TCD, _RS,
|
|
977
|
+
[_S, _CLR, _NS, _TCD, _RS, _RCe, _RSR],
|
|
904
978
|
[0, 0, [() => PiiString, 0], 0, 0, 0, 0]
|
|
905
979
|
];
|
|
906
980
|
export var ListEngagementByAcceptingInvitationTasksRequest$ = [3, n0, _LEBAITR,
|
|
@@ -915,7 +989,7 @@ export var ListEngagementByAcceptingInvitationTasksResponse$ = [3, n0, _LEBAITRi
|
|
|
915
989
|
];
|
|
916
990
|
export var ListEngagementByAcceptingInvitationTaskSummary$ = [3, n0, _LEBAITS,
|
|
917
991
|
0,
|
|
918
|
-
[_TIa, _TAa,
|
|
992
|
+
[_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIIn],
|
|
919
993
|
[0, 0, 5, 0, 0, 0, 0, 0, 0]
|
|
920
994
|
];
|
|
921
995
|
export var ListEngagementFromOpportunityTasksRequest$ = [3, n0, _LEFOTR,
|
|
@@ -930,7 +1004,7 @@ export var ListEngagementFromOpportunityTasksResponse$ = [3, n0, _LEFOTRi,
|
|
|
930
1004
|
];
|
|
931
1005
|
export var ListEngagementFromOpportunityTaskSummary$ = [3, n0, _LEFOTS,
|
|
932
1006
|
0,
|
|
933
|
-
[_TIa, _TAa,
|
|
1007
|
+
[_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIn, _EIIn],
|
|
934
1008
|
[0, 0, 5, 0, 0, 0, 0, 0, 0, 0]
|
|
935
1009
|
];
|
|
936
1010
|
export var ListEngagementInvitationsRequest$ = [3, n0, _LEIR,
|
|
@@ -995,9 +1069,19 @@ export var ListOpportunityFromEngagementTasksResponse$ = [3, n0, _LOFETRi,
|
|
|
995
1069
|
];
|
|
996
1070
|
export var ListOpportunityFromEngagementTaskSummary$ = [3, n0, _LOFETS,
|
|
997
1071
|
0,
|
|
998
|
-
[_TIa, _TAa,
|
|
1072
|
+
[_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIn, _CI],
|
|
999
1073
|
[0, 0, 5, 0, 0, 0, 0, 0, 0, 0]
|
|
1000
1074
|
];
|
|
1075
|
+
export var ListProspectingFromEngagementTasksRequest$ = [3, n0, _LPFETR,
|
|
1076
|
+
0,
|
|
1077
|
+
[_C, _MR, _NT, _TI, _TN, _SAt, _SBt, _Sor],
|
|
1078
|
+
[0, 1, 0, 64 | 0, 64 | 0, 5, 5, () => ProspectingFromEngagementTaskSort$], 1
|
|
1079
|
+
];
|
|
1080
|
+
export var ListProspectingFromEngagementTasksResponse$ = [3, n0, _LPFETRi,
|
|
1081
|
+
0,
|
|
1082
|
+
[_TSa, _NT],
|
|
1083
|
+
[() => ProspectingTaskSummaryList, 0], 1
|
|
1084
|
+
];
|
|
1001
1085
|
export var ListResourceSnapshotJobsRequest$ = [3, n0, _LRSJR,
|
|
1002
1086
|
0,
|
|
1003
1087
|
[_C, _MR, _NT, _EI, _St, _Sor],
|
|
@@ -1068,6 +1152,11 @@ export var OpportunityInvitationPayload$ = [3, n0, _OIP,
|
|
|
1068
1152
|
[_RRe, _Cu, _Pr, _SCe],
|
|
1069
1153
|
[64 | 0, [() => EngagementCustomer$, 0], [() => ProjectDetails$, 0], [() => SenderContactList, 0]], 3
|
|
1070
1154
|
];
|
|
1155
|
+
export var OpportunityQuality$ = [3, n0, _OQ,
|
|
1156
|
+
0,
|
|
1157
|
+
[_Sc, _Tr],
|
|
1158
|
+
[1, 0]
|
|
1159
|
+
];
|
|
1071
1160
|
export var OpportunitySort$ = [3, n0, _OSp,
|
|
1072
1161
|
0,
|
|
1073
1162
|
[_SO, _SB],
|
|
@@ -1108,6 +1197,36 @@ export var ProjectView$ = [3, n0, _PV,
|
|
|
1108
1197
|
[_DM, _ECS, _ECDx, _CUC, _SAal, _OSD],
|
|
1109
1198
|
[64 | 0, [() => ExpectedCustomerSpendList, 0], () => ExpectedContractDuration$, 0, 64 | 0, [() => PiiString, 0]]
|
|
1110
1199
|
];
|
|
1200
|
+
export var ProspectingFromEngagementTaskSort$ = [3, n0, _PFETS,
|
|
1201
|
+
0,
|
|
1202
|
+
[_SO, _SB],
|
|
1203
|
+
[0, 0], 2
|
|
1204
|
+
];
|
|
1205
|
+
export var ProspectingInsights$ = [3, n0, _PI,
|
|
1206
|
+
0,
|
|
1207
|
+
[_MES, _SSo, _SCo, _SSC],
|
|
1208
|
+
[0, 0, 0, 0]
|
|
1209
|
+
];
|
|
1210
|
+
export var ProspectingResult$ = [3, n0, _PR,
|
|
1211
|
+
0,
|
|
1212
|
+
[_Aw],
|
|
1213
|
+
[[() => ProspectingResultAws$, 0]]
|
|
1214
|
+
];
|
|
1215
|
+
export var ProspectingResultAws$ = [3, n0, _PRA,
|
|
1216
|
+
0,
|
|
1217
|
+
[_ST, _ETn, _TIa, _TAa, _TN, _Cu, _Ins],
|
|
1218
|
+
[5, 5, 0, 0, 0, [() => ProspectingResultCustomer$, 0], () => ProspectingInsights$]
|
|
1219
|
+
];
|
|
1220
|
+
export var ProspectingResultCustomer$ = [3, n0, _PRC,
|
|
1221
|
+
0,
|
|
1222
|
+
[_AN, _G, _Reg, _SRu, _Cou, _In, _SIu, _Se, _CSo, _EP, _PPS],
|
|
1223
|
+
[0, 0, 0, 0, [() => CountryCode, 0], 0, 0, 0, 0, 64 | 0, 0]
|
|
1224
|
+
];
|
|
1225
|
+
export var ProspectingTaskSummary$ = [3, n0, _PTS,
|
|
1226
|
+
0,
|
|
1227
|
+
[_TIa, _TAa, _TN, _ST, _TEC, _CEC, _FEC, _ETn],
|
|
1228
|
+
[0, 0, 0, 5, 1, 1, 1, 5], 7
|
|
1229
|
+
];
|
|
1111
1230
|
export var PutSellingSystemSettingsRequest$ = [3, n0, _PSSSR,
|
|
1112
1231
|
0,
|
|
1113
1232
|
[_C, _RSJRI],
|
|
@@ -1118,6 +1237,11 @@ export var PutSellingSystemSettingsResponse$ = [3, n0, _PSSSRu,
|
|
|
1118
1237
|
[_C, _RSJRA],
|
|
1119
1238
|
[0, 0], 1
|
|
1120
1239
|
];
|
|
1240
|
+
export var Recommendation$ = [3, n0, _Reco,
|
|
1241
|
+
0,
|
|
1242
|
+
[_T, _Det, _At],
|
|
1243
|
+
[0, 0, 128 | 0], 2
|
|
1244
|
+
];
|
|
1121
1245
|
export var RejectEngagementInvitationRequest$ = [3, n0, _REIR,
|
|
1122
1246
|
0,
|
|
1123
1247
|
[_C, _I, _RR],
|
|
@@ -1135,7 +1259,7 @@ export var ResourceSnapshotJobSummary$ = [3, n0, _RSJSe,
|
|
|
1135
1259
|
];
|
|
1136
1260
|
export var ResourceSnapshotSummary$ = [3, n0, _RSSe,
|
|
1137
1261
|
0,
|
|
1138
|
-
[_Ar,
|
|
1262
|
+
[_Ar, _Rev, _RT, _RIe, _RSTN, _CB],
|
|
1139
1263
|
[0, 1, 0, 0, 0, [() => AwsAccount, 0]]
|
|
1140
1264
|
];
|
|
1141
1265
|
export var SenderContact$ = [3, n0, _SCen,
|
|
@@ -1153,7 +1277,7 @@ export var SolutionBase$ = [3, n0, _SBo,
|
|
|
1153
1277
|
[_C, _Id, _N, _St, _Cat, _CD, _Ar],
|
|
1154
1278
|
[0, 0, 0, 0, 0, 5, 0], 6
|
|
1155
1279
|
];
|
|
1156
|
-
export var SolutionSort$ = [3, n0,
|
|
1280
|
+
export var SolutionSort$ = [3, n0, _SSol,
|
|
1157
1281
|
0,
|
|
1158
1282
|
[_SO, _SB],
|
|
1159
1283
|
[0, 0], 2
|
|
@@ -1170,7 +1294,7 @@ export var StartEngagementByAcceptingInvitationTaskRequest$ = [3, n0, _SEBAITR,
|
|
|
1170
1294
|
];
|
|
1171
1295
|
export var StartEngagementByAcceptingInvitationTaskResponse$ = [3, n0, _SEBAITRt,
|
|
1172
1296
|
0,
|
|
1173
|
-
[_TIa, _TAa,
|
|
1297
|
+
[_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIIn],
|
|
1174
1298
|
[0, 0, 5, 0, 0, 0, 0, 0, 0]
|
|
1175
1299
|
];
|
|
1176
1300
|
export var StartEngagementFromOpportunityTaskRequest$ = [3, n0, _SEFOTR,
|
|
@@ -1180,7 +1304,7 @@ export var StartEngagementFromOpportunityTaskRequest$ = [3, n0, _SEFOTR,
|
|
|
1180
1304
|
];
|
|
1181
1305
|
export var StartEngagementFromOpportunityTaskResponse$ = [3, n0, _SEFOTRt,
|
|
1182
1306
|
0,
|
|
1183
|
-
[_TIa, _TAa,
|
|
1307
|
+
[_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIn, _EIIn],
|
|
1184
1308
|
[0, 0, 5, 0, 0, 0, 0, 0, 0, 0]
|
|
1185
1309
|
];
|
|
1186
1310
|
export var StartOpportunityFromEngagementTaskRequest$ = [3, n0, _SOFETR,
|
|
@@ -1190,9 +1314,19 @@ export var StartOpportunityFromEngagementTaskRequest$ = [3, n0, _SOFETR,
|
|
|
1190
1314
|
];
|
|
1191
1315
|
export var StartOpportunityFromEngagementTaskResponse$ = [3, n0, _SOFETRt,
|
|
1192
1316
|
0,
|
|
1193
|
-
[_TIa, _TAa,
|
|
1317
|
+
[_TIa, _TAa, _ST, _TS, _M, _RC, _OIpp, _RSJIe, _EIn, _CI],
|
|
1194
1318
|
[0, 0, 5, 0, 0, 0, 0, 0, 0, 0]
|
|
1195
1319
|
];
|
|
1320
|
+
export var StartProspectingFromEngagementTaskRequest$ = [3, n0, _SPFETR,
|
|
1321
|
+
0,
|
|
1322
|
+
[_C, _Ide, _TN, _CT],
|
|
1323
|
+
[0, 64 | 0, 0, [0, 4]], 3
|
|
1324
|
+
];
|
|
1325
|
+
export var StartProspectingFromEngagementTaskResponse$ = [3, n0, _SPFETRt,
|
|
1326
|
+
0,
|
|
1327
|
+
[_Ide, _TN, _ST, _TS, _M, _RC, _TIa, _TAa],
|
|
1328
|
+
[64 | 0, 0, 5, 0, 0, 0, 0, 0], 4
|
|
1329
|
+
];
|
|
1196
1330
|
export var StartResourceSnapshotJobRequest$ = [3, n0, _SRSJR,
|
|
1197
1331
|
0,
|
|
1198
1332
|
[_C, _RSJI],
|
|
@@ -1250,8 +1384,8 @@ export var UpdateEngagementContextResponse$ = [3, n0, _UECRp,
|
|
|
1250
1384
|
];
|
|
1251
1385
|
export var UpdateLeadContext$ = [3, n0, _ULC,
|
|
1252
1386
|
0,
|
|
1253
|
-
[_Cu, _QS, _Inte],
|
|
1254
|
-
[[() => LeadCustomer$, 0], 0, [() => LeadInteraction$, 0]], 1
|
|
1387
|
+
[_Cu, _QS, _Inte, _Ins],
|
|
1388
|
+
[[() => LeadCustomer$, 0], 0, [() => LeadInteraction$, 0], () => LeadInsights$], 1
|
|
1255
1389
|
];
|
|
1256
1390
|
export var UpdateOpportunityRequest$ = [3, n0, _UOR,
|
|
1257
1391
|
0,
|
|
@@ -1300,11 +1434,13 @@ var CustomerContactsList = [1, n0, _CCL,
|
|
|
1300
1434
|
0]
|
|
1301
1435
|
];
|
|
1302
1436
|
var DeliveryModels = 64 | 0;
|
|
1437
|
+
var EligibleProgramsList = 64 | 0;
|
|
1303
1438
|
var EngagementContexts = [1, n0, _ECn,
|
|
1304
1439
|
0, [() => EngagementContextDetails$,
|
|
1305
1440
|
0]
|
|
1306
1441
|
];
|
|
1307
1442
|
var EngagementContextTypeList = 64 | 0;
|
|
1443
|
+
var EngagementIdentifierList = 64 | 0;
|
|
1308
1444
|
var EngagementIdentifiers = 64 | 0;
|
|
1309
1445
|
var EngagementInvitationIdentifiers = 64 | 0;
|
|
1310
1446
|
var EngagementInvitationsPayloadType = 64 | 0;
|
|
@@ -1320,6 +1456,9 @@ var EngagementMemberSummaries = [1, n0, _EMSn,
|
|
|
1320
1456
|
0, [() => EngagementMemberSummary$,
|
|
1321
1457
|
0]
|
|
1322
1458
|
];
|
|
1459
|
+
var EngagementProspectingResultList = [1, n0, _EPRL,
|
|
1460
|
+
0, () => EngagementProspectingResult$
|
|
1461
|
+
];
|
|
1323
1462
|
var EngagementResourceAssociationSummaryList = [1, n0, _ERASL,
|
|
1324
1463
|
0, [() => EngagementResourceAssociationSummary$,
|
|
1325
1464
|
0]
|
|
@@ -1366,7 +1505,13 @@ var PrimaryNeedsFromAws = 64 | 0;
|
|
|
1366
1505
|
var ProfileNextStepsHistories = [1, n0, _PNSHr,
|
|
1367
1506
|
0, () => ProfileNextStepsHistory$
|
|
1368
1507
|
];
|
|
1508
|
+
var ProspectingTaskSummaryList = [1, n0, _PTSL,
|
|
1509
|
+
0, () => ProspectingTaskSummary$
|
|
1510
|
+
];
|
|
1369
1511
|
var ReceiverResponsibilityList = 64 | 0;
|
|
1512
|
+
var RecommendationList = [1, n0, _RL,
|
|
1513
|
+
0, () => Recommendation$
|
|
1514
|
+
];
|
|
1370
1515
|
var ResourceSnapshotJobSummaryList = [1, n0, _RSJSL,
|
|
1371
1516
|
0, () => ResourceSnapshotJobSummary$
|
|
1372
1517
|
];
|
|
@@ -1388,7 +1533,9 @@ var TagKeyList = 64 | 0;
|
|
|
1388
1533
|
var TagList = [1, n0, _TL,
|
|
1389
1534
|
0, () => Tag$
|
|
1390
1535
|
];
|
|
1536
|
+
var TaskIdentifierList = 64 | 0;
|
|
1391
1537
|
var TaskIdentifiers = 64 | 0;
|
|
1538
|
+
var TaskNameList = 64 | 0;
|
|
1392
1539
|
var TaskStatuses = 64 | 0;
|
|
1393
1540
|
var UseCases = 64 | 0;
|
|
1394
1541
|
var ValidationExceptionErrorList = [1, n0, _VEEL,
|
|
@@ -1400,14 +1547,15 @@ var AmountMap = [2, n0, _AMm,
|
|
|
1400
1547
|
[() => MonetaryAmount,
|
|
1401
1548
|
0]
|
|
1402
1549
|
];
|
|
1550
|
+
var RecommendationAttributeMap = 128 | 0;
|
|
1403
1551
|
export var EngagementContextPayload$ = [4, n0, _ECP,
|
|
1404
1552
|
0,
|
|
1405
|
-
[_CP, _Le],
|
|
1406
|
-
[[() => CustomerProjectsContext$, 0], [() => LeadContext$, 0]]
|
|
1553
|
+
[_CP, _Le, _PR],
|
|
1554
|
+
[[() => CustomerProjectsContext$, 0], [() => LeadContext$, 0], [() => ProspectingResult$, 0]]
|
|
1407
1555
|
];
|
|
1408
1556
|
export var Payload$ = [4, n0, _Pay,
|
|
1409
1557
|
0,
|
|
1410
|
-
[_OIppo,
|
|
1558
|
+
[_OIppo, _LIea],
|
|
1411
1559
|
[[() => OpportunityInvitationPayload$, 0], [() => LeadInvitationPayload$, 0]]
|
|
1412
1560
|
];
|
|
1413
1561
|
export var Receiver$ = [4, n0, _Rec,
|
|
@@ -1422,8 +1570,8 @@ export var ResourceSnapshotPayload$ = [4, n0, _RSP,
|
|
|
1422
1570
|
];
|
|
1423
1571
|
export var UpdateEngagementContextPayload$ = [4, n0, _UECP,
|
|
1424
1572
|
0,
|
|
1425
|
-
[_Le, _CP],
|
|
1426
|
-
[[() => UpdateLeadContext$, 0], [() => CustomerProjectsContext$, 0]]
|
|
1573
|
+
[_Le, _CP, _PR],
|
|
1574
|
+
[[() => UpdateLeadContext$, 0], [() => CustomerProjectsContext$, 0], [() => ProspectingResult$, 0]]
|
|
1427
1575
|
];
|
|
1428
1576
|
export var AcceptEngagementInvitation$ = [9, n0, _AEI,
|
|
1429
1577
|
{ [_h]: ["POST", "/AcceptEngagementInvitation", 200] }, () => AcceptEngagementInvitationRequest$, () => __Unit
|
|
@@ -1437,7 +1585,7 @@ export var AssociateOpportunity$ = [9, n0, _AOs,
|
|
|
1437
1585
|
export var CreateEngagement$ = [9, n0, _CEr,
|
|
1438
1586
|
{ [_h]: ["POST", "/CreateEngagement", 200] }, () => CreateEngagementRequest$, () => CreateEngagementResponse$
|
|
1439
1587
|
];
|
|
1440
|
-
export var CreateEngagementContext$ = [9, n0,
|
|
1588
|
+
export var CreateEngagementContext$ = [9, n0, _CECr,
|
|
1441
1589
|
{ [_h]: ["POST", "/CreateEngagementContext", 200] }, () => CreateEngagementContextRequest$, () => CreateEngagementContextResponse$
|
|
1442
1590
|
];
|
|
1443
1591
|
export var CreateEngagementInvitation$ = [9, n0, _CEI,
|
|
@@ -1470,6 +1618,9 @@ export var GetEngagementInvitation$ = [9, n0, _GEI,
|
|
|
1470
1618
|
export var GetOpportunity$ = [9, n0, _GO,
|
|
1471
1619
|
{ [_h]: ["POST", "/GetOpportunity", 200] }, () => GetOpportunityRequest$, () => GetOpportunityResponse$
|
|
1472
1620
|
];
|
|
1621
|
+
export var GetProspectingFromEngagementTask$ = [9, n0, _GPFET,
|
|
1622
|
+
{ [_h]: ["POST", "/GetProspectingFromEngagementTask", 200] }, () => GetProspectingFromEngagementTaskRequest$, () => GetProspectingFromEngagementTaskResponse$
|
|
1623
|
+
];
|
|
1473
1624
|
export var GetResourceSnapshot$ = [9, n0, _GRS,
|
|
1474
1625
|
{ [_h]: ["POST", "/GetResourceSnapshot", 200] }, () => GetResourceSnapshotRequest$, () => GetResourceSnapshotResponse$
|
|
1475
1626
|
];
|
|
@@ -1503,10 +1654,13 @@ export var ListOpportunities$ = [9, n0, _LO,
|
|
|
1503
1654
|
export var ListOpportunityFromEngagementTasks$ = [9, n0, _LOFET,
|
|
1504
1655
|
{ [_h]: ["POST", "/ListOpportunityFromEngagementTasks", 200] }, () => ListOpportunityFromEngagementTasksRequest$, () => ListOpportunityFromEngagementTasksResponse$
|
|
1505
1656
|
];
|
|
1657
|
+
export var ListProspectingFromEngagementTasks$ = [9, n0, _LPFET,
|
|
1658
|
+
{ [_h]: ["POST", "/ListProspectingFromEngagementTasks", 200] }, () => ListProspectingFromEngagementTasksRequest$, () => ListProspectingFromEngagementTasksResponse$
|
|
1659
|
+
];
|
|
1506
1660
|
export var ListResourceSnapshotJobs$ = [9, n0, _LRSJ,
|
|
1507
1661
|
{ [_h]: ["POST", "/ListResourceSnapshotJobs", 200] }, () => ListResourceSnapshotJobsRequest$, () => ListResourceSnapshotJobsResponse$
|
|
1508
1662
|
];
|
|
1509
|
-
export var ListResourceSnapshots$ = [9, n0,
|
|
1663
|
+
export var ListResourceSnapshots$ = [9, n0, _LRSi,
|
|
1510
1664
|
{ [_h]: ["POST", "/ListResourceSnapshots", 200] }, () => ListResourceSnapshotsRequest$, () => ListResourceSnapshotsResponse$
|
|
1511
1665
|
];
|
|
1512
1666
|
export var ListSolutions$ = [9, n0, _LS,
|
|
@@ -1530,6 +1684,9 @@ export var StartEngagementFromOpportunityTask$ = [9, n0, _SEFOT,
|
|
|
1530
1684
|
export var StartOpportunityFromEngagementTask$ = [9, n0, _SOFET,
|
|
1531
1685
|
{ [_h]: ["POST", "/StartOpportunityFromEngagementTask", 200] }, () => StartOpportunityFromEngagementTaskRequest$, () => StartOpportunityFromEngagementTaskResponse$
|
|
1532
1686
|
];
|
|
1687
|
+
export var StartProspectingFromEngagementTask$ = [9, n0, _SPFET,
|
|
1688
|
+
{ [_h]: ["POST", "/StartProspectingFromEngagementTask", 200] }, () => StartProspectingFromEngagementTaskRequest$, () => StartProspectingFromEngagementTaskResponse$
|
|
1689
|
+
];
|
|
1533
1690
|
export var StartResourceSnapshotJob$ = [9, n0, _SRSJ,
|
|
1534
1691
|
{ [_h]: ["POST", "/StartResourceSnapshotJob", 204] }, () => StartResourceSnapshotJobRequest$, () => __Unit
|
|
1535
1692
|
];
|