@aws-sdk/client-customer-profiles 3.839.0 → 3.843.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +393 -67
  3. package/dist-es/CustomerProfiles.js +12 -0
  4. package/dist-es/commands/CreateUploadJobCommand.js +23 -0
  5. package/dist-es/commands/GetUploadJobCommand.js +23 -0
  6. package/dist-es/commands/GetUploadJobPathCommand.js +22 -0
  7. package/dist-es/commands/ListUploadJobsCommand.js +22 -0
  8. package/dist-es/commands/StartUploadJobCommand.js +22 -0
  9. package/dist-es/commands/StopUploadJobCommand.js +22 -0
  10. package/dist-es/commands/UpdateCalculatedAttributeDefinitionCommand.js +1 -1
  11. package/dist-es/commands/UpdateDomainLayoutCommand.js +1 -1
  12. package/dist-es/commands/UpdateEventTriggerCommand.js +1 -1
  13. package/dist-es/commands/index.js +6 -0
  14. package/dist-es/models/models_0.js +20 -35
  15. package/dist-es/models/models_1.js +35 -0
  16. package/dist-es/pagination/ListUploadJobsPaginator.js +4 -0
  17. package/dist-es/pagination/index.js +1 -0
  18. package/dist-es/protocols/Aws_restJson1.js +184 -0
  19. package/dist-types/CustomerProfiles.d.ts +42 -0
  20. package/dist-types/CustomerProfilesClient.d.ts +8 -2
  21. package/dist-types/commands/CreateUploadJobCommand.d.ts +98 -0
  22. package/dist-types/commands/GetUploadJobCommand.d.ts +107 -0
  23. package/dist-types/commands/GetUploadJobPathCommand.d.ts +91 -0
  24. package/dist-types/commands/ListUploadJobsCommand.d.ts +100 -0
  25. package/dist-types/commands/StartUploadJobCommand.d.ts +87 -0
  26. package/dist-types/commands/StopUploadJobCommand.d.ts +86 -0
  27. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  28. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  29. package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
  32. package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
  33. package/dist-types/commands/index.d.ts +6 -0
  34. package/dist-types/models/models_0.d.ts +480 -660
  35. package/dist-types/models/models_1.d.ts +569 -1
  36. package/dist-types/pagination/ListUploadJobsPaginator.d.ts +7 -0
  37. package/dist-types/pagination/index.d.ts +1 -0
  38. package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
  39. package/dist-types/ts3.4/CustomerProfiles.d.ts +102 -0
  40. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +36 -0
  41. package/dist-types/ts3.4/commands/CreateUploadJobCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/GetUploadJobCommand.d.ts +47 -0
  43. package/dist-types/ts3.4/commands/GetUploadJobPathCommand.d.ts +50 -0
  44. package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +50 -0
  45. package/dist-types/ts3.4/commands/StartUploadJobCommand.d.ts +48 -0
  46. package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +50 -0
  47. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +95 -137
  55. package/dist-types/ts3.4/models/models_1.d.ts +147 -1
  56. package/dist-types/ts3.4/pagination/ListUploadJobsPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  58. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
  59. package/package.json +12 -12
@@ -55,6 +55,10 @@ import {
55
55
  CreateSegmentSnapshotCommandInput,
56
56
  CreateSegmentSnapshotCommandOutput,
57
57
  } from "../commands/CreateSegmentSnapshotCommand";
