@aws-sdk/client-customer-profiles 3.347.1 → 3.348.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 (52) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/CustomerProfiles.js +8 -0
  3. package/dist-cjs/commands/CreateEventStreamCommand.js +46 -0
  4. package/dist-cjs/commands/DeleteEventStreamCommand.js +46 -0
  5. package/dist-cjs/commands/GetEventStreamCommand.js +46 -0
  6. package/dist-cjs/commands/ListEventStreamsCommand.js +46 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/index.js +1 -0
  9. package/dist-cjs/models/models_0.js +9 -1
  10. package/dist-cjs/pagination/Interfaces.js +2 -0
  11. package/dist-cjs/pagination/ListEventStreamsPaginator.js +29 -0
  12. package/dist-cjs/pagination/index.js +5 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +309 -2
  14. package/dist-es/CustomerProfiles.js +8 -0
  15. package/dist-es/commands/CreateEventStreamCommand.js +42 -0
  16. package/dist-es/commands/DeleteEventStreamCommand.js +42 -0
  17. package/dist-es/commands/GetEventStreamCommand.js +42 -0
  18. package/dist-es/commands/ListEventStreamsCommand.js +42 -0
  19. package/dist-es/commands/index.js +4 -0
  20. package/dist-es/index.js +1 -0
  21. package/dist-es/models/models_0.js +8 -0
  22. package/dist-es/pagination/Interfaces.js +1 -0
  23. package/dist-es/pagination/ListEventStreamsPaginator.js +25 -0
  24. package/dist-es/pagination/index.js +2 -0
  25. package/dist-es/protocols/Aws_restJson1.js +299 -0
  26. package/dist-types/CustomerProfiles.d.ts +28 -0
  27. package/dist-types/CustomerProfilesClient.d.ts +6 -2
  28. package/dist-types/commands/CreateEventStreamCommand.d.ts +99 -0
  29. package/dist-types/commands/DeleteEventStreamCommand.d.ts +87 -0
  30. package/dist-types/commands/GetEventStreamCommand.d.ts +102 -0
  31. package/dist-types/commands/ListEventStreamsCommand.d.ts +107 -0
  32. package/dist-types/commands/index.d.ts +4 -0
  33. package/dist-types/index.d.ts +1 -0
  34. package/dist-types/models/models_0.d.ts +229 -0
  35. package/dist-types/pagination/Interfaces.d.ts +8 -0
  36. package/dist-types/pagination/ListEventStreamsPaginator.d.ts +7 -0
  37. package/dist-types/pagination/index.d.ts +2 -0
  38. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  39. package/dist-types/ts3.4/CustomerProfiles.d.ts +68 -0
  40. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
  41. package/dist-types/ts3.4/commands/CreateEventStreamCommand.d.ts +39 -0
  42. package/dist-types/ts3.4/commands/DeleteEventStreamCommand.d.ts +39 -0
  43. package/dist-types/ts3.4/commands/GetEventStreamCommand.d.ts +38 -0
  44. package/dist-types/ts3.4/commands/ListEventStreamsCommand.d.ts +38 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  46. package/dist-types/ts3.4/index.d.ts +1 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +69 -0
  48. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  49. package/dist-types/ts3.4/pagination/ListEventStreamsPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  52. package/package.json +4 -4
@@ -15,6 +15,10 @@ import {
15
15
  CreateDomainCommandInput,
16
16
  CreateDomainCommandOutput,
17
17
  } from "../commands/CreateDomainCommand";
