@aws-sdk/client-partnercentral-selling 3.1069.0 → 3.1071.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.
Files changed (42) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +61 -1
  3. package/dist-cjs/schemas/schemas_0.js +216 -43
  4. package/dist-es/PartnerCentralSelling.js +8 -0
  5. package/dist-es/commands/GetProspectingFromEngagementTaskCommand.js +16 -0
  6. package/dist-es/commands/ListProspectingFromEngagementTasksCommand.js +16 -0
  7. package/dist-es/commands/StartProspectingFromEngagementTaskCommand.js +16 -0
  8. package/dist-es/commands/index.js +3 -0
  9. package/dist-es/models/enums.js +12 -0
  10. package/dist-es/pagination/ListProspectingFromEngagementTasksPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/schemas/schemas_0.js +200 -43
  13. package/dist-types/PartnerCentralSelling.d.ts +28 -0
  14. package/dist-types/PartnerCentralSellingClient.d.ts +5 -2
  15. package/dist-types/commands/CreateEngagementCommand.d.ts +34 -1
  16. package/dist-types/commands/CreateEngagementContextCommand.d.ts +34 -1
  17. package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +14 -0
  18. package/dist-types/commands/GetEngagementCommand.d.ts +34 -1
  19. package/dist-types/commands/GetProspectingFromEngagementTaskCommand.d.ts +105 -0
  20. package/dist-types/commands/GetResourceSnapshotCommand.d.ts +14 -0
  21. package/dist-types/commands/ListEngagementsCommand.d.ts +3 -3
  22. package/dist-types/commands/ListProspectingFromEngagementTasksCommand.d.ts +114 -0
  23. package/dist-types/commands/StartProspectingFromEngagementTaskCommand.d.ts +108 -0
  24. package/dist-types/commands/UpdateEngagementContextCommand.d.ts +34 -1
  25. package/dist-types/commands/index.d.ts +3 -0
  26. package/dist-types/models/enums.d.ts +28 -0
  27. package/dist-types/models/models_0.d.ts +529 -5
  28. package/dist-types/pagination/ListProspectingFromEngagementTasksPaginator.d.ts +7 -0
  29. package/dist-types/pagination/index.d.ts +1 -0
  30. package/dist-types/schemas/schemas_0.d.ts +19 -0
  31. package/dist-types/ts3.4/PartnerCentralSelling.d.ts +70 -0
  32. package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +18 -0
  33. package/dist-types/ts3.4/commands/GetProspectingFromEngagementTaskCommand.d.ts +53 -0
  34. package/dist-types/ts3.4/commands/ListProspectingFromEngagementTasksCommand.d.ts +53 -0
  35. package/dist-types/ts3.4/commands/StartProspectingFromEngagementTaskCommand.d.ts +53 -0
  36. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  37. package/dist-types/ts3.4/models/enums.d.ts +16 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +136 -0
  39. package/dist-types/ts3.4/pagination/ListProspectingFromEngagementTasksPaginator.d.ts +11 -0
  40. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +19 -0
  42. package/package.json +3 -3
