@aws-sdk/client-customer-profiles 3.692.0 → 3.695.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 +104 -0
- package/dist-cjs/index.js +1265 -46
- package/dist-es/CustomerProfiles.js +26 -0
- package/dist-es/commands/BatchGetCalculatedAttributeForProfileCommand.js +23 -0
- package/dist-es/commands/BatchGetProfileCommand.js +23 -0
- package/dist-es/commands/CreateSegmentDefinitionCommand.js +23 -0
- package/dist-es/commands/CreateSegmentEstimateCommand.js +23 -0
- package/dist-es/commands/CreateSegmentSnapshotCommand.js +22 -0
- package/dist-es/commands/DeleteSegmentDefinitionCommand.js +22 -0
- package/dist-es/commands/GetSegmentDefinitionCommand.js +23 -0
- package/dist-es/commands/GetSegmentEstimateCommand.js +22 -0
- package/dist-es/commands/GetSegmentMembershipCommand.js +23 -0
- package/dist-es/commands/GetSegmentSnapshotCommand.js +22 -0
- package/dist-es/commands/ListObjectTypeAttributesCommand.js +22 -0
- package/dist-es/commands/ListProfileAttributeValuesCommand.js +22 -0
- package/dist-es/commands/ListSegmentDefinitionsCommand.js +23 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +208 -34
- package/dist-es/pagination/GetSimilarProfilesPaginator.js +4 -0
- package/dist-es/pagination/ListObjectTypeAttributesPaginator.js +4 -0
- package/dist-es/pagination/ListRuleBasedMatchesPaginator.js +4 -0
- package/dist-es/pagination/ListSegmentDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +739 -2
- package/dist-types/CustomerProfiles.d.ts +91 -0
- package/dist-types/CustomerProfilesClient.d.ts +15 -2
- package/dist-types/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +119 -0
- package/dist-types/commands/BatchGetProfileCommand.d.ts +177 -0
- package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +40 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +221 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +210 -0
- package/dist-types/commands/CreateSegmentSnapshotCommand.d.ts +91 -0
- package/dist-types/commands/DeleteSegmentDefinitionCommand.d.ts +87 -0
- package/dist-types/commands/DetectProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +20 -0
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +216 -0
- package/dist-types/commands/GetSegmentEstimateCommand.d.ts +92 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +183 -0
- package/dist-types/commands/GetSegmentSnapshotCommand.d.ts +94 -0
- package/dist-types/commands/ListObjectTypeAttributesCommand.d.ts +95 -0
- package/dist-types/commands/ListProfileAttributeValuesCommand.d.ts +94 -0
- package/dist-types/commands/ListSegmentDefinitionsCommand.d.ts +100 -0
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +2277 -826
- package/dist-types/pagination/GetSimilarProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListObjectTypeAttributesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRuleBasedMatchesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSegmentDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +117 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +227 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetProfileCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateSegmentEstimateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateSegmentSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentEstimateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentMembershipCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSegmentSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListObjectTypeAttributesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProfileAttributeValuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSegmentDefinitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +503 -44
- package/dist-types/ts3.4/pagination/GetSimilarProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListObjectTypeAttributesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRuleBasedMatchesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSegmentDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +156 -0
- package/package.json +13 -13
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListObjectTypeAttributesCommandInput,
|
|
4
|
+
ListObjectTypeAttributesCommandOutput,
|
|
5
|
+
} from "../commands/ListObjectTypeAttributesCommand";
|
|
6
|
+
import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListObjectTypeAttributes: (
|
|
8
|
+
config: CustomerProfilesPaginationConfiguration,
|
|
9
|
+
input: ListObjectTypeAttributesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListObjectTypeAttributesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRuleBasedMatchesCommandInput,
|
|
4
|
+
ListRuleBasedMatchesCommandOutput,
|
|
5
|
+
} from "../commands/ListRuleBasedMatchesCommand";
|
|
6
|
+
import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRuleBasedMatches: (
|
|
8
|
+
config: CustomerProfilesPaginationConfiguration,
|
|
9
|
+
input: ListRuleBasedMatchesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRuleBasedMatchesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSegmentDefinitionsCommandInput,
|
|
4
|
+
ListSegmentDefinitionsCommandOutput,
|
|
5
|
+
} from "../commands/ListSegmentDefinitionsCommand";
|
|
6
|
+
import { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSegmentDefinitions: (
|
|
8
|
+
config: CustomerProfilesPaginationConfiguration,
|
|
9
|
+
input: ListSegmentDefinitionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSegmentDefinitionsCommandOutput>;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
+
export * from "./GetSimilarProfilesPaginator";
|
|
1
2
|
export * from "./Interfaces";
|
|
2
3
|
export * from "./ListEventStreamsPaginator";
|
|
4
|
+
export * from "./ListObjectTypeAttributesPaginator";
|
|
5
|
+
export * from "./ListRuleBasedMatchesPaginator";
|
|
6
|
+
export * from "./ListSegmentDefinitionsPaginator";
|
|
@@ -7,6 +7,14 @@ import {
|
|
|
7
7
|
AddProfileKeyCommandInput,
|
|
8
8
|
AddProfileKeyCommandOutput,
|
|
9
9
|
} from "../commands/AddProfileKeyCommand";
|
|
10
|
+
import {
|
|
11
|
+
BatchGetCalculatedAttributeForProfileCommandInput,
|
|
12
|
+
BatchGetCalculatedAttributeForProfileCommandOutput,
|
|
13
|
+
} from "../commands/BatchGetCalculatedAttributeForProfileCommand";
|
|
14
|
+
import {
|
|
15
|
+
BatchGetProfileCommandInput,
|
|
16
|
+
BatchGetProfileCommandOutput,
|
|
17
|
+
} from "../commands/BatchGetProfileCommand";
|
|
10
18
|
import {
|
|
11
19
|
CreateCalculatedAttributeDefinitionCommandInput,
|
|
12
20
|
CreateCalculatedAttributeDefinitionCommandOutput,
|
|
@@ -27,6 +35,18 @@ import {
|
|
|
27
35
|
CreateProfileCommandInput,
|
|
28
36
|
CreateProfileCommandOutput,
|
|
29
37
|
} from "../commands/CreateProfileCommand";
|
|
38
|
+
import {
|
|
39
|
+
CreateSegmentDefinitionCommandInput,
|
|
40
|
+
CreateSegmentDefinitionCommandOutput,
|
|
41
|
+
} from "../commands/CreateSegmentDefinitionCommand";
|
|
42
|
+
import {
|
|
43
|
+
CreateSegmentEstimateCommandInput,
|
|
44
|
+
CreateSegmentEstimateCommandOutput,
|
|
45
|
+
} from "../commands/CreateSegmentEstimateCommand";
|
|
46
|
+
import {
|
|
47
|
+
CreateSegmentSnapshotCommandInput,
|
|
48
|
+
CreateSegmentSnapshotCommandOutput,
|
|
49
|
+
} from "../commands/CreateSegmentSnapshotCommand";
|
|
30
50
|
import {
|
|
31
51
|
DeleteCalculatedAttributeDefinitionCommandInput,
|
|
32
52
|
DeleteCalculatedAttributeDefinitionCommandOutput,
|
|
@@ -59,6 +79,10 @@ import {
|
|
|
59
79
|
DeleteProfileObjectTypeCommandInput,
|
|
60
80
|
DeleteProfileObjectTypeCommandOutput,
|
|
61
81
|
} from "../commands/DeleteProfileObjectTypeCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteSegmentDefinitionCommandInput,
|
|
84
|
+
DeleteSegmentDefinitionCommandOutput,
|
|
85
|
+
} from "../commands/DeleteSegmentDefinitionCommand";
|
|
62
86
|
import {
|
|
63
87
|
DeleteWorkflowCommandInput,
|
|
64
88
|
DeleteWorkflowCommandOutput,
|
|
@@ -107,6 +131,22 @@ import {
|
|
|
107
131
|
GetProfileObjectTypeTemplateCommandInput,
|
|
108
132
|
GetProfileObjectTypeTemplateCommandOutput,
|
|
109
133
|
} from "../commands/GetProfileObjectTypeTemplateCommand";
|
|
134
|
+
import {
|
|
135
|
+
GetSegmentDefinitionCommandInput,
|
|
136
|
+
GetSegmentDefinitionCommandOutput,
|
|
137
|
+
} from "../commands/GetSegmentDefinitionCommand";
|
|
138
|
+
import {
|
|
139
|
+
GetSegmentEstimateCommandInput,
|
|
140
|
+
GetSegmentEstimateCommandOutput,
|
|
141
|
+
} from "../commands/GetSegmentEstimateCommand";
|
|
142
|
+
import {
|
|
143
|
+
GetSegmentMembershipCommandInput,
|
|
144
|
+
GetSegmentMembershipCommandOutput,
|
|
145
|
+
} from "../commands/GetSegmentMembershipCommand";
|
|
146
|
+
import {
|
|
147
|
+
GetSegmentSnapshotCommandInput,
|
|
148
|
+
GetSegmentSnapshotCommandOutput,
|
|
149
|
+
} from "../commands/GetSegmentSnapshotCommand";
|
|
110
150
|
import {
|
|
111
151
|
GetSimilarProfilesCommandInput,
|
|
112
152
|
GetSimilarProfilesCommandOutput,
|
|
@@ -147,6 +187,14 @@ import {
|
|
|
147
187
|
ListIntegrationsCommandInput,
|
|
148
188
|
ListIntegrationsCommandOutput,
|
|
149
189
|
} from "../commands/ListIntegrationsCommand";
|
|
190
|
+
import {
|
|
191
|
+
ListObjectTypeAttributesCommandInput,
|
|
192
|
+
ListObjectTypeAttributesCommandOutput,
|
|
193
|
+
} from "../commands/ListObjectTypeAttributesCommand";
|
|
194
|
+
import {
|
|
195
|
+
ListProfileAttributeValuesCommandInput,
|
|
196
|
+
ListProfileAttributeValuesCommandOutput,
|
|
197
|
+
} from "../commands/ListProfileAttributeValuesCommand";
|
|
150
198
|
import {
|
|
151
199
|
ListProfileObjectsCommandInput,
|
|
152
200
|
ListProfileObjectsCommandOutput,
|
|
@@ -163,6 +211,10 @@ import {
|
|
|
163
211
|
ListRuleBasedMatchesCommandInput,
|
|
164
212
|
ListRuleBasedMatchesCommandOutput,
|
|
165
213
|
} from "../commands/ListRuleBasedMatchesCommand";
|
|
214
|
+
import {
|
|
215
|
+
ListSegmentDefinitionsCommandInput,
|
|
216
|
+
ListSegmentDefinitionsCommandOutput,
|
|
217
|
+
} from "../commands/ListSegmentDefinitionsCommand";
|
|
166
218
|
import {
|
|
167
219
|
ListTagsForResourceCommandInput,
|
|
168
220
|
ListTagsForResourceCommandOutput,
|
|
@@ -215,6 +267,14 @@ export declare const se_AddProfileKeyCommand: (
|
|
|
215
267
|
input: AddProfileKeyCommandInput,
|
|
216
268
|
context: __SerdeContext
|
|
217
269
|
) => Promise<__HttpRequest>;
|
|
270
|
+
export declare const se_BatchGetCalculatedAttributeForProfileCommand: (
|
|
271
|
+
input: BatchGetCalculatedAttributeForProfileCommandInput,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<__HttpRequest>;
|
|
274
|
+
export declare const se_BatchGetProfileCommand: (
|
|
275
|
+
input: BatchGetProfileCommandInput,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<__HttpRequest>;
|
|
218
278
|
export declare const se_CreateCalculatedAttributeDefinitionCommand: (
|
|
219
279
|
input: CreateCalculatedAttributeDefinitionCommandInput,
|
|
220
280
|
context: __SerdeContext
|
|
@@ -235,6 +295,18 @@ export declare const se_CreateProfileCommand: (
|
|
|
235
295
|
input: CreateProfileCommandInput,
|
|
236
296
|
context: __SerdeContext
|
|
237
297
|
) => Promise<__HttpRequest>;
|
|
298
|
+
export declare const se_CreateSegmentDefinitionCommand: (
|
|
299
|
+
input: CreateSegmentDefinitionCommandInput,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<__HttpRequest>;
|
|
302
|
+
export declare const se_CreateSegmentEstimateCommand: (
|
|
303
|
+
input: CreateSegmentEstimateCommandInput,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_CreateSegmentSnapshotCommand: (
|
|
307
|
+
input: CreateSegmentSnapshotCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
238
310
|
export declare const se_DeleteCalculatedAttributeDefinitionCommand: (
|
|
239
311
|
input: DeleteCalculatedAttributeDefinitionCommandInput,
|
|
240
312
|
context: __SerdeContext
|
|
@@ -267,6 +339,10 @@ export declare const se_DeleteProfileObjectTypeCommand: (
|
|
|
267
339
|
input: DeleteProfileObjectTypeCommandInput,
|
|
268
340
|
context: __SerdeContext
|
|
269
341
|
) => Promise<__HttpRequest>;
|
|
342
|
+
export declare const se_DeleteSegmentDefinitionCommand: (
|
|
343
|
+
input: DeleteSegmentDefinitionCommandInput,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<__HttpRequest>;
|
|
270
346
|
export declare const se_DeleteWorkflowCommand: (
|
|
271
347
|
input: DeleteWorkflowCommandInput,
|
|
272
348
|
context: __SerdeContext
|
|
@@ -315,6 +391,22 @@ export declare const se_GetProfileObjectTypeTemplateCommand: (
|
|
|
315
391
|
input: GetProfileObjectTypeTemplateCommandInput,
|
|
316
392
|
context: __SerdeContext
|
|
317
393
|
) => Promise<__HttpRequest>;
|
|
394
|
+
export declare const se_GetSegmentDefinitionCommand: (
|
|
395
|
+
input: GetSegmentDefinitionCommandInput,
|
|
396
|
+
context: __SerdeContext
|
|
397
|
+
) => Promise<__HttpRequest>;
|
|
398
|
+
export declare const se_GetSegmentEstimateCommand: (
|
|
399
|
+
input: GetSegmentEstimateCommandInput,
|
|
400
|
+
context: __SerdeContext
|
|
401
|
+
) => Promise<__HttpRequest>;
|
|
402
|
+
export declare const se_GetSegmentMembershipCommand: (
|
|
403
|
+
input: GetSegmentMembershipCommandInput,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<__HttpRequest>;
|
|
406
|
+
export declare const se_GetSegmentSnapshotCommand: (
|
|
407
|
+
input: GetSegmentSnapshotCommandInput,
|
|
408
|
+
context: __SerdeContext
|
|
409
|
+
) => Promise<__HttpRequest>;
|
|
318
410
|
export declare const se_GetSimilarProfilesCommand: (
|
|
319
411
|
input: GetSimilarProfilesCommandInput,
|
|
320
412
|
context: __SerdeContext
|
|
@@ -355,6 +447,14 @@ export declare const se_ListIntegrationsCommand: (
|
|
|
355
447
|
input: ListIntegrationsCommandInput,
|
|
356
448
|
context: __SerdeContext
|
|
357
449
|
) => Promise<__HttpRequest>;
|
|
450
|
+
export declare const se_ListObjectTypeAttributesCommand: (
|
|
451
|
+
input: ListObjectTypeAttributesCommandInput,
|
|
452
|
+
context: __SerdeContext
|
|
453
|
+
) => Promise<__HttpRequest>;
|
|
454
|
+
export declare const se_ListProfileAttributeValuesCommand: (
|
|
455
|
+
input: ListProfileAttributeValuesCommandInput,
|
|
456
|
+
context: __SerdeContext
|
|
457
|
+
) => Promise<__HttpRequest>;
|
|
358
458
|
export declare const se_ListProfileObjectsCommand: (
|
|
359
459
|
input: ListProfileObjectsCommandInput,
|
|
360
460
|
context: __SerdeContext
|
|
@@ -371,6 +471,10 @@ export declare const se_ListRuleBasedMatchesCommand: (
|
|
|
371
471
|
input: ListRuleBasedMatchesCommandInput,
|
|
372
472
|
context: __SerdeContext
|
|
373
473
|
) => Promise<__HttpRequest>;
|
|
474
|
+
export declare const se_ListSegmentDefinitionsCommand: (
|
|
475
|
+
input: ListSegmentDefinitionsCommandInput,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<__HttpRequest>;
|
|
374
478
|
export declare const se_ListTagsForResourceCommand: (
|
|
375
479
|
input: ListTagsForResourceCommandInput,
|
|
376
480
|
context: __SerdeContext
|
|
@@ -423,6 +527,14 @@ export declare const de_AddProfileKeyCommand: (
|
|
|
423
527
|
output: __HttpResponse,
|
|
424
528
|
context: __SerdeContext
|
|
425
529
|
) => Promise<AddProfileKeyCommandOutput>;
|
|
530
|
+
export declare const de_BatchGetCalculatedAttributeForProfileCommand: (
|
|
531
|
+
output: __HttpResponse,
|
|
532
|
+
context: __SerdeContext
|
|
533
|
+
) => Promise<BatchGetCalculatedAttributeForProfileCommandOutput>;
|
|
534
|
+
export declare const de_BatchGetProfileCommand: (
|
|
535
|
+
output: __HttpResponse,
|
|
536
|
+
context: __SerdeContext
|
|
537
|
+
) => Promise<BatchGetProfileCommandOutput>;
|
|
426
538
|
export declare const de_CreateCalculatedAttributeDefinitionCommand: (
|
|
427
539
|
output: __HttpResponse,
|
|
428
540
|
context: __SerdeContext
|
|
@@ -443,6 +555,18 @@ export declare const de_CreateProfileCommand: (
|
|
|
443
555
|
output: __HttpResponse,
|
|
444
556
|
context: __SerdeContext
|
|
445
557
|
) => Promise<CreateProfileCommandOutput>;
|
|
558
|
+
export declare const de_CreateSegmentDefinitionCommand: (
|
|
559
|
+
output: __HttpResponse,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<CreateSegmentDefinitionCommandOutput>;
|
|
562
|
+
export declare const de_CreateSegmentEstimateCommand: (
|
|
563
|
+
output: __HttpResponse,
|
|
564
|
+
context: __SerdeContext
|
|
565
|
+
) => Promise<CreateSegmentEstimateCommandOutput>;
|
|
566
|
+
export declare const de_CreateSegmentSnapshotCommand: (
|
|
567
|
+
output: __HttpResponse,
|
|
568
|
+
context: __SerdeContext
|
|
569
|
+
) => Promise<CreateSegmentSnapshotCommandOutput>;
|
|
446
570
|
export declare const de_DeleteCalculatedAttributeDefinitionCommand: (
|
|
447
571
|
output: __HttpResponse,
|
|
448
572
|
context: __SerdeContext
|
|
@@ -475,6 +599,10 @@ export declare const de_DeleteProfileObjectTypeCommand: (
|
|
|
475
599
|
output: __HttpResponse,
|
|
476
600
|
context: __SerdeContext
|
|
477
601
|
) => Promise<DeleteProfileObjectTypeCommandOutput>;
|
|
602
|
+
export declare const de_DeleteSegmentDefinitionCommand: (
|
|
603
|
+
output: __HttpResponse,
|
|
604
|
+
context: __SerdeContext
|
|
605
|
+
) => Promise<DeleteSegmentDefinitionCommandOutput>;
|
|
478
606
|
export declare const de_DeleteWorkflowCommand: (
|
|
479
607
|
output: __HttpResponse,
|
|
480
608
|
context: __SerdeContext
|
|
@@ -523,6 +651,22 @@ export declare const de_GetProfileObjectTypeTemplateCommand: (
|
|
|
523
651
|
output: __HttpResponse,
|
|
524
652
|
context: __SerdeContext
|
|
525
653
|
) => Promise<GetProfileObjectTypeTemplateCommandOutput>;
|
|
654
|
+
export declare const de_GetSegmentDefinitionCommand: (
|
|
655
|
+
output: __HttpResponse,
|
|
656
|
+
context: __SerdeContext
|
|
657
|
+
) => Promise<GetSegmentDefinitionCommandOutput>;
|
|
658
|
+
export declare const de_GetSegmentEstimateCommand: (
|
|
659
|
+
output: __HttpResponse,
|
|
660
|
+
context: __SerdeContext
|
|
661
|
+
) => Promise<GetSegmentEstimateCommandOutput>;
|
|
662
|
+
export declare const de_GetSegmentMembershipCommand: (
|
|
663
|
+
output: __HttpResponse,
|
|
664
|
+
context: __SerdeContext
|
|
665
|
+
) => Promise<GetSegmentMembershipCommandOutput>;
|
|
666
|
+
export declare const de_GetSegmentSnapshotCommand: (
|
|
667
|
+
output: __HttpResponse,
|
|
668
|
+
context: __SerdeContext
|
|
669
|
+
) => Promise<GetSegmentSnapshotCommandOutput>;
|
|
526
670
|
export declare const de_GetSimilarProfilesCommand: (
|
|
527
671
|
output: __HttpResponse,
|
|
528
672
|
context: __SerdeContext
|
|
@@ -563,6 +707,14 @@ export declare const de_ListIntegrationsCommand: (
|
|
|
563
707
|
output: __HttpResponse,
|
|
564
708
|
context: __SerdeContext
|
|
565
709
|
) => Promise<ListIntegrationsCommandOutput>;
|
|
710
|
+
export declare const de_ListObjectTypeAttributesCommand: (
|
|
711
|
+
output: __HttpResponse,
|
|
712
|
+
context: __SerdeContext
|
|
713
|
+
) => Promise<ListObjectTypeAttributesCommandOutput>;
|
|
714
|
+
export declare const de_ListProfileAttributeValuesCommand: (
|
|
715
|
+
output: __HttpResponse,
|
|
716
|
+
context: __SerdeContext
|
|
717
|
+
) => Promise<ListProfileAttributeValuesCommandOutput>;
|
|
566
718
|
export declare const de_ListProfileObjectsCommand: (
|
|
567
719
|
output: __HttpResponse,
|
|
568
720
|
context: __SerdeContext
|
|
@@ -579,6 +731,10 @@ export declare const de_ListRuleBasedMatchesCommand: (
|
|
|
579
731
|
output: __HttpResponse,
|
|
580
732
|
context: __SerdeContext
|
|
581
733
|
) => Promise<ListRuleBasedMatchesCommandOutput>;
|
|
734
|
+
export declare const de_ListSegmentDefinitionsCommand: (
|
|
735
|
+
output: __HttpResponse,
|
|
736
|
+
context: __SerdeContext
|
|
737
|
+
) => Promise<ListSegmentDefinitionsCommandOutput>;
|
|
582
738
|
export declare const de_ListTagsForResourceCommand: (
|
|
583
739
|
output: __HttpResponse,
|
|
584
740
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-customer-profiles",
|
|
3
3
|
"description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.695.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-customer-profiles",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.693.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.693.0",
|
|
25
|
+
"@aws-sdk/core": "3.693.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.693.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.693.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.693.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.693.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.693.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.693.0",
|
|
32
32
|
"@aws-sdk/types": "3.692.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.693.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.693.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.693.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.11",
|
|
37
37
|
"@smithy/core": "^2.5.2",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.1.0",
|