@aws-sdk/client-partnercentral-selling 3.1102.0 → 3.1104.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.
@@ -64,6 +64,7 @@ export declare var EngagementProspectingResult$: StaticStructureSchema;
64
64
  export declare var EngagementResourceAssociationSummary$: StaticStructureSchema;
65
65
  export declare var EngagementSort$: StaticStructureSchema;
66
66
  export declare var EngagementSummary$: StaticStructureSchema;
67
+ export declare var EnrichmentContext$: StaticStructureSchema;
67
68
  export declare var ExpectedContractDuration$: StaticStructureSchema;
68
69
  export declare var ExpectedCustomerSpend$: StaticStructureSchema;
69
70
  export declare var GetAwsOpportunitySummaryRequest$: StaticStructureSchema;
@@ -83,7 +84,9 @@ export declare var GetResourceSnapshotResponse$: StaticStructureSchema;
83
84
  export declare var GetSellingSystemSettingsRequest$: StaticStructureSchema;
84
85
  export declare var GetSellingSystemSettingsResponse$: StaticStructureSchema;
85
86
  export declare var Invitation$: StaticStructureSchema;
87
+ export declare var InvitationProspectingResultAws$: StaticStructureSchema;
86
88
  export declare var LastModifiedDate$: StaticStructureSchema;
89
+ export declare var LeadAddress$: StaticStructureSchema;
87
90
  export declare var LeadContact$: StaticStructureSchema;
88
91
  export declare var LeadContext$: StaticStructureSchema;
89
92
  export declare var LeadCustomer$: StaticStructureSchema;
@@ -617,14 +617,6 @@ export declare const Visibility: {
617
617
  readonly LIMITED: "Limited";
618
618
  };
619
619
  export type Visibility = (typeof Visibility)[keyof typeof Visibility];
