@aws-sdk/client-customer-profiles 3.940.0 → 3.942.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 +120 -0
- package/dist-cjs/index.js +1058 -84
- package/dist-es/CustomerProfiles.js +30 -0
- package/dist-es/commands/CreateRecommenderCommand.js +16 -0
- package/dist-es/commands/DeleteDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderCommand.js +16 -0
- package/dist-es/commands/GetDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/GetObjectTypeAttributeStatisticsCommand.js +16 -0
- package/dist-es/commands/GetProfileRecommendationsCommand.js +16 -0
- package/dist-es/commands/GetRecommenderCommand.js +16 -0
- package/dist-es/commands/ListDomainObjectTypesCommand.js +16 -0
- package/dist-es/commands/ListObjectTypeAttributeValuesCommand.js +16 -0
- package/dist-es/commands/ListRecommenderRecipesCommand.js +16 -0
- package/dist-es/commands/ListRecommendersCommand.js +16 -0
- package/dist-es/commands/PutDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/StartRecommenderCommand.js +16 -0
- package/dist-es/commands/StopRecommenderCommand.js +16 -0
- package/dist-es/commands/UpdateRecommenderCommand.js +16 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/models/enums.js +41 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListDomainObjectTypesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommenderRecipesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommendersPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +792 -84
- package/dist-types/CustomerProfiles.d.ts +106 -0
- package/dist-types/CustomerProfilesClient.d.ts +17 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +10 -0
- package/dist-types/commands/CreateRecommenderCommand.d.ts +109 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDomainObjectTypeCommand.d.ts +88 -0
- package/dist-types/commands/DeleteRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/GetDomainCommand.d.ts +7 -0
- package/dist-types/commands/GetDomainObjectTypeCommand.d.ts +105 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +1 -0
- package/dist-types/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +110 -0
- package/dist-types/commands/GetProfileRecommendationsCommand.d.ts +116 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +136 -0
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +1 -0
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainObjectTypesCommand.d.ts +102 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListObjectTypeAttributeValuesCommand.d.ts +99 -0
- package/dist-types/commands/ListRecommenderRecipesCommand.d.ts +93 -0
- package/dist-types/commands/ListRecommendersCommand.d.ts +133 -0
- package/dist-types/commands/ListSegmentDefinitionsCommand.d.ts +1 -0
- package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +118 -0
- package/dist-types/commands/PutIntegrationCommand.d.ts +5 -3
- package/dist-types/commands/StartRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/StopRecommenderCommand.d.ts +89 -0
- package/dist-types/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +11 -1
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +97 -0
- package/dist-types/models/models_0.d.ts +1084 -738
- package/dist-types/models/models_1.d.ts +744 -0
- package/dist-types/pagination/ListDomainObjectTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommenderRecipesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +74 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +256 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +92 -2
- package/dist-types/ts3.4/commands/CreateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProfileRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainObjectTypesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListObjectTypeAttributeValuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderRecipesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendersCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopRecommenderCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +51 -0
- package/dist-types/ts3.4/models/models_0.d.ts +251 -142
- package/dist-types/ts3.4/models/models_1.d.ts +176 -0
- package/dist-types/ts3.4/pagination/ListDomainObjectTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommenderRecipesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +74 -0
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ const _Add = "Address2";
|
|
|
30
30
|
const _Addr = "Address3";
|
|
31
31
|
const _Addre = "Address4";
|
|
32
32
|
const _At = "Attributes";
|
|
33
|
+
const _Av = "Average";
|
|
33
34
|
const _B = "Batches";
|
|
34
35
|
const _BA = "BillingAddress";
|
|
35
36
|
const _BD = "BirthDate";
|
|
@@ -61,7 +62,8 @@ const _CAN = "CalculatedAttributeName";
|
|
|
61
62
|
const _CAV = "CalculatedAttributeValues";
|
|
62
63
|
const _CAVL = "CalculatedAttributeValueList";
|
|
63
64
|
const _CAVa = "CalculatedAttributeValue";
|
|
64
|
-
const _CAa = "
|
|
65
|
+
const _CAa = "CalculatedAt";
|
|
66
|
+
const _CAal = "CalculatedAttributes";
|
|
65
67
|
const _CAo = "CompletedAt";
|
|
66
68
|
const _CAu = "CustomAttributes";
|
|
67
69
|
const _CCA = "CalculatedCustomAttributes";
|
|
@@ -80,6 +82,7 @@ const _CESRr = "CreateEventStreamResponse";
|
|
|
80
82
|
const _CET = "CreateEventTrigger";
|
|
81
83
|
const _CETR = "CreateEventTriggerRequest";
|
|
82
84
|
const _CETRr = "CreateEventTriggerResponse";
|
|
85
|
+
const _CI = "CatalogItem";
|
|
83
86
|
const _CIW = "CreateIntegrationWorkflow";
|
|
84
87
|
const _CIWR = "CreateIntegrationWorkflowRequest";
|
|
85
88
|
const _CIWRr = "CreateIntegrationWorkflowResponse";
|
|
@@ -93,7 +96,10 @@ const _CPRr = "CreateProfileResponse";
|
|
|
93
96
|
const _CPr = "CreateProfile";
|
|
94
97
|
const _CR = "ConflictResolution";
|
|
95
98
|
const _CRM = "ConflictResolvingModel";
|
|
99
|
+
const _CRR = "CreateRecommenderRequest";
|
|
100
|
+
const _CRRr = "CreateRecommenderResponse";
|
|
96
101
|
const _CRr = "CreatedRecords";
|
|
102
|
+
const _CRre = "CreateRecommender";
|
|
97
103
|
const _CS = "ConfidenceScore";
|
|
98
104
|
const _CSD = "CreateSegmentDefinition";
|
|
99
105
|
const _CSDR = "CreateSegmentDefinitionRequest";
|
|
@@ -111,11 +117,13 @@ const _CTon = "ConnectorType";
|
|
|
111
117
|
const _CUJ = "CreateUploadJob";
|
|
112
118
|
const _CUJR = "CreateUploadJobRequest";
|
|
113
119
|
const _CUJRr = "CreateUploadJobResponse";
|
|
120
|
+
const _Ca = "Category";
|
|
114
121
|
const _Co = "County";
|
|
115
122
|
const _Cod = "Code";
|
|
116
123
|
const _Con = "Consolidation";
|
|
117
124
|
const _Cond = "Conditions";
|
|
118
125
|
const _Cont = "Content";
|
|
126
|
+
const _Conte = "Context";
|
|
119
127
|
const _Cou = "Country";
|
|
120
128
|
const _D = "Description";
|
|
121
129
|
const _DCAD = "DeleteCalculatedAttributeDefinition";
|
|
@@ -125,6 +133,9 @@ const _DD = "DateDimension";
|
|
|
125
133
|
const _DDL = "DeleteDomainLayout";
|
|
126
134
|
const _DDLR = "DeleteDomainLayoutRequest";
|
|
127
135
|
const _DDLRe = "DeleteDomainLayoutResponse";
|
|
136
|
+
const _DDOT = "DeleteDomainObjectType";
|
|
137
|
+
const _DDOTR = "DeleteDomainObjectTypeRequest";
|
|
138
|
+
const _DDOTRe = "DeleteDomainObjectTypeResponse";
|
|
128
139
|
const _DDR = "DeleteDomainRequest";
|
|
129
140
|
const _DDRe = "DeleteDomainResponse";
|
|
130
141
|
const _DDe = "DestinationDetails";
|
|
@@ -148,6 +159,10 @@ const _DLQU = "DeadLetterQueueUrl";
|
|
|
148
159
|
const _DLo = "DomainList";
|
|
149
160
|
const _DN = "DomainName";
|
|
150
161
|
const _DNi = "DisplayName";
|
|
162
|
+
const _DOTF = "DomainObjectTypeField";
|
|
163
|
+
const _DOTFo = "DomainObjectTypeFields";
|
|
164
|
+
const _DOTL = "DomainObjectTypesList";
|
|
165
|
+
const _DOTLI = "DomainObjectTypesListItem";
|
|
151
166
|
const _DOTW = "DayOfTheWeek";
|
|
152
167
|
const _DP = "DeleteProfile";
|
|
153
168
|
const _DPK = "DeleteProfileKey";
|
|
@@ -167,10 +182,16 @@ const _DPOTel = "DeleteProfileObjectType";
|
|
|
167
182
|
const _DPOTet = "DetectProfileObjectType";
|
|
168
183
|
const _DPR = "DeleteProfileRequest";
|
|
169
184
|
const _DPRe = "DeleteProfileResponse";
|
|
170
|
-
const
|
|
185
|
+
const _DR = "DeleteRecommender";
|
|
186
|
+
const _DRR = "DeleteRecommenderRequest";
|
|
187
|
+
const _DRRe = "DeleteRecommenderResponse";
|
|
188
|
+
const _DS = "DataStore";
|
|
171
189
|
const _DSD = "DeleteSegmentDefinition";
|
|
172
190
|
const _DSDR = "DeleteSegmentDefinitionRequest";
|
|
173
191
|
const _DSDRe = "DeleteSegmentDefinitionResponse";
|
|
192
|
+
const _DSR = "DataStoreRequest";
|
|
193
|
+
const _DSRa = "DataStoreResponse";
|
|
194
|
+
const _DSe = "DestinationSummary";
|
|
174
195
|
const _DSo = "DomainStats";
|
|
175
196
|
const _DT = "DimensionType";
|
|
176
197
|
const _DTFN = "DatetimeTypeFieldName";
|
|
@@ -182,7 +203,8 @@ const _Di = "Dimensions";
|
|
|
182
203
|
const _Dim = "Dimension";
|
|
183
204
|
const _E = "Expression";
|
|
184
205
|
const _EA = "EmailAddress";
|
|
185
|
-
const _EC = "
|
|
206
|
+
const _EC = "EventsConfig";
|
|
207
|
+
const _ECx = "ExportingConfig";
|
|
186
208
|
const _ED = "ExpirationDays";
|
|
187
209
|
const _EDFU = "EnableDynamicFieldUpdate";
|
|
188
210
|
const _EDr = "ErrorDescription";
|
|
@@ -193,7 +215,9 @@ const _EL = "ExportingLocation";
|
|
|
193
215
|
const _ELVPD = "ExtraLengthValueProfileDimension";
|
|
194
216
|
const _EM = "ExecutionMessage";
|
|
195
217
|
const _EP = "EngagementPreferences";
|
|
196
|
-
const _EPL = "
|
|
218
|
+
const _EPL = "EventParametersList";
|
|
219
|
+
const _EPLm = "EmailPreferenceList";
|
|
220
|
+
const _EPv = "EventParameters";
|
|
197
221
|
const _ESA = "EventStreamArn";
|
|
198
222
|
const _ESDD = "EventStreamDestinationDetails";
|
|
199
223
|
const _ESN = "EventStreamName";
|
|
@@ -209,6 +233,8 @@ const _ETN = "EventTriggerName";
|
|
|
209
233
|
const _ETNv = "EventTriggerNames";
|
|
210
234
|
const _ETSI = "EventTriggerSummaryItem";
|
|
211
235
|
const _ETSL = "EventTriggerSummaryList";
|
|
236
|
+
const _ETv = "EventType";
|
|
237
|
+
const _EVT = "EventValueThreshold";
|
|
212
238
|
const _Em = "Email";
|
|
213
239
|
const _En = "Enabled";
|
|
214
240
|
const _End = "End";
|
|
@@ -228,8 +254,10 @@ const _FN = "FlowName";
|
|
|
228
254
|
const _FNi = "FirstName";
|
|
229
255
|
const _FNie = "FieldName";
|
|
230
256
|
const _FNiel = "FieldNames";
|
|
231
|
-
const _FR = "
|
|
257
|
+
const _FR = "FailureReason";
|
|
258
|
+
const _FRa = "FailedRecords";
|
|
232
259
|
const _FSPI = "FieldSourceProfileIds";
|
|
260
|
+
const _FT = "FeatureType";
|
|
233
261
|
const _Fa = "Failures";
|
|
234
262
|
const _Fi = "Fields";
|
|
235
263
|
const _G = "Gender";
|
|
@@ -246,6 +274,9 @@ const _GD = "GetDomain";
|
|
|
246
274
|
const _GDL = "GetDomainLayout";
|
|
247
275
|
const _GDLR = "GetDomainLayoutRequest";
|
|
248
276
|
const _GDLRe = "GetDomainLayoutResponse";
|
|
277
|
+
const _GDOT = "GetDomainObjectType";
|
|
278
|
+
const _GDOTR = "GetDomainObjectTypeRequest";
|
|
279
|
+
const _GDOTRe = "GetDomainObjectTypeResponse";
|
|
249
280
|
const _GDR = "GetDomainRequest";
|
|
250
281
|
const _GDRe = "GetDomainResponse";
|
|
251
282
|
const _GES = "GetEventStream";
|
|
@@ -264,6 +295,11 @@ const _GL = "GroupList";
|
|
|
264
295
|
const _GM = "GetMatches";
|
|
265
296
|
const _GMR = "GetMatchesRequest";
|
|
266
297
|
const _GMRe = "GetMatchesResponse";
|
|
298
|
+
const _GOTAS = "GetObjectTypeAttributeStatistics";
|
|
299
|
+
const _GOTASP = "GetObjectTypeAttributeStatisticsPercentiles";
|
|
300
|
+
const _GOTASR = "GetObjectTypeAttributeStatisticsRequest";
|
|
301
|
+
const _GOTASRe = "GetObjectTypeAttributeStatisticsResponse";
|
|
302
|
+
const _GOTASS = "GetObjectTypeAttributeStatisticsStats";
|
|
267
303
|
const _GPHR = "GetProfileHistoryRecord";
|
|
268
304
|
const _GPHRR = "GetProfileHistoryRecordRequest";
|
|
269
305
|
const _GPHRRe = "GetProfileHistoryRecordResponse";
|
|
@@ -273,6 +309,12 @@ const _GPOTRe = "GetProfileObjectTypeResponse";
|
|
|
273
309
|
const _GPOTT = "GetProfileObjectTypeTemplate";
|
|
274
310
|
const _GPOTTR = "GetProfileObjectTypeTemplateRequest";
|
|
275
311
|
const _GPOTTRe = "GetProfileObjectTypeTemplateResponse";
|
|
312
|
+
const _GPR = "GetProfileRecommendations";
|
|
313
|
+
const _GPRR = "GetProfileRecommendationsRequest";
|
|
314
|
+
const _GPRRe = "GetProfileRecommendationsResponse";
|
|
315
|
+
const _GR = "GetRecommender";
|
|
316
|
+
const _GRR = "GetRecommenderRequest";
|
|
317
|
+
const _GRRe = "GetRecommenderResponse";
|
|
276
318
|
const _GS = "GenderString";
|
|
277
319
|
const _GSD = "GetSegmentDefinition";
|
|
278
320
|
const _GSDR = "GetSegmentDefinitionRequest";
|
|
@@ -304,19 +346,20 @@ const _GWSRe = "GetWorkflowStepsResponse";
|
|
|
304
346
|
const _Gr = "Groups";
|
|
305
347
|
const _Gro = "Group";
|
|
306
348
|
const _HPN = "HomePhoneNumber";
|
|
307
|
-
const _I = "
|
|
349
|
+
const _I = "Id";
|
|
308
350
|
const _IC = "IntegrationConfig";
|
|
309
351
|
const _ID = "IsDefault";
|
|
310
352
|
const _IDP = "IsDataPartial";
|
|
311
353
|
const _IDR = "IncludeDeletedRecords";
|
|
312
354
|
const _IH = "IncludeHidden";
|
|
313
|
-
const _IL = "
|
|
355
|
+
const _IL = "ImageLink";
|
|
356
|
+
const _ILn = "IntegrationList";
|
|
314
357
|
const _IPC = "IncrementalPullConfig";
|
|
315
358
|
const _IRJ = "IdentityResolutionJob";
|
|
316
359
|
const _IRJL = "IdentityResolutionJobsList";
|
|
317
360
|
const _ISE = "InternalServerException";
|
|
318
361
|
const _IU = "IsUnstructured";
|
|
319
|
-
const
|
|
362
|
+
const _In = "Include";
|
|
320
363
|
const _It = "Items";
|
|
321
364
|
const _JET = "JobEndTime";
|
|
322
365
|
const _JETo = "JobExpirationTime";
|
|
@@ -329,10 +372,11 @@ const _KA = "KmsArn";
|
|
|
329
372
|
const _KM = "KeyMap";
|
|
330
373
|
const _KN = "KeyName";
|
|
331
374
|
const _KV = "KeyValue";
|
|
332
|
-
const _L = "
|
|
375
|
+
const _L = "Link";
|
|
333
376
|
const _LAI = "ListAccountIntegrations";
|
|
334
377
|
const _LAIR = "ListAccountIntegrationsRequest";
|
|
335
378
|
const _LAIRi = "ListAccountIntegrationsResponse";
|
|
379
|
+
const _LCA = "LastComputedAt";
|
|
336
380
|
const _LCAD = "ListCalculatedAttributeDefinitions";
|
|
337
381
|
const _LCADI = "ListCalculatedAttributeDefinitionItem";
|
|
338
382
|
const _LCADR = "ListCalculatedAttributeDefinitionsRequest";
|
|
@@ -347,6 +391,9 @@ const _LDL = "ListDomainLayouts";
|
|
|
347
391
|
const _LDLR = "ListDomainLayoutsRequest";
|
|
348
392
|
const _LDLRi = "ListDomainLayoutsResponse";
|
|
349
393
|
const _LDN = "LayoutDefinitionName";
|
|
394
|
+
const _LDOT = "ListDomainObjectTypes";
|
|
395
|
+
const _LDOTR = "ListDomainObjectTypesRequest";
|
|
396
|
+
const _LDOTRi = "ListDomainObjectTypesResponse";
|
|
350
397
|
const _LDR = "ListDomainsRequest";
|
|
351
398
|
const _LDRi = "ListDomainsResponse";
|
|
352
399
|
const _LES = "ListEventStreams";
|
|
@@ -372,6 +419,11 @@ const _LOTAI = "ListObjectTypeAttributeItem";
|
|
|
372
419
|
const _LOTAL = "ListObjectTypeAttributesList";
|
|
373
420
|
const _LOTAR = "ListObjectTypeAttributesRequest";
|
|
374
421
|
const _LOTARi = "ListObjectTypeAttributesResponse";
|
|
422
|
+
const _LOTAV = "ListObjectTypeAttributeValues";
|
|
423
|
+
const _LOTAVI = "ListObjectTypeAttributeValuesItem";
|
|
424
|
+
const _LOTAVL = "ListObjectTypeAttributeValuesList";
|
|
425
|
+
const _LOTAVR = "ListObjectTypeAttributeValuesRequest";
|
|
426
|
+
const _LOTAVRi = "ListObjectTypeAttributeValuesResponse";
|
|
375
427
|
const _LPAV = "ListProfileAttributeValues";
|
|
376
428
|
const _LPHR = "ListProfileHistoryRecords";
|
|
377
429
|
const _LPHRR = "ListProfileHistoryRecordsRequest";
|
|
@@ -388,9 +440,16 @@ const _LPOTT = "ListProfileObjectTypeTemplates";
|
|
|
388
440
|
const _LPOTTI = "ListProfileObjectTypeTemplateItem";
|
|
389
441
|
const _LPOTTR = "ListProfileObjectTypeTemplatesRequest";
|
|
390
442
|
const _LPOTTRi = "ListProfileObjectTypeTemplatesResponse";
|
|
443
|
+
const _LR = "ListRecommenders";
|
|
391
444
|
const _LRBM = "ListRuleBasedMatches";
|
|
392
445
|
const _LRBMR = "ListRuleBasedMatchesRequest";
|
|
393
446
|
const _LRBMRi = "ListRuleBasedMatchesResponse";
|
|
447
|
+
const _LRR = "ListRecommendersRequest";
|
|
448
|
+
const _LRRR = "ListRecommenderRecipesRequest";
|
|
449
|
+
const _LRRRi = "ListRecommenderRecipesResponse";
|
|
450
|
+
const _LRRi = "ListRecommendersResponse";
|
|
451
|
+
const _LRRis = "ListRecommenderRecipes";
|
|
452
|
+
const _LRU = "LatestRecommenderUpdate";
|
|
394
453
|
const _LSD = "ListSegmentDefinitions";
|
|
395
454
|
const _LSDR = "ListSegmentDefinitionsRequest";
|
|
396
455
|
const _LSDRi = "ListSegmentDefinitionsResponse";
|
|
@@ -406,6 +465,7 @@ const _LW = "ListWorkflows";
|
|
|
406
465
|
const _LWI = "ListWorkflowsItem";
|
|
407
466
|
const _LWR = "ListWorkflowsRequest";
|
|
408
467
|
const _LWRi = "ListWorkflowsResponse";
|
|
468
|
+
const _La = "Layout";
|
|
409
469
|
const _M = "Message";
|
|
410
470
|
const _MA = "MailingAddress";
|
|
411
471
|
const _MACSFM = "MinAllowedConfidenceScoreForMerging";
|
|
@@ -437,7 +497,9 @@ const _MT = "MatchType";
|
|
|
437
497
|
const _Ma = "Marketo";
|
|
438
498
|
const _Mat = "Matching";
|
|
439
499
|
const _Matc = "Matches";
|
|
500
|
+
const _Max = "Maximum";
|
|
440
501
|
const _Me = "Metrics";
|
|
502
|
+
const _Mi = "Minimum";
|
|
441
503
|
const _N = "Name";
|
|
442
504
|
const _NOMD = "NumberOfMergesDone";
|
|
443
505
|
const _NOMF = "NumberOfMatchesFound";
|
|
@@ -466,6 +528,9 @@ const _PB = "PerformedBy";
|
|
|
466
528
|
const _PC = "PostalCode";
|
|
467
529
|
const _PCr = "ProfileCount";
|
|
468
530
|
const _PD = "ProfileDimension";
|
|
531
|
+
const _PDOT = "PutDomainObjectType";
|
|
532
|
+
const _PDOTR = "PutDomainObjectTypeRequest";
|
|
533
|
+
const _PDOTRu = "PutDomainObjectTypeResponse";
|
|
469
534
|
const _PEA = "PersonalEmailAddress";
|
|
470
535
|
const _PHR = "ProfileHistoryRecords";
|
|
471
536
|
const _PHRr = "ProfileHistoryRecord";
|
|
@@ -497,25 +562,47 @@ const _PTD = "ProfileTypeDimension";
|
|
|
497
562
|
const _PTS = "PartyTypeString";
|
|
498
563
|
const _PTV = "ProfileTypeValues";
|
|
499
564
|
const _PTr = "ProfileType";
|
|
565
|
+
const _P_ = "P5";
|
|
566
|
+
const _P__ = "P25";
|
|
567
|
+
const _P___ = "P50";
|
|
568
|
+
const _P____ = "P75";
|
|
569
|
+
const _P_____ = "P95";
|
|
500
570
|
const _Pe = "Periods";
|
|
501
|
-
const _Per = "
|
|
571
|
+
const _Per = "Percentiles";
|
|
572
|
+
const _Peri = "Period";
|
|
502
573
|
const _Ph = "Phone";
|
|
503
574
|
const _Pr = "Profiles";
|
|
575
|
+
const _Pri = "Price";
|
|
504
576
|
const _Pro = "Profile";
|
|
505
577
|
const _QED = "QueryEndDate";
|
|
506
578
|
const _QR = "QueryResult";
|
|
507
579
|
const _QSD = "QueryStartDate";
|
|
508
580
|
const _R = "Range";
|
|
509
581
|
const _RA = "RoleArn";
|
|
582
|
+
const _RAe = "RecommenderArn";
|
|
510
583
|
const _RBM = "RuleBasedMatching";
|
|
511
584
|
const _RBMR = "RuleBasedMatchingRequest";
|
|
512
585
|
const _RBMRu = "RuleBasedMatchingResponse";
|
|
586
|
+
const _RC = "RecommenderConfig";
|
|
587
|
+
const _RCe = "RecommenderContext";
|
|
513
588
|
const _RL = "RuleLevel";
|
|
589
|
+
const _RN = "RecommenderName";
|
|
514
590
|
const _RNFE = "ResourceNotFoundException";
|
|
591
|
+
const _RNe = "RecipeName";
|
|
515
592
|
const _RO = "RangeOverride";
|
|
516
593
|
const _RP = "RecordsProcessed";
|
|
594
|
+
const _RR = "RecommenderRecipes";
|
|
595
|
+
const _RRL = "RecommenderRecipesList";
|
|
596
|
+
const _RRN = "RecommenderRecipeName";
|
|
597
|
+
const _RRe = "RecommenderRecipe";
|
|
517
598
|
const _RS = "ResultsSummary";
|
|
599
|
+
const _RSL = "RecommenderSummaryList";
|
|
600
|
+
const _RSe = "RecommenderSummary";
|
|
601
|
+
const _RU = "RecommenderUpdate";
|
|
518
602
|
const _Re = "Readiness";
|
|
603
|
+
const _Rec = "Recommendations";
|
|
604
|
+
const _Reco = "Recommenders";
|
|
605
|
+
const _Recom = "Recommendation";
|
|
519
606
|
const _Ru = "Rule";
|
|
520
607
|
const _S = "Statistic";
|
|
521
608
|
const _SA = "ShippingAddress";
|
|
@@ -524,12 +611,13 @@ const _SC = "StepsCompleted";
|
|
|
524
611
|
const _SCP = "SourceConnectorProperties";
|
|
525
612
|
const _SCT = "SourceConnectorType";
|
|
526
613
|
const _SCt = "StatusCode";
|
|
527
|
-
const _SD = "
|
|
614
|
+
const _SD = "StandardDeviation";
|
|
528
615
|
const _SDA = "SegmentDefinitionArn";
|
|
529
616
|
const _SDI = "SegmentDefinitionItem";
|
|
530
617
|
const _SDL = "SegmentDefinitionsList";
|
|
531
618
|
const _SDN = "SegmentDefinitionName";
|
|
532
|
-
const _SDt = "
|
|
619
|
+
const _SDt = "StartDate";
|
|
620
|
+
const _SDta = "StatusDescription";
|
|
533
621
|
const _SE = "S3Exporting";
|
|
534
622
|
const _SEC = "S3ExportingConfig";
|
|
535
623
|
const _SEL = "S3ExportingLocation";
|
|
@@ -558,15 +646,23 @@ const _SPR = "SearchProfilesRequest";
|
|
|
558
646
|
const _SPRe = "SearchProfilesResponse";
|
|
559
647
|
const _SQ = "SegmentQuery";
|
|
560
648
|
const _SR = "StatusReason";
|
|
649
|
+
const _SRR = "StartRecommenderRequest";
|
|
650
|
+
const _SRRt = "StartRecommenderResponse";
|
|
651
|
+
const _SRRto = "StopRecommenderRequest";
|
|
652
|
+
const _SRRtop = "StopRecommenderResponse";
|
|
653
|
+
const _SRt = "StartRecommender";
|
|
654
|
+
const _SRto = "StopRecommender";
|
|
561
655
|
const _SS = "StoppedSince";
|
|
562
656
|
const _SSL = "SourceSegmentList";
|
|
563
657
|
const _SSP = "S3SourceProperties";
|
|
564
658
|
const _SSPa = "SalesforceSourceProperties";
|
|
659
|
+
const _SSQ = "SegmentSqlQuery";
|
|
565
660
|
const _SST = "ScheduleStartTime";
|
|
566
661
|
const _SSo = "SourceSegments";
|
|
567
662
|
const _SSou = "SourceSegment";
|
|
568
663
|
const _ST = "StartTime";
|
|
569
664
|
const _STP = "ScheduledTriggerProperties";
|
|
665
|
+
const _STe = "SegmentType";
|
|
570
666
|
const _STo = "SourceType";
|
|
571
667
|
const _SUJ = "StartUploadJob";
|
|
572
668
|
const _SUJR = "StartUploadJobRequest";
|
|
@@ -577,17 +673,24 @@ const _SUJt = "StopUploadJob";
|
|
|
577
673
|
const _SV = "SearchValue";
|
|
578
674
|
const _S_ = "S3";
|
|
579
675
|
const _Sa = "Salesforce";
|
|
580
|
-
const _Sc = "
|
|
676
|
+
const _Sc = "Scope";
|
|
677
|
+
const _Sch = "Scheduled";
|
|
678
|
+
const _Sco = "Score";
|
|
581
679
|
const _So = "Source";
|
|
582
680
|
const _St = "State";
|
|
583
681
|
const _Sta = "Status";
|
|
584
682
|
const _Star = "Start";
|
|
585
683
|
const _Stat = "Stats";
|
|
586
|
-
const
|
|
684
|
+
const _Stati = "Statistics";
|
|
685
|
+
const _T = "Type";
|
|
587
686
|
const _TC = "TriggerConfig";
|
|
588
687
|
const _TE = "ThrottlingException";
|
|
589
688
|
const _TF = "TimestampFormat";
|
|
689
|
+
const _TFr = "TrainingFrequency";
|
|
590
690
|
const _TI = "TemplateId";
|
|
691
|
+
const _TM = "TrainingMetrics";
|
|
692
|
+
const _TMC = "TrainingMetricsCount";
|
|
693
|
+
const _TML = "TrainingMetricsList";
|
|
591
694
|
const _TP = "TaskProperties";
|
|
592
695
|
const _TPr = "TriggerProperties";
|
|
593
696
|
const _TR = "TagResource";
|
|
@@ -602,12 +705,13 @@ const _Ta = "Tags";
|
|
|
602
705
|
const _Tar = "Target";
|
|
603
706
|
const _Tas = "Tasks";
|
|
604
707
|
const _Task = "Task";
|
|
708
|
+
const _Th = "Threshold";
|
|
605
709
|
const _Ti = "Time";
|
|
606
710
|
const _Tim = "Timezone";
|
|
607
|
-
const _Ty = "Type";
|
|
608
711
|
const _U = "Uri";
|
|
609
|
-
const _UA = "
|
|
610
|
-
const _UAp = "
|
|
712
|
+
const _UA = "UpdatedAt";
|
|
713
|
+
const _UAp = "UpdateAddress";
|
|
714
|
+
const _UApd = "UpdateAttributes";
|
|
611
715
|
const _UCAD = "UpdateCalculatedAttributeDefinition";
|
|
612
716
|
const _UCADR = "UpdateCalculatedAttributeDefinitionRequest";
|
|
613
717
|
const _UCADRp = "UpdateCalculatedAttributeDefinitionResponse";
|
|
@@ -630,7 +734,10 @@ const _UPRp = "UpdateProfileResponse";
|
|
|
630
734
|
const _UR = "UpdatedRecords";
|
|
631
735
|
const _URR = "UntagResourceRequest";
|
|
632
736
|
const _URRn = "UntagResourceResponse";
|
|
737
|
+
const _URRp = "UpdateRecommenderRequest";
|
|
738
|
+
const _URRpd = "UpdateRecommenderResponse";
|
|
633
739
|
const _URn = "UntagResource";
|
|
740
|
+
const _URp = "UpdateRecommender";
|
|
634
741
|
const _US = "UnhealthySince";
|
|
635
742
|
const _Un = "Unit";
|
|
636
743
|
const _Unl = "Unlimited";
|
|
@@ -651,6 +758,7 @@ const _Z = "Zendesk";
|
|
|
651
758
|
const _ZSP = "ZendeskSourceProperties";
|
|
652
759
|
const _aSKL = "additionalSearchKeysList";
|
|
653
760
|
const _c = "client";
|
|
761
|
+
const _d = "description";
|
|
654
762
|
const _e = "error";
|
|
655
763
|
const _fBL = "foundByList";
|
|
656
764
|
const _h = "http";
|
|
@@ -659,6 +767,7 @@ const _hQ = "httpQuery";
|
|
|
659
767
|
const _ih = "include-hidden";
|
|
660
768
|
const _jN = "jsonName";
|
|
661
769
|
const _mr = "max-results";
|
|
770
|
+
const _n = "name";
|
|
662
771
|
const _nt = "next-token";
|
|
663
772
|
const _rA = "resourceArn";
|
|
664
773
|
const _s = "server";
|
|
@@ -666,12 +775,16 @@ const _sJ = "stringifiedJson";
|
|
|
666
775
|
const _sST = "sensitiveString0To1000";
|
|
667
776
|
const _sSTe = "sensitiveString0To255";
|
|
668
777
|
const _sSTen = "sensitiveString1To1000";
|
|
669
|
-
const _sSTens = "
|
|
670
|
-
const _sSTensi = "
|
|
778
|
+
const _sSTens = "sensitiveString1To10000";
|
|
779
|
+
const _sSTensi = "sensitiveString1To2000000";
|
|
780
|
+
const _sSTensit = "sensitiveString1To255";
|
|
781
|
+
const _sSTensiti = "sensitiveString1To4000";
|
|
782
|
+
const _sSTensitiv = "sensitiveString1To50000";
|
|
671
783
|
const _sT = "sensitiveText";
|
|
672
784
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.customerprofiles";
|
|
673
785
|
const _t = "tags";
|
|
674
786
|
const _tK = "tagKeys";
|
|
787
|
+
const _tmc = "training-metrics-count";
|
|
675
788
|
const n0 = "com.amazonaws.customerprofiles";
|
|
676
789
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
677
790
|
import { CustomerProfilesServiceException as __CustomerProfilesServiceException } from "../models/CustomerProfilesServiceException";
|
|
@@ -682,8 +795,11 @@ export var ProfileType = [0, n0, _PTr, 8, 0];
|
|
|
682
795
|
export var sensitiveString0To1000 = [0, n0, _sST, 8, 0];
|
|
683
796
|
export var sensitiveString0To255 = [0, n0, _sSTe, 8, 0];
|
|
684
797
|
export var sensitiveString1To1000 = [0, n0, _sSTen, 8, 0];
|
|
685
|
-
export var
|
|
686
|
-
export var
|
|
798
|
+
export var sensitiveString1To10000 = [0, n0, _sSTens, 8, 0];
|
|
799
|
+
export var sensitiveString1To2000000 = [0, n0, _sSTensi, 8, 0];
|
|
800
|
+
export var sensitiveString1To255 = [0, n0, _sSTensit, 8, 0];
|
|
801
|
+
export var sensitiveString1To4000 = [0, n0, _sSTensiti, 8, 0];
|
|
802
|
+
export var sensitiveString1To50000 = [0, n0, _sSTensitiv, 8, 0];
|
|
687
803
|
export var sensitiveText = [0, n0, _sT, 8, 0];
|
|
688
804
|
export var Statistic = [0, n0, _S, 8, 0];
|
|
689
805
|
export var stringifiedJson = [0, n0, _sJ, 8, 0];
|
|
@@ -906,8 +1022,30 @@ export var CalculatedAttributeValue = [
|
|
|
906
1022
|
[_CAN, _DNi, _IDP, _PI, _Va, _LOT],
|
|
907
1023
|
[0, 0, 0, 0, 0, 4],
|
|
908
1024
|
];
|
|
1025
|
+
export var CatalogItem = [
|
|
1026
|
+
3,
|
|
1027
|
+
n0,
|
|
1028
|
+
_CI,
|
|
1029
|
+
0,
|
|
1030
|
+
[_I, _N, _Cod, _T, _Ca, _D, _AId, _IL, _L, _CA, _UA, _Pri, _At],
|
|
1031
|
+
[
|
|
1032
|
+
[() => sensitiveString1To255, 0],
|
|
1033
|
+
[() => sensitiveString1To255, 0],
|
|
1034
|
+
[() => sensitiveString1To255, 0],
|
|
1035
|
+
[() => sensitiveString1To255, 0],
|
|
1036
|
+
[() => sensitiveString1To255, 0],
|
|
1037
|
+
[() => sensitiveString1To255, 0],
|
|
1038
|
+
[() => sensitiveString1To1000, 0],
|
|
1039
|
+
[() => sensitiveString1To1000, 0],
|
|
1040
|
+
[() => sensitiveString1To1000, 0],
|
|
1041
|
+
4,
|
|
1042
|
+
4,
|
|
1043
|
+
[() => sensitiveString1To255, 0],
|
|
1044
|
+
[() => Attributes, 0],
|
|
1045
|
+
],
|
|
1046
|
+
];
|
|
909
1047
|
export var ConditionOverrides = [3, n0, _CO, 8, [_R], [() => RangeOverride]];
|
|
910
|
-
export var Conditions = [3, n0, _Cond, 8, [_R, _OC,
|
|
1048
|
+
export var Conditions = [3, n0, _Cond, 8, [_R, _OC, _Th], [() => Range, 1, () => Threshold]];
|
|
911
1049
|
export var ConflictResolution = [3, n0, _CR, 0, [_CRM, _SN], [0, 0]];
|
|
912
1050
|
export var ConnectorOperator = [3, n0, _COo, 0, [_Ma, _S_, _Sa, _SNe, _Z], [0, 0, 0, 0, 0]];
|
|
913
1051
|
export var Consolidation = [3, n0, _Con, 0, [_MAL], [[1, n0, _MAL, 0, 64 | 0]]];
|
|
@@ -958,7 +1096,7 @@ export var CreateDomainLayoutRequest = [
|
|
|
958
1096
|
n0,
|
|
959
1097
|
_CDLR,
|
|
960
1098
|
0,
|
|
961
|
-
[_DN, _LDN, _D, _DNi, _ID, _LT,
|
|
1099
|
+
[_DN, _LDN, _D, _DNi, _ID, _LT, _La, _Ta],
|
|
962
1100
|
[[0, 1], [0, 1], [() => sensitiveText, 0], 0, 2, 0, [() => sensitiveString1To2000000, 0], 128 | 0],
|
|
963
1101
|
];
|
|
964
1102
|
export var CreateDomainLayoutResponse = [
|
|
@@ -966,7 +1104,7 @@ export var CreateDomainLayoutResponse = [
|
|
|
966
1104
|
n0,
|
|
967
1105
|
_CDLRr,
|
|
968
1106
|
0,
|
|
969
|
-
[_LDN, _D, _DNi, _ID, _LT,
|
|
1107
|
+
[_LDN, _D, _DNi, _ID, _LT, _La, _Ve, _Ta, _CA, _LUA],
|
|
970
1108
|
[0, [() => sensitiveText, 0], 0, 2, 0, [() => sensitiveString1To2000000, 0], 0, 128 | 0, 4, 4],
|
|
971
1109
|
];
|
|
972
1110
|
export var CreateDomainRequest = [
|
|
@@ -974,16 +1112,16 @@ export var CreateDomainRequest = [
|
|
|
974
1112
|
n0,
|
|
975
1113
|
_CDR,
|
|
976
1114
|
0,
|
|
977
|
-
[_DN, _DED, _DEK, _DLQU, _Mat, _RBM, _Ta],
|
|
978
|
-
[[0, 1], 1, 0, 0, () => MatchingRequest, () => RuleBasedMatchingRequest, 128 | 0],
|
|
1115
|
+
[_DN, _DED, _DEK, _DLQU, _Mat, _RBM, _DS, _Ta],
|
|
1116
|
+
[[0, 1], 1, 0, 0, () => MatchingRequest, () => RuleBasedMatchingRequest, () => DataStoreRequest, 128 | 0],
|
|
979
1117
|
];
|
|
980
1118
|
export var CreateDomainResponse = [
|
|
981
1119
|
3,
|
|
982
1120
|
n0,
|
|
983
1121
|
_CDRr,
|
|
984
1122
|
0,
|
|
985
|
-
[_DN, _DED, _DEK, _DLQU, _Mat, _RBM, _CA, _LUA, _Ta],
|
|
986
|
-
[0, 1, 0, 0, () => MatchingResponse, () => RuleBasedMatchingResponse, 4, 4, 128 | 0],
|
|
1123
|
+
[_DN, _DED, _DEK, _DLQU, _Mat, _RBM, _DS, _CA, _LUA, _Ta],
|
|
1124
|
+
[0, 1, 0, 0, () => MatchingResponse, () => RuleBasedMatchingResponse, () => DataStoreResponse, 4, 4, 128 | 0],
|
|
987
1125
|
];
|
|
988
1126
|
export var CreateEventStreamRequest = [
|
|
989
1127
|
3,
|
|
@@ -1091,13 +1229,30 @@ export var CreateProfileRequest = [
|
|
|
1091
1229
|
],
|
|
1092
1230
|
];
|
|
1093
1231
|
export var CreateProfileResponse = [3, n0, _CPRr, 0, [_PI], [0]];
|
|
1232
|
+
export var CreateRecommenderRequest = [
|
|
1233
|
+
3,
|
|
1234
|
+
n0,
|
|
1235
|
+
_CRR,
|
|
1236
|
+
0,
|
|
1237
|
+
[_DN, _RN, _RRN, _RC, _D, _Ta],
|
|
1238
|
+
[[0, 1], [0, 1], 0, () => RecommenderConfig, [() => sensitiveText, 0], 128 | 0],
|
|
1239
|
+
];
|
|
1240
|
+
export var CreateRecommenderResponse = [3, n0, _CRRr, 0, [_RAe, _Ta], [0, 128 | 0]];
|
|
1094
1241
|
export var CreateSegmentDefinitionRequest = [
|
|
1095
1242
|
3,
|
|
1096
1243
|
n0,
|
|
1097
1244
|
_CSDR,
|
|
1098
1245
|
0,
|
|
1099
|
-
[_DN, _SDN, _DNi, _D, _SG, _Ta],
|
|
1100
|
-
[
|
|
1246
|
+
[_DN, _SDN, _DNi, _D, _SG, _SSQ, _Ta],
|
|
1247
|
+
[
|
|
1248
|
+
[0, 1],
|
|
1249
|
+
[0, 1],
|
|
1250
|
+
0,
|
|
1251
|
+
[() => sensitiveString1To4000, 0],
|
|
1252
|
+
[() => SegmentGroup, 0],
|
|
1253
|
+
[() => sensitiveString1To50000, 0],
|
|
1254
|
+
128 | 0,
|
|
1255
|
+
],
|
|
1101
1256
|
];
|
|
1102
1257
|
export var CreateSegmentDefinitionResponse = [
|
|
1103
1258
|
3,
|
|
@@ -1119,7 +1274,7 @@ export var CreateSegmentDefinitionResponse = [
|
|
|
1119
1274
|
},
|
|
1120
1275
|
],
|
|
1121
1276
|
[
|
|
1122
|
-
() =>
|
|
1277
|
+
() => sensitiveString1To4000,
|
|
1123
1278
|
{
|
|
1124
1279
|
[_jN]: _D,
|
|
1125
1280
|
},
|
|
@@ -1149,10 +1304,11 @@ export var CreateSegmentEstimateRequest = [
|
|
|
1149
1304
|
n0,
|
|
1150
1305
|
_CSER,
|
|
1151
1306
|
0,
|
|
1152
|
-
[_DN, _SQ],
|
|
1307
|
+
[_DN, _SQ, _SSQ],
|
|
1153
1308
|
[
|
|
1154
1309
|
[0, 1],
|
|
1155
1310
|
[() => SegmentGroupStructure, 0],
|
|
1311
|
+
[() => sensitiveString1To50000, 0],
|
|
1156
1312
|
],
|
|
1157
1313
|
];
|
|
1158
1314
|
export var CreateSegmentEstimateResponse = [3, n0, _CSERr, 0, [_DN, _EI, _SCt], [0, 0, [1, 32]]];
|
|
@@ -1188,6 +1344,8 @@ export var CreateUploadJobResponse = [
|
|
|
1188
1344
|
],
|
|
1189
1345
|
],
|
|
1190
1346
|
];
|
|
1347
|
+
export var DataStoreRequest = [3, n0, _DSR, 0, [_En], [2]];
|
|
1348
|
+
export var DataStoreResponse = [3, n0, _DSRa, 0, [_En, _Re], [2, () => Readiness]];
|
|
1191
1349
|
export var DateDimension = [
|
|
1192
1350
|
3,
|
|
1193
1351
|
n0,
|
|
@@ -1233,6 +1391,18 @@ export var DeleteDomainLayoutRequest = [
|
|
|
1233
1391
|
],
|
|
1234
1392
|
];
|
|
1235
1393
|
export var DeleteDomainLayoutResponse = [3, n0, _DDLRe, 0, [_M], [0]];
|
|
1394
|
+
export var DeleteDomainObjectTypeRequest = [
|
|
1395
|
+
3,
|
|
1396
|
+
n0,
|
|
1397
|
+
_DDOTR,
|
|
1398
|
+
0,
|
|
1399
|
+
[_DN, _OTN],
|
|
1400
|
+
[
|
|
1401
|
+
[0, 1],
|
|
1402
|
+
[0, 1],
|
|
1403
|
+
],
|
|
1404
|
+
];
|
|
1405
|
+
export var DeleteDomainObjectTypeResponse = [3, n0, _DDOTRe, 0, [], []];
|
|
1236
1406
|
export var DeleteDomainRequest = [3, n0, _DDR, 0, [_DN], [[0, 1]]];
|
|
1237
1407
|
export var DeleteDomainResponse = [3, n0, _DDRe, 0, [_M], [0]];
|
|
1238
1408
|
export var DeleteEventStreamRequest = [
|
|
@@ -1293,6 +1463,18 @@ export var DeleteProfileObjectTypeRequest = [
|
|
|
1293
1463
|
export var DeleteProfileObjectTypeResponse = [3, n0, _DPOTRe, 0, [_M], [0]];
|
|
1294
1464
|
export var DeleteProfileRequest = [3, n0, _DPR, 0, [_PI, _DN], [0, [0, 1]]];
|
|
1295
1465
|
export var DeleteProfileResponse = [3, n0, _DPRe, 0, [_M], [0]];
|
|
1466
|
+
export var DeleteRecommenderRequest = [
|
|
1467
|
+
3,
|
|
1468
|
+
n0,
|
|
1469
|
+
_DRR,
|
|
1470
|
+
0,
|
|
1471
|
+
[_DN, _RN],
|
|
1472
|
+
[
|
|
1473
|
+
[0, 1],
|
|
1474
|
+
[0, 1],
|
|
1475
|
+
],
|
|
1476
|
+
];
|
|
1477
|
+
export var DeleteRecommenderResponse = [3, n0, _DRRe, 0, [], []];
|
|
1296
1478
|
export var DeleteSegmentDefinitionRequest = [
|
|
1297
1479
|
3,
|
|
1298
1480
|
n0,
|
|
@@ -1331,7 +1513,7 @@ export var DeleteWorkflowRequest = [
|
|
|
1331
1513
|
],
|
|
1332
1514
|
];
|
|
1333
1515
|
export var DeleteWorkflowResponse = [3, n0, _DWRe, 0, [], []];
|
|
1334
|
-
export var DestinationSummary = [3, n0,
|
|
1516
|
+
export var DestinationSummary = [3, n0, _DSe, 0, [_U, _Sta, _US], [0, 0, 4]];
|
|
1335
1517
|
export var DetectedProfileObjectType = [
|
|
1336
1518
|
3,
|
|
1337
1519
|
n0,
|
|
@@ -1359,6 +1541,15 @@ export var DetectProfileObjectTypeResponse = [
|
|
|
1359
1541
|
[_DPOTe],
|
|
1360
1542
|
[[() => DetectedProfileObjectTypes, 0]],
|
|
1361
1543
|
];
|
|
1544
|
+
export var DomainObjectTypeField = [3, n0, _DOTF, 0, [_So, _Tar, _CTo, _FT], [0, 0, 0, 0]];
|
|
1545
|
+
export var DomainObjectTypesListItem = [
|
|
1546
|
+
3,
|
|
1547
|
+
n0,
|
|
1548
|
+
_DOTLI,
|
|
1549
|
+
0,
|
|
1550
|
+
[_OTN, _D, _CA, _LUA, _Ta],
|
|
1551
|
+
[0, [() => sensitiveString1To10000, 0], 4, 4, 128 | 0],
|
|
1552
|
+
];
|
|
1362
1553
|
export var DomainStats = [3, n0, _DSo, 0, [_PCr, _MPC, _OC, _TSo], [1, 1, 1, 1]];
|
|
1363
1554
|
export var EngagementPreferences = [
|
|
1364
1555
|
3,
|
|
@@ -1368,13 +1559,15 @@ export var EngagementPreferences = [
|
|
|
1368
1559
|
[_Ph, _Em],
|
|
1369
1560
|
[() => PhonePreferenceList, () => EmailPreferenceList],
|
|
1370
1561
|
];
|
|
1562
|
+
export var EventParameters = [3, n0, _EPv, 0, [_ETv, _EVT], [0, 1]];
|
|
1563
|
+
export var EventsConfig = [3, n0, _EC, 0, [_EPL], [() => EventParametersList]];
|
|
1371
1564
|
export var EventStreamDestinationDetails = [3, n0, _ESDD, 0, [_U, _Sta, _US, _M], [0, 0, 4, 0]];
|
|
1372
1565
|
export var EventStreamSummary = [
|
|
1373
1566
|
3,
|
|
1374
1567
|
n0,
|
|
1375
1568
|
_ESS,
|
|
1376
1569
|
0,
|
|
1377
|
-
[_DN, _ESN, _ESA, _St, _SS,
|
|
1570
|
+
[_DN, _ESN, _ESA, _St, _SS, _DSe, _Ta],
|
|
1378
1571
|
[0, 0, 0, 0, 4, () => DestinationSummary, 128 | 0],
|
|
1379
1572
|
];
|
|
1380
1573
|
export var EventTriggerCondition = [
|
|
@@ -1395,7 +1588,7 @@ export var EventTriggerSummaryItem = [
|
|
|
1395
1588
|
[_OTN, _ETN, _D, _CA, _LUA, _Ta],
|
|
1396
1589
|
[0, 0, 0, 4, 4, 128 | 0],
|
|
1397
1590
|
];
|
|
1398
|
-
export var ExportingConfig = [3, n0,
|
|
1591
|
+
export var ExportingConfig = [3, n0, _ECx, 0, [_SE], [() => S3ExportingConfig]];
|
|
1399
1592
|
export var ExportingLocation = [3, n0, _EL, 0, [_SE], [() => S3ExportingLocation]];
|
|
1400
1593
|
export var ExtraLengthValueProfileDimension = [
|
|
1401
1594
|
3,
|
|
@@ -1450,10 +1643,10 @@ export var FieldSourceProfileIds = [
|
|
|
1450
1643
|
],
|
|
1451
1644
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 0, 0],
|
|
1452
1645
|
];
|
|
1453
|
-
export var Filter = [3, n0, _F, 0, [
|
|
1646
|
+
export var Filter = [3, n0, _F, 0, [_In, _Gr], [0, () => GroupList]];
|
|
1454
1647
|
export var FilterAttributeDimension = [3, n0, _FAD, 0, [_DT, _V], [0, 64 | 0]];
|
|
1455
1648
|
export var FilterDimension = [3, n0, _FDi, 0, [_At], [() => AttributeMap]];
|
|
1456
|
-
export var FilterGroup = [3, n0, _FG, 0, [
|
|
1649
|
+
export var FilterGroup = [3, n0, _FG, 0, [_T, _Di], [0, () => FilterDimensionList]];
|
|
1457
1650
|
export var FlowDefinition = [
|
|
1458
1651
|
3,
|
|
1459
1652
|
n0,
|
|
@@ -1548,17 +1741,48 @@ export var GetDomainLayoutResponse = [
|
|
|
1548
1741
|
n0,
|
|
1549
1742
|
_GDLRe,
|
|
1550
1743
|
0,
|
|
1551
|
-
[_LDN, _D, _DNi, _ID, _LT,
|
|
1744
|
+
[_LDN, _D, _DNi, _ID, _LT, _La, _Ve, _CA, _LUA, _Ta],
|
|
1552
1745
|
[0, [() => sensitiveText, 0], 0, 2, 0, [() => sensitiveString1To2000000, 0], 0, 4, 4, 128 | 0],
|
|
1553
1746
|
];
|
|
1747
|
+
export var GetDomainObjectTypeRequest = [
|
|
1748
|
+
3,
|
|
1749
|
+
n0,
|
|
1750
|
+
_GDOTR,
|
|
1751
|
+
0,
|
|
1752
|
+
[_DN, _OTN],
|
|
1753
|
+
[
|
|
1754
|
+
[0, 1],
|
|
1755
|
+
[0, 1],
|
|
1756
|
+
],
|
|
1757
|
+
];
|
|
1758
|
+
export var GetDomainObjectTypeResponse = [
|
|
1759
|
+
3,
|
|
1760
|
+
n0,
|
|
1761
|
+
_GDOTRe,
|
|
1762
|
+
0,
|
|
1763
|
+
[_OTN, _D, _EK, _Fi, _CA, _LUA, _Ta],
|
|
1764
|
+
[0, [() => sensitiveString1To10000, 0], 0, () => DomainObjectTypeFields, 4, 4, 128 | 0],
|
|
1765
|
+
];
|
|
1554
1766
|
export var GetDomainRequest = [3, n0, _GDR, 0, [_DN], [[0, 1]]];
|
|
1555
1767
|
export var GetDomainResponse = [
|
|
1556
1768
|
3,
|
|
1557
1769
|
n0,
|
|
1558
1770
|
_GDRe,
|
|
1559
1771
|
0,
|
|
1560
|
-
[_DN, _DED, _DEK, _DLQU, _Stat, _Mat, _RBM, _CA, _LUA, _Ta],
|
|
1561
|
-
[
|
|
1772
|
+
[_DN, _DED, _DEK, _DLQU, _Stat, _Mat, _RBM, _DS, _CA, _LUA, _Ta],
|
|
1773
|
+
[
|
|
1774
|
+
0,
|
|
1775
|
+
1,
|
|
1776
|
+
0,
|
|
1777
|
+
0,
|
|
1778
|
+
() => DomainStats,
|
|
1779
|
+
() => MatchingResponse,
|
|
1780
|
+
() => RuleBasedMatchingResponse,
|
|
1781
|
+
() => DataStoreResponse,
|
|
1782
|
+
4,
|
|
1783
|
+
4,
|
|
1784
|
+
128 | 0,
|
|
1785
|
+
],
|
|
1562
1786
|
];
|
|
1563
1787
|
export var GetEventStreamRequest = [
|
|
1564
1788
|
3,
|
|
@@ -1623,8 +1847,8 @@ export var GetIntegrationResponse = [
|
|
|
1623
1847
|
n0,
|
|
1624
1848
|
_GIRe,
|
|
1625
1849
|
0,
|
|
1626
|
-
[_DN, _U, _OTN, _CA, _LUA, _Ta, _OTNb, _WI, _IU, _RA, _ETNv],
|
|
1627
|
-
[0, 0, 0, 4, 4, 128 | 0, 128 | 0, 0, 2, 0, 64 | 0],
|
|
1850
|
+
[_DN, _U, _OTN, _CA, _LUA, _Ta, _OTNb, _WI, _IU, _RA, _ETNv, _Sc],
|
|
1851
|
+
[0, 0, 0, 4, 4, 128 | 0, 128 | 0, 0, 2, 0, 64 | 0, 0],
|
|
1628
1852
|
];
|
|
1629
1853
|
export var GetMatchesRequest = [
|
|
1630
1854
|
3,
|
|
@@ -1656,12 +1880,48 @@ export var GetMatchesResponse = [
|
|
|
1656
1880
|
[_NT, _MGD, _PM, _Matc],
|
|
1657
1881
|
[0, 4, 1, () => MatchesList],
|
|
1658
1882
|
];
|
|
1883
|
+
export var GetObjectTypeAttributeStatisticsPercentiles = [
|
|
1884
|
+
3,
|
|
1885
|
+
n0,
|
|
1886
|
+
_GOTASP,
|
|
1887
|
+
0,
|
|
1888
|
+
[_P_, _P__, _P___, _P____, _P_____],
|
|
1889
|
+
[1, 1, 1, 1, 1],
|
|
1890
|
+
];
|
|
1891
|
+
export var GetObjectTypeAttributeStatisticsRequest = [
|
|
1892
|
+
3,
|
|
1893
|
+
n0,
|
|
1894
|
+
_GOTASR,
|
|
1895
|
+
0,
|
|
1896
|
+
[_DN, _OTN, _ANt],
|
|
1897
|
+
[
|
|
1898
|
+
[0, 1],
|
|
1899
|
+
[0, 1],
|
|
1900
|
+
[0, 1],
|
|
1901
|
+
],
|
|
1902
|
+
];
|
|
1903
|
+
export var GetObjectTypeAttributeStatisticsResponse = [
|
|
1904
|
+
3,
|
|
1905
|
+
n0,
|
|
1906
|
+
_GOTASRe,
|
|
1907
|
+
0,
|
|
1908
|
+
[_Stati, _CAa],
|
|
1909
|
+
[() => GetObjectTypeAttributeStatisticsStats, 4],
|
|
1910
|
+
];
|
|
1911
|
+
export var GetObjectTypeAttributeStatisticsStats = [
|
|
1912
|
+
3,
|
|
1913
|
+
n0,
|
|
1914
|
+
_GOTASS,
|
|
1915
|
+
0,
|
|
1916
|
+
[_Max, _Mi, _Av, _SD, _Per],
|
|
1917
|
+
[1, 1, 1, 1, () => GetObjectTypeAttributeStatisticsPercentiles],
|
|
1918
|
+
];
|
|
1659
1919
|
export var GetProfileHistoryRecordRequest = [
|
|
1660
1920
|
3,
|
|
1661
1921
|
n0,
|
|
1662
1922
|
_GPHRR,
|
|
1663
1923
|
0,
|
|
1664
|
-
[_DN, _PI,
|
|
1924
|
+
[_DN, _PI, _I],
|
|
1665
1925
|
[
|
|
1666
1926
|
[0, 1],
|
|
1667
1927
|
[0, 1],
|
|
@@ -1673,7 +1933,7 @@ export var GetProfileHistoryRecordResponse = [
|
|
|
1673
1933
|
n0,
|
|
1674
1934
|
_GPHRRe,
|
|
1675
1935
|
0,
|
|
1676
|
-
[
|
|
1936
|
+
[_I, _OTN, _CA, _LUA, _AT, _POUK, _Cont, _PB],
|
|
1677
1937
|
[0, 0, 4, 4, 0, 0, [() => stringifiedJson, 0], 0],
|
|
1678
1938
|
];
|
|
1679
1939
|
export var GetProfileObjectTypeRequest = [
|
|
@@ -1704,6 +1964,59 @@ export var GetProfileObjectTypeTemplateResponse = [
|
|
|
1704
1964
|
[_TI, _SN, _SO, _APC, _SLUTF, _Fi, _K],
|
|
1705
1965
|
[0, 0, 0, 2, 0, [() => FieldMap, 0], [() => KeyMap, 0]],
|
|
1706
1966
|
];
|
|
1967
|
+
export var GetProfileRecommendationsRequest = [
|
|
1968
|
+
3,
|
|
1969
|
+
n0,
|
|
1970
|
+
_GPRR,
|
|
1971
|
+
0,
|
|
1972
|
+
[_DN, _PI, _RN, _Conte, _MR],
|
|
1973
|
+
[[0, 1], [0, 1], 0, [() => RecommenderContext, 0], 1],
|
|
1974
|
+
];
|
|
1975
|
+
export var GetProfileRecommendationsResponse = [
|
|
1976
|
+
3,
|
|
1977
|
+
n0,
|
|
1978
|
+
_GPRRe,
|
|
1979
|
+
0,
|
|
1980
|
+
[_Rec],
|
|
1981
|
+
[[() => Recommendations, 0]],
|
|
1982
|
+
];
|
|
1983
|
+
export var GetRecommenderRequest = [
|
|
1984
|
+
3,
|
|
1985
|
+
n0,
|
|
1986
|
+
_GRR,
|
|
1987
|
+
0,
|
|
1988
|
+
[_DN, _RN, _TMC],
|
|
1989
|
+
[
|
|
1990
|
+
[0, 1],
|
|
1991
|
+
[0, 1],
|
|
1992
|
+
[
|
|
1993
|
+
1,
|
|
1994
|
+
{
|
|
1995
|
+
[_hQ]: _tmc,
|
|
1996
|
+
},
|
|
1997
|
+
],
|
|
1998
|
+
],
|
|
1999
|
+
];
|
|
2000
|
+
export var GetRecommenderResponse = [
|
|
2001
|
+
3,
|
|
2002
|
+
n0,
|
|
2003
|
+
_GRRe,
|
|
2004
|
+
0,
|
|
2005
|
+
[_RN, _RRN, _RC, _D, _Sta, _LUA, _CA, _FR, _LRU, _TM, _Ta],
|
|
2006
|
+
[
|
|
2007
|
+
0,
|
|
2008
|
+
0,
|
|
2009
|
+
() => RecommenderConfig,
|
|
2010
|
+
[() => sensitiveText, 0],
|
|
2011
|
+
0,
|
|
2012
|
+
4,
|
|
2013
|
+
4,
|
|
2014
|
+
0,
|
|
2015
|
+
() => RecommenderUpdate,
|
|
2016
|
+
() => TrainingMetricsList,
|
|
2017
|
+
128 | 0,
|
|
2018
|
+
],
|
|
2019
|
+
];
|
|
1707
2020
|
export var GetSegmentDefinitionRequest = [
|
|
1708
2021
|
3,
|
|
1709
2022
|
n0,
|
|
@@ -1720,7 +2033,7 @@ export var GetSegmentDefinitionResponse = [
|
|
|
1720
2033
|
n0,
|
|
1721
2034
|
_GSDRe,
|
|
1722
2035
|
0,
|
|
1723
|
-
[_SDN, _DNi, _D, _SG, _SDA, _CA, _Ta],
|
|
2036
|
+
[_SDN, _DNi, _D, _SG, _SDA, _CA, _Ta, _SSQ, _STe],
|
|
1724
2037
|
[
|
|
1725
2038
|
[
|
|
1726
2039
|
0,
|
|
@@ -1735,7 +2048,7 @@ export var GetSegmentDefinitionResponse = [
|
|
|
1735
2048
|
},
|
|
1736
2049
|
],
|
|
1737
2050
|
[
|
|
1738
|
-
() =>
|
|
2051
|
+
() => sensitiveString1To4000,
|
|
1739
2052
|
{
|
|
1740
2053
|
[_jN]: _D,
|
|
1741
2054
|
},
|
|
@@ -1764,6 +2077,18 @@ export var GetSegmentDefinitionResponse = [
|
|
|
1764
2077
|
[_jN]: _Ta,
|
|
1765
2078
|
},
|
|
1766
2079
|
],
|
|
2080
|
+
[
|
|
2081
|
+
() => sensitiveString1To50000,
|
|
2082
|
+
{
|
|
2083
|
+
[_jN]: _SSQ,
|
|
2084
|
+
},
|
|
2085
|
+
],
|
|
2086
|
+
[
|
|
2087
|
+
0,
|
|
2088
|
+
{
|
|
2089
|
+
[_jN]: _STe,
|
|
2090
|
+
},
|
|
2091
|
+
],
|
|
1767
2092
|
],
|
|
1768
2093
|
];
|
|
1769
2094
|
export var GetSegmentEstimateRequest = [
|
|
@@ -1807,7 +2132,7 @@ export var GetSegmentMembershipResponse = [
|
|
|
1807
2132
|
n0,
|
|
1808
2133
|
_GSMRe,
|
|
1809
2134
|
0,
|
|
1810
|
-
[_SDN, _Pr, _Fa],
|
|
2135
|
+
[_SDN, _Pr, _Fa, _LCA],
|
|
1811
2136
|
[
|
|
1812
2137
|
[
|
|
1813
2138
|
0,
|
|
@@ -1827,6 +2152,12 @@ export var GetSegmentMembershipResponse = [
|
|
|
1827
2152
|
[_jN]: _Fa,
|
|
1828
2153
|
},
|
|
1829
2154
|
],
|
|
2155
|
+
[
|
|
2156
|
+
4,
|
|
2157
|
+
{
|
|
2158
|
+
[_jN]: _LCA,
|
|
2159
|
+
},
|
|
2160
|
+
],
|
|
1830
2161
|
],
|
|
1831
2162
|
];
|
|
1832
2163
|
export var GetSegmentSnapshotRequest = [
|
|
@@ -2016,7 +2347,7 @@ export var GetWorkflowResponse = [
|
|
|
2016
2347
|
n0,
|
|
2017
2348
|
_GWRe,
|
|
2018
2349
|
0,
|
|
2019
|
-
[_WI, _WT, _Sta, _EDr,
|
|
2350
|
+
[_WI, _WT, _Sta, _EDr, _SDt, _LUA, _At, _Me],
|
|
2020
2351
|
[0, 0, 0, 0, 4, 4, () => WorkflowAttributes, () => WorkflowMetrics],
|
|
2021
2352
|
];
|
|
2022
2353
|
export var GetWorkflowStepsRequest = [
|
|
@@ -2055,7 +2386,7 @@ export var Group = [
|
|
|
2055
2386
|
n0,
|
|
2056
2387
|
_Gro,
|
|
2057
2388
|
0,
|
|
2058
|
-
[_Di, _SSo, _STo,
|
|
2389
|
+
[_Di, _SSo, _STo, _T],
|
|
2059
2390
|
[
|
|
2060
2391
|
[
|
|
2061
2392
|
() => DimensionList,
|
|
@@ -2078,7 +2409,7 @@ export var Group = [
|
|
|
2078
2409
|
[
|
|
2079
2410
|
0,
|
|
2080
2411
|
{
|
|
2081
|
-
[_jN]:
|
|
2412
|
+
[_jN]: _T,
|
|
2082
2413
|
},
|
|
2083
2414
|
],
|
|
2084
2415
|
],
|
|
@@ -2259,6 +2590,36 @@ export var ListDomainLayoutsResponse = [
|
|
|
2259
2590
|
[_It, _NT],
|
|
2260
2591
|
[[() => LayoutList, 0], 0],
|
|
2261
2592
|
];
|
|
2593
|
+
export var ListDomainObjectTypesRequest = [
|
|
2594
|
+
3,
|
|
2595
|
+
n0,
|
|
2596
|
+
_LDOTR,
|
|
2597
|
+
0,
|
|
2598
|
+
[_DN, _MR, _NT],
|
|
2599
|
+
[
|
|
2600
|
+
[0, 1],
|
|
2601
|
+
[
|
|
2602
|
+
1,
|
|
2603
|
+
{
|
|
2604
|
+
[_hQ]: _mr,
|
|
2605
|
+
},
|
|
2606
|
+
],
|
|
2607
|
+
[
|
|
2608
|
+
0,
|
|
2609
|
+
{
|
|
2610
|
+
[_hQ]: _nt,
|
|
2611
|
+
},
|
|
2612
|
+
],
|
|
2613
|
+
],
|
|
2614
|
+
];
|
|
2615
|
+
export var ListDomainObjectTypesResponse = [
|
|
2616
|
+
3,
|
|
2617
|
+
n0,
|
|
2618
|
+
_LDOTRi,
|
|
2619
|
+
0,
|
|
2620
|
+
[_It, _NT],
|
|
2621
|
+
[[() => DomainObjectTypesList, 0], 0],
|
|
2622
|
+
];
|
|
2262
2623
|
export var ListDomainsRequest = [
|
|
2263
2624
|
3,
|
|
2264
2625
|
n0,
|
|
@@ -2376,8 +2737,8 @@ export var ListIntegrationItem = [
|
|
|
2376
2737
|
n0,
|
|
2377
2738
|
_LII,
|
|
2378
2739
|
0,
|
|
2379
|
-
[_DN, _U, _OTN, _CA, _LUA, _Ta, _OTNb, _WI, _IU, _RA, _ETNv],
|
|
2380
|
-
[0, 0, 0, 4, 4, 128 | 0, 128 | 0, 0, 2, 0, 64 | 0],
|
|
2740
|
+
[_DN, _U, _OTN, _CA, _LUA, _Ta, _OTNb, _WI, _IU, _RA, _ETNv, _Sc],
|
|
2741
|
+
[0, 0, 0, 4, 4, 128 | 0, 128 | 0, 0, 2, 0, 64 | 0, 0],
|
|
2381
2742
|
];
|
|
2382
2743
|
export var ListIntegrationsRequest = [
|
|
2383
2744
|
3,
|
|
@@ -2440,6 +2801,46 @@ export var ListObjectTypeAttributesResponse = [
|
|
|
2440
2801
|
[_It, _NT],
|
|
2441
2802
|
[() => ListObjectTypeAttributesList, 0],
|
|
2442
2803
|
];
|
|
2804
|
+
export var ListObjectTypeAttributeValuesItem = [
|
|
2805
|
+
3,
|
|
2806
|
+
n0,
|
|
2807
|
+
_LOTAVI,
|
|
2808
|
+
0,
|
|
2809
|
+
[_Va, _LUA],
|
|
2810
|
+
[[() => sensitiveString1To1000, 0], 4],
|
|
2811
|
+
];
|
|
2812
|
+
export var ListObjectTypeAttributeValuesRequest = [
|
|
2813
|
+
3,
|
|
2814
|
+
n0,
|
|
2815
|
+
_LOTAVR,
|
|
2816
|
+
0,
|
|
2817
|
+
[_NT, _MR, _DN, _OTN, _ANt],
|
|
2818
|
+
[
|
|
2819
|
+
[
|
|
2820
|
+
0,
|
|
2821
|
+
{
|
|
2822
|
+
[_hQ]: _nt,
|
|
2823
|
+
},
|
|
2824
|
+
],
|
|
2825
|
+
[
|
|
2826
|
+
1,
|
|
2827
|
+
{
|
|
2828
|
+
[_hQ]: _mr,
|
|
2829
|
+
},
|
|
2830
|
+
],
|
|
2831
|
+
[0, 1],
|
|
2832
|
+
[0, 1],
|
|
2833
|
+
[0, 1],
|
|
2834
|
+
],
|
|
2835
|
+
];
|
|
2836
|
+
export var ListObjectTypeAttributeValuesResponse = [
|
|
2837
|
+
3,
|
|
2838
|
+
n0,
|
|
2839
|
+
_LOTAVRi,
|
|
2840
|
+
0,
|
|
2841
|
+
[_It, _NT],
|
|
2842
|
+
[[() => ListObjectTypeAttributeValuesList, 0], 0],
|
|
2843
|
+
];
|
|
2443
2844
|
export var ListProfileHistoryRecordsRequest = [
|
|
2444
2845
|
3,
|
|
2445
2846
|
n0,
|
|
@@ -2583,6 +2984,65 @@ export var ListProfileObjectTypeTemplatesResponse = [
|
|
|
2583
2984
|
[_It, _NT],
|
|
2584
2985
|
[() => ProfileObjectTypeTemplateList, 0],
|
|
2585
2986
|
];
|
|
2987
|
+
export var ListRecommenderRecipesRequest = [
|
|
2988
|
+
3,
|
|
2989
|
+
n0,
|
|
2990
|
+
_LRRR,
|
|
2991
|
+
0,
|
|
2992
|
+
[_MR, _NT],
|
|
2993
|
+
[
|
|
2994
|
+
[
|
|
2995
|
+
1,
|
|
2996
|
+
{
|
|
2997
|
+
[_hQ]: _mr,
|
|
2998
|
+
},
|
|
2999
|
+
],
|
|
3000
|
+
[
|
|
3001
|
+
0,
|
|
3002
|
+
{
|
|
3003
|
+
[_hQ]: _nt,
|
|
3004
|
+
},
|
|
3005
|
+
],
|
|
3006
|
+
],
|
|
3007
|
+
];
|
|
3008
|
+
export var ListRecommenderRecipesResponse = [
|
|
3009
|
+
3,
|
|
3010
|
+
n0,
|
|
3011
|
+
_LRRRi,
|
|
3012
|
+
0,
|
|
3013
|
+
[_NT, _RR],
|
|
3014
|
+
[0, () => RecommenderRecipesList],
|
|
3015
|
+
];
|
|
3016
|
+
export var ListRecommendersRequest = [
|
|
3017
|
+
3,
|
|
3018
|
+
n0,
|
|
3019
|
+
_LRR,
|
|
3020
|
+
0,
|
|
3021
|
+
[_DN, _MR, _NT],
|
|
3022
|
+
[
|
|
3023
|
+
[0, 1],
|
|
3024
|
+
[
|
|
3025
|
+
1,
|
|
3026
|
+
{
|
|
3027
|
+
[_hQ]: _mr,
|
|
3028
|
+
},
|
|
3029
|
+
],
|
|
3030
|
+
[
|
|
3031
|
+
0,
|
|
3032
|
+
{
|
|
3033
|
+
[_hQ]: _nt,
|
|
3034
|
+
},
|
|
3035
|
+
],
|
|
3036
|
+
],
|
|
3037
|
+
];
|
|
3038
|
+
export var ListRecommendersResponse = [
|
|
3039
|
+
3,
|
|
3040
|
+
n0,
|
|
3041
|
+
_LRRi,
|
|
3042
|
+
0,
|
|
3043
|
+
[_NT, _Reco],
|
|
3044
|
+
[0, [() => RecommenderSummaryList, 0]],
|
|
3045
|
+
];
|
|
2586
3046
|
export var ListRuleBasedMatchesRequest = [
|
|
2587
3047
|
3,
|
|
2588
3048
|
n0,
|
|
@@ -2699,7 +3159,7 @@ export var ListWorkflowsItem = [
|
|
|
2699
3159
|
n0,
|
|
2700
3160
|
_LWI,
|
|
2701
3161
|
0,
|
|
2702
|
-
[_WT, _WI, _Sta,
|
|
3162
|
+
[_WT, _WI, _Sta, _SDta, _CA, _LUA],
|
|
2703
3163
|
[0, 0, 0, 0, 4, 4],
|
|
2704
3164
|
];
|
|
2705
3165
|
export var ListWorkflowsRequest = [
|
|
@@ -2735,7 +3195,7 @@ export var MatchingRequest = [
|
|
|
2735
3195
|
n0,
|
|
2736
3196
|
_MRa,
|
|
2737
3197
|
0,
|
|
2738
|
-
[_En, _JSo, _AM,
|
|
3198
|
+
[_En, _JSo, _AM, _ECx],
|
|
2739
3199
|
[2, () => JobSchedule, () => AutoMerging, () => ExportingConfig],
|
|
2740
3200
|
];
|
|
2741
3201
|
export var MatchingResponse = [
|
|
@@ -2743,7 +3203,7 @@ export var MatchingResponse = [
|
|
|
2743
3203
|
n0,
|
|
2744
3204
|
_MRat,
|
|
2745
3205
|
0,
|
|
2746
|
-
[_En, _JSo, _AM,
|
|
3206
|
+
[_En, _JSo, _AM, _ECx],
|
|
2747
3207
|
[2, () => JobSchedule, () => AutoMerging, () => ExportingConfig],
|
|
2748
3208
|
];
|
|
2749
3209
|
export var MatchingRule = [3, n0, _MRatc, 0, [_Ru], [64 | 0]];
|
|
@@ -2761,7 +3221,7 @@ export var ObjectAttribute = [3, n0, _OAb, 0, [_So, _FNie, _COom, _V], [0, 0, 0,
|
|
|
2761
3221
|
export var ObjectFilter = [3, n0, _OF, 0, [_KN, _V], [0, 64 | 0]];
|
|
2762
3222
|
export var ObjectTypeField = [3, n0, _OTF, 0, [_So, _Tar, _CTo], [0, 0, 0]];
|
|
2763
3223
|
export var ObjectTypeKey = [3, n0, _OTK, 0, [_SIt, _FNiel], [64 | 0, 64 | 0]];
|
|
2764
|
-
export var Period = [3, n0,
|
|
3224
|
+
export var Period = [3, n0, _Peri, 0, [_Un, _Va, _MIPP, _Unl], [0, 1, 1, 2]];
|
|
2765
3225
|
export var Profile = [
|
|
2766
3226
|
3,
|
|
2767
3227
|
n0,
|
|
@@ -3035,7 +3495,7 @@ export var ProfileHistoryRecord = [
|
|
|
3035
3495
|
n0,
|
|
3036
3496
|
_PHRr,
|
|
3037
3497
|
0,
|
|
3038
|
-
[
|
|
3498
|
+
[_I, _OTN, _CA, _LUA, _AT, _POUK, _PB],
|
|
3039
3499
|
[0, 0, 4, 4, 0, 0, 0],
|
|
3040
3500
|
];
|
|
3041
3501
|
export var ProfileQueryFailures = [
|
|
@@ -3113,21 +3573,37 @@ export var ProfileTypeDimension = [
|
|
|
3113
3573
|
],
|
|
3114
3574
|
],
|
|
3115
3575
|
];
|
|
3576
|
+
export var PutDomainObjectTypeRequest = [
|
|
3577
|
+
3,
|
|
3578
|
+
n0,
|
|
3579
|
+
_PDOTR,
|
|
3580
|
+
0,
|
|
3581
|
+
[_DN, _OTN, _D, _EK, _Fi, _Ta],
|
|
3582
|
+
[[0, 1], [0, 1], [() => sensitiveString1To10000, 0], 0, () => DomainObjectTypeFields, 128 | 0],
|
|
3583
|
+
];
|
|
3584
|
+
export var PutDomainObjectTypeResponse = [
|
|
3585
|
+
3,
|
|
3586
|
+
n0,
|
|
3587
|
+
_PDOTRu,
|
|
3588
|
+
0,
|
|
3589
|
+
[_OTN, _D, _EK, _Fi, _CA, _LUA, _Ta],
|
|
3590
|
+
[0, [() => sensitiveString1To10000, 0], 0, () => DomainObjectTypeFields, 4, 4, 128 | 0],
|
|
3591
|
+
];
|
|
3116
3592
|
export var PutIntegrationRequest = [
|
|
3117
3593
|
3,
|
|
3118
3594
|
n0,
|
|
3119
3595
|
_PIR,
|
|
3120
3596
|
0,
|
|
3121
|
-
[_DN, _U, _OTN, _Ta, _FD,
|
|
3122
|
-
[[0, 1], 0, 0, 128 | 0, [() => FlowDefinition, 0],
|
|
3597
|
+
[_DN, _U, _OTN, _OTNb, _Ta, _FD, _RA, _ETNv, _Sc],
|
|
3598
|
+
[[0, 1], 0, 0, 128 | 0, 128 | 0, [() => FlowDefinition, 0], 0, 64 | 0, 0],
|
|
3123
3599
|
];
|
|
3124
3600
|
export var PutIntegrationResponse = [
|
|
3125
3601
|
3,
|
|
3126
3602
|
n0,
|
|
3127
3603
|
_PIRu,
|
|
3128
3604
|
0,
|
|
3129
|
-
[_DN, _U, _OTN, _CA, _LUA, _Ta, _OTNb, _WI, _IU, _RA, _ETNv],
|
|
3130
|
-
[0, 0, 0, 4, 4, 128 | 0, 128 | 0, 0, 2, 0, 64 | 0],
|
|
3605
|
+
[_DN, _U, _OTN, _CA, _LUA, _Ta, _OTNb, _WI, _IU, _RA, _ETNv, _Sc],
|
|
3606
|
+
[0, 0, 0, 4, 4, 128 | 0, 128 | 0, 0, 2, 0, 64 | 0, 0],
|
|
3131
3607
|
];
|
|
3132
3608
|
export var PutProfileObjectRequest = [
|
|
3133
3609
|
3,
|
|
@@ -3157,6 +3633,25 @@ export var PutProfileObjectTypeResponse = [
|
|
|
3157
3633
|
export var Range = [3, n0, _R, 0, [_Va, _Un, _VR, _TSi, _TF], [1, 0, () => ValueRange, 0, 0]];
|
|
3158
3634
|
export var RangeOverride = [3, n0, _RO, 0, [_Star, _End, _Un], [1, 1, 0]];
|
|
3159
3635
|
export var Readiness = [3, n0, _Re, 0, [_PP, _M], [1, 0]];
|
|
3636
|
+
export var Recommendation = [3, n0, _Recom, 0, [_CI, _Sco], [[() => CatalogItem, 0], 1]];
|
|
3637
|
+
export var RecommenderConfig = [3, n0, _RC, 0, [_EC, _TFr], [() => EventsConfig, 1]];
|
|
3638
|
+
export var RecommenderRecipe = [3, n0, _RRe, 0, [_n, _d], [0, 0]];
|
|
3639
|
+
export var RecommenderSummary = [
|
|
3640
|
+
3,
|
|
3641
|
+
n0,
|
|
3642
|
+
_RSe,
|
|
3643
|
+
0,
|
|
3644
|
+
[_RN, _RNe, _RC, _CA, _D, _Sta, _LUA, _Ta, _FR, _LRU],
|
|
3645
|
+
[0, 0, () => RecommenderConfig, 4, [() => sensitiveText, 0], 0, 4, 128 | 0, 0, () => RecommenderUpdate],
|
|
3646
|
+
];
|
|
3647
|
+
export var RecommenderUpdate = [
|
|
3648
|
+
3,
|
|
3649
|
+
n0,
|
|
3650
|
+
_RU,
|
|
3651
|
+
0,
|
|
3652
|
+
[_RC, _Sta, _CA, _LUA, _FR],
|
|
3653
|
+
[() => RecommenderConfig, 0, 4, 4, 0],
|
|
3654
|
+
];
|
|
3160
3655
|
export var ResourceNotFoundException = [
|
|
3161
3656
|
-3,
|
|
3162
3657
|
n0,
|
|
@@ -3174,7 +3669,7 @@ export var ResultsSummary = [
|
|
|
3174
3669
|
n0,
|
|
3175
3670
|
_RS,
|
|
3176
3671
|
0,
|
|
3177
|
-
[_UR, _CRr,
|
|
3672
|
+
[_UR, _CRr, _FRa],
|
|
3178
3673
|
[
|
|
3179
3674
|
[
|
|
3180
3675
|
1,
|
|
@@ -3191,7 +3686,7 @@ export var ResultsSummary = [
|
|
|
3191
3686
|
[
|
|
3192
3687
|
1,
|
|
3193
3688
|
{
|
|
3194
|
-
[_jN]:
|
|
3689
|
+
[_jN]: _FRa,
|
|
3195
3690
|
},
|
|
3196
3691
|
],
|
|
3197
3692
|
],
|
|
@@ -3201,7 +3696,7 @@ export var RuleBasedMatchingRequest = [
|
|
|
3201
3696
|
n0,
|
|
3202
3697
|
_RBMR,
|
|
3203
3698
|
0,
|
|
3204
|
-
[_En, _MRatch, _MARLFM, _MARLFMa, _ATS, _CR,
|
|
3699
|
+
[_En, _MRatch, _MARLFM, _MARLFMa, _ATS, _CR, _ECx],
|
|
3205
3700
|
[2, () => MatchingRules, 1, 1, () => AttributeTypesSelector, () => ConflictResolution, () => ExportingConfig],
|
|
3206
3701
|
];
|
|
3207
3702
|
export var RuleBasedMatchingResponse = [
|
|
@@ -3209,7 +3704,7 @@ export var RuleBasedMatchingResponse = [
|
|
|
3209
3704
|
n0,
|
|
3210
3705
|
_RBMRu,
|
|
3211
3706
|
0,
|
|
3212
|
-
[_En, _MRatch, _Sta, _MARLFM, _MARLFMa, _ATS, _CR,
|
|
3707
|
+
[_En, _MRatch, _Sta, _MARLFM, _MARLFMa, _ATS, _CR, _ECx],
|
|
3213
3708
|
[2, () => MatchingRules, 0, 1, 1, () => AttributeTypesSelector, () => ConflictResolution, () => ExportingConfig],
|
|
3214
3709
|
];
|
|
3215
3710
|
export var S3ExportingConfig = [3, n0, _SEC, 0, [_SBN, _SKN], [0, 0]];
|
|
@@ -3256,7 +3751,7 @@ export var SegmentDefinitionItem = [
|
|
|
3256
3751
|
n0,
|
|
3257
3752
|
_SDI,
|
|
3258
3753
|
0,
|
|
3259
|
-
[_SDN, _DNi, _D, _SDA, _CA, _Ta],
|
|
3754
|
+
[_SDN, _DNi, _D, _SDA, _CA, _Ta, _STe],
|
|
3260
3755
|
[
|
|
3261
3756
|
[
|
|
3262
3757
|
0,
|
|
@@ -3271,7 +3766,7 @@ export var SegmentDefinitionItem = [
|
|
|
3271
3766
|
},
|
|
3272
3767
|
],
|
|
3273
3768
|
[
|
|
3274
|
-
() =>
|
|
3769
|
+
() => sensitiveString1To4000,
|
|
3275
3770
|
{
|
|
3276
3771
|
[_jN]: _D,
|
|
3277
3772
|
},
|
|
@@ -3294,6 +3789,12 @@ export var SegmentDefinitionItem = [
|
|
|
3294
3789
|
[_jN]: _Ta,
|
|
3295
3790
|
},
|
|
3296
3791
|
],
|
|
3792
|
+
[
|
|
3793
|
+
0,
|
|
3794
|
+
{
|
|
3795
|
+
[_jN]: _STe,
|
|
3796
|
+
},
|
|
3797
|
+
],
|
|
3297
3798
|
],
|
|
3298
3799
|
];
|
|
3299
3800
|
export var SegmentGroup = [
|
|
@@ -3301,7 +3802,7 @@ export var SegmentGroup = [
|
|
|
3301
3802
|
n0,
|
|
3302
3803
|
_SGe,
|
|
3303
3804
|
8,
|
|
3304
|
-
[_Gr,
|
|
3805
|
+
[_Gr, _In],
|
|
3305
3806
|
[
|
|
3306
3807
|
[
|
|
3307
3808
|
() => SegmentGroupList,
|
|
@@ -3312,12 +3813,19 @@ export var SegmentGroup = [
|
|
|
3312
3813
|
[
|
|
3313
3814
|
0,
|
|
3314
3815
|
{
|
|
3315
|
-
[_jN]:
|
|
3816
|
+
[_jN]: _In,
|
|
3316
3817
|
},
|
|
3317
3818
|
],
|
|
3318
3819
|
],
|
|
3319
3820
|
];
|
|
3320
|
-
export var SegmentGroupStructure = [
|
|
3821
|
+
export var SegmentGroupStructure = [
|
|
3822
|
+
3,
|
|
3823
|
+
n0,
|
|
3824
|
+
_SGS,
|
|
3825
|
+
0,
|
|
3826
|
+
[_Gr, _In],
|
|
3827
|
+
[[() => SegmentGroupList, 0], 0],
|
|
3828
|
+
];
|
|
3321
3829
|
export var ServiceNowSourceProperties = [3, n0, _SNSP, 0, [_Ob], [0]];
|
|
3322
3830
|
export var SourceConnectorProperties = [
|
|
3323
3831
|
3,
|
|
@@ -3356,6 +3864,18 @@ export var SourceSegment = [
|
|
|
3356
3864
|
],
|
|
3357
3865
|
],
|
|
3358
3866
|
];
|
|
3867
|
+
export var StartRecommenderRequest = [
|
|
3868
|
+
3,
|
|
3869
|
+
n0,
|
|
3870
|
+
_SRR,
|
|
3871
|
+
0,
|
|
3872
|
+
[_DN, _RN],
|
|
3873
|
+
[
|
|
3874
|
+
[0, 1],
|
|
3875
|
+
[0, 1],
|
|
3876
|
+
],
|
|
3877
|
+
];
|
|
3878
|
+
export var StartRecommenderResponse = [3, n0, _SRRt, 0, [], []];
|
|
3359
3879
|
export var StartUploadJobRequest = [
|
|
3360
3880
|
3,
|
|
3361
3881
|
n0,
|
|
@@ -3368,6 +3888,18 @@ export var StartUploadJobRequest = [
|
|
|
3368
3888
|
],
|
|
3369
3889
|
];
|
|
3370
3890
|
export var StartUploadJobResponse = [3, n0, _SUJRt, 0, [], []];
|
|
3891
|
+
export var StopRecommenderRequest = [
|
|
3892
|
+
3,
|
|
3893
|
+
n0,
|
|
3894
|
+
_SRRto,
|
|
3895
|
+
0,
|
|
3896
|
+
[_DN, _RN],
|
|
3897
|
+
[
|
|
3898
|
+
[0, 1],
|
|
3899
|
+
[0, 1],
|
|
3900
|
+
],
|
|
3901
|
+
];
|
|
3902
|
+
export var StopRecommenderResponse = [3, n0, _SRRtop, 0, [], []];
|
|
3371
3903
|
export var StopUploadJobRequest = [
|
|
3372
3904
|
3,
|
|
3373
3905
|
n0,
|
|
@@ -3390,7 +3922,7 @@ export var Task = [
|
|
|
3390
3922
|
[_COo, _DFe, _SFo, _TP, _TT],
|
|
3391
3923
|
[() => ConnectorOperator, 0, 64 | 0, 128 | 0, 0],
|
|
3392
3924
|
];
|
|
3393
|
-
export var Threshold = [3, n0,
|
|
3925
|
+
export var Threshold = [3, n0, _Th, 0, [_Va, _Op], [0, 0]];
|
|
3394
3926
|
export var ThrottlingException = [
|
|
3395
3927
|
-3,
|
|
3396
3928
|
n0,
|
|
@@ -3403,8 +3935,9 @@ export var ThrottlingException = [
|
|
|
3403
3935
|
[0],
|
|
3404
3936
|
];
|
|
3405
3937
|
TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
|
|
3938
|
+
export var TrainingMetrics = [3, n0, _TM, 0, [_Ti, _Me], [4, 128 | 1]];
|
|
3406
3939
|
export var TriggerConfig = [3, n0, _TC, 0, [_TTr, _TPr], [0, () => TriggerProperties]];
|
|
3407
|
-
export var TriggerProperties = [3, n0, _TPr, 0, [
|
|
3940
|
+
export var TriggerProperties = [3, n0, _TPr, 0, [_Sch], [() => ScheduledTriggerProperties]];
|
|
3408
3941
|
export var UntagResourceRequest = [
|
|
3409
3942
|
3,
|
|
3410
3943
|
n0,
|
|
@@ -3425,7 +3958,7 @@ export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
|
3425
3958
|
export var UpdateAddress = [
|
|
3426
3959
|
3,
|
|
3427
3960
|
n0,
|
|
3428
|
-
|
|
3961
|
+
_UAp,
|
|
3429
3962
|
8,
|
|
3430
3963
|
[_Ad, _Add, _Addr, _Addre, _C, _Co, _St, _P, _Cou, _PC],
|
|
3431
3964
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
@@ -3464,7 +3997,7 @@ export var UpdateDomainLayoutRequest = [
|
|
|
3464
3997
|
n0,
|
|
3465
3998
|
_UDLR,
|
|
3466
3999
|
0,
|
|
3467
|
-
[_DN, _LDN, _D, _DNi, _ID, _LT,
|
|
4000
|
+
[_DN, _LDN, _D, _DNi, _ID, _LT, _La],
|
|
3468
4001
|
[[0, 1], [0, 1], [() => sensitiveText, 0], 0, 2, 0, [() => sensitiveString1To2000000, 0]],
|
|
3469
4002
|
];
|
|
3470
4003
|
export var UpdateDomainLayoutResponse = [
|
|
@@ -3472,7 +4005,7 @@ export var UpdateDomainLayoutResponse = [
|
|
|
3472
4005
|
n0,
|
|
3473
4006
|
_UDLRp,
|
|
3474
4007
|
0,
|
|
3475
|
-
[_LDN, _D, _DNi, _ID, _LT,
|
|
4008
|
+
[_LDN, _D, _DNi, _ID, _LT, _La, _Ve, _CA, _LUA, _Ta],
|
|
3476
4009
|
[0, [() => sensitiveText, 0], 0, 2, 0, [() => sensitiveString1To2000000, 0], 0, 4, 4, 128 | 0],
|
|
3477
4010
|
];
|
|
3478
4011
|
export var UpdateDomainRequest = [
|
|
@@ -3480,16 +4013,16 @@ export var UpdateDomainRequest = [
|
|
|
3480
4013
|
n0,
|
|
3481
4014
|
_UDR,
|
|
3482
4015
|
0,
|
|
3483
|
-
[_DN, _DED, _DEK, _DLQU, _Mat, _RBM, _Ta],
|
|
3484
|
-
[[0, 1], 1, 0, 0, () => MatchingRequest, () => RuleBasedMatchingRequest, 128 | 0],
|
|
4016
|
+
[_DN, _DED, _DEK, _DLQU, _Mat, _RBM, _DS, _Ta],
|
|
4017
|
+
[[0, 1], 1, 0, 0, () => MatchingRequest, () => RuleBasedMatchingRequest, () => DataStoreRequest, 128 | 0],
|
|
3485
4018
|
];
|
|
3486
4019
|
export var UpdateDomainResponse = [
|
|
3487
4020
|
3,
|
|
3488
4021
|
n0,
|
|
3489
4022
|
_UDRp,
|
|
3490
4023
|
0,
|
|
3491
|
-
[_DN, _DED, _DEK, _DLQU, _Mat, _RBM, _CA, _LUA, _Ta],
|
|
3492
|
-
[0, 1, 0, 0, () => MatchingResponse, () => RuleBasedMatchingResponse, 4, 4, 128 | 0],
|
|
4024
|
+
[_DN, _DED, _DEK, _DLQU, _Mat, _RBM, _DS, _CA, _LUA, _Ta],
|
|
4025
|
+
[0, 1, 0, 0, () => MatchingResponse, () => RuleBasedMatchingResponse, () => DataStoreResponse, 4, 4, 128 | 0],
|
|
3493
4026
|
];
|
|
3494
4027
|
export var UpdateEventTriggerRequest = [
|
|
3495
4028
|
3,
|
|
@@ -3572,6 +4105,15 @@ export var UpdateProfileRequest = [
|
|
|
3572
4105
|
],
|
|
3573
4106
|
];
|
|
3574
4107
|
export var UpdateProfileResponse = [3, n0, _UPRp, 0, [_PI], [0]];
|
|
4108
|
+
export var UpdateRecommenderRequest = [
|
|
4109
|
+
3,
|
|
4110
|
+
n0,
|
|
4111
|
+
_URRp,
|
|
4112
|
+
0,
|
|
4113
|
+
[_DN, _RN, _D, _RC],
|
|
4114
|
+
[[0, 1], [0, 1], [() => sensitiveText, 0], () => RecommenderConfig],
|
|
4115
|
+
];
|
|
4116
|
+
export var UpdateRecommenderResponse = [3, n0, _URRpd, 0, [_RN], [0]];
|
|
3575
4117
|
export var UploadJobItem = [
|
|
3576
4118
|
3,
|
|
3577
4119
|
n0,
|
|
@@ -3679,8 +4221,10 @@ export var DateValues = 64 | 0;
|
|
|
3679
4221
|
export var DetectedProfileObjectTypes = [1, n0, _DPOTe, 0, [() => DetectedProfileObjectType, 0]];
|
|
3680
4222
|
export var DimensionList = [1, n0, _DL, 0, [() => Dimension, 0]];
|
|
3681
4223
|
export var DomainList = [1, n0, _DLo, 0, () => ListDomainItem];
|
|
4224
|
+
export var DomainObjectTypesList = [1, n0, _DOTL, 8, [() => DomainObjectTypesListItem, 0]];
|
|
3682
4225
|
export var EmailList = 64 | 0;
|
|
3683
|
-
export var EmailPreferenceList = [1, n0,
|
|
4226
|
+
export var EmailPreferenceList = [1, n0, _EPLm, 0, () => ContactPreference];
|
|
4227
|
+
export var EventParametersList = [1, n0, _EPL, 0, () => EventParameters];
|
|
3684
4228
|
export var EventStreamSummaryList = [1, n0, _ESSL, 0, () => EventStreamSummary];
|
|
3685
4229
|
export var EventTriggerConditions = [1, n0, _ETC, 8, () => EventTriggerCondition];
|
|
3686
4230
|
export var EventTriggerDimensions = [1, n0, _ETD, 0, () => EventTriggerDimension];
|
|
@@ -3694,9 +4238,16 @@ export var FilterDimensionList = [1, n0, _FDL, 0, () => FilterDimension];
|
|
|
3694
4238
|
export var foundByList = [1, n0, _fBL, 0, () => FoundByKeyValue];
|
|
3695
4239
|
export var GroupList = [1, n0, _GL, 0, () => FilterGroup];
|
|
3696
4240
|
export var IdentityResolutionJobsList = [1, n0, _IRJL, 0, () => IdentityResolutionJob];
|
|
3697
|
-
export var IntegrationList = [1, n0,
|
|
4241
|
+
export var IntegrationList = [1, n0, _ILn, 0, () => ListIntegrationItem];
|
|
3698
4242
|
export var LayoutList = [1, n0, _LL, 0, [() => LayoutItem, 0]];
|
|
3699
4243
|
export var ListObjectTypeAttributesList = [1, n0, _LOTAL, 0, () => ListObjectTypeAttributeItem];
|
|
4244
|
+
export var ListObjectTypeAttributeValuesList = [
|
|
4245
|
+
1,
|
|
4246
|
+
n0,
|
|
4247
|
+
_LOTAVL,
|
|
4248
|
+
0,
|
|
4249
|
+
[() => ListObjectTypeAttributeValuesItem, 0],
|
|
4250
|
+
];
|
|
3700
4251
|
export var MatchesList = [1, n0, _ML, 0, () => MatchItem];
|
|
3701
4252
|
export var MatchIdList = 64 | 0;
|
|
3702
4253
|
export var MatchingAttributes = 64 | 0;
|
|
@@ -3725,6 +4276,9 @@ export var ProfileObjectTypeTemplateList = [
|
|
|
3725
4276
|
];
|
|
3726
4277
|
export var Profiles = [1, n0, _Pr, 0, [() => ProfileQueryResult, 0]];
|
|
3727
4278
|
export var ProfileTypeValues = [1, n0, _PTV, 0, [() => ProfileType, 0]];
|
|
4279
|
+
export var Recommendations = [1, n0, _Rec, 8, [() => Recommendation, 0]];
|
|
4280
|
+
export var RecommenderRecipesList = [1, n0, _RRL, 0, () => RecommenderRecipe];
|
|
4281
|
+
export var RecommenderSummaryList = [1, n0, _RSL, 0, [() => RecommenderSummary, 0]];
|
|
3728
4282
|
export var requestValueList = 64 | 0;
|
|
3729
4283
|
export var SegmentDefinitionsList = [1, n0, _SDL, 0, [() => SegmentDefinitionItem, 0]];
|
|
3730
4284
|
export var SegmentGroupList = [1, n0, _SGL, 0, [() => Group, 0]];
|
|
@@ -3733,6 +4287,7 @@ export var SourceSegmentList = [1, n0, _SSL, 0, [() => SourceSegment, 0]];
|
|
|
3733
4287
|
export var StandardIdentifierList = 64 | 0;
|
|
3734
4288
|
export var TagKeyList = 64 | 0;
|
|
3735
4289
|
export var Tasks = [1, n0, _Tas, 0, () => Task];
|
|
4290
|
+
export var TrainingMetricsList = [1, n0, _TML, 0, () => TrainingMetrics];
|
|
3736
4291
|
export var UploadJobsList = [1, n0, _UJL, 0, [() => UploadJobItem, 0]];
|
|
3737
4292
|
export var ValueList = 64 | 0;
|
|
3738
4293
|
export var Values = 64 | 0;
|
|
@@ -3750,18 +4305,21 @@ export var CalculatedCustomAttributes = [
|
|
|
3750
4305
|
[() => CalculatedAttributeDimension, 0],
|
|
3751
4306
|
];
|
|
3752
4307
|
export var CustomAttributes = [2, n0, _CAu, 0, [0, 0], [() => AttributeDimension, 0]];
|
|
4308
|
+
export var DomainObjectTypeFields = [2, n0, _DOTFo, 0, 0, () => DomainObjectTypeField];
|
|
3753
4309
|
export var FieldMap = [2, n0, _FM, 8, 0, () => ObjectTypeField];
|
|
3754
4310
|
export var KeyMap = [2, n0, _KM, 8, 0, () => ObjectTypeKeyList];
|
|
4311
|
+
export var Metrics = 128 | 1;
|
|
3755
4312
|
export var ObjectTypeNames = 128 | 0;
|
|
4313
|
+
export var RecommenderContext = [2, n0, _RCe, 8, 0, 0];
|
|
3756
4314
|
export var TagMap = 128 | 0;
|
|
3757
4315
|
export var TaskPropertiesMap = 128 | 0;
|
|
3758
|
-
export var UpdateAttributes = [2, n0,
|
|
4316
|
+
export var UpdateAttributes = [2, n0, _UApd, 8, 0, 0];
|
|
3759
4317
|
export var Dimension = [
|
|
3760
4318
|
3,
|
|
3761
4319
|
n0,
|
|
3762
4320
|
_Dim,
|
|
3763
4321
|
0,
|
|
3764
|
-
[_PA,
|
|
4322
|
+
[_PA, _CAal],
|
|
3765
4323
|
[
|
|
3766
4324
|
[
|
|
3767
4325
|
() => ProfileAttributes,
|
|
@@ -3772,7 +4330,7 @@ export var Dimension = [
|
|
|
3772
4330
|
[
|
|
3773
4331
|
() => CalculatedCustomAttributes,
|
|
3774
4332
|
{
|
|
3775
|
-
[_jN]:
|
|
4333
|
+
[_jN]: _CAal,
|
|
3776
4334
|
},
|
|
3777
4335
|
],
|
|
3778
4336
|
],
|
|
@@ -3877,6 +4435,16 @@ export var CreateProfile = [
|
|
|
3877
4435
|
() => CreateProfileRequest,
|
|
3878
4436
|
() => CreateProfileResponse,
|
|
3879
4437
|
];
|
|
4438
|
+
export var CreateRecommender = [
|
|
4439
|
+
9,
|
|
4440
|
+
n0,
|
|
4441
|
+
_CRre,
|
|
4442
|
+
{
|
|
4443
|
+
[_h]: ["POST", "/domains/{DomainName}/recommenders/{RecommenderName}", 200],
|
|
4444
|
+
},
|
|
4445
|
+
() => CreateRecommenderRequest,
|
|
4446
|
+
() => CreateRecommenderResponse,
|
|
4447
|
+
];
|
|
3880
4448
|
export var CreateSegmentDefinition = [
|
|
3881
4449
|
9,
|
|
3882
4450
|
n0,
|
|
@@ -3947,6 +4515,16 @@ export var DeleteDomainLayout = [
|
|
|
3947
4515
|
() => DeleteDomainLayoutRequest,
|
|
3948
4516
|
() => DeleteDomainLayoutResponse,
|
|
3949
4517
|
];
|
|
4518
|
+
export var DeleteDomainObjectType = [
|
|
4519
|
+
9,
|
|
4520
|
+
n0,
|
|
4521
|
+
_DDOT,
|
|
4522
|
+
{
|
|
4523
|
+
[_h]: ["DELETE", "/domains/{DomainName}/domain-object-types/{ObjectTypeName}", 200],
|
|
4524
|
+
},
|
|
4525
|
+
() => DeleteDomainObjectTypeRequest,
|
|
4526
|
+
() => DeleteDomainObjectTypeResponse,
|
|
4527
|
+
];
|
|
3950
4528
|
export var DeleteEventStream = [
|
|
3951
4529
|
9,
|
|
3952
4530
|
n0,
|
|
@@ -4017,6 +4595,16 @@ export var DeleteProfileObjectType = [
|
|
|
4017
4595
|
() => DeleteProfileObjectTypeRequest,
|
|
4018
4596
|
() => DeleteProfileObjectTypeResponse,
|
|
4019
4597
|
];
|
|
4598
|
+
export var DeleteRecommender = [
|
|
4599
|
+
9,
|
|
4600
|
+
n0,
|
|
4601
|
+
_DR,
|
|
4602
|
+
{
|
|
4603
|
+
[_h]: ["DELETE", "/domains/{DomainName}/recommenders/{RecommenderName}", 200],
|
|
4604
|
+
},
|
|
4605
|
+
() => DeleteRecommenderRequest,
|
|
4606
|
+
() => DeleteRecommenderResponse,
|
|
4607
|
+
];
|
|
4020
4608
|
export var DeleteSegmentDefinition = [
|
|
4021
4609
|
9,
|
|
4022
4610
|
n0,
|
|
@@ -4097,6 +4685,16 @@ export var GetDomainLayout = [
|
|
|
4097
4685
|
() => GetDomainLayoutRequest,
|
|
4098
4686
|
() => GetDomainLayoutResponse,
|
|
4099
4687
|
];
|
|
4688
|
+
export var GetDomainObjectType = [
|
|
4689
|
+
9,
|
|
4690
|
+
n0,
|
|
4691
|
+
_GDOT,
|
|
4692
|
+
{
|
|
4693
|
+
[_h]: ["GET", "/domains/{DomainName}/domain-object-types/{ObjectTypeName}", 200],
|
|
4694
|
+
},
|
|
4695
|
+
() => GetDomainObjectTypeRequest,
|
|
4696
|
+
() => GetDomainObjectTypeResponse,
|
|
4697
|
+
];
|
|
4100
4698
|
export var GetEventStream = [
|
|
4101
4699
|
9,
|
|
4102
4700
|
n0,
|
|
@@ -4147,6 +4745,16 @@ export var GetMatches = [
|
|
|
4147
4745
|
() => GetMatchesRequest,
|
|
4148
4746
|
() => GetMatchesResponse,
|
|
4149
4747
|
];
|
|
4748
|
+
export var GetObjectTypeAttributeStatistics = [
|
|
4749
|
+
9,
|
|
4750
|
+
n0,
|
|
4751
|
+
_GOTAS,
|
|
4752
|
+
{
|
|
4753
|
+
[_h]: ["POST", "/domains/{DomainName}/object-types/{ObjectTypeName}/attributes/{AttributeName}/statistics", 200],
|
|
4754
|
+
},
|
|
4755
|
+
() => GetObjectTypeAttributeStatisticsRequest,
|
|
4756
|
+
() => GetObjectTypeAttributeStatisticsResponse,
|
|
4757
|
+
];
|
|
4150
4758
|
export var GetProfileHistoryRecord = [
|
|
4151
4759
|
9,
|
|
4152
4760
|
n0,
|
|
@@ -4177,6 +4785,26 @@ export var GetProfileObjectTypeTemplate = [
|
|
|
4177
4785
|
() => GetProfileObjectTypeTemplateRequest,
|
|
4178
4786
|
() => GetProfileObjectTypeTemplateResponse,
|
|
4179
4787
|
];
|
|
4788
|
+
export var GetProfileRecommendations = [
|
|
4789
|
+
9,
|
|
4790
|
+
n0,
|
|
4791
|
+
_GPR,
|
|
4792
|
+
{
|
|
4793
|
+
[_h]: ["POST", "/domains/{DomainName}/profiles/{ProfileId}/recommendations", 200],
|
|
4794
|
+
},
|
|
4795
|
+
() => GetProfileRecommendationsRequest,
|
|
4796
|
+
() => GetProfileRecommendationsResponse,
|
|
4797
|
+
];
|
|
4798
|
+
export var GetRecommender = [
|
|
4799
|
+
9,
|
|
4800
|
+
n0,
|
|
4801
|
+
_GR,
|
|
4802
|
+
{
|
|
4803
|
+
[_h]: ["GET", "/domains/{DomainName}/recommenders/{RecommenderName}", 200],
|
|
4804
|
+
},
|
|
4805
|
+
() => GetRecommenderRequest,
|
|
4806
|
+
() => GetRecommenderResponse,
|
|
4807
|
+
];
|
|
4180
4808
|
export var GetSegmentDefinition = [
|
|
4181
4809
|
9,
|
|
4182
4810
|
n0,
|
|
@@ -4307,6 +4935,16 @@ export var ListDomainLayouts = [
|
|
|
4307
4935
|
() => ListDomainLayoutsRequest,
|
|
4308
4936
|
() => ListDomainLayoutsResponse,
|
|
4309
4937
|
];
|
|
4938
|
+
export var ListDomainObjectTypes = [
|
|
4939
|
+
9,
|
|
4940
|
+
n0,
|
|
4941
|
+
_LDOT,
|
|
4942
|
+
{
|
|
4943
|
+
[_h]: ["GET", "/domains/{DomainName}/domain-object-types", 200],
|
|
4944
|
+
},
|
|
4945
|
+
() => ListDomainObjectTypesRequest,
|
|
4946
|
+
() => ListDomainObjectTypesResponse,
|
|
4947
|
+
];
|
|
4310
4948
|
export var ListDomains = [
|
|
4311
4949
|
9,
|
|
4312
4950
|
n0,
|
|
@@ -4367,6 +5005,16 @@ export var ListObjectTypeAttributes = [
|
|
|
4367
5005
|
() => ListObjectTypeAttributesRequest,
|
|
4368
5006
|
() => ListObjectTypeAttributesResponse,
|
|
4369
5007
|
];
|
|
5008
|
+
export var ListObjectTypeAttributeValues = [
|
|
5009
|
+
9,
|
|
5010
|
+
n0,
|
|
5011
|
+
_LOTAV,
|
|
5012
|
+
{
|
|
5013
|
+
[_h]: ["GET", "/domains/{DomainName}/object-types/{ObjectTypeName}/attributes/{AttributeName}/values", 200],
|
|
5014
|
+
},
|
|
5015
|
+
() => ListObjectTypeAttributeValuesRequest,
|
|
5016
|
+
() => ListObjectTypeAttributeValuesResponse,
|
|
5017
|
+
];
|
|
4370
5018
|
export var ListProfileAttributeValues = [
|
|
4371
5019
|
9,
|
|
4372
5020
|
n0,
|
|
@@ -4417,6 +5065,26 @@ export var ListProfileObjectTypeTemplates = [
|
|
|
4417
5065
|
() => ListProfileObjectTypeTemplatesRequest,
|
|
4418
5066
|
() => ListProfileObjectTypeTemplatesResponse,
|
|
4419
5067
|
];
|
|
5068
|
+
export var ListRecommenderRecipes = [
|
|
5069
|
+
9,
|
|
5070
|
+
n0,
|
|
5071
|
+
_LRRis,
|
|
5072
|
+
{
|
|
5073
|
+
[_h]: ["GET", "/recommender-recipes", 200],
|
|
5074
|
+
},
|
|
5075
|
+
() => ListRecommenderRecipesRequest,
|
|
5076
|
+
() => ListRecommenderRecipesResponse,
|
|
5077
|
+
];
|
|
5078
|
+
export var ListRecommenders = [
|
|
5079
|
+
9,
|
|
5080
|
+
n0,
|
|
5081
|
+
_LR,
|
|
5082
|
+
{
|
|
5083
|
+
[_h]: ["GET", "/domains/{DomainName}/recommenders", 200],
|
|
5084
|
+
},
|
|
5085
|
+
() => ListRecommendersRequest,
|
|
5086
|
+
() => ListRecommendersResponse,
|
|
5087
|
+
];
|
|
4420
5088
|
export var ListRuleBasedMatches = [
|
|
4421
5089
|
9,
|
|
4422
5090
|
n0,
|
|
@@ -4477,6 +5145,16 @@ export var MergeProfiles = [
|
|
|
4477
5145
|
() => MergeProfilesRequest,
|
|
4478
5146
|
() => MergeProfilesResponse,
|
|
4479
5147
|
];
|
|
5148
|
+
export var PutDomainObjectType = [
|
|
5149
|
+
9,
|
|
5150
|
+
n0,
|
|
5151
|
+
_PDOT,
|
|
5152
|
+
{
|
|
5153
|
+
[_h]: ["PUT", "/domains/{DomainName}/domain-object-types/{ObjectTypeName}", 200],
|
|
5154
|
+
},
|
|
5155
|
+
() => PutDomainObjectTypeRequest,
|
|
5156
|
+
() => PutDomainObjectTypeResponse,
|
|
5157
|
+
];
|
|
4480
5158
|
export var PutIntegration = [
|
|
4481
5159
|
9,
|
|
4482
5160
|
n0,
|
|
@@ -4517,6 +5195,16 @@ export var SearchProfiles = [
|
|
|
4517
5195
|
() => SearchProfilesRequest,
|
|
4518
5196
|
() => SearchProfilesResponse,
|
|
4519
5197
|
];
|
|
5198
|
+
export var StartRecommender = [
|
|
5199
|
+
9,
|
|
5200
|
+
n0,
|
|
5201
|
+
_SRt,
|
|
5202
|
+
{
|
|
5203
|
+
[_h]: ["PUT", "/domains/{DomainName}/recommenders/{RecommenderName}/start", 200],
|
|
5204
|
+
},
|
|
5205
|
+
() => StartRecommenderRequest,
|
|
5206
|
+
() => StartRecommenderResponse,
|
|
5207
|
+
];
|
|
4520
5208
|
export var StartUploadJob = [
|
|
4521
5209
|
9,
|
|
4522
5210
|
n0,
|
|
@@ -4527,6 +5215,16 @@ export var StartUploadJob = [
|
|
|
4527
5215
|
() => StartUploadJobRequest,
|
|
4528
5216
|
() => StartUploadJobResponse,
|
|
4529
5217
|
];
|
|
5218
|
+
export var StopRecommender = [
|
|
5219
|
+
9,
|
|
5220
|
+
n0,
|
|
5221
|
+
_SRto,
|
|
5222
|
+
{
|
|
5223
|
+
[_h]: ["PUT", "/domains/{DomainName}/recommenders/{RecommenderName}/stop", 200],
|
|
5224
|
+
},
|
|
5225
|
+
() => StopRecommenderRequest,
|
|
5226
|
+
() => StopRecommenderResponse,
|
|
5227
|
+
];
|
|
4530
5228
|
export var StopUploadJob = [
|
|
4531
5229
|
9,
|
|
4532
5230
|
n0,
|
|
@@ -4607,3 +5305,13 @@ export var UpdateProfile = [
|
|
|
4607
5305
|
() => UpdateProfileRequest,
|
|
4608
5306
|
() => UpdateProfileResponse,
|
|
4609
5307
|
];
|
|
5308
|
+
export var UpdateRecommender = [
|
|
5309
|
+
9,
|
|
5310
|
+
n0,
|
|
5311
|
+
_URp,
|
|
5312
|
+
{
|
|
5313
|
+
[_h]: ["PATCH", "/domains/{DomainName}/recommenders/{RecommenderName}", 200],
|
|
5314
|
+
},
|
|
5315
|
+
() => UpdateRecommenderRequest,
|
|
5316
|
+
() => UpdateRecommenderResponse,
|
|
5317
|
+
];
|