@aws-sdk/client-partnercentral-selling 3.983.0 → 3.985.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 +58 -40
- package/dist-es/models/enums.js +20 -19
- package/dist-es/schemas/schemas_0.js +36 -21
- package/dist-types/commands/GetResourceSnapshotCommand.d.ts +123 -0
- package/dist-types/commands/ListOpportunitiesCommand.d.ts +5 -1
- package/dist-types/models/enums.d.ts +52 -51
- package/dist-types/models/models_0.d.ts +125 -26
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +27 -26
- package/dist-types/ts3.4/models/models_0.d.ts +28 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +13 -13
|
@@ -597,6 +597,32 @@ export declare const AwsPartition: {
|
|
|
597
597
|
readonly AWS_EUSC: "aws-eusc";
|
|
598
598
|
};
|
|
599
599
|
export type AwsPartition = (typeof AwsPartition)[keyof typeof AwsPartition];
|
|
600
|
+
export declare const SalesInvolvementType: {
|
|
601
|
+
readonly CO_SELL: "Co-Sell";
|
|
602
|
+
readonly FOR_VISIBILITY_ONLY: "For Visibility Only";
|
|
603
|
+
};
|
|
604
|
+
export type SalesInvolvementType =
|
|
605
|
+
(typeof SalesInvolvementType)[keyof typeof SalesInvolvementType];
|
|
606
|
+
export declare const InvolvementTypeChangeReason: {
|
|
607
|
+
readonly CHANGE_IN_DEAL_INFORMATION: "Change in Deal Information";
|
|
608
|
+
readonly CUSTOMER_REQUESTED: "Customer Requested";
|
|
609
|
+
readonly EXPANSION_OPPORTUNITY: "Expansion Opportunity";
|
|
610
|
+
readonly RISK_MITIGATION: "Risk Mitigation";
|
|
611
|
+
readonly TECHNICAL_COMPLEXITY: "Technical Complexity";
|
|
612
|
+
};
|
|
613
|
+
export type InvolvementTypeChangeReason =
|
|
614
|
+
(typeof InvolvementTypeChangeReason)[keyof typeof InvolvementTypeChangeReason];
|
|
615
|
+
export declare const OpportunityOrigin: {
|
|
616
|
+
readonly AWS_REFERRAL: "AWS Referral";
|
|
617
|
+
readonly PARTNER_REFERRAL: "Partner Referral";
|
|
618
|
+
};
|
|
619
|
+
export type OpportunityOrigin =
|
|
620
|
+
(typeof OpportunityOrigin)[keyof typeof OpportunityOrigin];
|
|
621
|
+
export declare const Visibility: {
|
|
622
|
+
readonly FULL: "Full";
|
|
623
|
+
readonly LIMITED: "Limited";
|
|
624
|
+
};
|
|
625
|
+
export type Visibility = (typeof Visibility)[keyof typeof Visibility];
|
|
600
626
|
export declare const MarketSegment: {
|
|
601
627
|
readonly ENTERPRISE: "Enterprise";
|
|
602
628
|
readonly LARGE: "Large";
|
|
@@ -657,17 +683,6 @@ export declare const ReasonCode: {
|
|
|
657
683
|
readonly SERVICE_QUOTA_EXCEEDED: "ServiceQuotaExceeded";
|
|
658
684
|
};
|
|
659
685
|
export type ReasonCode = (typeof ReasonCode)[keyof typeof ReasonCode];
|
|
660
|
-
export declare const SalesInvolvementType: {
|
|
661
|
-
readonly CO_SELL: "Co-Sell";
|
|
662
|
-
readonly FOR_VISIBILITY_ONLY: "For Visibility Only";
|
|
663
|
-
};
|
|
664
|
-
export type SalesInvolvementType =
|
|
665
|
-
(typeof SalesInvolvementType)[keyof typeof SalesInvolvementType];
|
|
666
|
-
export declare const Visibility: {
|
|
667
|
-
readonly FULL: "Full";
|
|
668
|
-
readonly LIMITED: "Limited";
|
|
669
|
-
};
|
|
670
|
-
export type Visibility = (typeof Visibility)[keyof typeof Visibility];
|
|
671
686
|
export declare const ReceiverResponsibility: {
|
|
672
687
|
readonly CO_SELL_FACILITATOR: "Co-Sell Facilitator";
|
|
673
688
|
readonly DISTRIBUTOR: "Distributor";
|
|
@@ -783,12 +798,6 @@ export declare const OpportunityType: {
|
|
|
783
798
|
};
|
|
784
799
|
export type OpportunityType =
|
|
785
800
|
(typeof OpportunityType)[keyof typeof OpportunityType];
|
|
786
|
-
export declare const OpportunityOrigin: {
|
|
787
|
-
readonly AWS_REFERRAL: "AWS Referral";
|
|
788
|
-
readonly PARTNER_REFERRAL: "Partner Referral";
|
|
789
|
-
};
|
|
790
|
-
export type OpportunityOrigin =
|
|
791
|
-
(typeof OpportunityOrigin)[keyof typeof OpportunityOrigin];
|
|
792
801
|
export declare const PrimaryNeedFromAws: {
|
|
793
802
|
readonly CO_SELL_ARCHITECTURAL_VALIDATION: "Co-Sell - Architectural Validation";
|
|
794
803
|
readonly CO_SELL_BUSINESS_PRESENTATION: "Co-Sell - Business Presentation";
|
|
@@ -842,16 +851,8 @@ export declare const RevenueModel: {
|
|
|
842
851
|
readonly SUBSCRIPTION: "Subscription";
|
|
843
852
|
};
|
|
844
853
|
export type RevenueModel = (typeof RevenueModel)[keyof typeof RevenueModel];
|
|
845
|
-
export declare const InvolvementTypeChangeReason: {
|
|
846
|
-
readonly CHANGE_IN_DEAL_INFORMATION: "Change in Deal Information";
|
|
847
|
-
readonly CUSTOMER_REQUESTED: "Customer Requested";
|
|
848
|
-
readonly EXPANSION_OPPORTUNITY: "Expansion Opportunity";
|
|
849
|
-
readonly RISK_MITIGATION: "Risk Mitigation";
|
|
850
|
-
readonly TECHNICAL_COMPLEXITY: "Technical Complexity";
|
|
851
|
-
};
|
|
852
|
-
export type InvolvementTypeChangeReason =
|
|
853
|
-
(typeof InvolvementTypeChangeReason)[keyof typeof InvolvementTypeChangeReason];
|
|
854
854
|
export declare const OpportunitySortName: {
|
|
855
|
+
readonly CREATED_DATE: "CreatedDate";
|
|
855
856
|
readonly CUSTOMER_COMPANY_NAME: "CustomerCompanyName";
|
|
856
857
|
readonly IDENTIFIER: "Identifier";
|
|
857
858
|
readonly LAST_MODIFIEDDATE: "LastModifiedDate";
|
|
@@ -181,6 +181,19 @@ export interface AwsTeamMember {
|
|
|
181
181
|
LastName?: string | undefined;
|
|
182
182
|
BusinessTitle?: AwsMemberBusinessTitle | undefined;
|
|
183
183
|
}
|
|
184
|
+
export interface AwsOpportunitySummaryFullView {
|
|
185
|
+
RelatedOpportunityId?: string | undefined;
|
|
186
|
+
Origin?: OpportunityOrigin | undefined;
|
|
187
|
+
InvolvementType?: SalesInvolvementType | undefined;
|
|
188
|
+
Visibility?: Visibility | undefined;
|
|
189
|
+
LifeCycle?: AwsOpportunityLifeCycle | undefined;
|
|
190
|
+
OpportunityTeam?: AwsTeamMember[] | undefined;
|
|
191
|
+
Insights?: AwsOpportunityInsights | undefined;
|
|
192
|
+
InvolvementTypeChangeReason?: InvolvementTypeChangeReason | undefined;
|
|
193
|
+
RelatedEntityIds?: AwsOpportunityRelatedEntities | undefined;
|
|
194
|
+
Customer?: AwsOpportunityCustomer | undefined;
|
|
195
|
+
Project?: AwsOpportunityProject | undefined;
|
|
196
|
+
}
|
|
184
197
|
export interface EngagementCustomer {
|
|
185
198
|
Industry: Industry | undefined;
|
|
186
199
|
CompanyName: string | undefined;
|
|
@@ -738,6 +751,10 @@ export interface GetOpportunityResponse {
|
|
|
738
751
|
LifeCycle?: LifeCycle | undefined;
|
|
739
752
|
OpportunityTeam?: Contact[] | undefined;
|
|
740
753
|
}
|
|
754
|
+
export interface CreatedDateFilter {
|
|
755
|
+
AfterCreatedDate?: Date | undefined;
|
|
756
|
+
BeforeCreatedDate?: Date | undefined;
|
|
757
|
+
}
|
|
741
758
|
export interface LastModifiedDate {
|
|
742
759
|
AfterLastModifiedDate?: Date | undefined;
|
|
743
760
|
BeforeLastModifiedDate?: Date | undefined;
|
|
@@ -756,6 +773,7 @@ export interface ListOpportunitiesRequest {
|
|
|
756
773
|
LifeCycleStage?: Stage[] | undefined;
|
|
757
774
|
LifeCycleReviewStatus?: ReviewStatus[] | undefined;
|
|
758
775
|
CustomerCompanyName?: string[] | undefined;
|
|
776
|
+
CreatedDate?: CreatedDateFilter | undefined;
|
|
759
777
|
}
|
|
760
778
|
export interface CustomerSummary {
|
|
761
779
|
Account?: AccountSummary | undefined;
|
|
@@ -910,19 +928,28 @@ export interface OpportunitySummaryView {
|
|
|
910
928
|
RelatedEntityIdentifiers?: RelatedEntityIdentifiers | undefined;
|
|
911
929
|
}
|
|
912
930
|
export type ResourceSnapshotPayload =
|
|
931
|
+
| ResourceSnapshotPayload.AwsOpportunitySummaryFullViewMember
|
|
913
932
|
| ResourceSnapshotPayload.OpportunitySummaryMember
|
|
914
933
|
| ResourceSnapshotPayload.$UnknownMember;
|
|
915
934
|
export declare namespace ResourceSnapshotPayload {
|
|
916
935
|
interface OpportunitySummaryMember {
|
|
917
936
|
OpportunitySummary: OpportunitySummaryView;
|
|
937
|
+
AwsOpportunitySummaryFullView?: never;
|
|
938
|
+
$unknown?: never;
|
|
939
|
+
}
|
|
940
|
+
interface AwsOpportunitySummaryFullViewMember {
|
|
941
|
+
OpportunitySummary?: never;
|
|
942
|
+
AwsOpportunitySummaryFullView: AwsOpportunitySummaryFullView;
|
|
918
943
|
$unknown?: never;
|
|
919
944
|
}
|
|
920
945
|
interface $UnknownMember {
|
|
921
946
|
OpportunitySummary?: never;
|
|
947
|
+
AwsOpportunitySummaryFullView?: never;
|
|
922
948
|
$unknown: [string, any];
|
|
923
949
|
}
|
|
924
950
|
interface Visitor<T> {
|
|
925
951
|
OpportunitySummary: (value: OpportunitySummaryView) => T;
|
|
952
|
+
AwsOpportunitySummaryFullView: (value: AwsOpportunitySummaryFullView) => T;
|
|
926
953
|
_: (name: string, value: any) => T;
|
|
927
954
|
}
|
|
928
955
|
}
|
|
@@ -937,6 +964,7 @@ export interface GetResourceSnapshotResponse {
|
|
|
937
964
|
ResourceSnapshotTemplateName?: string | undefined;
|
|
938
965
|
Revision?: number | undefined;
|
|
939
966
|
Payload?: ResourceSnapshotPayload | undefined;
|
|
967
|
+
TargetMemberAccounts?: string[] | undefined;
|
|
940
968
|
}
|
|
941
969
|
export interface ListEngagementResourceAssociationsRequest {
|
|
942
970
|
Catalog: string | undefined;
|
|
@@ -19,6 +19,7 @@ export declare var AwsOpportunityInsights$: StaticStructureSchema;
|
|
|
19
19
|
export declare var AwsOpportunityLifeCycle$: StaticStructureSchema;
|
|
20
20
|
export declare var AwsOpportunityProject$: StaticStructureSchema;
|
|
21
21
|
export declare var AwsOpportunityRelatedEntities$: StaticStructureSchema;
|
|
22
|
+
export declare var AwsOpportunitySummaryFullView$: StaticStructureSchema;
|
|
22
23
|
export declare var AwsProductDetails$: StaticStructureSchema;
|
|
23
24
|
export declare var AwsProductInsights$: StaticStructureSchema;
|
|
24
25
|
export declare var AwsProductOptimization$: StaticStructureSchema;
|
|
@@ -27,6 +28,7 @@ export declare var AwsSubmission$: StaticStructureSchema;
|
|
|
27
28
|
export declare var AwsTeamMember$: StaticStructureSchema;
|
|
28
29
|
export declare var ConflictException$: StaticErrorSchema;
|
|
29
30
|
export declare var Contact$: StaticStructureSchema;
|
|
31
|
+
export declare var CreatedDateFilter$: StaticStructureSchema;
|
|
30
32
|
export declare var CreateEngagementContextRequest$: StaticStructureSchema;
|
|
31
33
|
export declare var CreateEngagementContextResponse$: StaticStructureSchema;
|
|
32
34
|
export declare var CreateEngagementInvitationRequest$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-partnercentral-selling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Partnercentral Selling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.985.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-partnercentral-selling",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.7",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.6",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.7",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.985.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.5",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.22.
|
|
36
|
+
"@smithy/core": "^3.22.1",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.13",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.30",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.9",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.2",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.29",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.32",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|