@effect-aws/dynamodb 1.0.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 (53) hide show
  1. package/DynamoDBDocumentClientInstance/package.json +6 -0
  2. package/DynamoDBDocumentService/package.json +6 -0
  3. package/DynamoDBDocumentServiceConfig/package.json +6 -0
  4. package/DynamoDBStore/package.json +6 -0
  5. package/LICENSE +19 -0
  6. package/README.md +65 -0
  7. package/dist/cjs/DynamoDBDocumentClientInstance.d.ts +25 -0
  8. package/dist/cjs/DynamoDBDocumentClientInstance.d.ts.map +1 -0
  9. package/dist/cjs/DynamoDBDocumentClientInstance.js +54 -0
  10. package/dist/cjs/DynamoDBDocumentClientInstance.js.map +1 -0
  11. package/dist/cjs/DynamoDBDocumentService.d.ts +97 -0
  12. package/dist/cjs/DynamoDBDocumentService.d.ts.map +1 -0
  13. package/dist/cjs/DynamoDBDocumentService.js +68 -0
  14. package/dist/cjs/DynamoDBDocumentService.js.map +1 -0
  15. package/dist/cjs/DynamoDBDocumentServiceConfig.d.ts +25 -0
  16. package/dist/cjs/DynamoDBDocumentServiceConfig.d.ts.map +1 -0
  17. package/dist/cjs/DynamoDBDocumentServiceConfig.js +28 -0
  18. package/dist/cjs/DynamoDBDocumentServiceConfig.js.map +1 -0
  19. package/dist/cjs/DynamoDBStore.d.ts +82 -0
  20. package/dist/cjs/DynamoDBStore.d.ts.map +1 -0
  21. package/dist/cjs/DynamoDBStore.js +57 -0
  22. package/dist/cjs/DynamoDBStore.js.map +1 -0
  23. package/dist/cjs/index.d.ts +44 -0
  24. package/dist/cjs/index.d.ts.map +1 -0
  25. package/dist/cjs/index.js +56 -0
  26. package/dist/cjs/index.js.map +1 -0
  27. package/dist/dts/DynamoDBDocumentClientInstance.d.ts +25 -0
  28. package/dist/dts/DynamoDBDocumentClientInstance.d.ts.map +1 -0
  29. package/dist/dts/DynamoDBDocumentService.d.ts +97 -0
  30. package/dist/dts/DynamoDBDocumentService.d.ts.map +1 -0
  31. package/dist/dts/DynamoDBDocumentServiceConfig.d.ts +25 -0
  32. package/dist/dts/DynamoDBDocumentServiceConfig.d.ts.map +1 -0
  33. package/dist/dts/DynamoDBStore.d.ts +82 -0
  34. package/dist/dts/DynamoDBStore.d.ts.map +1 -0
  35. package/dist/dts/index.d.ts +44 -0
  36. package/dist/dts/index.d.ts.map +1 -0
  37. package/dist/esm/DynamoDBDocumentClientInstance.js +27 -0
  38. package/dist/esm/DynamoDBDocumentClientInstance.js.map +1 -0
  39. package/dist/esm/DynamoDBDocumentService.js +41 -0
  40. package/dist/esm/DynamoDBDocumentService.js.map +1 -0
  41. package/dist/esm/DynamoDBDocumentServiceConfig.js +24 -0
  42. package/dist/esm/DynamoDBDocumentServiceConfig.js.map +1 -0
  43. package/dist/esm/DynamoDBStore.js +53 -0
  44. package/dist/esm/DynamoDBStore.js.map +1 -0
  45. package/dist/esm/index.js +27 -0
  46. package/dist/esm/index.js.map +1 -0
  47. package/dist/esm/package.json +4 -0
  48. package/package.json +73 -0
  49. package/src/DynamoDBDocumentClientInstance.ts +34 -0
  50. package/src/DynamoDBDocumentService.ts +377 -0
  51. package/src/DynamoDBDocumentServiceConfig.ts +43 -0
  52. package/src/DynamoDBStore.ts +131 -0
  53. package/src/index.ts +50 -0
package/src/index.ts ADDED
@@ -0,0 +1,50 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import { DynamoDBDocumentService } from "./DynamoDBDocumentService.js";
5
+
6
+ /**
7
+ * @since 1.0.0
8
+ */
9
+ export * as DynamoDBDocumentClientInstance from "./DynamoDBDocumentClientInstance.js";
10
+
11
+ /**
12
+ * @since 1.0.0
13
+ */
14
+ export * as DynamoDBDocumentServiceConfig from "./DynamoDBDocumentServiceConfig.js";
15
+
16
+ /**
17
+ * @since 1.0.0
18
+ */
19
+ export * from "./DynamoDBDocumentService.js";
20
+
21
+ /**
22
+ * @since 1.0.0
23
+ * @category exports
24
+ * @alias DynamoDBDocumentService
25
+ */
26
+ export declare namespace DynamoDBDocument {
27
+ /**
28
+ * @since 1.0.0
29
+ * @alias DynamoDBDocumentService.Config
30
+ */
31
+ export type Config = DynamoDBDocumentService.Config;
32
+
33
+ /**
34
+ * @since 1.0.0
35
+ * @alias DynamoDBDocumentService.Type
36
+ */
37
+ export type Type = DynamoDBDocumentService.Type;
38
+ }
39
+
40
+ /**
41
+ * @since 1.0.0
42
+ * @category exports
43
+ * @alias DynamoDBDocumentService
44
+ */
45
+ export const DynamoDBDocument = DynamoDBDocumentService;
46
+
47
+ /**
48
+ * @since 1.0.0
49
+ */
50
+ export * from "./DynamoDBStore.js";