@aws-sdk/client-customer-profiles 3.933.0 → 3.935.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.
Files changed (49) hide show
  1. package/dist-cjs/index.js +443 -443
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +420 -0
  4. package/dist-es/models/errors.js +71 -0
  5. package/dist-es/models/models_0.js +1 -487
  6. package/dist-es/schemas/schemas_0.js +1 -1
  7. package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
  8. package/dist-types/commands/PutIntegrationCommand.d.ts +1 -1
  9. package/dist-types/commands/PutProfileObjectCommand.d.ts +1 -1
  10. package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +1 -1
  11. package/dist-types/commands/SearchProfilesCommand.d.ts +1 -1
  12. package/dist-types/commands/StartUploadJobCommand.d.ts +1 -1
  13. package/dist-types/commands/StopUploadJobCommand.d.ts +1 -1
  14. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  15. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  16. package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
  17. package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
  20. package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
  21. package/dist-types/index.d.ts +3 -1
  22. package/dist-types/models/enums.d.ts +828 -0
  23. package/dist-types/models/errors.d.ts +67 -0
  24. package/dist-types/models/models_0.d.ts +1139 -884
  25. package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/commands/PutIntegrationCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/PutProfileObjectCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/PutProfileObjectTypeCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/SearchProfilesCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/StartUploadJobCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/index.d.ts +3 -1
  40. package/dist-types/ts3.4/models/enums.d.ts +500 -0
  41. package/dist-types/ts3.4/models/errors.d.ts +42 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +282 -536
  43. package/package.json +12 -12
  44. package/dist-es/models/index.js +0 -2
  45. package/dist-es/models/models_1.js +0 -4
  46. package/dist-types/models/index.d.ts +0 -2
  47. package/dist-types/models/models_1.d.ts +0 -1150
  48. package/dist-types/ts3.4/models/index.d.ts +0 -2
  49. package/dist-types/ts3.4/models/models_1.d.ts +0 -259
