@aws-sdk/client-customer-profiles 3.1006.0 → 3.1007.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 +69 -0
- package/dist-cjs/schemas/schemas_0.js +144 -14
- package/dist-es/CustomerProfiles.js +10 -0
- package/dist-es/commands/CreateRecommenderFilterCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderFilterCommand.js +16 -0
- package/dist-es/commands/GetRecommenderFilterCommand.js +16 -0
- package/dist-es/commands/ListRecommenderFiltersCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +8 -0
- package/dist-es/pagination/ListRecommenderFiltersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +136 -6
- package/dist-types/CustomerProfiles.d.ts +35 -0
- package/dist-types/CustomerProfilesClient.d.ts +6 -2
- package/dist-types/commands/CreateRecommenderCommand.d.ts +5 -1
- package/dist-types/commands/CreateRecommenderFilterCommand.d.ts +98 -0
- package/dist-types/commands/DeleteRecommenderFilterCommand.d.ts +90 -0
- package/dist-types/commands/GetProfileRecommendationsCommand.d.ts +26 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +9 -1
- package/dist-types/commands/GetRecommenderFilterCommand.d.ts +98 -0
- package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +104 -0
- package/dist-types/commands/ListRecommenderRecipesCommand.d.ts +1 -1
- package/dist-types/commands/ListRecommendersCommand.d.ts +9 -1
- package/dist-types/commands/PutIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/PutProfileObjectCommand.d.ts +1 -1
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/SearchProfilesCommand.d.ts +1 -1
- package/dist-types/commands/StartRecommenderCommand.d.ts +1 -1
- package/dist-types/commands/StartUploadJobCommand.d.ts +1 -1
- package/dist-types/commands/StopRecommenderCommand.d.ts +1 -2
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +16 -0
- package/dist-types/models/models_0.d.ts +297 -465
- package/dist-types/models/models_1.d.ts +465 -2
- package/dist-types/pagination/ListRecommenderFiltersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +17 -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/CreateRecommenderFilterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderFilterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderFilterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderFiltersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutIntegrationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutProfileObjectCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartRecommenderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartUploadJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopRecommenderCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +73 -94
- package/dist-types/ts3.4/models/models_1.d.ts +99 -0
- package/dist-types/ts3.4/pagination/ListRecommenderFiltersPaginator.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 +17 -0
- package/package.json +1 -1
|
@@ -22,7 +22,6 @@ import {
|
|
|
22
22
|
IncludeOptions,
|
|
23
23
|
JobScheduleDayOfTheWeek,
|
|
24
24
|
LayoutType,
|
|
25
|
-
LogicalOperator,
|
|
26
25
|
MarketoConnectorOperator,
|
|
27
26
|
MatchType,
|
|
28
27
|
Operator,
|
|
@@ -34,6 +33,7 @@ import {
|
|
|
34
33
|
QueryResult,
|
|
35
34
|
RangeUnit,
|
|
36
35
|
ReadinessStatus,
|
|
36
|
+
RecommenderFilterStatus,
|
|
37
37
|
RecommenderRecipeName,
|
|
38
38
|
RecommenderStatus,
|
|
39
39
|
RuleBasedMatchingStatus,
|
|
@@ -619,13 +619,18 @@ export interface CreateProfileResponse {
|
|
|
619
619
|
export interface EventParameters {
|
|
620
620
|
EventType: string | undefined;
|
|
621
621
|
EventValueThreshold?: number | undefined;
|
|
622
|
+
EventWeight?: number | undefined;
|
|
622
623
|
}
|
|
623
624
|
export interface EventsConfig {
|
|
624
625
|
EventParametersList: EventParameters[] | undefined;
|
|
625
626
|
}
|
|
627
|
+
export interface InferenceConfig {
|
|
628
|
+
MinProvisionedTPS?: number | undefined;
|
|
629
|
+
}
|
|
626
630
|
export interface RecommenderConfig {
|
|
627
|
-
EventsConfig
|
|
631
|
+
EventsConfig?: EventsConfig | undefined;
|
|
628
632
|
TrainingFrequency?: number | undefined;
|
|
633
|
+
InferenceConfig?: InferenceConfig | undefined;
|
|
629
634
|
}
|
|
630
635
|
export interface CreateRecommenderRequest {
|
|
631
636
|
DomainName: string | undefined;
|
|
@@ -639,6 +644,17 @@ export interface CreateRecommenderResponse {
|
|
|
639
644
|
RecommenderArn: string | undefined;
|
|
640
645
|
Tags?: Record<string, string> | undefined;
|
|
641
646
|
}
|
|
647
|
+
export interface CreateRecommenderFilterRequest {
|
|
648
|
+
DomainName: string | undefined;
|
|
649
|
+
RecommenderFilterName: string | undefined;
|
|
650
|
+
RecommenderFilterExpression: string | undefined;
|
|
651
|
+
Description?: string | undefined;
|
|
652
|
+
Tags?: Record<string, string> | undefined;
|
|
653
|
+
}
|
|
654
|
+
export interface CreateRecommenderFilterResponse {
|
|
655
|
+
RecommenderFilterArn: string | undefined;
|
|
656
|
+
Tags?: Record<string, string> | undefined;
|
|
657
|
+
}
|
|
642
658
|
export interface ExtraLengthValueProfileDimension {
|
|
643
659
|
DimensionType: StringDimensionType | undefined;
|
|
644
660
|
Values: string[] | undefined;
|
|
@@ -852,6 +868,13 @@ export interface DeleteRecommenderRequest {
|
|
|
852
868
|
RecommenderName: string | undefined;
|
|
853
869
|
}
|
|
854
870
|
export interface DeleteRecommenderResponse {}
|
|
871
|
+
export interface DeleteRecommenderFilterRequest {
|
|
872
|
+
DomainName: string | undefined;
|
|
873
|
+
RecommenderFilterName: string | undefined;
|
|
874
|
+
}
|
|
875
|
+
export interface DeleteRecommenderFilterResponse {
|
|
876
|
+
Message: string | undefined;
|
|
877
|
+
}
|
|
855
878
|
export interface DeleteSegmentDefinitionRequest {
|
|
856
879
|
DomainName: string | undefined;
|
|
857
880
|
SegmentDefinitionName: string | undefined;
|
|
@@ -1148,12 +1171,29 @@ export interface GetProfileObjectTypeTemplateResponse {
|
|
|
1148
1171
|
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
1149
1172
|
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
1150
1173
|
}
|
|
1174
|
+
export interface MetadataConfig {
|
|
1175
|
+
MetadataColumns?: string[] | undefined;
|
|
1176
|
+
}
|
|
1177
|
+
export interface RecommenderFilter {
|
|
1178
|
+
Name?: string | undefined;
|
|
1179
|
+
Values?: Record<string, string> | undefined;
|
|
1180
|
+
}
|
|
1181
|
+
export interface RecommenderPromotionalFilter {
|
|
1182
|
+
Name?: string | undefined;
|
|
1183
|
+
Values?: Record<string, string> | undefined;
|
|
1184
|
+
PromotionName?: string | undefined;
|
|
1185
|
+
PercentPromotedItems?: number | undefined;
|
|
1186
|
+
}
|
|
1151
1187
|
export interface GetProfileRecommendationsRequest {
|
|
1152
1188
|
DomainName: string | undefined;
|
|
1153
1189
|
ProfileId: string | undefined;
|
|
1154
1190
|
RecommenderName: string | undefined;
|
|
1155
1191
|
Context?: Record<string, string> | undefined;
|
|
1192
|
+
RecommenderFilters?: RecommenderFilter[] | undefined;
|
|
1193
|
+
RecommenderPromotionalFilters?: RecommenderPromotionalFilter[] | undefined;
|
|
1194
|
+
CandidateIds?: string[] | undefined;
|
|
1156
1195
|
MaxResults?: number | undefined;
|
|
1196
|
+
MetadataConfig?: MetadataConfig | undefined;
|
|
1157
1197
|
}
|
|
1158
1198
|
export interface Recommendation {
|
|
1159
1199
|
CatalogItem?: CatalogItem | undefined;
|
|
@@ -1191,6 +1231,19 @@ export interface GetRecommenderResponse {
|
|
|
1191
1231
|
TrainingMetrics?: TrainingMetrics[] | undefined;
|
|
1192
1232
|
Tags?: Record<string, string> | undefined;
|
|
1193
1233
|
}
|
|
1234
|
+
export interface GetRecommenderFilterRequest {
|
|
1235
|
+
DomainName: string | undefined;
|
|
1236
|
+
RecommenderFilterName: string | undefined;
|
|
1237
|
+
}
|
|
1238
|
+
export interface GetRecommenderFilterResponse {
|
|
1239
|
+
RecommenderFilterName: string | undefined;
|
|
1240
|
+
RecommenderFilterExpression: string | undefined;
|
|
1241
|
+
CreatedAt: Date | undefined;
|
|
1242
|
+
Status: RecommenderFilterStatus | undefined;
|
|
1243
|
+
Description?: string | undefined;
|
|
1244
|
+
FailureReason?: string | undefined;
|
|
1245
|
+
Tags: Record<string, string> | undefined;
|
|
1246
|
+
}
|
|
1194
1247
|
export interface GetSegmentDefinitionRequest {
|
|
1195
1248
|
DomainName: string | undefined;
|
|
1196
1249
|
SegmentDefinitionName: string | undefined;
|
|
@@ -1609,6 +1662,24 @@ export interface ListProfileObjectTypeTemplatesResponse {
|
|
|
1609
1662
|
Items?: ListProfileObjectTypeTemplateItem[] | undefined;
|
|
1610
1663
|
NextToken?: string | undefined;
|
|
1611
1664
|
}
|
|
1665
|
+
export interface ListRecommenderFiltersRequest {
|
|
1666
|
+
DomainName: string | undefined;
|
|
1667
|
+
MaxResults?: number | undefined;
|
|
1668
|
+
NextToken?: string | undefined;
|
|
1669
|
+
}
|
|
1670
|
+
export interface RecommenderFilterSummary {
|
|
1671
|
+
RecommenderFilterName?: string | undefined;
|
|
1672
|
+
RecommenderFilterExpression?: string | undefined;
|
|
1673
|
+
CreatedAt?: Date | undefined;
|
|
1674
|
+
Description?: string | undefined;
|
|
1675
|
+
Status?: RecommenderFilterStatus | undefined;
|
|
1676
|
+
FailureReason?: string | undefined;
|
|
1677
|
+
Tags?: Record<string, string> | undefined;
|
|
1678
|
+
}
|
|
1679
|
+
export interface ListRecommenderFiltersResponse {
|
|
1680
|
+
NextToken?: string | undefined;
|
|
1681
|
+
RecommenderFilters?: RecommenderFilterSummary[] | undefined;
|
|
1682
|
+
}
|
|
1612
1683
|
export interface ListRecommenderRecipesRequest {
|
|
1613
1684
|
MaxResults?: number | undefined;
|
|
1614
1685
|
NextToken?: string | undefined;
|
|
@@ -1765,95 +1836,3 @@ export interface PutDomainObjectTypeResponse {
|
|
|
1765
1836
|
LastUpdatedAt?: Date | undefined;
|
|
1766
1837
|
Tags?: Record<string, string> | undefined;
|
|
1767
1838
|
}
|
|
1768
|
-
export interface PutIntegrationRequest {
|
|
1769
|
-
DomainName: string | undefined;
|
|
1770
|
-
Uri?: string | undefined;
|
|
1771
|
-
ObjectTypeName?: string | undefined;
|
|
1772
|
-
ObjectTypeNames?: Record<string, string> | undefined;
|
|
1773
|
-
Tags?: Record<string, string> | undefined;
|
|
1774
|
-
FlowDefinition?: FlowDefinition | undefined;
|
|
1775
|
-
RoleArn?: string | undefined;
|
|
1776
|
-
EventTriggerNames?: string[] | undefined;
|
|
1777
|
-
Scope?: Scope | undefined;
|
|
1778
|
-
}
|
|
1779
|
-
export interface PutIntegrationResponse {
|
|
1780
|
-
DomainName: string | undefined;
|
|
1781
|
-
Uri: string | undefined;
|
|
1782
|
-
ObjectTypeName?: string | undefined;
|
|
1783
|
-
CreatedAt: Date | undefined;
|
|
1784
|
-
LastUpdatedAt: Date | undefined;
|
|
1785
|
-
Tags?: Record<string, string> | undefined;
|
|
1786
|
-
ObjectTypeNames?: Record<string, string> | undefined;
|
|
1787
|
-
WorkflowId?: string | undefined;
|
|
1788
|
-
IsUnstructured?: boolean | undefined;
|
|
1789
|
-
RoleArn?: string | undefined;
|
|
1790
|
-
EventTriggerNames?: string[] | undefined;
|
|
1791
|
-
Scope?: Scope | undefined;
|
|
1792
|
-
}
|
|
1793
|
-
export interface PutProfileObjectRequest {
|
|
1794
|
-
ObjectTypeName: string | undefined;
|
|
1795
|
-
Object: string | undefined;
|
|
1796
|
-
DomainName: string | undefined;
|
|
1797
|
-
}
|
|
1798
|
-
export interface PutProfileObjectResponse {
|
|
1799
|
-
ProfileObjectUniqueKey?: string | undefined;
|
|
1800
|
-
}
|
|
1801
|
-
export interface PutProfileObjectTypeRequest {
|
|
1802
|
-
DomainName: string | undefined;
|
|
1803
|
-
ObjectTypeName: string | undefined;
|
|
1804
|
-
Description: string | undefined;
|
|
1805
|
-
TemplateId?: string | undefined;
|
|
1806
|
-
ExpirationDays?: number | undefined;
|
|
1807
|
-
EncryptionKey?: string | undefined;
|
|
1808
|
-
AllowProfileCreation?: boolean | undefined;
|
|
1809
|
-
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
1810
|
-
MaxProfileObjectCount?: number | undefined;
|
|
1811
|
-
SourcePriority?: number | undefined;
|
|
1812
|
-
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
1813
|
-
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
1814
|
-
Tags?: Record<string, string> | undefined;
|
|
1815
|
-
}
|
|
1816
|
-
export interface PutProfileObjectTypeResponse {
|
|
1817
|
-
ObjectTypeName: string | undefined;
|
|
1818
|
-
Description: string | undefined;
|
|
1819
|
-
TemplateId?: string | undefined;
|
|
1820
|
-
ExpirationDays?: number | undefined;
|
|
1821
|
-
EncryptionKey?: string | undefined;
|
|
1822
|
-
AllowProfileCreation?: boolean | undefined;
|
|
1823
|
-
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
1824
|
-
MaxProfileObjectCount?: number | undefined;
|
|
1825
|
-
MaxAvailableProfileObjectCount?: number | undefined;
|
|
1826
|
-
SourcePriority?: number | undefined;
|
|
1827
|
-
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
1828
|
-
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
1829
|
-
CreatedAt?: Date | undefined;
|
|
1830
|
-
LastUpdatedAt?: Date | undefined;
|
|
1831
|
-
Tags?: Record<string, string> | undefined;
|
|
1832
|
-
}
|
|
1833
|
-
export interface SearchProfilesRequest {
|
|
1834
|
-
NextToken?: string | undefined;
|
|
1835
|
-
MaxResults?: number | undefined;
|
|
1836
|
-
DomainName: string | undefined;
|
|
1837
|
-
KeyName: string | undefined;
|
|
1838
|
-
Values: string[] | undefined;
|
|
1839
|
-
AdditionalSearchKeys?: AdditionalSearchKey[] | undefined;
|
|
1840
|
-
LogicalOperator?: LogicalOperator | undefined;
|
|
1841
|
-
}
|
|
1842
|
-
export interface SearchProfilesResponse {
|
|
1843
|
-
Items?: Profile[] | undefined;
|
|
1844
|
-
NextToken?: string | undefined;
|
|
1845
|
-
}
|
|
1846
|
-
export interface StartRecommenderRequest {
|
|
1847
|
-
DomainName: string | undefined;
|
|
1848
|
-
RecommenderName: string | undefined;
|
|
1849
|
-
}
|
|
1850
|
-
export interface StartRecommenderResponse {}
|
|
1851
|
-
export interface StartUploadJobRequest {
|
|
1852
|
-
DomainName: string | undefined;
|
|
1853
|
-
JobId: string | undefined;
|
|
1854
|
-
}
|
|
1855
|
-
export interface StartUploadJobResponse {}
|
|
1856
|
-
export interface StopRecommenderRequest {
|
|
1857
|
-
DomainName: string | undefined;
|
|
1858
|
-
RecommenderName: string | undefined;
|
|
1859
|
-
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Gender,
|
|
3
3
|
LayoutType,
|
|
4
|
+
LogicalOperator,
|
|
4
5
|
PartyType,
|
|
5
6
|
ProfileType,
|
|
6
7
|
ReadinessStatus,
|
|
8
|
+
Scope,
|
|
7
9
|
Statistic,
|
|
8
10
|
} from "./enums";
|
|
9
11
|
import {
|
|
@@ -13,14 +15,111 @@ import {
|
|
|
13
15
|
DataStoreResponse,
|
|
14
16
|
EngagementPreferences,
|
|
15
17
|
EventTriggerLimits,
|
|
18
|
+
FlowDefinition,
|
|
16
19
|
MatchingRequest,
|
|
17
20
|
MatchingResponse,
|
|
18
21
|
Readiness,
|
|
19
22
|
RecommenderConfig,
|
|
20
23
|
RuleBasedMatchingRequest,
|
|
21
24
|
RuleBasedMatchingResponse,
|
|
25
|
+
AdditionalSearchKey,
|
|
22
26
|
EventTriggerCondition,
|
|
27
|
+
ObjectTypeField,
|
|
28
|
+
ObjectTypeKey,
|
|
29
|
+
Profile,
|
|
23
30
|
} from "./models_0";
|
|
31
|
+
export interface PutIntegrationRequest {
|
|
32
|
+
DomainName: string | undefined;
|
|
33
|
+
Uri?: string | undefined;
|
|
34
|
+
ObjectTypeName?: string | undefined;
|
|
35
|
+
ObjectTypeNames?: Record<string, string> | undefined;
|
|
36
|
+
Tags?: Record<string, string> | undefined;
|
|
37
|
+
FlowDefinition?: FlowDefinition | undefined;
|
|
38
|
+
RoleArn?: string | undefined;
|
|
39
|
+
EventTriggerNames?: string[] | undefined;
|
|
40
|
+
Scope?: Scope | undefined;
|
|
41
|
+
}
|
|
42
|
+
export interface PutIntegrationResponse {
|
|
43
|
+
DomainName: string | undefined;
|
|
44
|
+
Uri: string | undefined;
|
|
45
|
+
ObjectTypeName?: string | undefined;
|
|
46
|
+
CreatedAt: Date | undefined;
|
|
47
|
+
LastUpdatedAt: Date | undefined;
|
|
48
|
+
Tags?: Record<string, string> | undefined;
|
|
49
|
+
ObjectTypeNames?: Record<string, string> | undefined;
|
|
50
|
+
WorkflowId?: string | undefined;
|
|
51
|
+
IsUnstructured?: boolean | undefined;
|
|
52
|
+
RoleArn?: string | undefined;
|
|
53
|
+
EventTriggerNames?: string[] | undefined;
|
|
54
|
+
Scope?: Scope | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface PutProfileObjectRequest {
|
|
57
|
+
ObjectTypeName: string | undefined;
|
|
58
|
+
Object: string | undefined;
|
|
59
|
+
DomainName: string | undefined;
|
|
60
|
+
}
|
|
61
|
+
export interface PutProfileObjectResponse {
|
|
62
|
+
ProfileObjectUniqueKey?: string | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface PutProfileObjectTypeRequest {
|
|
65
|
+
DomainName: string | undefined;
|
|
66
|
+
ObjectTypeName: string | undefined;
|
|
67
|
+
Description: string | undefined;
|
|
68
|
+
TemplateId?: string | undefined;
|
|
69
|
+
ExpirationDays?: number | undefined;
|
|
70
|
+
EncryptionKey?: string | undefined;
|
|
71
|
+
AllowProfileCreation?: boolean | undefined;
|
|
72
|
+
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
73
|
+
MaxProfileObjectCount?: number | undefined;
|
|
74
|
+
SourcePriority?: number | undefined;
|
|
75
|
+
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
76
|
+
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
77
|
+
Tags?: Record<string, string> | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface PutProfileObjectTypeResponse {
|
|
80
|
+
ObjectTypeName: string | undefined;
|
|
81
|
+
Description: string | undefined;
|
|
82
|
+
TemplateId?: string | undefined;
|
|
83
|
+
ExpirationDays?: number | undefined;
|
|
84
|
+
EncryptionKey?: string | undefined;
|
|
85
|
+
AllowProfileCreation?: boolean | undefined;
|
|
86
|
+
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
87
|
+
MaxProfileObjectCount?: number | undefined;
|
|
88
|
+
MaxAvailableProfileObjectCount?: number | undefined;
|
|
89
|
+
SourcePriority?: number | undefined;
|
|
90
|
+
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
91
|
+
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
92
|
+
CreatedAt?: Date | undefined;
|
|
93
|
+
LastUpdatedAt?: Date | undefined;
|
|
94
|
+
Tags?: Record<string, string> | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface SearchProfilesRequest {
|
|
97
|
+
NextToken?: string | undefined;
|
|
98
|
+
MaxResults?: number | undefined;
|
|
99
|
+
DomainName: string | undefined;
|
|
100
|
+
KeyName: string | undefined;
|
|
101
|
+
Values: string[] | undefined;
|
|
102
|
+
AdditionalSearchKeys?: AdditionalSearchKey[] | undefined;
|
|
103
|
+
LogicalOperator?: LogicalOperator | undefined;
|
|
104
|
+
}
|
|
105
|
+
export interface SearchProfilesResponse {
|
|
106
|
+
Items?: Profile[] | undefined;
|
|
107
|
+
NextToken?: string | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface StartRecommenderRequest {
|
|
110
|
+
DomainName: string | undefined;
|
|
111
|
+
RecommenderName: string | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface StartRecommenderResponse {}
|
|
114
|
+
export interface StartUploadJobRequest {
|
|
115
|
+
DomainName: string | undefined;
|
|
116
|
+
JobId: string | undefined;
|
|
117
|
+
}
|
|
118
|
+
export interface StartUploadJobResponse {}
|
|
119
|
+
export interface StopRecommenderRequest {
|
|
120
|
+
DomainName: string | undefined;
|
|
121
|
+
RecommenderName: string | undefined;
|
|
122
|
+
}
|
|
24
123
|
export interface StopRecommenderResponse {}
|
|
25
124
|
export interface StopUploadJobRequest {
|
|
26
125
|
DomainName: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecommenderFiltersCommandInput,
|
|
4
|
+
ListRecommenderFiltersCommandOutput,
|
|
5
|
+
} from "../commands/ListRecommenderFiltersCommand";
|
|
6
|
+
import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRecommenderFilters: (
|
|
8
|
+
config: CustomerProfilesPaginationConfiguration,
|
|
9
|
+
input: ListRecommenderFiltersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRecommenderFiltersCommandOutput>;
|
|
@@ -5,6 +5,7 @@ export * from "./ListDomainObjectTypesPaginator";
|
|
|
5
5
|
export * from "./ListEventStreamsPaginator";
|
|
6
6
|
export * from "./ListEventTriggersPaginator";
|
|
7
7
|
export * from "./ListObjectTypeAttributesPaginator";
|
|
8
|
+
export * from "./ListRecommenderFiltersPaginator";
|
|
8
9
|
export * from "./ListRecommenderRecipesPaginator";
|
|
9
10
|
export * from "./ListRecommendersPaginator";
|
|
10
11
|
export * from "./ListRuleBasedMatchesPaginator";
|
|
@@ -57,6 +57,8 @@ export declare var CreateIntegrationWorkflowRequest$: StaticStructureSchema;
|
|
|
57
57
|
export declare var CreateIntegrationWorkflowResponse$: StaticStructureSchema;
|
|
58
58
|
export declare var CreateProfileRequest$: StaticStructureSchema;
|
|
59
59
|
export declare var CreateProfileResponse$: StaticStructureSchema;
|
|
60
|
+
export declare var CreateRecommenderFilterRequest$: StaticStructureSchema;
|
|
61
|
+
export declare var CreateRecommenderFilterResponse$: StaticStructureSchema;
|
|
60
62
|
export declare var CreateRecommenderRequest$: StaticStructureSchema;
|
|
61
63
|
export declare var CreateRecommenderResponse$: StaticStructureSchema;
|
|
62
64
|
export declare var CreateSegmentDefinitionRequest$: StaticStructureSchema;
|
|
@@ -92,6 +94,8 @@ export declare var DeleteProfileObjectTypeRequest$: StaticStructureSchema;
|
|
|
92
94
|
export declare var DeleteProfileObjectTypeResponse$: StaticStructureSchema;
|
|
93
95
|
export declare var DeleteProfileRequest$: StaticStructureSchema;
|
|
94
96
|
export declare var DeleteProfileResponse$: StaticStructureSchema;
|
|
97
|
+
export declare var DeleteRecommenderFilterRequest$: StaticStructureSchema;
|
|
98
|
+
export declare var DeleteRecommenderFilterResponse$: StaticStructureSchema;
|
|
95
99
|
export declare var DeleteRecommenderRequest$: StaticStructureSchema;
|
|
96
100
|
export declare var DeleteRecommenderResponse$: StaticStructureSchema;
|
|
97
101
|
export declare var DeleteSegmentDefinitionRequest$: StaticStructureSchema;
|
|
@@ -158,6 +162,8 @@ export declare var GetProfileObjectTypeTemplateRequest$: StaticStructureSchema;
|
|
|
158
162
|
export declare var GetProfileObjectTypeTemplateResponse$: StaticStructureSchema;
|
|
159
163
|
export declare var GetProfileRecommendationsRequest$: StaticStructureSchema;
|
|
160
164
|
export declare var GetProfileRecommendationsResponse$: StaticStructureSchema;
|
|
165
|
+
export declare var GetRecommenderFilterRequest$: StaticStructureSchema;
|
|
166
|
+
export declare var GetRecommenderFilterResponse$: StaticStructureSchema;
|
|
161
167
|
export declare var GetRecommenderRequest$: StaticStructureSchema;
|
|
162
168
|
export declare var GetRecommenderResponse$: StaticStructureSchema;
|
|
163
169
|
export declare var GetSegmentDefinitionRequest$: StaticStructureSchema;
|
|
@@ -181,6 +187,7 @@ export declare var GetWorkflowStepsResponse$: StaticStructureSchema;
|
|
|
181
187
|
export declare var Group$: StaticStructureSchema;
|
|
182
188
|
export declare var IdentityResolutionJob$: StaticStructureSchema;
|
|
183
189
|
export declare var IncrementalPullConfig$: StaticStructureSchema;
|
|
190
|
+
export declare var InferenceConfig$: StaticStructureSchema;
|
|
184
191
|
export declare var IntegrationConfig$: StaticStructureSchema;
|
|
185
192
|
export declare var JobSchedule$: StaticStructureSchema;
|
|
186
193
|
export declare var JobStats$: StaticStructureSchema;
|
|
@@ -226,6 +233,8 @@ export declare var ListProfileObjectTypesResponse$: StaticStructureSchema;
|
|
|
226
233
|
export declare var ListProfileObjectTypeTemplateItem$: StaticStructureSchema;
|
|
227
234
|
export declare var ListProfileObjectTypeTemplatesRequest$: StaticStructureSchema;
|
|
228
235
|
export declare var ListProfileObjectTypeTemplatesResponse$: StaticStructureSchema;
|
|
236
|
+
export declare var ListRecommenderFiltersRequest$: StaticStructureSchema;
|
|
237
|
+
export declare var ListRecommenderFiltersResponse$: StaticStructureSchema;
|
|
229
238
|
export declare var ListRecommenderRecipesRequest$: StaticStructureSchema;
|
|
230
239
|
export declare var ListRecommenderRecipesResponse$: StaticStructureSchema;
|
|
231
240
|
export declare var ListRecommendersRequest$: StaticStructureSchema;
|
|
@@ -248,6 +257,7 @@ export declare var MatchingRule$: StaticStructureSchema;
|
|
|
248
257
|
export declare var MatchItem$: StaticStructureSchema;
|
|
249
258
|
export declare var MergeProfilesRequest$: StaticStructureSchema;
|
|
250
259
|
export declare var MergeProfilesResponse$: StaticStructureSchema;
|
|
260
|
+
export declare var MetadataConfig$: StaticStructureSchema;
|
|
251
261
|
export declare var ObjectAttribute$: StaticStructureSchema;
|
|
252
262
|
export declare var ObjectFilter$: StaticStructureSchema;
|
|
253
263
|
export declare var ObjectTypeField$: StaticStructureSchema;
|
|
@@ -275,6 +285,9 @@ export declare var RangeOverride$: StaticStructureSchema;
|
|
|
275
285
|
export declare var Readiness$: StaticStructureSchema;
|
|
276
286
|
export declare var Recommendation$: StaticStructureSchema;
|
|
277
287
|
export declare var RecommenderConfig$: StaticStructureSchema;
|
|
288
|
+
export declare var RecommenderFilter$: StaticStructureSchema;
|
|
289
|
+
export declare var RecommenderFilterSummary$: StaticStructureSchema;
|
|
290
|
+
export declare var RecommenderPromotionalFilter$: StaticStructureSchema;
|
|
278
291
|
export declare var RecommenderRecipe$: StaticStructureSchema;
|
|
279
292
|
export declare var RecommenderSummary$: StaticStructureSchema;
|
|
280
293
|
export declare var RecommenderUpdate$: StaticStructureSchema;
|
|
@@ -343,6 +356,7 @@ export declare var CreateEventTrigger$: StaticOperationSchema;
|
|
|
343
356
|
export declare var CreateIntegrationWorkflow$: StaticOperationSchema;
|
|
344
357
|
export declare var CreateProfile$: StaticOperationSchema;
|
|
345
358
|
export declare var CreateRecommender$: StaticOperationSchema;
|
|
359
|
+
export declare var CreateRecommenderFilter$: StaticOperationSchema;
|
|
346
360
|
export declare var CreateSegmentDefinition$: StaticOperationSchema;
|
|
347
361
|
export declare var CreateSegmentEstimate$: StaticOperationSchema;
|
|
348
362
|
export declare var CreateSegmentSnapshot$: StaticOperationSchema;
|
|
@@ -359,6 +373,7 @@ export declare var DeleteProfileKey$: StaticOperationSchema;
|
|
|
359
373
|
export declare var DeleteProfileObject$: StaticOperationSchema;
|
|
360
374
|
export declare var DeleteProfileObjectType$: StaticOperationSchema;
|
|
361
375
|
export declare var DeleteRecommender$: StaticOperationSchema;
|
|
376
|
+
export declare var DeleteRecommenderFilter$: StaticOperationSchema;
|
|
362
377
|
export declare var DeleteSegmentDefinition$: StaticOperationSchema;
|
|
363
378
|
export declare var DeleteWorkflow$: StaticOperationSchema;
|
|
364
379
|
export declare var DetectProfileObjectType$: StaticOperationSchema;
|
|
@@ -379,6 +394,7 @@ export declare var GetProfileObjectType$: StaticOperationSchema;
|
|
|
379
394
|
export declare var GetProfileObjectTypeTemplate$: StaticOperationSchema;
|
|
380
395
|
export declare var GetProfileRecommendations$: StaticOperationSchema;
|
|
381
396
|
export declare var GetRecommender$: StaticOperationSchema;
|
|
397
|
+
export declare var GetRecommenderFilter$: StaticOperationSchema;
|
|
382
398
|
export declare var GetSegmentDefinition$: StaticOperationSchema;
|
|
383
399
|
export declare var GetSegmentEstimate$: StaticOperationSchema;
|
|
384
400
|
export declare var GetSegmentMembership$: StaticOperationSchema;
|
|
@@ -405,6 +421,7 @@ export declare var ListProfileHistoryRecords$: StaticOperationSchema;
|
|
|
405
421
|
export declare var ListProfileObjects$: StaticOperationSchema;
|
|
406
422
|
export declare var ListProfileObjectTypes$: StaticOperationSchema;
|
|
407
423
|
export declare var ListProfileObjectTypeTemplates$: StaticOperationSchema;
|
|
424
|
+
export declare var ListRecommenderFilters$: StaticOperationSchema;
|
|
408
425
|
export declare var ListRecommenderRecipes$: StaticOperationSchema;
|
|
409
426
|
export declare var ListRecommenders$: StaticOperationSchema;
|
|
410
427
|
export declare var ListRuleBasedMatches$: 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.1007.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",
|