@aws-sdk/client-customer-profiles 3.1029.0 → 3.1031.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 +28 -0
- package/dist-cjs/index.js +92 -4
- package/dist-cjs/schemas/schemas_0.js +148 -31
- package/dist-es/CustomerProfiles.js +10 -0
- package/dist-es/commands/CreateRecommenderSchemaCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderSchemaCommand.js +16 -0
- package/dist-es/commands/GetRecommenderSchemaCommand.js +16 -0
- package/dist-es/commands/ListRecommenderSchemasCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +28 -4
- package/dist-es/pagination/ListRecommenderSchemasPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +139 -23
- package/dist-types/CustomerProfiles.d.ts +35 -0
- package/dist-types/CustomerProfilesClient.d.ts +6 -2
- package/dist-types/commands/CreateRecommenderCommand.d.ts +6 -0
- package/dist-types/commands/CreateRecommenderFilterCommand.d.ts +1 -0
- package/dist-types/commands/CreateRecommenderSchemaCommand.d.ts +117 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +10 -0
- package/dist-types/commands/DeleteRecommenderSchemaCommand.d.ts +88 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +11 -0
- package/dist-types/commands/GetRecommenderFilterCommand.d.ts +1 -0
- package/dist-types/commands/GetRecommenderSchemaCommand.d.ts +101 -0
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +10 -0
- package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +1 -0
- package/dist-types/commands/ListRecommenderSchemasCommand.d.ts +107 -0
- package/dist-types/commands/ListRecommendersCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListUploadJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
- package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +5 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +68 -12
- package/dist-types/models/models_0.d.ts +286 -414
- package/dist-types/models/models_1.d.ts +414 -2
- package/dist-types/pagination/ListRecommenderSchemasPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +75 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateRecommenderSchemaCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderSchemaCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderSchemaCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderSchemasCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +37 -5
- package/dist-types/ts3.4/models/models_0.d.ts +71 -93
- package/dist-types/ts3.4/models/models_1.d.ts +98 -0
- package/dist-types/ts3.4/pagination/ListRecommenderSchemasPaginator.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 +16 -0
- package/package.json +33 -33
|
@@ -35,14 +35,18 @@ import {
|
|
|
35
35
|
ReadinessStatus,
|
|
36
36
|
RecommenderFilterStatus,
|
|
37
37
|
RecommenderRecipeName,
|
|
38
|
+
RecommenderSchemaStatus,
|
|
38
39
|
RecommenderStatus,
|
|
39
40
|
RuleBasedMatchingStatus,
|
|
40
41
|
S3ConnectorOperator,
|
|
41
42
|
SalesforceConnectorOperator,
|
|
42
43
|
Scope,
|
|
43
44
|
SegmentSnapshotStatus,
|
|
45
|
+
SegmentSortDataType,
|
|
46
|
+
SegmentSortOrder,
|
|
44
47
|
SegmentType,
|
|
45
48
|
ServiceNowConnectorOperator,
|
|
49
|
+
SortAttributeType,
|
|
46
50
|
SourceConnectorType,
|
|
47
51
|
StandardIdentifier,
|
|
48
52
|
Statistic,
|
|
@@ -631,6 +635,7 @@ export interface RecommenderConfig {
|
|
|
631
635
|
EventsConfig?: EventsConfig | undefined;
|
|
632
636
|
TrainingFrequency?: number | undefined;
|
|
633
637
|
InferenceConfig?: InferenceConfig | undefined;
|
|
638
|
+
IncludedColumns?: Record<string, string[]> | undefined;
|
|
634
639
|
}
|
|
635
640
|
export interface CreateRecommenderRequest {
|
|
636
641
|
DomainName: string | undefined;
|
|
@@ -638,6 +643,7 @@ export interface CreateRecommenderRequest {
|
|
|
638
643
|
RecommenderRecipeName: RecommenderRecipeName | undefined;
|
|
639
644
|
RecommenderConfig?: RecommenderConfig | undefined;
|
|
640
645
|
Description?: string | undefined;
|
|
646
|
+
RecommenderSchemaName?: string | undefined;
|
|
641
647
|
Tags?: Record<string, string> | undefined;
|
|
642
648
|
}
|
|
643
649
|
export interface CreateRecommenderResponse {
|
|
@@ -648,6 +654,7 @@ export interface CreateRecommenderFilterRequest {
|
|
|
648
654
|
DomainName: string | undefined;
|
|
649
655
|
RecommenderFilterName: string | undefined;
|
|
650
656
|
RecommenderFilterExpression: string | undefined;
|
|
657
|
+
RecommenderSchemaName?: string | undefined;
|
|
651
658
|
Description?: string | undefined;
|
|
652
659
|
Tags?: Record<string, string> | undefined;
|
|
653
660
|
}
|
|
@@ -655,6 +662,25 @@ export interface CreateRecommenderFilterResponse {
|
|
|
655
662
|
RecommenderFilterArn: string | undefined;
|
|
656
663
|
Tags?: Record<string, string> | undefined;
|
|
657
664
|
}
|
|
665
|
+
export interface RecommenderSchemaField {
|
|
666
|
+
TargetFieldName: string | undefined;
|
|
667
|
+
ContentType?: ContentType | undefined;
|
|
668
|
+
FeatureType?: FeatureType | undefined;
|
|
669
|
+
}
|
|
670
|
+
export interface CreateRecommenderSchemaRequest {
|
|
671
|
+
DomainName: string | undefined;
|
|
672
|
+
RecommenderSchemaName: string | undefined;
|
|
673
|
+
Fields: Record<string, RecommenderSchemaField[]> | undefined;
|
|
674
|
+
Tags?: Record<string, string> | undefined;
|
|
675
|
+
}
|
|
676
|
+
export interface CreateRecommenderSchemaResponse {
|
|
677
|
+
RecommenderSchemaArn: string | undefined;
|
|
678
|
+
RecommenderSchemaName: string | undefined;
|
|
679
|
+
Fields: Record<string, RecommenderSchemaField[]> | undefined;
|
|
680
|
+
CreatedAt: Date | undefined;
|
|
681
|
+
Status: RecommenderSchemaStatus | undefined;
|
|
682
|
+
Tags?: Record<string, string> | undefined;
|
|
683
|
+
}
|
|
658
684
|
export interface ExtraLengthValueProfileDimension {
|
|
659
685
|
DimensionType: StringDimensionType | undefined;
|
|
660
686
|
Values: string[] | undefined;
|
|
@@ -732,6 +758,15 @@ export interface SegmentGroup {
|
|
|
732
758
|
Groups?: Group[] | undefined;
|
|
733
759
|
Include?: IncludeOptions | undefined;
|
|
734
760
|
}
|
|
761
|
+
export interface SortAttribute {
|
|
762
|
+
Name: string | undefined;
|
|
763
|
+
DataType?: SegmentSortDataType | undefined;
|
|
764
|
+
Order: SegmentSortOrder | undefined;
|
|
765
|
+
Type?: SortAttributeType | undefined;
|
|
766
|
+
}
|
|
767
|
+
export interface SegmentSort {
|
|
768
|
+
Attributes: SortAttribute[] | undefined;
|
|
769
|
+
}
|
|
735
770
|
export interface CreateSegmentDefinitionRequest {
|
|
736
771
|
DomainName: string | undefined;
|
|
737
772
|
SegmentDefinitionName: string | undefined;
|
|
@@ -739,6 +774,7 @@ export interface CreateSegmentDefinitionRequest {
|
|
|
739
774
|
Description?: string | undefined;
|
|
740
775
|
SegmentGroups?: SegmentGroup | undefined;
|
|
741
776
|
SegmentSqlQuery?: string | undefined;
|
|
777
|
+
SegmentSort?: SegmentSort | undefined;
|
|
742
778
|
Tags?: Record<string, string> | undefined;
|
|
743
779
|
}
|
|
744
780
|
export interface CreateSegmentDefinitionResponse {
|
|
@@ -875,6 +911,11 @@ export interface DeleteRecommenderFilterRequest {
|
|
|
875
911
|
export interface DeleteRecommenderFilterResponse {
|
|
876
912
|
Message: string | undefined;
|
|
877
913
|
}
|
|
914
|
+
export interface DeleteRecommenderSchemaRequest {
|
|
915
|
+
DomainName: string | undefined;
|
|
916
|
+
RecommenderSchemaName: string | undefined;
|
|
917
|
+
}
|
|
918
|
+
export interface DeleteRecommenderSchemaResponse {}
|
|
878
919
|
export interface DeleteSegmentDefinitionRequest {
|
|
879
920
|
DomainName: string | undefined;
|
|
880
921
|
SegmentDefinitionName: string | undefined;
|
|
@@ -1221,6 +1262,7 @@ export interface TrainingMetrics {
|
|
|
1221
1262
|
export interface GetRecommenderResponse {
|
|
1222
1263
|
RecommenderName: string | undefined;
|
|
1223
1264
|
RecommenderRecipeName: RecommenderRecipeName | undefined;
|
|
1265
|
+
RecommenderSchemaName?: string | undefined;
|
|
1224
1266
|
RecommenderConfig?: RecommenderConfig | undefined;
|
|
1225
1267
|
Description?: string | undefined;
|
|
1226
1268
|
Status?: RecommenderStatus | undefined;
|
|
@@ -1238,12 +1280,23 @@ export interface GetRecommenderFilterRequest {
|
|
|
1238
1280
|
export interface GetRecommenderFilterResponse {
|
|
1239
1281
|
RecommenderFilterName: string | undefined;
|
|
1240
1282
|
RecommenderFilterExpression: string | undefined;
|
|
1283
|
+
RecommenderSchemaName?: string | undefined;
|
|
1241
1284
|
CreatedAt: Date | undefined;
|
|
1242
1285
|
Status: RecommenderFilterStatus | undefined;
|
|
1243
1286
|
Description?: string | undefined;
|
|
1244
1287
|
FailureReason?: string | undefined;
|
|
1245
1288
|
Tags: Record<string, string> | undefined;
|
|
1246
1289
|
}
|
|
1290
|
+
export interface GetRecommenderSchemaRequest {
|
|
1291
|
+
DomainName: string | undefined;
|
|
1292
|
+
RecommenderSchemaName: string | undefined;
|
|
1293
|
+
}
|
|
1294
|
+
export interface GetRecommenderSchemaResponse {
|
|
1295
|
+
RecommenderSchemaName: string | undefined;
|
|
1296
|
+
Fields: Record<string, RecommenderSchemaField[]> | undefined;
|
|
1297
|
+
CreatedAt: Date | undefined;
|
|
1298
|
+
Status: RecommenderSchemaStatus | undefined;
|
|
1299
|
+
}
|
|
1247
1300
|
export interface GetSegmentDefinitionRequest {
|
|
1248
1301
|
DomainName: string | undefined;
|
|
1249
1302
|
SegmentDefinitionName: string | undefined;
|
|
@@ -1253,6 +1306,7 @@ export interface GetSegmentDefinitionResponse {
|
|
|
1253
1306
|
DisplayName?: string | undefined;
|
|
1254
1307
|
Description?: string | undefined;
|
|
1255
1308
|
SegmentGroups?: SegmentGroup | undefined;
|
|
1309
|
+
SegmentSort?: SegmentSort | undefined;
|
|
1256
1310
|
SegmentDefinitionArn: string | undefined;
|
|
1257
1311
|
CreatedAt?: Date | undefined;
|
|
1258
1312
|
Tags?: Record<string, string> | undefined;
|
|
@@ -1669,6 +1723,7 @@ export interface ListRecommenderFiltersRequest {
|
|
|
1669
1723
|
}
|
|
1670
1724
|
export interface RecommenderFilterSummary {
|
|
1671
1725
|
RecommenderFilterName?: string | undefined;
|
|
1726
|
+
RecommenderSchemaName?: string | undefined;
|
|
1672
1727
|
RecommenderFilterExpression?: string | undefined;
|
|
1673
1728
|
CreatedAt?: Date | undefined;
|
|
1674
1729
|
Description?: string | undefined;
|
|
@@ -1700,6 +1755,7 @@ export interface ListRecommendersRequest {
|
|
|
1700
1755
|
export interface RecommenderSummary {
|
|
1701
1756
|
RecommenderName?: string | undefined;
|
|
1702
1757
|
RecipeName?: RecommenderRecipeName | undefined;
|
|
1758
|
+
RecommenderSchemaName?: string | undefined;
|
|
1703
1759
|
RecommenderConfig?: RecommenderConfig | undefined;
|
|
1704
1760
|
CreatedAt?: Date | undefined;
|
|
1705
1761
|
Description?: string | undefined;
|
|
@@ -1713,6 +1769,21 @@ export interface ListRecommendersResponse {
|
|
|
1713
1769
|
NextToken?: string | undefined;
|
|
1714
1770
|
Recommenders?: RecommenderSummary[] | undefined;
|
|
1715
1771
|
}
|
|
1772
|
+
export interface ListRecommenderSchemasRequest {
|
|
1773
|
+
DomainName: string | undefined;
|
|
1774
|
+
MaxResults?: number | undefined;
|
|
1775
|
+
NextToken?: string | undefined;
|
|
1776
|
+
}
|
|
1777
|
+
export interface RecommenderSchemaSummary {
|
|
1778
|
+
RecommenderSchemaName: string | undefined;
|
|
1779
|
+
Fields: Record<string, RecommenderSchemaField[]> | undefined;
|
|
1780
|
+
CreatedAt: Date | undefined;
|
|
1781
|
+
Status: RecommenderSchemaStatus | undefined;
|
|
1782
|
+
}
|
|
1783
|
+
export interface ListRecommenderSchemasResponse {
|
|
1784
|
+
NextToken?: string | undefined;
|
|
1785
|
+
RecommenderSchemas?: RecommenderSchemaSummary[] | undefined;
|
|
1786
|
+
}
|
|
1716
1787
|
export interface ListRuleBasedMatchesRequest {
|
|
1717
1788
|
NextToken?: string | undefined;
|
|
1718
1789
|
MaxResults?: number | undefined;
|
|
@@ -1743,96 +1814,3 @@ export interface ListSegmentDefinitionsResponse {
|
|
|
1743
1814
|
export interface ListTagsForResourceRequest {
|
|
1744
1815
|
resourceArn: string | undefined;
|
|
1745
1816
|
}
|
|
1746
|
-
export interface ListTagsForResourceResponse {
|
|
1747
|
-
tags?: Record<string, string> | undefined;
|
|
1748
|
-
}
|
|
1749
|
-
export interface ListUploadJobsRequest {
|
|
1750
|
-
DomainName: string | undefined;
|
|
1751
|
-
MaxResults?: number | undefined;
|
|
1752
|
-
NextToken?: string | undefined;
|
|
1753
|
-
}
|
|
1754
|
-
export interface UploadJobItem {
|
|
1755
|
-
JobId?: string | undefined;
|
|
1756
|
-
DisplayName?: string | undefined;
|
|
1757
|
-
Status?: UploadJobStatus | undefined;
|
|
1758
|
-
StatusReason?: StatusReason | undefined;
|
|
1759
|
-
CreatedAt?: Date | undefined;
|
|
1760
|
-
CompletedAt?: Date | undefined;
|
|
1761
|
-
DataExpiry?: number | undefined;
|
|
1762
|
-
}
|
|
1763
|
-
export interface ListUploadJobsResponse {
|
|
1764
|
-
NextToken?: string | undefined;
|
|
1765
|
-
Items?: UploadJobItem[] | undefined;
|
|
1766
|
-
}
|
|
1767
|
-
export interface ListWorkflowsRequest {
|
|
1768
|
-
DomainName: string | undefined;
|
|
1769
|
-
WorkflowType?: WorkflowType | undefined;
|
|
1770
|
-
Status?: Status | undefined;
|
|
1771
|
-
QueryStartDate?: Date | undefined;
|
|
1772
|
-
QueryEndDate?: Date | undefined;
|
|
1773
|
-
NextToken?: string | undefined;
|
|
1774
|
-
MaxResults?: number | undefined;
|
|
1775
|
-
}
|
|
1776
|
-
export interface ListWorkflowsItem {
|
|
1777
|
-
WorkflowType: WorkflowType | undefined;
|
|
1778
|
-
WorkflowId: string | undefined;
|
|
1779
|
-
Status: Status | undefined;
|
|
1780
|
-
StatusDescription: string | undefined;
|
|
1781
|
-
CreatedAt: Date | undefined;
|
|
1782
|
-
LastUpdatedAt: Date | undefined;
|
|
1783
|
-
}
|
|
1784
|
-
export interface ListWorkflowsResponse {
|
|
1785
|
-
Items?: ListWorkflowsItem[] | undefined;
|
|
1786
|
-
NextToken?: string | undefined;
|
|
1787
|
-
}
|
|
1788
|
-
export interface FieldSourceProfileIds {
|
|
1789
|
-
AccountNumber?: string | undefined;
|
|
1790
|
-
AdditionalInformation?: string | undefined;
|
|
1791
|
-
PartyType?: string | undefined;
|
|
1792
|
-
BusinessName?: string | undefined;
|
|
1793
|
-
FirstName?: string | undefined;
|
|
1794
|
-
MiddleName?: string | undefined;
|
|
1795
|
-
LastName?: string | undefined;
|
|
1796
|
-
BirthDate?: string | undefined;
|
|
1797
|
-
Gender?: string | undefined;
|
|
1798
|
-
PhoneNumber?: string | undefined;
|
|
1799
|
-
MobilePhoneNumber?: string | undefined;
|
|
1800
|
-
HomePhoneNumber?: string | undefined;
|
|
1801
|
-
BusinessPhoneNumber?: string | undefined;
|
|
1802
|
-
EmailAddress?: string | undefined;
|
|
1803
|
-
PersonalEmailAddress?: string | undefined;
|
|
1804
|
-
BusinessEmailAddress?: string | undefined;
|
|
1805
|
-
Address?: string | undefined;
|
|
1806
|
-
ShippingAddress?: string | undefined;
|
|
1807
|
-
MailingAddress?: string | undefined;
|
|
1808
|
-
BillingAddress?: string | undefined;
|
|
1809
|
-
Attributes?: Record<string, string> | undefined;
|
|
1810
|
-
ProfileType?: string | undefined;
|
|
1811
|
-
EngagementPreferences?: string | undefined;
|
|
1812
|
-
}
|
|
1813
|
-
export interface MergeProfilesRequest {
|
|
1814
|
-
DomainName: string | undefined;
|
|
1815
|
-
MainProfileId: string | undefined;
|
|
1816
|
-
ProfileIdsToBeMerged: string[] | undefined;
|
|
1817
|
-
FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
|
|
1818
|
-
}
|
|
1819
|
-
export interface MergeProfilesResponse {
|
|
1820
|
-
Message?: string | undefined;
|
|
1821
|
-
}
|
|
1822
|
-
export interface PutDomainObjectTypeRequest {
|
|
1823
|
-
DomainName: string | undefined;
|
|
1824
|
-
ObjectTypeName: string | undefined;
|
|
1825
|
-
Description?: string | undefined;
|
|
1826
|
-
EncryptionKey?: string | undefined;
|
|
1827
|
-
Fields: Record<string, DomainObjectTypeField> | undefined;
|
|
1828
|
-
Tags?: Record<string, string> | undefined;
|
|
1829
|
-
}
|
|
1830
|
-
export interface PutDomainObjectTypeResponse {
|
|
1831
|
-
ObjectTypeName?: string | undefined;
|
|
1832
|
-
Description?: string | undefined;
|
|
1833
|
-
EncryptionKey?: string | undefined;
|
|
1834
|
-
Fields?: Record<string, DomainObjectTypeField> | undefined;
|
|
1835
|
-
CreatedAt?: Date | undefined;
|
|
1836
|
-
LastUpdatedAt?: Date | undefined;
|
|
1837
|
-
Tags?: Record<string, string> | undefined;
|
|
1838
|
-
}
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
ReadinessStatus,
|
|
8
8
|
Scope,
|
|
9
9
|
Statistic,
|
|
10
|
+
Status,
|
|
11
|
+
StatusReason,
|
|
12
|
+
UploadJobStatus,
|
|
13
|
+
WorkflowType,
|
|
10
14
|
} from "./enums";
|
|
11
15
|
import {
|
|
12
16
|
AdditionalSearchKey,
|
|
@@ -14,6 +18,7 @@ import {
|
|
|
14
18
|
Conditions,
|
|
15
19
|
DataStoreRequest,
|
|
16
20
|
DataStoreResponse,
|
|
21
|
+
DomainObjectTypeField,
|
|
17
22
|
EngagementPreferences,
|
|
18
23
|
EventTriggerCondition,
|
|
19
24
|
EventTriggerLimits,
|
|
@@ -28,6 +33,99 @@ import {
|
|
|
28
33
|
RuleBasedMatchingRequest,
|
|
29
34
|
RuleBasedMatchingResponse,
|
|
30
35
|
} from "./models_0";
|
|
36
|
+
export interface ListTagsForResourceResponse {
|
|
37
|
+
tags?: Record<string, string> | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface ListUploadJobsRequest {
|
|
40
|
+
DomainName: string | undefined;
|
|
41
|
+
MaxResults?: number | undefined;
|
|
42
|
+
NextToken?: string | undefined;
|
|
43
|
+
}
|
|
44
|
+
export interface UploadJobItem {
|
|
45
|
+
JobId?: string | undefined;
|
|
46
|
+
DisplayName?: string | undefined;
|
|
47
|
+
Status?: UploadJobStatus | undefined;
|
|
48
|
+
StatusReason?: StatusReason | undefined;
|
|
49
|
+
CreatedAt?: Date | undefined;
|
|
50
|
+
CompletedAt?: Date | undefined;
|
|
51
|
+
DataExpiry?: number | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface ListUploadJobsResponse {
|
|
54
|
+
NextToken?: string | undefined;
|
|
55
|
+
Items?: UploadJobItem[] | undefined;
|
|
56
|
+
}
|
|
57
|
+
export interface ListWorkflowsRequest {
|
|
58
|
+
DomainName: string | undefined;
|
|
59
|
+
WorkflowType?: WorkflowType | undefined;
|
|
60
|
+
Status?: Status | undefined;
|
|
61
|
+
QueryStartDate?: Date | undefined;
|
|
62
|
+
QueryEndDate?: Date | undefined;
|
|
63
|
+
NextToken?: string | undefined;
|
|
64
|
+
MaxResults?: number | undefined;
|
|
65
|
+
}
|
|
66
|
+
export interface ListWorkflowsItem {
|
|
67
|
+
WorkflowType: WorkflowType | undefined;
|
|
68
|
+
WorkflowId: string | undefined;
|
|
69
|
+
Status: Status | undefined;
|
|
70
|
+
StatusDescription: string | undefined;
|
|
71
|
+
CreatedAt: Date | undefined;
|
|
72
|
+
LastUpdatedAt: Date | undefined;
|
|
73
|
+
}
|
|
74
|
+
export interface ListWorkflowsResponse {
|
|
75
|
+
Items?: ListWorkflowsItem[] | undefined;
|
|
76
|
+
NextToken?: string | undefined;
|
|
77
|
+
}
|
|
78
|
+
export interface FieldSourceProfileIds {
|
|
79
|
+
AccountNumber?: string | undefined;
|
|
80
|
+
AdditionalInformation?: string | undefined;
|
|
81
|
+
PartyType?: string | undefined;
|
|
82
|
+
BusinessName?: string | undefined;
|
|
83
|
+
FirstName?: string | undefined;
|
|
84
|
+
MiddleName?: string | undefined;
|
|
85
|
+
LastName?: string | undefined;
|
|
86
|
+
BirthDate?: string | undefined;
|
|
87
|
+
Gender?: string | undefined;
|
|
88
|
+
PhoneNumber?: string | undefined;
|
|
89
|
+
MobilePhoneNumber?: string | undefined;
|
|
90
|
+
HomePhoneNumber?: string | undefined;
|
|
91
|
+
BusinessPhoneNumber?: string | undefined;
|
|
92
|
+
EmailAddress?: string | undefined;
|
|
93
|
+
PersonalEmailAddress?: string | undefined;
|
|
94
|
+
BusinessEmailAddress?: string | undefined;
|
|
95
|
+
Address?: string | undefined;
|
|
96
|
+
ShippingAddress?: string | undefined;
|
|
97
|
+
MailingAddress?: string | undefined;
|
|
98
|
+
BillingAddress?: string | undefined;
|
|
99
|
+
Attributes?: Record<string, string> | undefined;
|
|
100
|
+
ProfileType?: string | undefined;
|
|
101
|
+
EngagementPreferences?: string | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface MergeProfilesRequest {
|
|
104
|
+
DomainName: string | undefined;
|
|
105
|
+
MainProfileId: string | undefined;
|
|
106
|
+
ProfileIdsToBeMerged: string[] | undefined;
|
|
107
|
+
FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface MergeProfilesResponse {
|
|
110
|
+
Message?: string | undefined;
|
|
111
|
+
}
|
|
112
|
+
export interface PutDomainObjectTypeRequest {
|
|
113
|
+
DomainName: string | undefined;
|
|
114
|
+
ObjectTypeName: string | undefined;
|
|
115
|
+
Description?: string | undefined;
|
|
116
|
+
EncryptionKey?: string | undefined;
|
|
117
|
+
Fields: Record<string, DomainObjectTypeField> | undefined;
|
|
118
|
+
Tags?: Record<string, string> | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface PutDomainObjectTypeResponse {
|
|
121
|
+
ObjectTypeName?: string | undefined;
|
|
122
|
+
Description?: string | undefined;
|
|
123
|
+
EncryptionKey?: string | undefined;
|
|
124
|
+
Fields?: Record<string, DomainObjectTypeField> | undefined;
|
|
125
|
+
CreatedAt?: Date | undefined;
|
|
126
|
+
LastUpdatedAt?: Date | undefined;
|
|
127
|
+
Tags?: Record<string, string> | undefined;
|
|
128
|
+
}
|
|
31
129
|
export interface PutIntegrationRequest {
|
|
32
130
|
DomainName: string | undefined;
|
|
33
131
|
Uri?: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecommenderSchemasCommandInput,
|
|
4
|
+
ListRecommenderSchemasCommandOutput,
|
|
5
|
+
} from "../commands/ListRecommenderSchemasCommand";
|
|
6
|
+
import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRecommenderSchemas: (
|
|
8
|
+
config: CustomerProfilesPaginationConfiguration,
|
|
9
|
+
input: ListRecommenderSchemasCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRecommenderSchemasCommandOutput>;
|
|
@@ -8,6 +8,7 @@ export * from "./ListObjectTypeAttributesPaginator";
|
|
|
8
8
|
export * from "./ListRecommenderFiltersPaginator";
|
|
9
9
|
export * from "./ListRecommenderRecipesPaginator";
|
|
10
10
|
export * from "./ListRecommendersPaginator";
|
|
11
|
+
export * from "./ListRecommenderSchemasPaginator";
|
|
11
12
|
export * from "./ListRuleBasedMatchesPaginator";
|
|
12
13
|
export * from "./ListSegmentDefinitionsPaginator";
|
|
13
14
|
export * from "./ListUploadJobsPaginator";
|
|
@@ -61,6 +61,8 @@ export declare var CreateRecommenderFilterRequest$: StaticStructureSchema;
|
|
|
61
61
|
export declare var CreateRecommenderFilterResponse$: StaticStructureSchema;
|
|
62
62
|
export declare var CreateRecommenderRequest$: StaticStructureSchema;
|
|
63
63
|
export declare var CreateRecommenderResponse$: StaticStructureSchema;
|
|
64
|
+
export declare var CreateRecommenderSchemaRequest$: StaticStructureSchema;
|
|
65
|
+
export declare var CreateRecommenderSchemaResponse$: StaticStructureSchema;
|
|
64
66
|
export declare var CreateSegmentDefinitionRequest$: StaticStructureSchema;
|
|
65
67
|
export declare var CreateSegmentDefinitionResponse$: StaticStructureSchema;
|
|
66
68
|
export declare var CreateSegmentEstimateRequest$: StaticStructureSchema;
|
|
@@ -98,6 +100,8 @@ export declare var DeleteRecommenderFilterRequest$: StaticStructureSchema;
|
|
|
98
100
|
export declare var DeleteRecommenderFilterResponse$: StaticStructureSchema;
|
|
99
101
|
export declare var DeleteRecommenderRequest$: StaticStructureSchema;
|
|
100
102
|
export declare var DeleteRecommenderResponse$: StaticStructureSchema;
|
|
103
|
+
export declare var DeleteRecommenderSchemaRequest$: StaticStructureSchema;
|
|
104
|
+
export declare var DeleteRecommenderSchemaResponse$: StaticStructureSchema;
|
|
101
105
|
export declare var DeleteSegmentDefinitionRequest$: StaticStructureSchema;
|
|
102
106
|
export declare var DeleteSegmentDefinitionResponse$: StaticStructureSchema;
|
|
103
107
|
export declare var DeleteWorkflowRequest$: StaticStructureSchema;
|
|
@@ -166,6 +170,8 @@ export declare var GetRecommenderFilterRequest$: StaticStructureSchema;
|
|
|
166
170
|
export declare var GetRecommenderFilterResponse$: StaticStructureSchema;
|
|
167
171
|
export declare var GetRecommenderRequest$: StaticStructureSchema;
|
|
168
172
|
export declare var GetRecommenderResponse$: StaticStructureSchema;
|
|
173
|
+
export declare var GetRecommenderSchemaRequest$: StaticStructureSchema;
|
|
174
|
+
export declare var GetRecommenderSchemaResponse$: StaticStructureSchema;
|
|
169
175
|
export declare var GetSegmentDefinitionRequest$: StaticStructureSchema;
|
|
170
176
|
export declare var GetSegmentDefinitionResponse$: StaticStructureSchema;
|
|
171
177
|
export declare var GetSegmentEstimateRequest$: StaticStructureSchema;
|
|
@@ -237,6 +243,8 @@ export declare var ListRecommenderFiltersRequest$: StaticStructureSchema;
|
|
|
237
243
|
export declare var ListRecommenderFiltersResponse$: StaticStructureSchema;
|
|
238
244
|
export declare var ListRecommenderRecipesRequest$: StaticStructureSchema;
|
|
239
245
|
export declare var ListRecommenderRecipesResponse$: StaticStructureSchema;
|
|
246
|
+
export declare var ListRecommenderSchemasRequest$: StaticStructureSchema;
|
|
247
|
+
export declare var ListRecommenderSchemasResponse$: StaticStructureSchema;
|
|
240
248
|
export declare var ListRecommendersRequest$: StaticStructureSchema;
|
|
241
249
|
export declare var ListRecommendersResponse$: StaticStructureSchema;
|
|
242
250
|
export declare var ListRuleBasedMatchesRequest$: StaticStructureSchema;
|
|
@@ -289,6 +297,8 @@ export declare var RecommenderFilter$: StaticStructureSchema;
|
|
|
289
297
|
export declare var RecommenderFilterSummary$: StaticStructureSchema;
|
|
290
298
|
export declare var RecommenderPromotionalFilter$: StaticStructureSchema;
|
|
291
299
|
export declare var RecommenderRecipe$: StaticStructureSchema;
|
|
300
|
+
export declare var RecommenderSchemaField$: StaticStructureSchema;
|
|
301
|
+
export declare var RecommenderSchemaSummary$: StaticStructureSchema;
|
|
292
302
|
export declare var RecommenderSummary$: StaticStructureSchema;
|
|
293
303
|
export declare var RecommenderUpdate$: StaticStructureSchema;
|
|
294
304
|
export declare var ResultsSummary$: StaticStructureSchema;
|
|
@@ -304,7 +314,9 @@ export declare var SearchProfilesResponse$: StaticStructureSchema;
|
|
|
304
314
|
export declare var SegmentDefinitionItem$: StaticStructureSchema;
|
|
305
315
|
export declare var SegmentGroup$: StaticStructureSchema;
|
|
306
316
|
export declare var SegmentGroupStructure$: StaticStructureSchema;
|
|
317
|
+
export declare var SegmentSort$: StaticStructureSchema;
|
|
307
318
|
export declare var ServiceNowSourceProperties$: StaticStructureSchema;
|
|
319
|
+
export declare var SortAttribute$: StaticStructureSchema;
|
|
308
320
|
export declare var SourceConnectorProperties$: StaticStructureSchema;
|
|
309
321
|
export declare var SourceFlowConfig$: StaticStructureSchema;
|
|
310
322
|
export declare var SourceSegment$: StaticStructureSchema;
|
|
@@ -357,6 +369,7 @@ export declare var CreateIntegrationWorkflow$: StaticOperationSchema;
|
|
|
357
369
|
export declare var CreateProfile$: StaticOperationSchema;
|
|
358
370
|
export declare var CreateRecommender$: StaticOperationSchema;
|
|
359
371
|
export declare var CreateRecommenderFilter$: StaticOperationSchema;
|
|
372
|
+
export declare var CreateRecommenderSchema$: StaticOperationSchema;
|
|
360
373
|
export declare var CreateSegmentDefinition$: StaticOperationSchema;
|
|
361
374
|
export declare var CreateSegmentEstimate$: StaticOperationSchema;
|
|
362
375
|
export declare var CreateSegmentSnapshot$: StaticOperationSchema;
|
|
@@ -374,6 +387,7 @@ export declare var DeleteProfileObject$: StaticOperationSchema;
|
|
|
374
387
|
export declare var DeleteProfileObjectType$: StaticOperationSchema;
|
|
375
388
|
export declare var DeleteRecommender$: StaticOperationSchema;
|
|
376
389
|
export declare var DeleteRecommenderFilter$: StaticOperationSchema;
|
|
390
|
+
export declare var DeleteRecommenderSchema$: StaticOperationSchema;
|
|
377
391
|
export declare var DeleteSegmentDefinition$: StaticOperationSchema;
|
|
378
392
|
export declare var DeleteWorkflow$: StaticOperationSchema;
|
|
379
393
|
export declare var DetectProfileObjectType$: StaticOperationSchema;
|
|
@@ -395,6 +409,7 @@ export declare var GetProfileObjectTypeTemplate$: StaticOperationSchema;
|
|
|
395
409
|
export declare var GetProfileRecommendations$: StaticOperationSchema;
|
|
396
410
|
export declare var GetRecommender$: StaticOperationSchema;
|
|
397
411
|
export declare var GetRecommenderFilter$: StaticOperationSchema;
|
|
412
|
+
export declare var GetRecommenderSchema$: StaticOperationSchema;
|
|
398
413
|
export declare var GetSegmentDefinition$: StaticOperationSchema;
|
|
399
414
|
export declare var GetSegmentEstimate$: StaticOperationSchema;
|
|
400
415
|
export declare var GetSegmentMembership$: StaticOperationSchema;
|
|
@@ -424,6 +439,7 @@ export declare var ListProfileObjectTypeTemplates$: StaticOperationSchema;
|
|
|
424
439
|
export declare var ListRecommenderFilters$: StaticOperationSchema;
|
|
425
440
|
export declare var ListRecommenderRecipes$: StaticOperationSchema;
|
|
426
441
|
export declare var ListRecommenders$: StaticOperationSchema;
|
|
442
|
+
export declare var ListRecommenderSchemas$: StaticOperationSchema;
|
|
427
443
|
export declare var ListRuleBasedMatches$: StaticOperationSchema;
|
|
428
444
|
export declare var ListSegmentDefinitions$: StaticOperationSchema;
|
|
429
445
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-customer-profiles",
|
|
3
3
|
"description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1031.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-customer-profiles",
|
|
@@ -21,41 +21,41 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
-
"@smithy/types": "^4.14.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "^3.974.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.31",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.30",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.12",
|
|
31
|
+
"@aws-sdk/types": "^3.973.8",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.7",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.16",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.16",
|
|
36
|
+
"@smithy/core": "^3.23.15",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.17",
|
|
38
|
+
"@smithy/hash-node": "^4.2.14",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.30",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.3",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.18",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.14",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.14",
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.3",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.14",
|
|
48
|
+
"@smithy/smithy-client": "^4.12.11",
|
|
49
|
+
"@smithy/types": "^4.14.1",
|
|
50
|
+
"@smithy/url-parser": "^4.2.14",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.47",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.52",
|
|
56
|
+
"@smithy/util-endpoints": "^3.4.1",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
+
"@smithy/util-retry": "^4.3.2",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|