@@ -1,2 +0,0 @@
1
- export * from "./models_0";
2
- export * from "./models_1";
@@ -1,259 +0,0 @@
1
- import {
2
- AdditionalSearchKey,
3
- AttributeDetails,
4
- Conditions,
5
- EngagementPreferences,
6
- EventTriggerCondition,
7
- EventTriggerLimits,
8
- FieldSourceProfileIds,
9
- FlowDefinition,
10
- Gender,
11
- LayoutType,
12
- MatchingRequest,
13
- MatchingResponse,
14
- ObjectTypeField,
15
- ObjectTypeKey,
16
- PartyType,
17
- Profile,
18
- ProfileType,
19
- Readiness,
20
- ReadinessStatus,
21
- RuleBasedMatchingRequest,
22
- RuleBasedMatchingResponse,
23
- Statistic,
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
- }
65
- export interface PutProfileObjectTypeRequest {
66
- DomainName: string | undefined;
67
- ObjectTypeName: string | undefined;
68
- Description: string | undefined;
69
- TemplateId?: string | undefined;
70
- ExpirationDays?: number | undefined;
71
- EncryptionKey?: string | undefined;
72
- AllowProfileCreation?: boolean | undefined;
73
- SourceLastUpdatedTimestampFormat?: string | undefined;
74
- MaxProfileObjectCount?: 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
- Fields?: Record<string, ObjectTypeField> | undefined;
90
- Keys?: Record<string, ObjectTypeKey[]> | undefined;
91
- CreatedAt?: Date | undefined;
92
- LastUpdatedAt?: Date | undefined;
93
- Tags?: Record<string, string> | undefined;
94
- }
95
- export declare const LogicalOperator: {
96
- readonly AND: "AND";
97
- readonly OR: "OR";
98
- };
99
- export type LogicalOperator =
100
- (typeof LogicalOperator)[keyof typeof LogicalOperator];
101
- export interface SearchProfilesRequest {
102
- NextToken?: string | undefined;
103
- MaxResults?: number | undefined;
104
- DomainName: string | undefined;
105
- KeyName: string | undefined;
106
- Values: string[] | undefined;
107
- AdditionalSearchKeys?: AdditionalSearchKey[] | undefined;
108
- LogicalOperator?: LogicalOperator | undefined;
109
- }
110
- export interface SearchProfilesResponse {
111
- Items?: Profile[] | undefined;
112
- NextToken?: string | undefined;
113
- }
114
- export interface StartUploadJobRequest {
115
- DomainName: string | undefined;
116
- JobId: string | undefined;
117
- }
118
- export interface StartUploadJobResponse {}
119
- export interface StopUploadJobRequest {
120
- DomainName: string | undefined;
121
- JobId: string | undefined;
122
- }
123
- export interface StopUploadJobResponse {}
124
- export interface TagResourceRequest {
125
- resourceArn: string | undefined;
126
- tags: Record<string, string> | undefined;
127
- }
128
- export interface TagResourceResponse {}
129
- export interface UntagResourceRequest {
130
- resourceArn: string | undefined;
131
- tagKeys: string[] | undefined;
132
- }
133
- export interface UntagResourceResponse {}
134
- export interface UpdateCalculatedAttributeDefinitionRequest {
135
- DomainName: string | undefined;
136
- CalculatedAttributeName: string | undefined;
137
- DisplayName?: string | undefined;
138
- Description?: string | undefined;
139
- Conditions?: Conditions | undefined;
140
- }
141
- export interface UpdateCalculatedAttributeDefinitionResponse {
142
- CalculatedAttributeName?: string | undefined;
143
- DisplayName?: string | undefined;
144
- Description?: string | undefined;
145
- CreatedAt?: Date | undefined;
146
- LastUpdatedAt?: Date | undefined;
147
- Statistic?: Statistic | undefined;
148
- Conditions?: Conditions | undefined;
149
- AttributeDetails?: AttributeDetails | undefined;
150
- UseHistoricalData?: boolean | undefined;
151
- Status?: ReadinessStatus | undefined;
152
- Readiness?: Readiness | undefined;
153
- Tags?: Record<string, string> | undefined;
154
- }
155
- export interface UpdateDomainRequest {
156
- DomainName: string | undefined;
157
- DefaultExpirationDays?: number | undefined;
158
- DefaultEncryptionKey?: string | undefined;
159
- DeadLetterQueueUrl?: string | undefined;
160
- Matching?: MatchingRequest | undefined;
161
- RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
162
- Tags?: Record<string, string> | undefined;
163
- }
164
- export interface UpdateDomainResponse {
165
- DomainName: string | undefined;
166
- DefaultExpirationDays?: number | undefined;
167
- DefaultEncryptionKey?: string | undefined;
168
- DeadLetterQueueUrl?: string | undefined;
169
- Matching?: MatchingResponse | undefined;
170
- RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
171
- CreatedAt: Date | undefined;
172
- LastUpdatedAt: Date | undefined;
173
- Tags?: Record<string, string> | undefined;
174
- }
175
- export interface UpdateDomainLayoutRequest {
176
- DomainName: string | undefined;
177
- LayoutDefinitionName: string | undefined;
178
- Description?: string | undefined;
179
- DisplayName?: string | undefined;
180
- IsDefault?: boolean | undefined;
181
- LayoutType?: LayoutType | undefined;
182
- Layout?: string | undefined;
183
- }
184
- export interface UpdateDomainLayoutResponse {
185
- LayoutDefinitionName?: string | undefined;
186
- Description?: string | undefined;
187
- DisplayName?: string | undefined;
188
- IsDefault?: boolean | undefined;
189
- LayoutType?: LayoutType | undefined;
190
- Layout?: string | undefined;
191
- Version?: string | undefined;
192
- CreatedAt?: Date | undefined;
193
- LastUpdatedAt?: Date | undefined;
194
- Tags?: Record<string, string> | undefined;
195
- }
196
- export interface UpdateEventTriggerRequest {
197
- DomainName: string | undefined;
198
- EventTriggerName: string | undefined;
199
- ObjectTypeName?: string | undefined;
200
- Description?: string | undefined;
201
- EventTriggerConditions?: EventTriggerCondition[] | undefined;
202
- SegmentFilter?: string | undefined;
203
- EventTriggerLimits?: EventTriggerLimits | undefined;
204
- }
205
- export interface UpdateEventTriggerResponse {
206
- EventTriggerName?: string | undefined;
207
- ObjectTypeName?: string | undefined;
208
- Description?: string | undefined;
209
- EventTriggerConditions?: EventTriggerCondition[] | undefined;
210
- SegmentFilter?: string | undefined;
211
- EventTriggerLimits?: EventTriggerLimits | undefined;
212
- CreatedAt?: Date | undefined;
213
- LastUpdatedAt?: Date | undefined;
214
- Tags?: Record<string, string> | undefined;
215
- }
216
- export interface UpdateAddress {
217
- Address1?: string | undefined;
218
- Address2?: string | undefined;
219
- Address3?: string | undefined;
220
- Address4?: string | undefined;
221
- City?: string | undefined;
222
- County?: string | undefined;
223
- State?: string | undefined;
224
- Province?: string | undefined;
225
- Country?: string | undefined;
226
- PostalCode?: string | undefined;
227
- }
228
- export interface UpdateProfileRequest {
229
- DomainName: string | undefined;
230
- ProfileId: string | undefined;
231
- AdditionalInformation?: string | undefined;
232
- AccountNumber?: string | undefined;
233
- PartyType?: PartyType | undefined;
234
- BusinessName?: string | undefined;
235
- FirstName?: string | undefined;
236
- MiddleName?: string | undefined;
237
- LastName?: string | undefined;
238
- BirthDate?: string | undefined;
239
- Gender?: Gender | undefined;
240
- PhoneNumber?: string | undefined;
241
- MobilePhoneNumber?: string | undefined;
242
- HomePhoneNumber?: string | undefined;
243
- BusinessPhoneNumber?: string | undefined;
244
- EmailAddress?: string | undefined;
245
- PersonalEmailAddress?: string | undefined;
246
- BusinessEmailAddress?: string | undefined;
247
- Address?: UpdateAddress | undefined;
248
- ShippingAddress?: UpdateAddress | undefined;
249
- MailingAddress?: UpdateAddress | undefined;
250
- BillingAddress?: UpdateAddress | undefined;
251
- Attributes?: Record<string, string> | undefined;
252
- PartyTypeString?: string | undefined;
253
- GenderString?: string | undefined;
254
- ProfileType?: ProfileType | undefined;
255
- EngagementPreferences?: EngagementPreferences | undefined;
256
- }
257
- export interface UpdateProfileResponse {
258
- ProfileId: string | undefined;
259
- }