@@ -0,0 +1,114 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ListProspectingFromEngagementTasksRequest, ListProspectingFromEngagementTasksResponse } from "../models/models_0";
4
+ import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListProspectingFromEngagementTasksCommand}.
14
+ */
15
+ export interface ListProspectingFromEngagementTasksCommandInput extends ListProspectingFromEngagementTasksRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListProspectingFromEngagementTasksCommand}.
21
+ */
22
+ export interface ListProspectingFromEngagementTasksCommandOutput extends ListProspectingFromEngagementTasksResponse, __MetadataBearer {
23
+ }
24
+ declare const ListProspectingFromEngagementTasksCommand_base: {
25
+ new (input: ListProspectingFromEngagementTasksCommandInput): import("@smithy/core/client").CommandImpl<ListProspectingFromEngagementTasksCommandInput, ListProspectingFromEngagementTasksCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListProspectingFromEngagementTasksCommandInput): import("@smithy/core/client").CommandImpl<ListProspectingFromEngagementTasksCommandInput, ListProspectingFromEngagementTasksCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Lists all prospecting tasks initiated by the caller's account. Supports optional filters by task identifier, task name, or start time range. Results can be sorted using configurable options. The response is paginated. Use the <code>NextToken</code> value from each response to retrieve subsequent pages.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { PartnerCentralSellingClient, ListProspectingFromEngagementTasksCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
37
+ * // const { PartnerCentralSellingClient, ListProspectingFromEngagementTasksCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
38
+ * // import type { PartnerCentralSellingClientConfig } from "@aws-sdk/client-partnercentral-selling";
39
+ * const config = {}; // type is PartnerCentralSellingClientConfig
40
+ * const client = new PartnerCentralSellingClient(config);
41
+ * const input = { // ListProspectingFromEngagementTasksRequest
42
+ * Catalog: "STRING_VALUE", // required
43
+ * MaxResults: Number("int"),
44
+ * NextToken: "STRING_VALUE",
45
+ * TaskIdentifier: [ // TaskIdentifierList
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * TaskName: [ // TaskNameList
49
+ * "STRING_VALUE",
50
+ * ],
51
+ * StartAfter: new Date("TIMESTAMP"),
52
+ * StartBefore: new Date("TIMESTAMP"),
53
+ * Sort: { // ProspectingFromEngagementTaskSort
54
+ * SortOrder: "ASCENDING" || "DESCENDING", // required
55
+ * SortBy: "StartTime" || "TaskName" || "FailedEngagementCount", // required
56
+ * },
57
+ * };
58
+ * const command = new ListProspectingFromEngagementTasksCommand(input);
59
+ * const response = await client.send(command);
60
+ * // { // ListProspectingFromEngagementTasksResponse
61
+ * // NextToken: "STRING_VALUE",
62
+ * // TaskSummaries: [ // ProspectingTaskSummaryList // required
63
+ * // { // ProspectingTaskSummary
64
+ * // TaskId: "STRING_VALUE", // required
65
+ * // TaskArn: "STRING_VALUE", // required
66
+ * // TaskName: "STRING_VALUE", // required
67
+ * // StartTime: new Date("TIMESTAMP"), // required
68
+ * // EndTime: new Date("TIMESTAMP"),
69
+ * // TotalEngagementCount: Number("int"), // required
70
+ * // CompletedEngagementCount: Number("int"), // required
71
+ * // FailedEngagementCount: Number("int"), // required
72
+ * // },
73
+ * // ],
74
+ * // };
75
+ *
76
+ * ```
77
+ *
78
+ * @param ListProspectingFromEngagementTasksCommandInput - {@link ListProspectingFromEngagementTasksCommandInput}
79
+ * @returns {@link ListProspectingFromEngagementTasksCommandOutput}
80
+ * @see {@link ListProspectingFromEngagementTasksCommandInput} for command's `input` shape.
81
+ * @see {@link ListProspectingFromEngagementTasksCommandOutput} for command's `response` shape.
82
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
83
+ *
84
+ * @throws {@link AccessDeniedException} (client fault)
85
+ * <p>This error occurs when you don't have permission to perform the requested action.</p> <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.</p>
86
+ *
87
+ * @throws {@link InternalServerException} (server fault)
88
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.</p> <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.</p>
89
+ *
90
+ * @throws {@link ThrottlingException} (client fault)
91
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your usage to avoid throttling.</p> <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
92
+ *
93
+ * @throws {@link ValidationException} (client fault)
94
+ * <p>The input fails to satisfy the constraints specified by the service or business validation rules.</p> <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.</p>
95
+ *
96
+ * @throws {@link PartnerCentralSellingServiceException}
97
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
98
+ *
99
+ *
100
+ * @public
101
+ */
102
+ export declare class ListProspectingFromEngagementTasksCommand extends ListProspectingFromEngagementTasksCommand_base {
103
+ /** @internal type navigation helper, not in runtime. */
104
+ protected static __types: {
105
+ api: {
106
+ input: ListProspectingFromEngagementTasksRequest;
107
+ output: ListProspectingFromEngagementTasksResponse;
108
+ };
109
+ sdk: {
110
+ input: ListProspectingFromEngagementTasksCommandInput;
111
+ output: ListProspectingFromEngagementTasksCommandOutput;
112
+ };
113
+ };
114
+ }
@@ -0,0 +1,108 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { StartProspectingFromEngagementTaskRequest, StartProspectingFromEngagementTaskResponse } from "../models/models_0";
4
+ import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartProspectingFromEngagementTaskCommand}.
14
+ */
15
+ export interface StartProspectingFromEngagementTaskCommandInput extends StartProspectingFromEngagementTaskRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartProspectingFromEngagementTaskCommand}.
21
+ */
22
+ export interface StartProspectingFromEngagementTaskCommandOutput extends StartProspectingFromEngagementTaskResponse, __MetadataBearer {
23
+ }
24
+ declare const StartProspectingFromEngagementTaskCommand_base: {
25
+ new (input: StartProspectingFromEngagementTaskCommandInput): import("@smithy/core/client").CommandImpl<StartProspectingFromEngagementTaskCommandInput, StartProspectingFromEngagementTaskCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: StartProspectingFromEngagementTaskCommandInput): import("@smithy/core/client").CommandImpl<StartProspectingFromEngagementTaskCommandInput, StartProspectingFromEngagementTaskCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Starts a task to convert one or more engagement contexts into new prospecting leads. The task runs asynchronously. To poll for status, use <code>GetProspectingFromEngagementTask</code>, or use <code>ListProspectingFromEngagementTasks</code> to monitor multiple tasks.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { PartnerCentralSellingClient, StartProspectingFromEngagementTaskCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
37
+ * // const { PartnerCentralSellingClient, StartProspectingFromEngagementTaskCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
38
+ * // import type { PartnerCentralSellingClientConfig } from "@aws-sdk/client-partnercentral-selling";
39
+ * const config = {}; // type is PartnerCentralSellingClientConfig
40
+ * const client = new PartnerCentralSellingClient(config);
41
+ * const input = { // StartProspectingFromEngagementTaskRequest
42
+ * Catalog: "STRING_VALUE", // required
43
+ * Identifiers: [ // EngagementIdentifierList // required
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * TaskName: "STRING_VALUE", // required
47
+ * ClientToken: "STRING_VALUE", // required
48
+ * };
49
+ * const command = new StartProspectingFromEngagementTaskCommand(input);
50
+ * const response = await client.send(command);
51
+ * // { // StartProspectingFromEngagementTaskResponse
52
+ * // Identifiers: [ // EngagementIdentifierList // required
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // TaskName: "STRING_VALUE", // required
56
+ * // Message: "STRING_VALUE",
57
+ * // ReasonCode: "STRING_VALUE",
58
+ * // StartTime: new Date("TIMESTAMP"), // required
59
+ * // TaskId: "STRING_VALUE",
60
+ * // TaskArn: "STRING_VALUE",
61
+ * // TaskStatus: "PENDING" || "IN_PROGRESS" || "COMPLETED" || "FAILED", // required
62
+ * // };
63
+ *
64
+ * ```
65
+ *
66
+ * @param StartProspectingFromEngagementTaskCommandInput - {@link StartProspectingFromEngagementTaskCommandInput}
67
+ * @returns {@link StartProspectingFromEngagementTaskCommandOutput}
68
+ * @see {@link StartProspectingFromEngagementTaskCommandInput} for command's `input` shape.
69
+ * @see {@link StartProspectingFromEngagementTaskCommandOutput} for command's `response` shape.
70
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
71
+ *
72
+ * @throws {@link AccessDeniedException} (client fault)
73
+ * <p>This error occurs when you don't have permission to perform the requested action.</p> <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.</p>
74
+ *
75
+ * @throws {@link ConflictException} (client fault)
76
+ * <p>This error occurs when the request can’t be processed due to a conflict with the target resource's current state, which could result from updating or deleting the resource.</p> <p>Suggested action: Fetch the latest state of the resource, verify the state, and retry the request.</p>
77
+ *
78
+ * @throws {@link InternalServerException} (server fault)
79
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.</p> <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.</p>
80
+ *
81
+ * @throws {@link ResourceNotFoundException} (client fault)
82
+ * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.</p> <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.</p>
83
+ *
84
+ * @throws {@link ThrottlingException} (client fault)
85
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your usage to avoid throttling.</p> <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
86
+ *
87
+ * @throws {@link ValidationException} (client fault)
88
+ * <p>The input fails to satisfy the constraints specified by the service or business validation rules.</p> <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.</p>
89
+ *
90
+ * @throws {@link PartnerCentralSellingServiceException}
91
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
92
+ *
93
+ *
94
+ * @public
95
+ */
96
+ export declare class StartProspectingFromEngagementTaskCommand extends StartProspectingFromEngagementTaskCommand_base {
97
+ /** @internal type navigation helper, not in runtime. */
98
+ protected static __types: {
99
+ api: {
100
+ input: StartProspectingFromEngagementTaskRequest;
101
+ output: StartProspectingFromEngagementTaskResponse;
102
+ };
103
+ sdk: {
104
+ input: StartProspectingFromEngagementTaskCommandInput;
105
+ output: StartProspectingFromEngagementTaskCommandOutput;
106
+ };
107
+ };
108
+ }
@@ -43,7 +43,7 @@ declare const UpdateEngagementContextCommand_base: {
43
43
  * EngagementIdentifier: "STRING_VALUE", // required
44
44
  * ContextIdentifier: "STRING_VALUE", // required
45
45
  * EngagementLastModifiedAt: new Date("TIMESTAMP"), // required
46
- * Type: "CustomerProject" || "Lead", // required
46
+ * Type: "CustomerProject" || "Lead" || "ProspectingResult", // required
47
47
  * Payload: { // UpdateEngagementContextPayload Union: only one key present
48
48
  * Lead: { // UpdateLeadContext
49
49
  * QualificationStatus: "STRING_VALUE",
@@ -76,6 +76,9 @@ declare const UpdateEngagementContextCommand_base: {
76
76
  * Phone: "STRING_VALUE",
77
77
  * },
78
78
  * },
79
+ * Insights: { // LeadInsights
80
+ * LeadReadinessScore: "STRING_VALUE",
81
+ * },
79
82
  * },
80
83
  * CustomerProject: { // CustomerProjectsContext
81
84
  * Customer: { // EngagementCustomer
@@ -90,6 +93,36 @@ declare const UpdateEngagementContextCommand_base: {
90
93
  * TargetCompletionDate: "STRING_VALUE", // required
91
94
  * },
92
95
  * },
96
+ * ProspectingResult: { // ProspectingResult
97
+ * Aws: { // ProspectingResultAws
98
+ * StartTime: new Date("TIMESTAMP"),
99
+ * EndTime: new Date("TIMESTAMP"),
100
+ * TaskId: "STRING_VALUE",
101
+ * TaskArn: "STRING_VALUE",
102
+ * TaskName: "STRING_VALUE",
103
+ * Customer: { // ProspectingResultCustomer
104
+ * AccountName: "STRING_VALUE",
105
+ * Geo: "STRING_VALUE",
106
+ * Region: "STRING_VALUE",
107
+ * SubRegion: "STRING_VALUE",
108
+ * Country: "US" || "AF" || "AX" || "AL" || "DZ" || "AS" || "AD" || "AO" || "AI" || "AQ" || "AG" || "AR" || "AM" || "AW" || "AU" || "AT" || "AZ" || "BS" || "BH" || "BD" || "BB" || "BY" || "BE" || "BZ" || "BJ" || "BM" || "BT" || "BO" || "BQ" || "BA" || "BW" || "BV" || "BR" || "IO" || "BN" || "BG" || "BF" || "BI" || "KH" || "CM" || "CA" || "CV" || "KY" || "CF" || "TD" || "CL" || "CN" || "CX" || "CC" || "CO" || "KM" || "CG" || "CK" || "CR" || "CI" || "HR" || "CU" || "CW" || "CY" || "CZ" || "CD" || "DK" || "DJ" || "DM" || "DO" || "EC" || "EG" || "SV" || "GQ" || "ER" || "EE" || "ET" || "FK" || "FO" || "FJ" || "FI" || "FR" || "GF" || "PF" || "TF" || "GA" || "GM" || "GE" || "DE" || "GH" || "GI" || "GR" || "GL" || "GD" || "GP" || "GU" || "GT" || "GG" || "GN" || "GW" || "GY" || "HT" || "HM" || "VA" || "HN" || "HK" || "HU" || "IS" || "IN" || "ID" || "IR" || "IQ" || "IE" || "IM" || "IL" || "IT" || "JM" || "JP" || "JE" || "JO" || "KZ" || "KE" || "KI" || "KR" || "KW" || "KG" || "LA" || "LV" || "LB" || "LS" || "LR" || "LY" || "LI" || "LT" || "LU" || "MO" || "MK" || "MG" || "MW" || "MY" || "MV" || "ML" || "MT" || "MH" || "MQ" || "MR" || "MU" || "YT" || "MX" || "FM" || "MD" || "MC" || "MN" || "ME" || "MS" || "MA" || "MZ" || "MM" || "NA" || "NR" || "NP" || "NL" || "AN" || "NC" || "NZ" || "NI" || "NE" || "NG" || "NU" || "NF" || "MP" || "NO" || "OM" || "PK" || "PW" || "PS" || "PA" || "PG" || "PY" || "PE" || "PH" || "PN" || "PL" || "PT" || "PR" || "QA" || "RE" || "RO" || "RU" || "RW" || "BL" || "SH" || "KN" || "LC" || "MF" || "PM" || "VC" || "WS" || "SM" || "ST" || "SA" || "SN" || "RS" || "SC" || "SL" || "SG" || "SX" || "SK" || "SI" || "SB" || "SO" || "ZA" || "GS" || "SS" || "ES" || "LK" || "SD" || "SR" || "SJ" || "SZ" || "SE" || "CH" || "SY" || "TW" || "TJ" || "TZ" || "TH" || "TL" || "TG" || "TK" || "TO" || "TT" || "TN" || "TR" || "TM" || "TC" || "TV" || "UG" || "UA" || "AE" || "GB" || "UM" || "UY" || "UZ" || "VU" || "VE" || "VN" || "VG" || "VI" || "WF" || "EH" || "YE" || "ZM" || "ZW",
109
+ * Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other",
110
+ * SubIndustry: "STRING_VALUE",
111
+ * Segment: "STRING_VALUE",
112
+ * CompanySize: "STRING_VALUE",
113
+ * EligiblePrograms: [ // EligibleProgramsList
114
+ * "STRING_VALUE",
115
+ * ],
116
+ * PublicProfileSummary: "STRING_VALUE",
117
+ * },
118
+ * Insights: { // ProspectingInsights
119
+ * MarketplaceEngagementScore: "STRING_VALUE",
120
+ * SolutionScore: "STRING_VALUE",
121
+ * SolutionCategory: "STRING_VALUE",
122
+ * SolutionSubCategory: "STRING_VALUE",
123
+ * },
124
+ * },
125
+ * },
93
126
  * },
94
127
  * };
95
128
  * const command = new UpdateEngagementContextCommand(input);
@@ -13,6 +13,7 @@ export * from "./GetAwsOpportunitySummaryCommand";
13
13
  export * from "./GetEngagementCommand";
14
14
  export * from "./GetEngagementInvitationCommand";
15
15
  export * from "./GetOpportunityCommand";
16
+ export * from "./GetProspectingFromEngagementTaskCommand";
16
17
  export * from "./GetResourceSnapshotCommand";
17
18
  export * from "./GetResourceSnapshotJobCommand";
18
19
  export * from "./GetSellingSystemSettingsCommand";
@@ -24,6 +25,7 @@ export * from "./ListEngagementResourceAssociationsCommand";
24
25
  export * from "./ListEngagementsCommand";
25
26
  export * from "./ListOpportunitiesCommand";
26
27
  export * from "./ListOpportunityFromEngagementTasksCommand";
28
+ export * from "./ListProspectingFromEngagementTasksCommand";
27
29
  export * from "./ListResourceSnapshotJobsCommand";
28
30
  export * from "./ListResourceSnapshotsCommand";
29
31
  export * from "./ListSolutionsCommand";
@@ -33,6 +35,7 @@ export * from "./RejectEngagementInvitationCommand";
33
35
  export * from "./StartEngagementByAcceptingInvitationTaskCommand";
34
36
  export * from "./StartEngagementFromOpportunityTaskCommand";
35
37
  export * from "./StartOpportunityFromEngagementTaskCommand";
38
+ export * from "./StartProspectingFromEngagementTaskCommand";
36
39
  export * from "./StartResourceSnapshotJobCommand";
37
40
  export * from "./StopResourceSnapshotJobCommand";
38
41
  export * from "./SubmitOpportunityCommand";
@@ -758,6 +758,7 @@ export type MarketSegment = (typeof MarketSegment)[keyof typeof MarketSegment];
758
758
  export declare const EngagementContextType: {
759
759
  readonly CUSTOMER_PROJECT: "CustomerProject";
760
760
  readonly LEAD: "Lead";
761
+ readonly PROSPECTING_RESULT: "ProspectingResult";
761
762
  };
762
763
  /**
763
764
  * @public
@@ -1144,6 +1145,33 @@ export declare const OpportunitySortName: {
1144
1145
  * @public
1145
1146
  */
1146
1147
  export type OpportunitySortName = (typeof OpportunitySortName)[keyof typeof OpportunitySortName];
1148
+ /**
1149
+ * @public
1150
+ * @enum
1151
+ */
1152
+ export declare const ProspectingTaskStatus: {
1153
+ readonly COMPLETED: "COMPLETED";
1154
+ readonly FAILED: "FAILED";
1155
+ readonly IN_PROGRESS: "IN_PROGRESS";
1156
+ readonly PENDING: "PENDING";
1157
+ };
1158
+ /**
1159
+ * @public
1160
+ */
1161
+ export type ProspectingTaskStatus = (typeof ProspectingTaskStatus)[keyof typeof ProspectingTaskStatus];
1162
+ /**
1163
+ * @public
1164
+ * @enum
1165
+ */
1166
+ export declare const ProspectingFromEngagementTaskSortName: {
1167
+ readonly FailedEngagementCount: "FailedEngagementCount";
1168
+ readonly StartTime: "StartTime";
1169
+ readonly TaskName: "TaskName";
1170
+ };
1171
+ /**
1172
+ * @public
1173
+ */
1174
+ export type ProspectingFromEngagementTaskSortName = (typeof ProspectingFromEngagementTaskSortName)[keyof typeof ProspectingFromEngagementTaskSortName];
1147
1175
  /**
1148
1176
  * @public
1149
1177
  * @enum