@bitblit/ratchet-aws 4.0.1-alpha

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 (105) hide show
  1. package/lib/batch/aws-batch-background-processor.d.ts +8 -0
  2. package/lib/batch/aws-batch-background-processor.spec.d.ts +1 -0
  3. package/lib/batch/aws-batch-ratchet.d.ts +13 -0
  4. package/lib/batch/aws-batch-ratchet.spec.d.ts +1 -0
  5. package/lib/build/ratchet-aws-info.d.ts +5 -0
  6. package/lib/cache/dynamo-db-storage-provider.d.ts +25 -0
  7. package/lib/cache/s3-storage-provider.d.ts +14 -0
  8. package/lib/cache/simple-cache-object-wrapper.d.ts +7 -0
  9. package/lib/cache/simple-cache-read-options.d.ts +5 -0
  10. package/lib/cache/simple-cache-storage-provider.d.ts +8 -0
  11. package/lib/cache/simple-cache.d.ts +14 -0
  12. package/lib/cache/simple-cache.spec.d.ts +1 -0
  13. package/lib/cloudwatch/cloud-watch-log-group-ratchet.d.ts +10 -0
  14. package/lib/cloudwatch/cloud-watch-log-group-ratchet.spec.d.ts +1 -0
  15. package/lib/cloudwatch/cloud-watch-logs-ratchet.d.ts +15 -0
  16. package/lib/cloudwatch/cloud-watch-logs-ratchet.spec.d.ts +1 -0
  17. package/lib/cloudwatch/cloud-watch-metrics-ratchet.d.ts +11 -0
  18. package/lib/cloudwatch/cloud-watch-metrics-ratchet.spec.d.ts +1 -0
  19. package/lib/daemon/daemon-like.d.ts +17 -0
  20. package/lib/daemon/daemon-process-create-options.d.ts +7 -0
  21. package/lib/daemon/daemon-process-state-public-token.d.ts +4 -0
  22. package/lib/daemon/daemon-process-state.d.ts +13 -0
  23. package/lib/daemon/daemon-util.d.ts +18 -0
  24. package/lib/daemon/daemon-util.spec.d.ts +4 -0
  25. package/lib/daemon/daemon.d.ts +33 -0
  26. package/lib/dao/prototype-dao-config.d.ts +8 -0
  27. package/lib/dao/prototype-dao-db.d.ts +4 -0
  28. package/lib/dao/prototype-dao-provider.d.ts +5 -0
  29. package/lib/dao/prototype-dao.d.ts +15 -0
  30. package/lib/dao/prototype-dao.spec.d.ts +8 -0
  31. package/lib/dao/s3-prototype-dao-provider.d.ts +10 -0
  32. package/lib/dao/s3-simple-dao.d.ts +15 -0
  33. package/lib/dao/simple-dao-item.d.ts +5 -0
  34. package/lib/dynamodb/dynamo-ratchet-like.d.ts +27 -0
  35. package/lib/dynamodb/dynamo-ratchet.d.ts +37 -0
  36. package/lib/dynamodb/dynamo-ratchet.spec.d.ts +1 -0
  37. package/lib/dynamodb/dynamo-table-ratchet.d.ts +11 -0
  38. package/lib/dynamodb/hash-spreader.d.ts +15 -0
  39. package/lib/dynamodb/hash-spreader.spec.d.ts +1 -0
  40. package/lib/ec2/ec2-ratchet.d.ts +16 -0
  41. package/lib/ec2/ec2-ratchet.spec.d.ts +1 -0
  42. package/lib/environment/cascade-environment-service-provider.d.ts +6 -0
  43. package/lib/environment/env-var-environment-service-provider.d.ts +6 -0
  44. package/lib/environment/environment-service-config.d.ts +4 -0
  45. package/lib/environment/environment-service-provider.d.ts +3 -0
  46. package/lib/environment/environment-service.d.ts +11 -0
  47. package/lib/environment/environment-service.spec.d.ts +1 -0
  48. package/lib/environment/fixed-environment-service-provider.d.ts +7 -0
  49. package/lib/environment/s3-environment-service-provider.d.ts +15 -0
  50. package/lib/environment/ssm-environment-service-provider.d.ts +8 -0
  51. package/lib/expiring-code/dynamo-expiring-code-provider.d.ts +12 -0
  52. package/lib/expiring-code/expiring-code-params.d.ts +7 -0
  53. package/lib/expiring-code/expiring-code-provider.d.ts +5 -0
  54. package/lib/expiring-code/expiring-code-ratchet.d.ts +10 -0
  55. package/lib/expiring-code/expiring-code-ratchet.spec.d.ts +1 -0
  56. package/lib/expiring-code/expiring-code.d.ts +6 -0
  57. package/lib/expiring-code/s3-expiring-code-provider.d.ts +17 -0
  58. package/lib/expiring-code/s3-expiring-code-provider.spec.d.ts +1 -0
  59. package/lib/iam/aws-credentials-ratchet.d.ts +4 -0
  60. package/lib/index.d.ts +78 -0
  61. package/lib/index.mjs +11 -0
  62. package/lib/index.mjs.map +1 -0
  63. package/lib/lambda/lambda-event-detector.d.ts +14 -0
  64. package/lib/lambda/lambda-event-type-guards.d.ts +10 -0
  65. package/lib/model/cloud-watch-metrics-minute-level-dynamo-count-request.d.ts +12 -0
  66. package/lib/model/cloud-watch-metrics-unit.d.ts +29 -0
  67. package/lib/model/dynamo/doc-put-item-command-input.d.ts +4 -0
  68. package/lib/model/dynamo/doc-query-command-input.d.ts +5 -0
  69. package/lib/model/dynamo/doc-scan-command-input.d.ts +5 -0
  70. package/lib/model/dynamo/doc-update-item-command-input.d.ts +5 -0
  71. package/lib/model/dynamo-count-result.d.ts +5 -0
  72. package/lib/route53/route-53-ratchet.d.ts +8 -0
  73. package/lib/runtime-parameter/cached-stored-runtime-parameter.d.ts +4 -0
  74. package/lib/runtime-parameter/dynamo-runtime-parameter-provider.d.ts +11 -0
  75. package/lib/runtime-parameter/dynamo-runtime-parameter-provider.spec.d.ts +1 -0
  76. package/lib/runtime-parameter/global-variable-override-runtime-parameter-provider.d.ts +17 -0
  77. package/lib/runtime-parameter/global-variable-override-runtime-parameter-provider.spec.d.ts +1 -0
  78. package/lib/runtime-parameter/memory-runtime-parameter-provider.d.ts +9 -0
  79. package/lib/runtime-parameter/runtime-parameter-provider.d.ts +6 -0
  80. package/lib/runtime-parameter/runtime-parameter-ratchet.d.ts +15 -0
  81. package/lib/runtime-parameter/runtime-parameter-ratchet.spec.d.ts +1 -0
  82. package/lib/runtime-parameter/stored-runtime-parameter.d.ts +6 -0
  83. package/lib/s3/s3-cache-ratchet.d.ts +38 -0
  84. package/lib/s3/s3-cache-ratchet.spec.d.ts +1 -0
  85. package/lib/s3/s3-cache-to-local-disk-ratchet.d.ts +18 -0
  86. package/lib/s3/s3-cache-to-local-dist-ratchet.spec.d.ts +1 -0
  87. package/lib/s3/s3-location-sync-ratchet.d.ts +21 -0
  88. package/lib/s3/s3-ratchet.d.ts +5 -0
  89. package/lib/s3/s3-ratchet.spec.d.ts +1 -0
  90. package/lib/ses/email-attachment.d.ts +5 -0
  91. package/lib/ses/mailer-config.d.ts +12 -0
  92. package/lib/ses/mailer-like.d.ts +11 -0
  93. package/lib/ses/mailer.d.ts +20 -0
  94. package/lib/ses/mailer.spec.d.ts +1 -0
  95. package/lib/ses/ratchet-template-renderer.d.ts +4 -0
  96. package/lib/ses/ready-to-send-email.d.ts +13 -0
  97. package/lib/ses/remote-handlebars-template-renderer.d.ts +13 -0
  98. package/lib/ses/resolved-ready-to-send-email.d.ts +5 -0
  99. package/lib/sns/sns-ratchet.d.ts +9 -0
  100. package/lib/sns/sns-ratchet.spec.d.ts +1 -0
  101. package/lib/sync-lock/dynamo-db-sync-lock.d.ts +10 -0
  102. package/lib/sync-lock/dynamo-db-sync-lock.spec.d.ts +1 -0
  103. package/lib/sync-lock/memory-sync-lock.d.ts +8 -0
  104. package/lib/sync-lock/sync-lock-provider.d.ts +5 -0
  105. package/package.json +93 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.