620
- export declare const MarketSegment: {
621
- readonly ENTERPRISE: "Enterprise";
622
- readonly LARGE: "Large";
623
- readonly MEDIUM: "Medium";
624
- readonly MICRO: "Micro";
625
- readonly SMALL: "Small";
626
- };
627
- export type MarketSegment = (typeof MarketSegment)[keyof typeof MarketSegment];
628
620
  export declare const EngagementContextType: {
629
621
  readonly CUSTOMER_PROJECT: "CustomerProject";
630
622
  readonly LEAD: "Lead";
@@ -20,7 +20,6 @@ import {
20
20
  InvolvementTypeChangeReason,
21
21
  ListTasksSortName,
22
22
  MarketingSource,
23
- MarketSegment,
24
23
  NationalSecurity,
25
24
  OpportunityEngagementInvitationSortName,
26
25
  OpportunityOrigin,
@@ -224,13 +223,19 @@ export interface CustomerProjectsContext {
224
223
  Customer?: EngagementCustomer | undefined;
225
224
  Project?: EngagementCustomerProjectDetails | undefined;
226
225
  }
226
+ export interface LeadAddress {
227
+ City?: string | undefined;
228
+ PostalCode?: string | undefined;
229
+ StateOrRegion?: string | undefined;
230
+ CountryCode?: string | undefined;
231
+ }
227
232
  export interface LeadCustomer {
228
- Industry?: Industry | undefined;
233
+ Industry?: string | undefined;
229
234
  CompanyName: string | undefined;
230
235
  WebsiteUrl?: string | undefined;
231
- Address: AddressSummary | undefined;
236
+ Address?: LeadAddress | undefined;
232
237
  AwsMaturity?: string | undefined;
233
- MarketSegment?: MarketSegment | undefined;
238
+ MarketSegment?: string | undefined;
234
239
  }
235
240
  export interface LeadInsights {
236
241
  LeadReadinessScore?: string | undefined;
@@ -243,12 +248,12 @@ export interface LeadContact {
243
248
  Phone?: string | undefined;
244
249
  }
245
250
  export interface LeadInteraction {
246
- SourceType: string | undefined;
247
- SourceId: string | undefined;
248
- SourceName: string | undefined;
251
+ SourceType?: string | undefined;
252
+ SourceId?: string | undefined;
253
+ SourceName?: string | undefined;
249
254
  Usecase?: string | undefined;
250
255
  InteractionDate?: Date | undefined;
251
- CustomerAction: string | undefined;
256
+ CustomerAction?: string | undefined;
252
257
  BusinessProblem?: string | undefined;
253
258
  Contact: LeadContact | undefined;
254
259
  }
@@ -278,13 +283,13 @@ export interface ProspectingInsights {
278
283
  SolutionSubCategory?: string | undefined;
279
284
  }
280
285
  export interface ProspectingResultAws {
286
+ Customer?: ProspectingResultCustomer | undefined;
287
+ Insights?: ProspectingInsights | undefined;
281
288
  StartTime?: Date | undefined;
282
289
  EndTime?: Date | undefined;
283
290
  TaskId?: string | undefined;
284
291
  TaskArn?: string | undefined;
285
292
  TaskName?: string | undefined;
286
- Customer?: ProspectingResultCustomer | undefined;
287
- Insights?: ProspectingInsights | undefined;
288
293
  }
289
294
  export interface ProspectingResult {
290
295
  Aws?: ProspectingResultAws | undefined;
@@ -347,8 +352,8 @@ export interface EngagementContextDetails {
347
352
  export interface CreateEngagementRequest {
348
353
  Catalog: string | undefined;
349
354
  ClientToken?: string | undefined;
350
- Title: string | undefined;
351
- Description: string | undefined;
355
+ Title?: string | undefined;
356
+ Description?: string | undefined;
352
357
  Contexts?: EngagementContextDetails[] | undefined;
353
358
  }
354
359
  export interface CreateEngagementResponse {
@@ -517,17 +522,17 @@ export interface StartEngagementFromOpportunityTaskResponse {
517
522
  EngagementInvitationId?: string | undefined;
518
523
  }
519
524
  export interface LeadInvitationCustomer {
520
- Industry?: Industry | undefined;
525
+ Industry?: string | undefined;
521
526
  CompanyName: string | undefined;
522
527
  WebsiteUrl?: string | undefined;
523
- CountryCode: CountryCode | undefined;
528
+ CountryCode?: string | undefined;
524
529
  AwsMaturity?: string | undefined;
525
- MarketSegment?: MarketSegment | undefined;
530
+ MarketSegment?: string | undefined;
526
531
  }
527
532
  export interface LeadInvitationInteraction {
528
- SourceType: string | undefined;
529
- SourceId: string | undefined;
530
- SourceName: string | undefined;
533
+ SourceType?: string | undefined;
534
+ SourceId?: string | undefined;
535
+ SourceName?: string | undefined;
531
536
  Usecase?: string | undefined;
532
537
  ContactBusinessTitle: string | undefined;
533
538
  }
@@ -614,6 +619,14 @@ export interface GetEngagementInvitationRequest {
614
619
  Catalog: string | undefined;
615
620
  Identifier: string | undefined;
616
621
  }
622
+ export interface InvitationProspectingResultAws {
623
+ Customer?: ProspectingResultCustomer | undefined;
624
+ Insights?: ProspectingInsights | undefined;
625
+ }
626
+ export interface EnrichmentContext {
627
+ ProspectingResultAws?: InvitationProspectingResultAws | undefined;
628
+ LeadInsights?: LeadInsights | undefined;
629
+ }
617
630
  export interface EngagementMemberSummary {
618
631
  CompanyName?: string | undefined;
619
632
  WebsiteUrl?: string | undefined;
@@ -636,6 +649,7 @@ export interface GetEngagementInvitationResponse {
636
649
  InvitationMessage?: string | undefined;
637
650
  EngagementDescription?: string | undefined;
638
651
  ExistingMembers?: EngagementMemberSummary[] | undefined;
652
+ EnrichmentContext?: EnrichmentContext | undefined;
639
653
  }
640
654
  export interface OpportunityEngagementInvitationSort {
641
655
  SortOrder: SortOrder | undefined;
@@ -64,6 +64,7 @@ export declare var EngagementProspectingResult$: StaticStructureSchema;
64
64
  export declare var EngagementResourceAssociationSummary$: StaticStructureSchema;
65
65
  export declare var EngagementSort$: StaticStructureSchema;
66
66
  export declare var EngagementSummary$: StaticStructureSchema;
67
+ export declare var EnrichmentContext$: StaticStructureSchema;
67
68
  export declare var ExpectedContractDuration$: StaticStructureSchema;
68
69
  export declare var ExpectedCustomerSpend$: StaticStructureSchema;
69
70
  export declare var GetAwsOpportunitySummaryRequest$: StaticStructureSchema;
@@ -83,7 +84,9 @@ export declare var GetResourceSnapshotResponse$: StaticStructureSchema;
83
84
  export declare var GetSellingSystemSettingsRequest$: StaticStructureSchema;
84
85
  export declare var GetSellingSystemSettingsResponse$: StaticStructureSchema;
85
86
  export declare var Invitation$: StaticStructureSchema;
87
+ export declare var InvitationProspectingResultAws$: StaticStructureSchema;
86
88
  export declare var LastModifiedDate$: StaticStructureSchema;
89
+ export declare var LeadAddress$: StaticStructureSchema;
87
90
  export declare var LeadContact$: StaticStructureSchema;
88
91
  export declare var LeadContext$: StaticStructureSchema;
89
92
  export declare var LeadCustomer$: StaticStructureSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-partnercentral-selling",
3
- "version": "3.1102.0",
3
+ "version": "3.1104.0",
4
4
  "description": "AWS SDK for JavaScript Partnercentral Selling Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-partnercentral-selling",
6
6
  "license": "Apache-2.0",
@@ -46,8 +46,8 @@
46
46
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/core": "^3.977.5",
50
- "@aws-sdk/credential-provider-node": "^3.972.77",
49
+ "@aws-sdk/core": "^3.977.6",
50
+ "@aws-sdk/credential-provider-node": "^3.972.78",
51
51
  "@aws-sdk/types": "^3.974.2",
52
52
  "@smithy/core": "^3.31.1",
53
53
  "@smithy/fetch-http-handler": "^5.6.13",