@aws-sdk/client-connect 3.967.0 → 3.969.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 (69) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +814 -636
  3. package/dist-es/Connect.js +6 -0
  4. package/dist-es/commands/AssociateHoursOfOperationsCommand.js +16 -0
  5. package/dist-es/commands/DisassociateHoursOfOperationsCommand.js +16 -0
  6. package/dist-es/commands/ListChildHoursOfOperationsCommand.js +16 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/enums.js +14 -0
  9. package/dist-es/pagination/ListChildHoursOfOperationsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/schemas/schemas_0.js +743 -636
  12. package/dist-types/Connect.d.ts +21 -0
  13. package/dist-types/ConnectClient.d.ts +5 -2
  14. package/dist-types/commands/AssociateHoursOfOperationsCommand.d.ts +99 -0
  15. package/dist-types/commands/CreateHoursOfOperationCommand.d.ts +8 -0
  16. package/dist-types/commands/CreateHoursOfOperationOverrideCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteContactFlowCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +7 -0
  20. package/dist-types/commands/DescribeHoursOfOperationOverrideCommand.d.ts +16 -0
  21. package/dist-types/commands/DisassociateHoursOfOperationsCommand.d.ts +94 -0
  22. package/dist-types/commands/GetEffectiveHoursOfOperationsCommand.d.ts +19 -0
  23. package/dist-types/commands/ListChildHoursOfOperationsCommand.d.ts +103 -0
  24. package/dist-types/commands/ListContactEvaluationsCommand.d.ts +2 -1
  25. package/dist-types/commands/ListContactFlowModuleAliasesCommand.d.ts +1 -1
  26. package/dist-types/commands/ListContactFlowModuleVersionsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListContactFlowModulesCommand.d.ts +1 -1
  28. package/dist-types/commands/ListHoursOfOperationOverridesCommand.d.ts +16 -0
  29. package/dist-types/commands/SearchHoursOfOperationOverridesCommand.d.ts +16 -0
  30. package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +7 -0
  31. package/dist-types/commands/StartContactRecordingCommand.d.ts +1 -1
  32. package/dist-types/commands/StartContactStreamingCommand.d.ts +1 -1
  33. package/dist-types/commands/StartEmailContactCommand.d.ts +1 -2
  34. package/dist-types/commands/StartOutboundChatContactCommand.d.ts +1 -2
  35. package/dist-types/commands/UpdateHoursOfOperationOverrideCommand.d.ts +16 -0
  36. package/dist-types/commands/index.d.ts +3 -0
  37. package/dist-types/models/enums.d.ts +38 -0
  38. package/dist-types/models/models_0.d.ts +104 -41
  39. package/dist-types/models/models_1.d.ts +200 -226
  40. package/dist-types/models/models_2.d.ts +226 -175
  41. package/dist-types/models/models_3.d.ts +188 -3
  42. package/dist-types/pagination/ListChildHoursOfOperationsPaginator.d.ts +7 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/schemas/schemas_0.d.ts +13 -0
  45. package/dist-types/ts3.4/Connect.d.ts +51 -0
  46. package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
  47. package/dist-types/ts3.4/commands/AssociateHoursOfOperationsCommand.d.ts +47 -0
  48. package/dist-types/ts3.4/commands/DeleteContactFlowCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/DisassociateHoursOfOperationsCommand.d.ts +47 -0
  51. package/dist-types/ts3.4/commands/ListChildHoursOfOperationsCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/ListContactEvaluationsCommand.d.ts +2 -4
  53. package/dist-types/ts3.4/commands/ListContactFlowModuleAliasesCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/ListContactFlowModuleVersionsCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/ListContactFlowModulesCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/StartContactRecordingCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/StartContactStreamingCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/StartEmailContactCommand.d.ts +4 -2
  59. package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +4 -2
  60. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  61. package/dist-types/ts3.4/models/enums.d.ts +19 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +23 -10
  63. package/dist-types/ts3.4/models/models_1.d.ts +49 -57
  64. package/dist-types/ts3.4/models/models_2.d.ts +59 -42
  65. package/dist-types/ts3.4/models/models_3.d.ts +49 -4
  66. package/dist-types/ts3.4/pagination/ListChildHoursOfOperationsPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  68. package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
  69. package/package.json +36 -36
package/README.md CHANGED
@@ -277,6 +277,13 @@ AssociateFlow
277
277
  </details>
278
278
  <details>
279
279
  <summary>
280
+ AssociateHoursOfOperations
281
+ </summary>
282
+
283
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/AssociateHoursOfOperationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/AssociateHoursOfOperationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/AssociateHoursOfOperationsCommandOutput/)
284
+ </details>
285
+ <details>
286
+ <summary>
280
287
  AssociateInstanceStorageConfig
281
288
  </summary>
282
289
 
@@ -1173,6 +1180,13 @@ DisassociateFlow
1173
1180
  </details>
1174
1181
  <details>
1175
1182
  <summary>
1183
+ DisassociateHoursOfOperations
1184
+ </summary>
1185
+
1186
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DisassociateHoursOfOperationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DisassociateHoursOfOperationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DisassociateHoursOfOperationsCommandOutput/)
1187
+ </details>
1188
+ <details>
1189
+ <summary>
1176
1190
  DisassociateInstanceStorageConfig
1177
1191
  </summary>
1178
1192
 
@@ -1418,6 +1432,13 @@ ListBots
1418
1432
  </details>
1419
1433
  <details>
1420
1434
  <summary>
1435
+ ListChildHoursOfOperations
1436
+ </summary>
1437
+
1438
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/ListChildHoursOfOperationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListChildHoursOfOperationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListChildHoursOfOperationsCommandOutput/)
1439
+ </details>
1440
+ <details>
1441
+ <summary>
1421
1442
  ListContactEvaluations
1422
1443
  </summary>
1423
1444