58
+ import {
59
+ CreateUploadJobCommandInput,
60
+ CreateUploadJobCommandOutput,
61
+ } from "../commands/CreateUploadJobCommand";
58
62
  import {
59
63
  DeleteCalculatedAttributeDefinitionCommandInput,
60
64
  DeleteCalculatedAttributeDefinitionCommandOutput,
@@ -175,6 +179,14 @@ import {
175
179
  GetSimilarProfilesCommandInput,
176
180
  GetSimilarProfilesCommandOutput,
177
181
  } from "../commands/GetSimilarProfilesCommand";
182
+ import {
183
+ GetUploadJobCommandInput,
184
+ GetUploadJobCommandOutput,
185
+ } from "../commands/GetUploadJobCommand";
186
+ import {
187
+ GetUploadJobPathCommandInput,
188
+ GetUploadJobPathCommandOutput,
189
+ } from "../commands/GetUploadJobPathCommand";
178
190
  import {
179
191
  GetWorkflowCommandInput,
180
192
  GetWorkflowCommandOutput,
@@ -251,6 +263,10 @@ import {
251
263
  ListTagsForResourceCommandInput,
252
264
  ListTagsForResourceCommandOutput,
253
265
  } from "../commands/ListTagsForResourceCommand";
266
+ import {
267
+ ListUploadJobsCommandInput,
268
+ ListUploadJobsCommandOutput,
269
+ } from "../commands/ListUploadJobsCommand";
254
270
  import {
255
271
  ListWorkflowsCommandInput,
256
272
  ListWorkflowsCommandOutput,
@@ -275,6 +291,14 @@ import {
275
291
  SearchProfilesCommandInput,
276
292
  SearchProfilesCommandOutput,
277
293
  } from "../commands/SearchProfilesCommand";
294
+ import {
295
+ StartUploadJobCommandInput,
296
+ StartUploadJobCommandOutput,
297
+ } from "../commands/StartUploadJobCommand";
298
+ import {
299
+ StopUploadJobCommandInput,
300
+ StopUploadJobCommandOutput,
301
+ } from "../commands/StopUploadJobCommand";
278
302
  import {
279
303
  TagResourceCommandInput,
280
304
  TagResourceCommandOutput,
@@ -355,6 +379,10 @@ export declare const se_CreateSegmentSnapshotCommand: (
355
379
  input: CreateSegmentSnapshotCommandInput,
356
380
  context: __SerdeContext
357
381
  ) => Promise<__HttpRequest>;
382
+ export declare const se_CreateUploadJobCommand: (
383
+ input: CreateUploadJobCommandInput,
384
+ context: __SerdeContext
385
+ ) => Promise<__HttpRequest>;
358
386
  export declare const se_DeleteCalculatedAttributeDefinitionCommand: (
359
387
  input: DeleteCalculatedAttributeDefinitionCommandInput,
360
388
  context: __SerdeContext
@@ -475,6 +503,14 @@ export declare const se_GetSimilarProfilesCommand: (
475
503
  input: GetSimilarProfilesCommandInput,
476
504
  context: __SerdeContext
477
505
  ) => Promise<__HttpRequest>;
506
+ export declare const se_GetUploadJobCommand: (
507
+ input: GetUploadJobCommandInput,
508
+ context: __SerdeContext
509
+ ) => Promise<__HttpRequest>;
510
+ export declare const se_GetUploadJobPathCommand: (
511
+ input: GetUploadJobPathCommandInput,
512
+ context: __SerdeContext
513
+ ) => Promise<__HttpRequest>;
478
514
  export declare const se_GetWorkflowCommand: (
479
515
  input: GetWorkflowCommandInput,
480
516
  context: __SerdeContext
@@ -551,6 +587,10 @@ export declare const se_ListTagsForResourceCommand: (
551
587
  input: ListTagsForResourceCommandInput,
552
588
  context: __SerdeContext
553
589
  ) => Promise<__HttpRequest>;
590
+ export declare const se_ListUploadJobsCommand: (
591
+ input: ListUploadJobsCommandInput,
592
+ context: __SerdeContext
593
+ ) => Promise<__HttpRequest>;
554
594
  export declare const se_ListWorkflowsCommand: (
555
595
  input: ListWorkflowsCommandInput,
556
596
  context: __SerdeContext
@@ -575,6 +615,14 @@ export declare const se_SearchProfilesCommand: (
575
615
  input: SearchProfilesCommandInput,
576
616
  context: __SerdeContext
577
617
  ) => Promise<__HttpRequest>;
618
+ export declare const se_StartUploadJobCommand: (
619
+ input: StartUploadJobCommandInput,
620
+ context: __SerdeContext
621
+ ) => Promise<__HttpRequest>;
622
+ export declare const se_StopUploadJobCommand: (
623
+ input: StopUploadJobCommandInput,
624
+ context: __SerdeContext
625
+ ) => Promise<__HttpRequest>;
578
626
  export declare const se_TagResourceCommand: (
579
627
  input: TagResourceCommandInput,
580
628
  context: __SerdeContext
@@ -655,6 +703,10 @@ export declare const de_CreateSegmentSnapshotCommand: (
655
703
  output: __HttpResponse,
656
704
  context: __SerdeContext
657
705
  ) => Promise<CreateSegmentSnapshotCommandOutput>;
706
+ export declare const de_CreateUploadJobCommand: (
707
+ output: __HttpResponse,
708
+ context: __SerdeContext
709
+ ) => Promise<CreateUploadJobCommandOutput>;
658
710
  export declare const de_DeleteCalculatedAttributeDefinitionCommand: (
659
711
  output: __HttpResponse,
660
712
  context: __SerdeContext
@@ -775,6 +827,14 @@ export declare const de_GetSimilarProfilesCommand: (
775
827
  output: __HttpResponse,
776
828
  context: __SerdeContext
777
829
  ) => Promise<GetSimilarProfilesCommandOutput>;
830
+ export declare const de_GetUploadJobCommand: (
831
+ output: __HttpResponse,
832
+ context: __SerdeContext
833
+ ) => Promise<GetUploadJobCommandOutput>;
834
+ export declare const de_GetUploadJobPathCommand: (
835
+ output: __HttpResponse,
836
+ context: __SerdeContext
837
+ ) => Promise<GetUploadJobPathCommandOutput>;
778
838
  export declare const de_GetWorkflowCommand: (
779
839
  output: __HttpResponse,
780
840
  context: __SerdeContext
@@ -851,6 +911,10 @@ export declare const de_ListTagsForResourceCommand: (
851
911
  output: __HttpResponse,
852
912
  context: __SerdeContext
853
913
  ) => Promise<ListTagsForResourceCommandOutput>;
914
+ export declare const de_ListUploadJobsCommand: (
915
+ output: __HttpResponse,
916
+ context: __SerdeContext
917
+ ) => Promise<ListUploadJobsCommandOutput>;
854
918
  export declare const de_ListWorkflowsCommand: (
855
919
  output: __HttpResponse,
856
920
  context: __SerdeContext
@@ -875,6 +939,14 @@ export declare const de_SearchProfilesCommand: (
875
939
  output: __HttpResponse,
876
940
  context: __SerdeContext
877
941
  ) => Promise<SearchProfilesCommandOutput>;
942
+ export declare const de_StartUploadJobCommand: (
943
+ output: __HttpResponse,
944
+ context: __SerdeContext
945
+ ) => Promise<StartUploadJobCommandOutput>;
946
+ export declare const de_StopUploadJobCommand: (
947
+ output: __HttpResponse,
948
+ context: __SerdeContext
949
+ ) => Promise<StopUploadJobCommandOutput>;
878
950
  export declare const de_TagResourceCommand: (
879
951
  output: __HttpResponse,
880
952
  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.839.0",
4
+ "version": "3.843.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,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.839.0",
24
- "@aws-sdk/credential-provider-node": "3.839.0",
25
- "@aws-sdk/middleware-host-header": "3.821.0",
26
- "@aws-sdk/middleware-logger": "3.821.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.821.0",
28
- "@aws-sdk/middleware-user-agent": "3.839.0",
29
- "@aws-sdk/region-config-resolver": "3.821.0",
30
- "@aws-sdk/types": "3.821.0",
31
- "@aws-sdk/util-endpoints": "3.828.0",
32
- "@aws-sdk/util-user-agent-browser": "3.821.0",
33
- "@aws-sdk/util-user-agent-node": "3.839.0",
23
+ "@aws-sdk/core": "3.840.0",
24
+ "@aws-sdk/credential-provider-node": "3.840.0",
25
+ "@aws-sdk/middleware-host-header": "3.840.0",
26
+ "@aws-sdk/middleware-logger": "3.840.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
+ "@aws-sdk/middleware-user-agent": "3.840.0",
29
+ "@aws-sdk/region-config-resolver": "3.840.0",
30
+ "@aws-sdk/types": "3.840.0",
31
+ "@aws-sdk/util-endpoints": "3.840.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.840.0",
33
+ "@aws-sdk/util-user-agent-node": "3.840.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.6.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.4",