18
+ import {
19
+ CreateEventStreamCommandInput,
20
+ CreateEventStreamCommandOutput,
21
+ } from "../commands/CreateEventStreamCommand";
18
22
  import {
19
23
  CreateIntegrationWorkflowCommandInput,
20
24
  CreateIntegrationWorkflowCommandOutput,
@@ -31,6 +35,10 @@ import {
31
35
  DeleteDomainCommandInput,
32
36
  DeleteDomainCommandOutput,
33
37
  } from "../commands/DeleteDomainCommand";
38
+ import {
39
+ DeleteEventStreamCommandInput,
40
+ DeleteEventStreamCommandOutput,
41
+ } from "../commands/DeleteEventStreamCommand";
34
42
  import {
35
43
  DeleteIntegrationCommandInput,
36
44
  DeleteIntegrationCommandOutput,
@@ -71,6 +79,10 @@ import {
71
79
  GetDomainCommandInput,
72
80
  GetDomainCommandOutput,
73
81
  } from "../commands/GetDomainCommand";
82
+ import {
83
+ GetEventStreamCommandInput,
84
+ GetEventStreamCommandOutput,
85
+ } from "../commands/GetEventStreamCommand";
74
86
  import {
75
87
  GetIdentityResolutionJobCommandInput,
76
88
  GetIdentityResolutionJobCommandOutput,
@@ -115,6 +127,10 @@ import {
115
127
  ListDomainsCommandInput,
116
128
  ListDomainsCommandOutput,
117
129
  } from "../commands/ListDomainsCommand";
130
+ import {
131
+ ListEventStreamsCommandInput,
132
+ ListEventStreamsCommandOutput,
133
+ } from "../commands/ListEventStreamsCommand";
118
134
  import {
119
135
  ListIdentityResolutionJobsCommandInput,
120
136
  ListIdentityResolutionJobsCommandOutput,
@@ -195,6 +211,10 @@ export declare const se_CreateDomainCommand: (
195
211
  input: CreateDomainCommandInput,
196
212
  context: __SerdeContext
197
213
  ) => Promise<__HttpRequest>;
214
+ export declare const se_CreateEventStreamCommand: (
215
+ input: CreateEventStreamCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
198
218
  export declare const se_CreateIntegrationWorkflowCommand: (
199
219
  input: CreateIntegrationWorkflowCommandInput,
200
220
  context: __SerdeContext
@@ -211,6 +231,10 @@ export declare const se_DeleteDomainCommand: (
211
231
  input: DeleteDomainCommandInput,
212
232
  context: __SerdeContext
213
233
  ) => Promise<__HttpRequest>;
234
+ export declare const se_DeleteEventStreamCommand: (
235
+ input: DeleteEventStreamCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
214
238
  export declare const se_DeleteIntegrationCommand: (
215
239
  input: DeleteIntegrationCommandInput,
216
240
  context: __SerdeContext
@@ -251,6 +275,10 @@ export declare const se_GetDomainCommand: (
251
275
  input: GetDomainCommandInput,
252
276
  context: __SerdeContext
253
277
  ) => Promise<__HttpRequest>;
278
+ export declare const se_GetEventStreamCommand: (
279
+ input: GetEventStreamCommandInput,
280
+ context: __SerdeContext
281
+ ) => Promise<__HttpRequest>;
254
282
  export declare const se_GetIdentityResolutionJobCommand: (
255
283
  input: GetIdentityResolutionJobCommandInput,
256
284
  context: __SerdeContext
@@ -295,6 +323,10 @@ export declare const se_ListDomainsCommand: (
295
323
  input: ListDomainsCommandInput,
296
324
  context: __SerdeContext
297
325
  ) => Promise<__HttpRequest>;
326
+ export declare const se_ListEventStreamsCommand: (
327
+ input: ListEventStreamsCommandInput,
328
+ context: __SerdeContext
329
+ ) => Promise<__HttpRequest>;
298
330
  export declare const se_ListIdentityResolutionJobsCommand: (
299
331
  input: ListIdentityResolutionJobsCommandInput,
300
332
  context: __SerdeContext
@@ -375,6 +407,10 @@ export declare const de_CreateDomainCommand: (
375
407
  output: __HttpResponse,
376
408
  context: __SerdeContext
377
409
  ) => Promise<CreateDomainCommandOutput>;
410
+ export declare const de_CreateEventStreamCommand: (
411
+ output: __HttpResponse,
412
+ context: __SerdeContext
413
+ ) => Promise<CreateEventStreamCommandOutput>;
378
414
  export declare const de_CreateIntegrationWorkflowCommand: (
379
415
  output: __HttpResponse,
380
416
  context: __SerdeContext
@@ -391,6 +427,10 @@ export declare const de_DeleteDomainCommand: (
391
427
  output: __HttpResponse,
392
428
  context: __SerdeContext
393
429
  ) => Promise<DeleteDomainCommandOutput>;
430
+ export declare const de_DeleteEventStreamCommand: (
431
+ output: __HttpResponse,
432
+ context: __SerdeContext
433
+ ) => Promise<DeleteEventStreamCommandOutput>;
394
434
  export declare const de_DeleteIntegrationCommand: (
395
435
  output: __HttpResponse,
396
436
  context: __SerdeContext
@@ -431,6 +471,10 @@ export declare const de_GetDomainCommand: (
431
471
  output: __HttpResponse,
432
472
  context: __SerdeContext
433
473
  ) => Promise<GetDomainCommandOutput>;
474
+ export declare const de_GetEventStreamCommand: (
475
+ output: __HttpResponse,
476
+ context: __SerdeContext
477
+ ) => Promise<GetEventStreamCommandOutput>;
434
478
  export declare const de_GetIdentityResolutionJobCommand: (
435
479
  output: __HttpResponse,
436
480
  context: __SerdeContext
@@ -475,6 +519,10 @@ export declare const de_ListDomainsCommand: (
475
519
  output: __HttpResponse,
476
520
  context: __SerdeContext
477
521
  ) => Promise<ListDomainsCommandOutput>;
522
+ export declare const de_ListEventStreamsCommand: (
523
+ output: __HttpResponse,
524
+ context: __SerdeContext
525
+ ) => Promise<ListEventStreamsCommandOutput>;
478
526
  export declare const de_ListIdentityResolutionJobsCommand: (
479
527
  output: __HttpResponse,
480
528
  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.347.1",
4
+ "version": "3.348.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.347.1",
24
+ "@aws-sdk/client-sts": "3.348.0",
25
25
  "@aws-sdk/config-resolver": "3.347.0",
26
- "@aws-sdk/credential-provider-node": "3.347.0",
26
+ "@aws-sdk/credential-provider-node": "3.348.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.347.0",
28
28
  "@aws-sdk/hash-node": "3.347.0",
29
29
  "@aws-sdk/invalid-dependency": "3.347.0",
@@ -38,7 +38,7 @@
38
38
  "@aws-sdk/middleware-stack": "3.347.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.347.0",
40
40
  "@aws-sdk/node-config-provider": "3.347.0",
41
- "@aws-sdk/node-http-handler": "3.347.0",
41
+ "@aws-sdk/node-http-handler": "3.348.0",
42
42
  "@aws-sdk/smithy-client": "3.347.0",
43
43
  "@aws-sdk/types": "3.347.0",
44
44
  "@aws-sdk/url-parser": "3.347.0",