@aws-sdk/client-customer-profiles 3.826.0 → 3.828.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 +40 -0
- package/dist-cjs/index.js +439 -33
- package/dist-es/CustomerProfiles.js +10 -0
- package/dist-es/commands/CreateDomainLayoutCommand.js +23 -0
- package/dist-es/commands/DeleteDomainLayoutCommand.js +22 -0
- package/dist-es/commands/GetDomainLayoutCommand.js +23 -0
- package/dist-es/commands/ListDomainLayoutsCommand.js +23 -0
- package/dist-es/commands/UpdateDomainLayoutCommand.js +23 -0
- package/dist-es/commands/UpdateProfileCommand.js +1 -1
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +51 -26
- package/dist-es/models/models_1.js +27 -0
- package/dist-es/pagination/ListDomainLayoutsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +240 -2
- package/dist-types/CustomerProfiles.d.ts +35 -0
- package/dist-types/CustomerProfilesClient.d.ts +7 -2
- package/dist-types/commands/BatchGetCalculatedAttributeForProfileCommand.d.ts +1 -0
- package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +23 -4
- package/dist-types/commands/CreateDomainLayoutCommand.d.ts +108 -0
- package/dist-types/commands/DeleteDomainLayoutCommand.d.ts +89 -0
- package/dist-types/commands/DetectProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +14 -2
- package/dist-types/commands/GetCalculatedAttributeForProfileCommand.d.ts +1 -0
- package/dist-types/commands/GetDomainLayoutCommand.d.ts +100 -0
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +2 -0
- package/dist-types/commands/ListCalculatedAttributesForProfileCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainLayoutsCommand.d.ts +104 -0
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +22 -4
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +105 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +631 -173
- package/dist-types/models/models_1.d.ts +152 -0
- package/dist-types/pagination/ListDomainLayoutsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +85 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainLayoutCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainLayoutsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +153 -35
- package/dist-types/ts3.4/models/models_1.d.ts +34 -0
- package/dist-types/ts3.4/pagination/ListDomainLayoutsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +5 -5
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
CreateDomainCommandInput,
|
|
24
24
|
CreateDomainCommandOutput,
|
|
25
25
|
} from "../commands/CreateDomainCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateDomainLayoutCommandInput,
|
|
28
|
+
CreateDomainLayoutCommandOutput,
|
|
29
|
+
} from "../commands/CreateDomainLayoutCommand";
|
|
26
30
|
import {
|
|
27
31
|
CreateEventStreamCommandInput,
|
|
28
32
|
CreateEventStreamCommandOutput,
|
|
@@ -59,6 +63,10 @@ import {
|
|
|
59
63
|
DeleteDomainCommandInput,
|
|
60
64
|
DeleteDomainCommandOutput,
|
|
61
65
|
} from "../commands/DeleteDomainCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteDomainLayoutCommandInput,
|
|
68
|
+
DeleteDomainLayoutCommandOutput,
|
|
69
|
+
} from "../commands/DeleteDomainLayoutCommand";
|
|
62
70
|
import {
|
|
63
71
|
DeleteEventStreamCommandInput,
|
|
64
72
|
DeleteEventStreamCommandOutput,
|
|
@@ -115,6 +123,10 @@ import {
|
|
|
115
123
|
GetDomainCommandInput,
|
|
116
124
|
GetDomainCommandOutput,
|
|
117
125
|
} from "../commands/GetDomainCommand";
|
|
126
|
+
import {
|
|
127
|
+
GetDomainLayoutCommandInput,
|
|
128
|
+
GetDomainLayoutCommandOutput,
|
|
129
|
+
} from "../commands/GetDomainLayoutCommand";
|
|
118
130
|
import {
|
|
119
131
|
GetEventStreamCommandInput,
|
|
120
132
|
GetEventStreamCommandOutput,
|
|
@@ -183,6 +195,10 @@ import {
|
|
|
183
195
|
ListCalculatedAttributesForProfileCommandInput,
|
|
184
196
|
ListCalculatedAttributesForProfileCommandOutput,
|
|
185
197
|
} from "../commands/ListCalculatedAttributesForProfileCommand";
|
|
198
|
+
import {
|
|
199
|
+
ListDomainLayoutsCommandInput,
|
|
200
|
+
ListDomainLayoutsCommandOutput,
|
|
201
|
+
} from "../commands/ListDomainLayoutsCommand";
|
|
186
202
|
import {
|
|
187
203
|
ListDomainsCommandInput,
|
|
188
204
|
ListDomainsCommandOutput,
|
|
@@ -275,6 +291,10 @@ import {
|
|
|
275
291
|
UpdateDomainCommandInput,
|
|
276
292
|
UpdateDomainCommandOutput,
|
|
277
293
|
} from "../commands/UpdateDomainCommand";
|
|
294
|
+
import {
|
|
295
|
+
UpdateDomainLayoutCommandInput,
|
|
296
|
+
UpdateDomainLayoutCommandOutput,
|
|
297
|
+
} from "../commands/UpdateDomainLayoutCommand";
|
|
278
298
|
import {
|
|
279
299
|
UpdateEventTriggerCommandInput,
|
|
280
300
|
UpdateEventTriggerCommandOutput,
|
|
@@ -303,6 +323,10 @@ export declare const se_CreateDomainCommand: (
|
|
|
303
323
|
input: CreateDomainCommandInput,
|
|
304
324
|
context: __SerdeContext
|
|
305
325
|
) => Promise<__HttpRequest>;
|
|
326
|
+
export declare const se_CreateDomainLayoutCommand: (
|
|
327
|
+
input: CreateDomainLayoutCommandInput,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<__HttpRequest>;
|
|
306
330
|
export declare const se_CreateEventStreamCommand: (
|
|
307
331
|
input: CreateEventStreamCommandInput,
|
|
308
332
|
context: __SerdeContext
|
|
@@ -339,6 +363,10 @@ export declare const se_DeleteDomainCommand: (
|
|
|
339
363
|
input: DeleteDomainCommandInput,
|
|
340
364
|
context: __SerdeContext
|
|
341
365
|
) => Promise<__HttpRequest>;
|
|
366
|
+
export declare const se_DeleteDomainLayoutCommand: (
|
|
367
|
+
input: DeleteDomainLayoutCommandInput,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<__HttpRequest>;
|
|
342
370
|
export declare const se_DeleteEventStreamCommand: (
|
|
343
371
|
input: DeleteEventStreamCommandInput,
|
|
344
372
|
context: __SerdeContext
|
|
@@ -395,6 +423,10 @@ export declare const se_GetDomainCommand: (
|
|
|
395
423
|
input: GetDomainCommandInput,
|
|
396
424
|
context: __SerdeContext
|
|
397
425
|
) => Promise<__HttpRequest>;
|
|
426
|
+
export declare const se_GetDomainLayoutCommand: (
|
|
427
|
+
input: GetDomainLayoutCommandInput,
|
|
428
|
+
context: __SerdeContext
|
|
429
|
+
) => Promise<__HttpRequest>;
|
|
398
430
|
export declare const se_GetEventStreamCommand: (
|
|
399
431
|
input: GetEventStreamCommandInput,
|
|
400
432
|
context: __SerdeContext
|
|
@@ -463,6 +495,10 @@ export declare const se_ListCalculatedAttributesForProfileCommand: (
|
|
|
463
495
|
input: ListCalculatedAttributesForProfileCommandInput,
|
|
464
496
|
context: __SerdeContext
|
|
465
497
|
) => Promise<__HttpRequest>;
|
|
498
|
+
export declare const se_ListDomainLayoutsCommand: (
|
|
499
|
+
input: ListDomainLayoutsCommandInput,
|
|
500
|
+
context: __SerdeContext
|
|
501
|
+
) => Promise<__HttpRequest>;
|
|
466
502
|
export declare const se_ListDomainsCommand: (
|
|
467
503
|
input: ListDomainsCommandInput,
|
|
468
504
|
context: __SerdeContext
|
|
@@ -555,6 +591,10 @@ export declare const se_UpdateDomainCommand: (
|
|
|
555
591
|
input: UpdateDomainCommandInput,
|
|
556
592
|
context: __SerdeContext
|
|
557
593
|
) => Promise<__HttpRequest>;
|
|
594
|
+
export declare const se_UpdateDomainLayoutCommand: (
|
|
595
|
+
input: UpdateDomainLayoutCommandInput,
|
|
596
|
+
context: __SerdeContext
|
|
597
|
+
) => Promise<__HttpRequest>;
|
|
558
598
|
export declare const se_UpdateEventTriggerCommand: (
|
|
559
599
|
input: UpdateEventTriggerCommandInput,
|
|
560
600
|
context: __SerdeContext
|
|
@@ -583,6 +623,10 @@ export declare const de_CreateDomainCommand: (
|
|
|
583
623
|
output: __HttpResponse,
|
|
584
624
|
context: __SerdeContext
|
|
585
625
|
) => Promise<CreateDomainCommandOutput>;
|
|
626
|
+
export declare const de_CreateDomainLayoutCommand: (
|
|
627
|
+
output: __HttpResponse,
|
|
628
|
+
context: __SerdeContext
|
|
629
|
+
) => Promise<CreateDomainLayoutCommandOutput>;
|
|
586
630
|
export declare const de_CreateEventStreamCommand: (
|
|
587
631
|
output: __HttpResponse,
|
|
588
632
|
context: __SerdeContext
|
|
@@ -619,6 +663,10 @@ export declare const de_DeleteDomainCommand: (
|
|
|
619
663
|
output: __HttpResponse,
|
|
620
664
|
context: __SerdeContext
|
|
621
665
|
) => Promise<DeleteDomainCommandOutput>;
|
|
666
|
+
export declare const de_DeleteDomainLayoutCommand: (
|
|
667
|
+
output: __HttpResponse,
|
|
668
|
+
context: __SerdeContext
|
|
669
|
+
) => Promise<DeleteDomainLayoutCommandOutput>;
|
|
622
670
|
export declare const de_DeleteEventStreamCommand: (
|
|
623
671
|
output: __HttpResponse,
|
|
624
672
|
context: __SerdeContext
|
|
@@ -675,6 +723,10 @@ export declare const de_GetDomainCommand: (
|
|
|
675
723
|
output: __HttpResponse,
|
|
676
724
|
context: __SerdeContext
|
|
677
725
|
) => Promise<GetDomainCommandOutput>;
|
|
726
|
+
export declare const de_GetDomainLayoutCommand: (
|
|
727
|
+
output: __HttpResponse,
|
|
728
|
+
context: __SerdeContext
|
|
729
|
+
) => Promise<GetDomainLayoutCommandOutput>;
|
|
678
730
|
export declare const de_GetEventStreamCommand: (
|
|
679
731
|
output: __HttpResponse,
|
|
680
732
|
context: __SerdeContext
|
|
@@ -743,6 +795,10 @@ export declare const de_ListCalculatedAttributesForProfileCommand: (
|
|
|
743
795
|
output: __HttpResponse,
|
|
744
796
|
context: __SerdeContext
|
|
745
797
|
) => Promise<ListCalculatedAttributesForProfileCommandOutput>;
|
|
798
|
+
export declare const de_ListDomainLayoutsCommand: (
|
|
799
|
+
output: __HttpResponse,
|
|
800
|
+
context: __SerdeContext
|
|
801
|
+
) => Promise<ListDomainLayoutsCommandOutput>;
|
|
746
802
|
export declare const de_ListDomainsCommand: (
|
|
747
803
|
output: __HttpResponse,
|
|
748
804
|
context: __SerdeContext
|
|
@@ -835,6 +891,10 @@ export declare const de_UpdateDomainCommand: (
|
|
|
835
891
|
output: __HttpResponse,
|
|
836
892
|
context: __SerdeContext
|
|
837
893
|
) => Promise<UpdateDomainCommandOutput>;
|
|
894
|
+
export declare const de_UpdateDomainLayoutCommand: (
|
|
895
|
+
output: __HttpResponse,
|
|
896
|
+
context: __SerdeContext
|
|
897
|
+
) => Promise<UpdateDomainLayoutCommandOutput>;
|
|
838
898
|
export declare const de_UpdateEventTriggerCommand: (
|
|
839
899
|
output: __HttpResponse,
|
|
840
900
|
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.828.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",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.826.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.828.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.828.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
30
|
"@aws-sdk/types": "3.821.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.828.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.828.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
35
|
"@smithy/core": "^3.5.3",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.4",
|