@aws-sdk/client-customer-profiles 3.856.0 → 3.858.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +149 -90
- package/dist-es/commands/PutProfileObjectTypeCommand.js +1 -1
- package/dist-es/commands/SearchProfilesCommand.js +1 -1
- package/dist-es/models/models_0.js +29 -20
- package/dist-es/models/models_1.js +23 -0
- package/dist-es/protocols/Aws_restJson1.js +18 -0
- package/dist-types/commands/BatchGetProfileCommand.d.ts +19 -0
- package/dist-types/commands/CreateProfileCommand.d.ts +19 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +6 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +6 -0
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +6 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +19 -0
- package/dist-types/commands/MergeProfilesCommand.d.ts +2 -0
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/SearchProfilesCommand.d.ts +20 -1
- package/dist-types/commands/StartUploadJobCommand.d.ts +1 -2
- package/dist-types/commands/UpdateProfileCommand.d.ts +19 -0
- package/dist-types/models/models_0.d.ts +143 -282
- package/dist-types/models/models_1.d.ts +293 -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/StartUploadJobCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +48 -62
- package/dist-types/ts3.4/models/models_1.d.ts +70 -0
- package/package.json +11 -11
|
@@ -130,6 +130,25 @@ declare const BatchGetProfileCommand_base: {
|
|
|
130
130
|
* // ],
|
|
131
131
|
* // PartyTypeString: "STRING_VALUE",
|
|
132
132
|
* // GenderString: "STRING_VALUE",
|
|
133
|
+
* // ProfileType: "ACCOUNT_PROFILE" || "PROFILE",
|
|
134
|
+
* // EngagementPreferences: { // EngagementPreferences
|
|
135
|
+
* // Phone: [ // PhonePreferenceList
|
|
136
|
+
* // { // ContactPreference
|
|
137
|
+
* // KeyName: "STRING_VALUE",
|
|
138
|
+
* // KeyValue: "STRING_VALUE",
|
|
139
|
+
* // ProfileId: "STRING_VALUE",
|
|
140
|
+
* // ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
141
|
+
* // },
|
|
142
|
+
* // ],
|
|
143
|
+
* // Email: [ // EmailPreferenceList
|
|
144
|
+
* // {
|
|
145
|
+
* // KeyName: "STRING_VALUE",
|
|
146
|
+
* // KeyValue: "STRING_VALUE",
|
|
147
|
+
* // ProfileId: "STRING_VALUE",
|
|
148
|
+
* // ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
149
|
+
* // },
|
|
150
|
+
* // ],
|
|
151
|
+
* // },
|
|
133
152
|
* // },
|
|
134
153
|
* // ],
|
|
135
154
|
* // };
|
|
@@ -107,6 +107,25 @@ declare const CreateProfileCommand_base: {
|
|
|
107
107
|
* },
|
|
108
108
|
* PartyTypeString: "STRING_VALUE",
|
|
109
109
|
* GenderString: "STRING_VALUE",
|
|
110
|
+
* ProfileType: "ACCOUNT_PROFILE" || "PROFILE",
|
|
111
|
+
* EngagementPreferences: { // EngagementPreferences
|
|
112
|
+
* Phone: [ // PhonePreferenceList
|
|
113
|
+
* { // ContactPreference
|
|
114
|
+
* KeyName: "STRING_VALUE",
|
|
115
|
+
* KeyValue: "STRING_VALUE",
|
|
116
|
+
* ProfileId: "STRING_VALUE",
|
|
117
|
+
* ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
118
|
+
* },
|
|
119
|
+
* ],
|
|
120
|
+
* Email: [ // EmailPreferenceList
|
|
121
|
+
* {
|
|
122
|
+
* KeyName: "STRING_VALUE",
|
|
123
|
+
* KeyValue: "STRING_VALUE",
|
|
124
|
+
* ProfileId: "STRING_VALUE",
|
|
125
|
+
* ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
126
|
+
* },
|
|
127
|
+
* ],
|
|
128
|
+
* },
|
|
110
129
|
* };
|
|
111
130
|
* const command = new CreateProfileCommand(input);
|
|
112
131
|
* const response = await client.send(command);
|
|
@@ -134,6 +134,12 @@ declare const CreateSegmentDefinitionCommand_base: {
|
|
|
134
134
|
* Values: "<Values>", // required
|
|
135
135
|
* },
|
|
136
136
|
* },
|
|
137
|
+
* ProfileType: { // ProfileTypeDimension
|
|
138
|
+
* DimensionType: "INCLUSIVE" || "EXCLUSIVE", // required
|
|
139
|
+
* Values: [ // ProfileTypeValues // required
|
|
140
|
+
* "ACCOUNT_PROFILE" || "PROFILE",
|
|
141
|
+
* ],
|
|
142
|
+
* },
|
|
137
143
|
* },
|
|
138
144
|
* CalculatedAttributes: { // CalculatedCustomAttributes
|
|
139
145
|
* "<keys>": { // CalculatedAttributeDimension
|
|
@@ -131,6 +131,12 @@ declare const CreateSegmentEstimateCommand_base: {
|
|
|
131
131
|
* Values: "<Values>", // required
|
|
132
132
|
* },
|
|
133
133
|
* },
|
|
134
|
+
* ProfileType: { // ProfileTypeDimension
|
|
135
|
+
* DimensionType: "INCLUSIVE" || "EXCLUSIVE", // required
|
|
136
|
+
* Values: [ // ProfileTypeValues // required
|
|
137
|
+
* "ACCOUNT_PROFILE" || "PROFILE",
|
|
138
|
+
* ],
|
|
139
|
+
* },
|
|
134
140
|
* },
|
|
135
141
|
* CalculatedAttributes: { // CalculatedCustomAttributes
|
|
136
142
|
* "<keys>": { // CalculatedAttributeDimension
|
|
@@ -139,6 +139,12 @@ declare const GetSegmentDefinitionCommand_base: {
|
|
|
139
139
|
* // Values: "<Values>", // required
|
|
140
140
|
* // },
|
|
141
141
|
* // },
|
|
142
|
+
* // ProfileType: { // ProfileTypeDimension
|
|
143
|
+
* // DimensionType: "INCLUSIVE" || "EXCLUSIVE", // required
|
|
144
|
+
* // Values: [ // ProfileTypeValues // required
|
|
145
|
+
* // "ACCOUNT_PROFILE" || "PROFILE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
142
148
|
* // },
|
|
143
149
|
* // CalculatedAttributes: { // CalculatedCustomAttributes
|
|
144
150
|
* // "<keys>": { // CalculatedAttributeDimension
|
|
@@ -128,6 +128,25 @@ declare const GetSegmentMembershipCommand_base: {
|
|
|
128
128
|
* // ],
|
|
129
129
|
* // PartyTypeString: "STRING_VALUE",
|
|
130
130
|
* // GenderString: "STRING_VALUE",
|
|
131
|
+
* // ProfileType: "ACCOUNT_PROFILE" || "PROFILE",
|
|
132
|
+
* // EngagementPreferences: { // EngagementPreferences
|
|
133
|
+
* // Phone: [ // PhonePreferenceList
|
|
134
|
+
* // { // ContactPreference
|
|
135
|
+
* // KeyName: "STRING_VALUE",
|
|
136
|
+
* // KeyValue: "STRING_VALUE",
|
|
137
|
+
* // ProfileId: "STRING_VALUE",
|
|
138
|
+
* // ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
139
|
+
* // },
|
|
140
|
+
* // ],
|
|
141
|
+
* // Email: [ // EmailPreferenceList
|
|
142
|
+
* // {
|
|
143
|
+
* // KeyName: "STRING_VALUE",
|
|
144
|
+
* // KeyValue: "STRING_VALUE",
|
|
145
|
+
* // ProfileId: "STRING_VALUE",
|
|
146
|
+
* // ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
147
|
+
* // },
|
|
148
|
+
* // ],
|
|
149
|
+
* // },
|
|
131
150
|
* // },
|
|
132
151
|
* // },
|
|
133
152
|
* // ],
|
|
@@ -106,6 +106,8 @@ declare const MergeProfilesCommand_base: {
|
|
|
106
106
|
* Attributes: { // AttributeSourceIdMap
|
|
107
107
|
* "<keys>": "STRING_VALUE",
|
|
108
108
|
* },
|
|
109
|
+
* ProfileType: "STRING_VALUE",
|
|
110
|
+
* EngagementPreferences: "STRING_VALUE",
|
|
109
111
|
* },
|
|
110
112
|
* };
|
|
111
113
|
* const command = new MergeProfilesCommand(input);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
4
|
-
import { PutProfileObjectTypeRequest, PutProfileObjectTypeResponse } from "../models/
|
|
4
|
+
import { PutProfileObjectTypeRequest, PutProfileObjectTypeResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
4
|
-
import { SearchProfilesRequest, SearchProfilesResponse } from "../models/
|
|
4
|
+
import { SearchProfilesRequest, SearchProfilesResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -140,6 +140,25 @@ declare const SearchProfilesCommand_base: {
|
|
|
140
140
|
* // ],
|
|
141
141
|
* // PartyTypeString: "STRING_VALUE",
|
|
142
142
|
* // GenderString: "STRING_VALUE",
|
|
143
|
+
* // ProfileType: "ACCOUNT_PROFILE" || "PROFILE",
|
|
144
|
+
* // EngagementPreferences: { // EngagementPreferences
|
|
145
|
+
* // Phone: [ // PhonePreferenceList
|
|
146
|
+
* // { // ContactPreference
|
|
147
|
+
* // KeyName: "STRING_VALUE",
|
|
148
|
+
* // KeyValue: "STRING_VALUE",
|
|
149
|
+
* // ProfileId: "STRING_VALUE",
|
|
150
|
+
* // ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
151
|
+
* // },
|
|
152
|
+
* // ],
|
|
153
|
+
* // Email: [ // EmailPreferenceList
|
|
154
|
+
* // {
|
|
155
|
+
* // KeyName: "STRING_VALUE",
|
|
156
|
+
* // KeyValue: "STRING_VALUE",
|
|
157
|
+
* // ProfileId: "STRING_VALUE",
|
|
158
|
+
* // ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
159
|
+
* // },
|
|
160
|
+
* // ],
|
|
161
|
+
* // },
|
|
143
162
|
* // },
|
|
144
163
|
* // ],
|
|
145
164
|
* // NextToken: "STRING_VALUE",
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
4
|
-
import { StartUploadJobRequest } from "../models/
|
|
5
|
-
import { StartUploadJobResponse } from "../models/models_1";
|
|
4
|
+
import { StartUploadJobRequest, StartUploadJobResponse } from "../models/models_1";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -110,6 +110,25 @@ declare const UpdateProfileCommand_base: {
|
|
|
110
110
|
* },
|
|
111
111
|
* PartyTypeString: "STRING_VALUE",
|
|
112
112
|
* GenderString: "STRING_VALUE",
|
|
113
|
+
* ProfileType: "ACCOUNT_PROFILE" || "PROFILE",
|
|
114
|
+
* EngagementPreferences: { // EngagementPreferences
|
|
115
|
+
* Phone: [ // PhonePreferenceList
|
|
116
|
+
* { // ContactPreference
|
|
117
|
+
* KeyName: "STRING_VALUE",
|
|
118
|
+
* KeyValue: "STRING_VALUE",
|
|
119
|
+
* ProfileId: "STRING_VALUE",
|
|
120
|
+
* ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
121
|
+
* },
|
|
122
|
+
* ],
|
|
123
|
+
* Email: [ // EmailPreferenceList
|
|
124
|
+
* {
|
|
125
|
+
* KeyName: "STRING_VALUE",
|
|
126
|
+
* KeyValue: "STRING_VALUE",
|
|
127
|
+
* ProfileId: "STRING_VALUE",
|
|
128
|
+
* ContactType: "PhoneNumber" || "MobilePhoneNumber" || "HomePhoneNumber" || "BusinessPhoneNumber" || "EmailAddress" || "PersonalEmailAddress" || "BusinessEmailAddress",
|
|
129
|
+
* },
|
|
130
|
+
* ],
|
|
131
|
+
* },
|
|
113
132
|
* };
|
|
114
133
|
* const command = new UpdateProfileCommand(input);
|
|
115
134
|
* const response = await client.send(command);
|