@aws-sdk/client-customer-profiles 3.899.0 → 3.901.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 +16 -0
- package/dist-cjs/index.js +181 -39
- package/dist-es/CustomerProfiles.js +4 -0
- package/dist-es/commands/GetProfileHistoryRecordCommand.js +23 -0
- package/dist-es/commands/ListProfileHistoryRecordsCommand.js +22 -0
- package/dist-es/commands/PutIntegrationCommand.js +1 -1
- package/dist-es/commands/PutProfileObjectCommand.js +1 -1
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +15 -8
- package/dist-es/models/models_1.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +87 -0
- package/dist-types/CustomerProfiles.d.ts +14 -0
- package/dist-types/CustomerProfilesClient.d.ts +4 -2
- package/dist-types/commands/GetProfileHistoryRecordCommand.d.ts +98 -0
- package/dist-types/commands/ListProfileHistoryRecordsCommand.d.ts +106 -0
- package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
- package/dist-types/commands/PutIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/PutProfileObjectCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +185 -190
- package/dist-types/models/models_1.d.ts +191 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +34 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetProfileHistoryRecordCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProfileHistoryRecordsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
- 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/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -46
- package/dist-types/ts3.4/models/models_1.d.ts +48 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +37 -37
|
@@ -147,6 +147,10 @@ import {
|
|
|
147
147
|
GetMatchesCommandInput,
|
|
148
148
|
GetMatchesCommandOutput,
|
|
149
149
|
} from "./commands/GetMatchesCommand";
|
|
150
|
+
import {
|
|
151
|
+
GetProfileHistoryRecordCommandInput,
|
|
152
|
+
GetProfileHistoryRecordCommandOutput,
|
|
153
|
+
} from "./commands/GetProfileHistoryRecordCommand";
|
|
150
154
|
import {
|
|
151
155
|
GetProfileObjectTypeCommandInput,
|
|
152
156
|
GetProfileObjectTypeCommandOutput,
|
|
@@ -235,6 +239,10 @@ import {
|
|
|
235
239
|
ListProfileAttributeValuesCommandInput,
|
|
236
240
|
ListProfileAttributeValuesCommandOutput,
|
|
237
241
|
} from "./commands/ListProfileAttributeValuesCommand";
|
|
242
|
+
import {
|
|
243
|
+
ListProfileHistoryRecordsCommandInput,
|
|
244
|
+
ListProfileHistoryRecordsCommandOutput,
|
|
245
|
+
} from "./commands/ListProfileHistoryRecordsCommand";
|
|
238
246
|
import {
|
|
239
247
|
ListProfileObjectsCommandInput,
|
|
240
248
|
ListProfileObjectsCommandOutput,
|
|
@@ -824,6 +832,19 @@ export interface CustomerProfiles {
|
|
|
824
832
|
options: __HttpHandlerOptions,
|
|
825
833
|
cb: (err: any, data?: GetMatchesCommandOutput) => void
|
|
826
834
|
): void;
|
|
835
|
+
getProfileHistoryRecord(
|
|
836
|
+
args: GetProfileHistoryRecordCommandInput,
|
|
837
|
+
options?: __HttpHandlerOptions
|
|
838
|
+
): Promise<GetProfileHistoryRecordCommandOutput>;
|
|
839
|
+
getProfileHistoryRecord(
|
|
840
|
+
args: GetProfileHistoryRecordCommandInput,
|
|
841
|
+
cb: (err: any, data?: GetProfileHistoryRecordCommandOutput) => void
|
|
842
|
+
): void;
|
|
843
|
+
getProfileHistoryRecord(
|
|
844
|
+
args: GetProfileHistoryRecordCommandInput,
|
|
845
|
+
options: __HttpHandlerOptions,
|
|
846
|
+
cb: (err: any, data?: GetProfileHistoryRecordCommandOutput) => void
|
|
847
|
+
): void;
|
|
827
848
|
getProfileObjectType(
|
|
828
849
|
args: GetProfileObjectTypeCommandInput,
|
|
829
850
|
options?: __HttpHandlerOptions
|
|
@@ -1123,6 +1144,19 @@ export interface CustomerProfiles {
|
|
|
1123
1144
|
options: __HttpHandlerOptions,
|
|
1124
1145
|
cb: (err: any, data?: ListProfileAttributeValuesCommandOutput) => void
|
|
1125
1146
|
): void;
|
|
1147
|
+
listProfileHistoryRecords(
|
|
1148
|
+
args: ListProfileHistoryRecordsCommandInput,
|
|
1149
|
+
options?: __HttpHandlerOptions
|
|
1150
|
+
): Promise<ListProfileHistoryRecordsCommandOutput>;
|
|
1151
|
+
listProfileHistoryRecords(
|
|
1152
|
+
args: ListProfileHistoryRecordsCommandInput,
|
|
1153
|
+
cb: (err: any, data?: ListProfileHistoryRecordsCommandOutput) => void
|
|
1154
|
+
): void;
|
|
1155
|
+
listProfileHistoryRecords(
|
|
1156
|
+
args: ListProfileHistoryRecordsCommandInput,
|
|
1157
|
+
options: __HttpHandlerOptions,
|
|
1158
|
+
cb: (err: any, data?: ListProfileHistoryRecordsCommandOutput) => void
|
|
1159
|
+
): void;
|
|
1126
1160
|
listProfileObjects(
|
|
1127
1161
|
args: ListProfileObjectsCommandInput,
|
|
1128
1162
|
options?: __HttpHandlerOptions
|
|
@@ -193,6 +193,10 @@ import {
|
|
|
193
193
|
GetMatchesCommandInput,
|
|
194
194
|
GetMatchesCommandOutput,
|
|
195
195
|
} from "./commands/GetMatchesCommand";
|
|
196
|
+
import {
|
|
197
|
+
GetProfileHistoryRecordCommandInput,
|
|
198
|
+
GetProfileHistoryRecordCommandOutput,
|
|
199
|
+
} from "./commands/GetProfileHistoryRecordCommand";
|
|
196
200
|
import {
|
|
197
201
|
GetProfileObjectTypeCommandInput,
|
|
198
202
|
GetProfileObjectTypeCommandOutput,
|
|
@@ -281,6 +285,10 @@ import {
|
|
|
281
285
|
ListProfileAttributeValuesCommandInput,
|
|
282
286
|
ListProfileAttributeValuesCommandOutput,
|
|
283
287
|
} from "./commands/ListProfileAttributeValuesCommand";
|
|
288
|
+
import {
|
|
289
|
+
ListProfileHistoryRecordsCommandInput,
|
|
290
|
+
ListProfileHistoryRecordsCommandOutput,
|
|
291
|
+
} from "./commands/ListProfileHistoryRecordsCommand";
|
|
284
292
|
import {
|
|
285
293
|
ListProfileObjectsCommandInput,
|
|
286
294
|
ListProfileObjectsCommandOutput,
|
|
@@ -414,6 +422,7 @@ export type ServiceInputTypes =
|
|
|
414
422
|
| GetIdentityResolutionJobCommandInput
|
|
415
423
|
| GetIntegrationCommandInput
|
|
416
424
|
| GetMatchesCommandInput
|
|
425
|
+
| GetProfileHistoryRecordCommandInput
|
|
417
426
|
| GetProfileObjectTypeCommandInput
|
|
418
427
|
| GetProfileObjectTypeTemplateCommandInput
|
|
419
428
|
| GetSegmentDefinitionCommandInput
|
|
@@ -436,6 +445,7 @@ export type ServiceInputTypes =
|
|
|
436
445
|
| ListIntegrationsCommandInput
|
|
437
446
|
| ListObjectTypeAttributesCommandInput
|
|
438
447
|
| ListProfileAttributeValuesCommandInput
|
|
448
|
+
| ListProfileHistoryRecordsCommandInput
|
|
439
449
|
| ListProfileObjectTypeTemplatesCommandInput
|
|
440
450
|
| ListProfileObjectTypesCommandInput
|
|
441
451
|
| ListProfileObjectsCommandInput
|
|
@@ -496,6 +506,7 @@ export type ServiceOutputTypes =
|
|
|
496
506
|
| GetIdentityResolutionJobCommandOutput
|
|
497
507
|
| GetIntegrationCommandOutput
|
|
498
508
|
| GetMatchesCommandOutput
|
|
509
|
+
| GetProfileHistoryRecordCommandOutput
|
|
499
510
|
| GetProfileObjectTypeCommandOutput
|
|
500
511
|
| GetProfileObjectTypeTemplateCommandOutput
|
|
501
512
|
| GetSegmentDefinitionCommandOutput
|
|
@@ -518,6 +529,7 @@ export type ServiceOutputTypes =
|
|
|
518
529
|
| ListIntegrationsCommandOutput
|
|
519
530
|
| ListObjectTypeAttributesCommandOutput
|
|
520
531
|
| ListProfileAttributeValuesCommandOutput
|
|
532
|
+
| ListProfileHistoryRecordsCommandOutput
|
|
521
533
|
| ListProfileObjectTypeTemplatesCommandOutput
|
|
522
534
|
| ListProfileObjectTypesCommandOutput
|
|
523
535
|
| ListProfileObjectsCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
GetProfileHistoryRecordRequest,
|
|
10
|
+
GetProfileHistoryRecordResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetProfileHistoryRecordCommandInput
|
|
15
|
+
extends GetProfileHistoryRecordRequest {}
|
|
16
|
+
export interface GetProfileHistoryRecordCommandOutput
|
|
17
|
+
extends GetProfileHistoryRecordResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetProfileHistoryRecordCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetProfileHistoryRecordCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetProfileHistoryRecordCommandInput,
|
|
24
|
+
GetProfileHistoryRecordCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetProfileHistoryRecordCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetProfileHistoryRecordCommandInput,
|
|
33
|
+
GetProfileHistoryRecordCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetProfileHistoryRecordCommand extends GetProfileHistoryRecordCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetProfileHistoryRecordRequest;
|
|
44
|
+
output: GetProfileHistoryRecordResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetProfileHistoryRecordCommandInput;
|
|
48
|
+
output: GetProfileHistoryRecordCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
ListProfileHistoryRecordsRequest,
|
|
10
|
+
ListProfileHistoryRecordsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListProfileHistoryRecordsCommandInput
|
|
15
|
+
extends ListProfileHistoryRecordsRequest {}
|
|
16
|
+
export interface ListProfileHistoryRecordsCommandOutput
|
|
17
|
+
extends ListProfileHistoryRecordsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListProfileHistoryRecordsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListProfileHistoryRecordsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListProfileHistoryRecordsCommandInput,
|
|
24
|
+
ListProfileHistoryRecordsCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListProfileHistoryRecordsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListProfileHistoryRecordsCommandInput,
|
|
33
|
+
ListProfileHistoryRecordsCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListProfileHistoryRecordsCommand extends ListProfileHistoryRecordsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListProfileHistoryRecordsRequest;
|
|
44
|
+
output: ListProfileHistoryRecordsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListProfileHistoryRecordsCommandInput;
|
|
48
|
+
output: ListProfileHistoryRecordsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
MergeProfilesRequest,
|
|
10
10
|
MergeProfilesResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface MergeProfilesCommandInput extends MergeProfilesRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
PutIntegrationRequest,
|
|
10
10
|
PutIntegrationResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface PutIntegrationCommandInput extends PutIntegrationRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
PutProfileObjectRequest,
|
|
10
10
|
PutProfileObjectResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface PutProfileObjectCommandInput extends PutProfileObjectRequest {}
|
|
@@ -35,6 +35,7 @@ export * from "./GetEventTriggerCommand";
|
|
|
35
35
|
export * from "./GetIdentityResolutionJobCommand";
|
|
36
36
|
export * from "./GetIntegrationCommand";
|
|
37
37
|
export * from "./GetMatchesCommand";
|
|
38
|
+
export * from "./GetProfileHistoryRecordCommand";
|
|
38
39
|
export * from "./GetProfileObjectTypeCommand";
|
|
39
40
|
export * from "./GetProfileObjectTypeTemplateCommand";
|
|
40
41
|
export * from "./GetSegmentDefinitionCommand";
|
|
@@ -57,6 +58,7 @@ export * from "./ListIdentityResolutionJobsCommand";
|
|
|
57
58
|
export * from "./ListIntegrationsCommand";
|
|
58
59
|
export * from "./ListObjectTypeAttributesCommand";
|
|
59
60
|
export * from "./ListProfileAttributeValuesCommand";
|
|
61
|
+
export * from "./ListProfileHistoryRecordsCommand";
|
|
60
62
|
export * from "./ListProfileObjectTypeTemplatesCommand";
|
|
61
63
|
export * from "./ListProfileObjectTypesCommand";
|
|
62
64
|
export * from "./ListProfileObjectsCommand";
|
|
@@ -8,6 +8,18 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
+
export declare const ActionType: {
|
|
12
|
+
readonly ADDED_PROFILE_KEY: "ADDED_PROFILE_KEY";
|
|
13
|
+
readonly CREATED: "CREATED";
|
|
14
|
+
readonly DELETED_BY_CUSTOMER: "DELETED_BY_CUSTOMER";
|
|
15
|
+
readonly DELETED_BY_MERGE: "DELETED_BY_MERGE";
|
|
16
|
+
readonly DELETED_PROFILE_KEY: "DELETED_PROFILE_KEY";
|
|
17
|
+
readonly EXPIRED: "EXPIRED";
|
|
18
|
+
readonly INGESTED: "INGESTED";
|
|
19
|
+
readonly MERGED: "MERGED";
|
|
20
|
+
readonly UPDATED: "UPDATED";
|
|
21
|
+
};
|
|
22
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
11
23
|
export interface AdditionalSearchKey {
|
|
12
24
|
KeyName: string | undefined;
|
|
13
25
|
Values: string[] | undefined;
|
|
@@ -1423,6 +1435,21 @@ export interface GetMatchesResponse {
|
|
|
1423
1435
|
PotentialMatches?: number | undefined;
|
|
1424
1436
|
Matches?: MatchItem[] | undefined;
|
|
1425
1437
|
}
|
|
1438
|
+
export interface GetProfileHistoryRecordRequest {
|
|
1439
|
+
DomainName: string | undefined;
|
|
1440
|
+
ProfileId: string | undefined;
|
|
1441
|
+
Id: string | undefined;
|
|
1442
|
+
}
|
|
1443
|
+
export interface GetProfileHistoryRecordResponse {
|
|
1444
|
+
Id: string | undefined;
|
|
1445
|
+
ObjectTypeName: string | undefined;
|
|
1446
|
+
CreatedAt: Date | undefined;
|
|
1447
|
+
LastUpdatedAt?: Date | undefined;
|
|
1448
|
+
ActionType: ActionType | undefined;
|
|
1449
|
+
ProfileObjectUniqueKey?: string | undefined;
|
|
1450
|
+
Content?: string | undefined;
|
|
1451
|
+
PerformedBy?: string | undefined;
|
|
1452
|
+
}
|
|
1426
1453
|
export interface GetProfileObjectTypeRequest {
|
|
1427
1454
|
DomainName: string | undefined;
|
|
1428
1455
|
ObjectTypeName: string | undefined;
|
|
@@ -1802,6 +1829,28 @@ export interface ProfileAttributeValuesResponse {
|
|
|
1802
1829
|
Items?: AttributeValueItem[] | undefined;
|
|
1803
1830
|
StatusCode?: number | undefined;
|
|
1804
1831
|
}
|
|
1832
|
+
export interface ListProfileHistoryRecordsRequest {
|
|
1833
|
+
DomainName: string | undefined;
|
|
1834
|
+
ProfileId: string | undefined;
|
|
1835
|
+
ObjectTypeName?: string | undefined;
|
|
1836
|
+
NextToken?: string | undefined;
|
|
1837
|
+
MaxResults?: number | undefined;
|
|
1838
|
+
ActionType?: ActionType | undefined;
|
|
1839
|
+
PerformedBy?: string | undefined;
|
|
1840
|
+
}
|
|
1841
|
+
export interface ProfileHistoryRecord {
|
|
1842
|
+
Id: string | undefined;
|
|
1843
|
+
ObjectTypeName: string | undefined;
|
|
1844
|
+
CreatedAt: Date | undefined;
|
|
1845
|
+
LastUpdatedAt?: Date | undefined;
|
|
1846
|
+
ActionType: ActionType | undefined;
|
|
1847
|
+
ProfileObjectUniqueKey?: string | undefined;
|
|
1848
|
+
PerformedBy?: string | undefined;
|
|
1849
|
+
}
|
|
1850
|
+
export interface ListProfileHistoryRecordsResponse {
|
|
1851
|
+
ProfileHistoryRecords?: ProfileHistoryRecord[] | undefined;
|
|
1852
|
+
NextToken?: string | undefined;
|
|
1853
|
+
}
|
|
1805
1854
|
export interface ObjectFilter {
|
|
1806
1855
|
KeyName: string | undefined;
|
|
1807
1856
|
Values: string[] | undefined;
|
|
@@ -1950,46 +1999,6 @@ export interface FieldSourceProfileIds {
|
|
|
1950
1999
|
ProfileType?: string | undefined;
|
|
1951
2000
|
EngagementPreferences?: string | undefined;
|
|
1952
2001
|
}
|
|
1953
|
-
export interface MergeProfilesRequest {
|
|
1954
|
-
DomainName: string | undefined;
|
|
1955
|
-
MainProfileId: string | undefined;
|
|
1956
|
-
ProfileIdsToBeMerged: string[] | undefined;
|
|
1957
|
-
FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
|
|
1958
|
-
}
|
|
1959
|
-
export interface MergeProfilesResponse {
|
|
1960
|
-
Message?: string | undefined;
|
|
1961
|
-
}
|
|
1962
|
-
export interface PutIntegrationRequest {
|
|
1963
|
-
DomainName: string | undefined;
|
|
1964
|
-
Uri?: string | undefined;
|
|
1965
|
-
ObjectTypeName?: string | undefined;
|
|
1966
|
-
Tags?: Record<string, string> | undefined;
|
|
1967
|
-
FlowDefinition?: FlowDefinition | undefined;
|
|
1968
|
-
ObjectTypeNames?: Record<string, string> | undefined;
|
|
1969
|
-
RoleArn?: string | undefined;
|
|
1970
|
-
EventTriggerNames?: string[] | undefined;
|
|
1971
|
-
}
|
|
1972
|
-
export interface PutIntegrationResponse {
|
|
1973
|
-
DomainName: string | undefined;
|
|
1974
|
-
Uri: string | undefined;
|
|
1975
|
-
ObjectTypeName?: string | undefined;
|
|
1976
|
-
CreatedAt: Date | undefined;
|
|
1977
|
-
LastUpdatedAt: Date | undefined;
|
|
1978
|
-
Tags?: Record<string, string> | undefined;
|
|
1979
|
-
ObjectTypeNames?: Record<string, string> | undefined;
|
|
1980
|
-
WorkflowId?: string | undefined;
|
|
1981
|
-
IsUnstructured?: boolean | undefined;
|
|
1982
|
-
RoleArn?: string | undefined;
|
|
1983
|
-
EventTriggerNames?: string[] | undefined;
|
|
1984
|
-
}
|
|
1985
|
-
export interface PutProfileObjectRequest {
|
|
1986
|
-
ObjectTypeName: string | undefined;
|
|
1987
|
-
Object: string | undefined;
|
|
1988
|
-
DomainName: string | undefined;
|
|
1989
|
-
}
|
|
1990
|
-
export interface PutProfileObjectResponse {
|
|
1991
|
-
ProfileObjectUniqueKey?: string | undefined;
|
|
1992
|
-
}
|
|
1993
2002
|
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
1994
2003
|
export declare const FlowDefinitionFilterSensitiveLog: (
|
|
1995
2004
|
obj: FlowDefinition
|
|
@@ -2092,6 +2101,9 @@ export declare const GetDomainLayoutResponseFilterSensitiveLog: (
|
|
|
2092
2101
|
export declare const GetEventTriggerResponseFilterSensitiveLog: (
|
|
2093
2102
|
obj: GetEventTriggerResponse
|
|
2094
2103
|
) => any;
|
|
2104
|
+
export declare const GetProfileHistoryRecordResponseFilterSensitiveLog: (
|
|
2105
|
+
obj: GetProfileHistoryRecordResponse
|
|
2106
|
+
) => any;
|
|
2095
2107
|
export declare const GetProfileObjectTypeResponseFilterSensitiveLog: (
|
|
2096
2108
|
obj: GetProfileObjectTypeResponse
|
|
2097
2109
|
) => any;
|
|
@@ -2135,9 +2147,3 @@ export declare const SegmentDefinitionItemFilterSensitiveLog: (
|
|
|
2135
2147
|
export declare const ListSegmentDefinitionsResponseFilterSensitiveLog: (
|
|
2136
2148
|
obj: ListSegmentDefinitionsResponse
|
|
2137
2149
|
) => any;
|
|
2138
|
-
export declare const PutIntegrationRequestFilterSensitiveLog: (
|
|
2139
|
-
obj: PutIntegrationRequest
|
|
2140
|
-
) => any;
|
|
2141
|
-
export declare const PutProfileObjectRequestFilterSensitiveLog: (
|
|
2142
|
-
obj: PutProfileObjectRequest
|
|
2143
|
-
) => any;
|
|
@@ -5,6 +5,8 @@ import {
|
|
|
5
5
|
EngagementPreferences,
|
|
6
6
|
EventTriggerCondition,
|
|
7
7
|
EventTriggerLimits,
|
|
8
|
+
FieldSourceProfileIds,
|
|
9
|
+
FlowDefinition,
|
|
8
10
|
Gender,
|
|
9
11
|
LayoutType,
|
|
10
12
|
MatchingRequest,
|
|
@@ -20,6 +22,46 @@ import {
|
|
|
20
22
|
RuleBasedMatchingResponse,
|
|
21
23
|
Statistic,
|
|
22
24
|
} from "./models_0";
|
|
25
|
+
export interface MergeProfilesRequest {
|
|
26
|
+
DomainName: string | undefined;
|
|
27
|
+
MainProfileId: string | undefined;
|
|
28
|
+
ProfileIdsToBeMerged: string[] | undefined;
|
|
29
|
+
FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
|
|
30
|
+
}
|
|
31
|
+
export interface MergeProfilesResponse {
|
|
32
|
+
Message?: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
export interface PutIntegrationRequest {
|
|
35
|
+
DomainName: string | undefined;
|
|
36
|
+
Uri?: string | undefined;
|
|
37
|
+
ObjectTypeName?: string | undefined;
|
|
38
|
+
Tags?: Record<string, string> | undefined;
|
|
39
|
+
FlowDefinition?: FlowDefinition | undefined;
|
|
40
|
+
ObjectTypeNames?: Record<string, string> | undefined;
|
|
41
|
+
RoleArn?: string | undefined;
|
|
42
|
+
EventTriggerNames?: string[] | undefined;
|
|
43
|
+
}
|
|
44
|
+
export interface PutIntegrationResponse {
|
|
45
|
+
DomainName: string | undefined;
|
|
46
|
+
Uri: string | undefined;
|
|
47
|
+
ObjectTypeName?: string | undefined;
|
|
48
|
+
CreatedAt: Date | undefined;
|
|
49
|
+
LastUpdatedAt: Date | undefined;
|
|
50
|
+
Tags?: Record<string, string> | undefined;
|
|
51
|
+
ObjectTypeNames?: Record<string, string> | undefined;
|
|
52
|
+
WorkflowId?: string | undefined;
|
|
53
|
+
IsUnstructured?: boolean | undefined;
|
|
54
|
+
RoleArn?: string | undefined;
|
|
55
|
+
EventTriggerNames?: string[] | undefined;
|
|
56
|
+
}
|
|
57
|
+
export interface PutProfileObjectRequest {
|
|
58
|
+
ObjectTypeName: string | undefined;
|
|
59
|
+
Object: string | undefined;
|
|
60
|
+
DomainName: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
export interface PutProfileObjectResponse {
|
|
63
|
+
ProfileObjectUniqueKey?: string | undefined;
|
|
64
|
+
}
|
|
23
65
|
export interface PutProfileObjectTypeRequest {
|
|
24
66
|
DomainName: string | undefined;
|
|
25
67
|
ObjectTypeName: string | undefined;
|
|
@@ -215,6 +257,12 @@ export interface UpdateProfileRequest {
|
|
|
215
257
|
export interface UpdateProfileResponse {
|
|
216
258
|
ProfileId: string | undefined;
|
|
217
259
|
}
|
|
260
|
+
export declare const PutIntegrationRequestFilterSensitiveLog: (
|
|
261
|
+
obj: PutIntegrationRequest
|
|
262
|
+
) => any;
|
|
263
|
+
export declare const PutProfileObjectRequestFilterSensitiveLog: (
|
|
264
|
+
obj: PutProfileObjectRequest
|
|
265
|
+
) => any;
|
|
218
266
|
export declare const PutProfileObjectTypeRequestFilterSensitiveLog: (
|
|
219
267
|
obj: PutProfileObjectTypeRequest
|
|
220
268
|
) => any;
|
|
@@ -151,6 +151,10 @@ import {
|
|
|
151
151
|
GetMatchesCommandInput,
|
|
152
152
|
GetMatchesCommandOutput,
|
|
153
153
|
} from "../commands/GetMatchesCommand";
|
|
154
|
+
import {
|
|
155
|
+
GetProfileHistoryRecordCommandInput,
|
|
156
|
+
GetProfileHistoryRecordCommandOutput,
|
|
157
|
+
} from "../commands/GetProfileHistoryRecordCommand";
|
|
154
158
|
import {
|
|
155
159
|
GetProfileObjectTypeCommandInput,
|
|
156
160
|
GetProfileObjectTypeCommandOutput,
|
|
@@ -239,6 +243,10 @@ import {
|
|
|
239
243
|
ListProfileAttributeValuesCommandInput,
|
|
240
244
|
ListProfileAttributeValuesCommandOutput,
|
|
241
245
|
} from "../commands/ListProfileAttributeValuesCommand";
|
|
246
|
+
import {
|
|
247
|
+
ListProfileHistoryRecordsCommandInput,
|
|
248
|
+
ListProfileHistoryRecordsCommandOutput,
|
|
249
|
+
} from "../commands/ListProfileHistoryRecordsCommand";
|
|
242
250
|
import {
|
|
243
251
|
ListProfileObjectsCommandInput,
|
|
244
252
|
ListProfileObjectsCommandOutput,
|
|
@@ -475,6 +483,10 @@ export declare const se_GetMatchesCommand: (
|
|
|
475
483
|
input: GetMatchesCommandInput,
|
|
476
484
|
context: __SerdeContext
|
|
477
485
|
) => Promise<__HttpRequest>;
|
|
486
|
+
export declare const se_GetProfileHistoryRecordCommand: (
|
|
487
|
+
input: GetProfileHistoryRecordCommandInput,
|
|
488
|
+
context: __SerdeContext
|
|
489
|
+
) => Promise<__HttpRequest>;
|
|
478
490
|
export declare const se_GetProfileObjectTypeCommand: (
|
|
479
491
|
input: GetProfileObjectTypeCommandInput,
|
|
480
492
|
context: __SerdeContext
|
|
@@ -563,6 +575,10 @@ export declare const se_ListProfileAttributeValuesCommand: (
|
|
|
563
575
|
input: ListProfileAttributeValuesCommandInput,
|
|
564
576
|
context: __SerdeContext
|
|
565
577
|
) => Promise<__HttpRequest>;
|
|
578
|
+
export declare const se_ListProfileHistoryRecordsCommand: (
|
|
579
|
+
input: ListProfileHistoryRecordsCommandInput,
|
|
580
|
+
context: __SerdeContext
|
|
581
|
+
) => Promise<__HttpRequest>;
|
|
566
582
|
export declare const se_ListProfileObjectsCommand: (
|
|
567
583
|
input: ListProfileObjectsCommandInput,
|
|
568
584
|
context: __SerdeContext
|
|
@@ -799,6 +815,10 @@ export declare const de_GetMatchesCommand: (
|
|
|
799
815
|
output: __HttpResponse,
|
|
800
816
|
context: __SerdeContext
|
|
801
817
|
) => Promise<GetMatchesCommandOutput>;
|
|
818
|
+
export declare const de_GetProfileHistoryRecordCommand: (
|
|
819
|
+
output: __HttpResponse,
|
|
820
|
+
context: __SerdeContext
|
|
821
|
+
) => Promise<GetProfileHistoryRecordCommandOutput>;
|
|
802
822
|
export declare const de_GetProfileObjectTypeCommand: (
|
|
803
823
|
output: __HttpResponse,
|
|
804
824
|
context: __SerdeContext
|
|
@@ -887,6 +907,10 @@ export declare const de_ListProfileAttributeValuesCommand: (
|
|
|
887
907
|
output: __HttpResponse,
|
|
888
908
|
context: __SerdeContext
|
|
889
909
|
) => Promise<ListProfileAttributeValuesCommandOutput>;
|
|
910
|
+
export declare const de_ListProfileHistoryRecordsCommand: (
|
|
911
|
+
output: __HttpResponse,
|
|
912
|
+
context: __SerdeContext
|
|
913
|
+
) => Promise<ListProfileHistoryRecordsCommandOutput>;
|
|
890
914
|
export declare const de_ListProfileObjectsCommand: (
|
|
891
915
|
output: __HttpResponse,
|
|
892
916
|
context: __SerdeContext
|
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.901.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-customer-profiles",
|
|
@@ -20,42 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.
|
|
37
|
-
"@smithy/hash-node": "^4.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.
|
|
41
|
-
"@smithy/middleware-retry": "^4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.
|
|
43
|
-
"@smithy/middleware-stack": "^4.
|
|
44
|
-
"@smithy/node-config-provider": "^4.
|
|
45
|
-
"@smithy/node-http-handler": "^4.
|
|
46
|
-
"@smithy/protocol-http": "^5.
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.
|
|
50
|
-
"@smithy/util-base64": "^4.
|
|
51
|
-
"@smithy/util-body-length-browser": "^4.
|
|
52
|
-
"@smithy/util-body-length-node": "^4.
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.
|
|
55
|
-
"@smithy/util-endpoints": "^3.
|
|
56
|
-
"@smithy/util-middleware": "^4.
|
|
57
|
-
"@smithy/util-retry": "^4.
|
|
58
|
-
"@smithy/util-utf8": "^4.
|
|
23
|
+
"@aws-sdk/core": "3.901.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.901.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.901.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.901.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.901.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.901.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.901.0",
|
|
30
|
+
"@aws-sdk/types": "3.901.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.901.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.901.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.901.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.3.0",
|
|
35
|
+
"@smithy/core": "^3.14.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.0",
|
|
37
|
+
"@smithy/hash-node": "^4.2.0",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.0",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.0",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.0",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.0",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.0",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.0",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.0",
|
|
45
|
+
"@smithy/node-http-handler": "^4.3.0",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.0",
|
|
47
|
+
"@smithy/smithy-client": "^4.7.0",
|
|
48
|
+
"@smithy/types": "^4.6.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.0",
|
|
50
|
+
"@smithy/util-base64": "^4.2.0",
|
|
51
|
+
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
|
+
"@smithy/util-body-length-node": "^4.2.0",
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.2.0",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.0",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.0",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.0",
|
|
57
|
+
"@smithy/util-retry": "^4.2.0",
|
|
58
|
+
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|