@effect-aws/dynamodb 1.0.2 → 2.0.0-beta.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.
- package/LICENSE +1 -1
- package/dist/dts/DynamoDBDocumentClientInstance.d.ts +2 -2
- package/dist/dts/DynamoDBDocumentClientInstance.d.ts.map +1 -1
- package/dist/dts/DynamoDBDocumentService.d.ts +15 -17
- package/dist/dts/DynamoDBDocumentService.d.ts.map +1 -1
- package/dist/dts/DynamoDBDocumentServiceConfig.d.ts.map +1 -1
- package/dist/dts/DynamoDBStore.d.ts +17 -19
- package/dist/dts/DynamoDBStore.d.ts.map +1 -1
- package/dist/esm/DynamoDBDocumentClientInstance.js +4 -4
- package/dist/esm/DynamoDBDocumentClientInstance.js.map +1 -1
- package/dist/esm/DynamoDBDocumentService.js +2 -2
- package/dist/esm/DynamoDBDocumentService.js.map +1 -1
- package/dist/esm/DynamoDBDocumentServiceConfig.js +5 -6
- package/dist/esm/DynamoDBDocumentServiceConfig.js.map +1 -1
- package/dist/esm/DynamoDBStore.js +3 -3
- package/dist/esm/DynamoDBStore.js.map +1 -1
- package/package.json +9 -15
- package/src/DynamoDBDocumentClientInstance.ts +8 -6
- package/src/DynamoDBDocumentService.ts +16 -16
- package/src/DynamoDBDocumentServiceConfig.ts +6 -7
- package/src/DynamoDBStore.ts +10 -10
- package/dist/cjs/DynamoDBDocumentClientInstance.d.ts +0 -25
- package/dist/cjs/DynamoDBDocumentClientInstance.d.ts.map +0 -1
- package/dist/cjs/DynamoDBDocumentClientInstance.js +0 -54
- package/dist/cjs/DynamoDBDocumentClientInstance.js.map +0 -1
- package/dist/cjs/DynamoDBDocumentService.d.ts +0 -97
- package/dist/cjs/DynamoDBDocumentService.d.ts.map +0 -1
- package/dist/cjs/DynamoDBDocumentService.js +0 -68
- package/dist/cjs/DynamoDBDocumentService.js.map +0 -1
- package/dist/cjs/DynamoDBDocumentServiceConfig.d.ts +0 -25
- package/dist/cjs/DynamoDBDocumentServiceConfig.d.ts.map +0 -1
- package/dist/cjs/DynamoDBDocumentServiceConfig.js +0 -28
- package/dist/cjs/DynamoDBDocumentServiceConfig.js.map +0 -1
- package/dist/cjs/DynamoDBStore.d.ts +0 -82
- package/dist/cjs/DynamoDBStore.d.ts.map +0 -1
- package/dist/cjs/DynamoDBStore.js +0 -57
- package/dist/cjs/DynamoDBStore.js.map +0 -1
- package/dist/cjs/index.d.ts +0 -44
- package/dist/cjs/index.d.ts.map +0 -1
- package/dist/cjs/index.js +0 -56
- package/dist/cjs/index.js.map +0 -1
package/LICENSE
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { DynamoDBDocumentClient } from "@aws-sdk/lib-dynamodb";
|
|
5
5
|
import { DynamoDBClientInstance } from "@effect-aws/client-dynamodb";
|
|
6
|
-
import {
|
|
7
|
-
declare const DynamoDBDocumentClientInstance_base:
|
|
6
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
7
|
+
declare const DynamoDBDocumentClientInstance_base: ServiceMap.ServiceClass<DynamoDBDocumentClientInstance, "@effect-aws/dynamodb/DynamoDBDocumentClientInstance", DynamoDBDocumentClient>;
|
|
8
8
|
/**
|
|
9
9
|
* @since 1.0.0
|
|
10
10
|
* @category tags
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamoDBDocumentClientInstance.d.ts","sourceRoot":"","sources":["../../src/DynamoDBDocumentClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"DynamoDBDocumentClientInstance.d.ts","sourceRoot":"","sources":["../../src/DynamoDBDocumentClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;;AAGnD;;;GAGG;AACH,qBAAa,8BACX,SAAQ,mCAEP;CACD;AAEF;;;GAGG;AACH,eAAO,MAAM,IAAI,6FAKhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,2DAEjB,CAAC"}
|
|
@@ -6,71 +6,69 @@ import type { BatchExecuteStatementCommandInput, BatchExecuteStatementCommandOut
|
|
|
6
6
|
import type { ConditionalCheckFailedError, DuplicateItemError, IdempotentParameterMismatchError, InternalServerError, InvalidEndpointError, ItemCollectionSizeLimitExceededError, ProvisionedThroughputExceededError, RequestLimitExceededError, ResourceNotFoundError, SdkError, TransactionCanceledError, TransactionConflictError, TransactionInProgressError } from "@effect-aws/client-dynamodb";
|
|
7
7
|
import { type HttpHandlerOptions } from "@effect-aws/commons";
|
|
8
8
|
import type { Cause } from "effect";
|
|
9
|
-
import { Effect, Layer } from "effect";
|
|
9
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
10
10
|
import * as Instance from "./DynamoDBDocumentClientInstance.js";
|
|
11
11
|
interface DynamoDBDocumentService$ {
|
|
12
12
|
readonly _: unique symbol;
|
|
13
13
|
/**
|
|
14
14
|
* @see {@link BatchExecuteStatementCommand}
|
|
15
15
|
*/
|
|
16
|
-
batchExecuteStatement(args: BatchExecuteStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchExecuteStatementCommandOutput, Cause.
|
|
16
|
+
batchExecuteStatement(args: BatchExecuteStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchExecuteStatementCommandOutput, Cause.TimeoutError | SdkError | InternalServerError | RequestLimitExceededError>;
|
|
17
17
|
/**
|
|
18
18
|
* @see {@link BatchGetCommand}
|
|
19
19
|
*/
|
|
20
|
-
batchGet(args: BatchGetCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetCommandOutput, Cause.
|
|
20
|
+
batchGet(args: BatchGetCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetCommandOutput, Cause.TimeoutError | SdkError | InternalServerError | InvalidEndpointError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError>;
|
|
21
21
|
/**
|
|
22
22
|
* @see {@link BatchWriteCommand}
|
|
23
23
|
*/
|
|
24
|
-
batchWrite(args: BatchWriteCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchWriteCommandOutput, Cause.
|
|
24
|
+
batchWrite(args: BatchWriteCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchWriteCommandOutput, Cause.TimeoutError | SdkError | InternalServerError | InvalidEndpointError | ItemCollectionSizeLimitExceededError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError>;
|
|
25
25
|
/**
|
|
26
26
|
* @see {@link DeleteCommand}
|
|
27
27
|
*/
|
|
28
|
-
delete(args: DeleteCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCommandOutput, Cause.
|
|
28
|
+
delete(args: DeleteCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCommandOutput, Cause.TimeoutError | SdkError | ConditionalCheckFailedError | InternalServerError | InvalidEndpointError | ItemCollectionSizeLimitExceededError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError | TransactionConflictError>;
|
|
29
29
|
/**
|
|
30
30
|
* @see {@link ExecuteStatementCommand}
|
|
31
31
|
*/
|
|
32
|
-
executeStatement(args: ExecuteStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExecuteStatementCommandOutput, Cause.
|
|
32
|
+
executeStatement(args: ExecuteStatementCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExecuteStatementCommandOutput, Cause.TimeoutError | SdkError | ConditionalCheckFailedError | DuplicateItemError | InternalServerError | ItemCollectionSizeLimitExceededError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError | TransactionConflictError>;
|
|
33
33
|
/**
|
|
34
34
|
* @see {@link ExecuteTransactionCommand}
|
|
35
35
|
*/
|
|
36
|
-
executeTransaction(args: ExecuteTransactionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExecuteTransactionCommandOutput, Cause.
|
|
36
|
+
executeTransaction(args: ExecuteTransactionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExecuteTransactionCommandOutput, Cause.TimeoutError | SdkError | IdempotentParameterMismatchError | InternalServerError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError | TransactionCanceledError | TransactionInProgressError>;
|
|
37
37
|
/**
|
|
38
38
|
* @see {@link GetCommand}
|
|
39
39
|
*/
|
|
40
|
-
get(args: GetCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCommandOutput, Cause.
|
|
40
|
+
get(args: GetCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCommandOutput, Cause.TimeoutError | SdkError | InternalServerError | InvalidEndpointError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError>;
|
|
41
41
|
/**
|
|
42
42
|
* @see {@link PutCommand}
|
|
43
43
|
*/
|
|
44
|
-
put(args: PutCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutCommandOutput, Cause.
|
|
44
|
+
put(args: PutCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutCommandOutput, Cause.TimeoutError | SdkError | ConditionalCheckFailedError | InternalServerError | InvalidEndpointError | ItemCollectionSizeLimitExceededError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError | TransactionConflictError>;
|
|
45
45
|
/**
|
|
46
46
|
* @see {@link QueryCommand}
|
|
47
47
|
*/
|
|
48
|
-
query(args: QueryCommandInput, options?: HttpHandlerOptions): Effect.Effect<QueryCommandOutput, Cause.
|
|
48
|
+
query(args: QueryCommandInput, options?: HttpHandlerOptions): Effect.Effect<QueryCommandOutput, Cause.TimeoutError | SdkError | InternalServerError | InvalidEndpointError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError>;
|
|
49
49
|
/**
|
|
50
50
|
* @see {@link ScanCommand}
|
|
51
51
|
*/
|
|
52
|
-
scan(args: ScanCommandInput, options?: HttpHandlerOptions): Effect.Effect<ScanCommandOutput, Cause.
|
|
52
|
+
scan(args: ScanCommandInput, options?: HttpHandlerOptions): Effect.Effect<ScanCommandOutput, Cause.TimeoutError | SdkError | InternalServerError | InvalidEndpointError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError>;
|
|
53
53
|
/**
|
|
54
54
|
* @see {@link TransactGetCommand}
|
|
55
55
|
*/
|
|
56
|
-
transactGet(args: TransactGetCommandInput, options?: HttpHandlerOptions): Effect.Effect<TransactGetCommandOutput, Cause.
|
|
56
|
+
transactGet(args: TransactGetCommandInput, options?: HttpHandlerOptions): Effect.Effect<TransactGetCommandOutput, Cause.TimeoutError | SdkError | InternalServerError | InvalidEndpointError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError | TransactionCanceledError>;
|
|
57
57
|
/**
|
|
58
58
|
* @see {@link TransactWriteCommand}
|
|
59
59
|
*/
|
|
60
|
-
transactWrite(args: TransactWriteCommandInput, options?: HttpHandlerOptions): Effect.Effect<TransactWriteCommandOutput, Cause.
|
|
60
|
+
transactWrite(args: TransactWriteCommandInput, options?: HttpHandlerOptions): Effect.Effect<TransactWriteCommandOutput, Cause.TimeoutError | SdkError | IdempotentParameterMismatchError | InternalServerError | InvalidEndpointError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError | TransactionCanceledError | TransactionInProgressError>;
|
|
61
61
|
/**
|
|
62
62
|
* @see {@link UpdateCommand}
|
|
63
63
|
*/
|
|
64
|
-
update(args: UpdateCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCommandOutput, Cause.
|
|
64
|
+
update(args: UpdateCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCommandOutput, Cause.TimeoutError | SdkError | ConditionalCheckFailedError | InternalServerError | InvalidEndpointError | ItemCollectionSizeLimitExceededError | ProvisionedThroughputExceededError | RequestLimitExceededError | ResourceNotFoundError | TransactionConflictError>;
|
|
65
65
|
}
|
|
66
66
|
/**
|
|
67
67
|
* @since 1.0.0
|
|
68
68
|
* @category constructors
|
|
69
69
|
*/
|
|
70
70
|
export declare const makeDynamoDBDocumentService: Effect.Effect<DynamoDBDocumentService$, never, Instance.DynamoDBDocumentClientInstance>;
|
|
71
|
-
declare const DynamoDBDocumentService_base:
|
|
72
|
-
use: <X>(body: (_: DynamoDBDocumentService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, DynamoDBDocumentService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, DynamoDBDocumentService> : Effect.Effect<X, never, DynamoDBDocumentService>;
|
|
73
|
-
};
|
|
71
|
+
declare const DynamoDBDocumentService_base: ServiceMap.ServiceClass<DynamoDBDocumentService, "@effect-aws/dynamodb/DynamoDBDocumentService", DynamoDBDocumentService$>;
|
|
74
72
|
/**
|
|
75
73
|
* @since 1.0.0
|
|
76
74
|
* @category models
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamoDBDocumentService.d.ts","sourceRoot":"","sources":["../../src/DynamoDBDocumentService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,KAAK,EACV,iCAAiC,EACjC,kCAAkC,EAClC,oBAAoB,EACpB,qBAAqB,EACrB,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,mBAAmB,EACnB,sBAAsB,EACtB,4BAA4B,EAC5B,6BAA6B,EAC7B,8BAA8B,EAC9B,+BAA+B,EAC/B,eAAe,EACf,gBAAgB,EAChB,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,iBAAiB,EACjB,uBAAuB,EACvB,wBAAwB,EACxB,yBAAyB,EACzB,0BAA0B,EAC1B,eAAe,EACf,kBAAkB,EAClB,mBAAmB,EACpB,MAAM,uBAAuB,CAAC;AAgB/B,OAAO,KAAK,EACV,2BAA2B,EAC3B,kBAAkB,EAClB,gCAAgC,EAChC,mBAAmB,EACnB,oBAAoB,EACpB,oCAAoC,EACpC,kCAAkC,EAClC,yBAAyB,EACzB,qBAAqB,EACrB,QAAQ,EACR,wBAAwB,EACxB,wBAAwB,EACxB,0BAA0B,EAC3B,MAAM,6BAA6B,CAAC;AAErC,OAAO,EAAE,KAAK,kBAAkB,EAAW,MAAM,qBAAqB,CAAC;AACvE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"DynamoDBDocumentService.d.ts","sourceRoot":"","sources":["../../src/DynamoDBDocumentService.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamoDBDocumentServiceConfig.d.ts","sourceRoot":"","sources":["../../src/DynamoDBDocumentServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"DynamoDBDocumentServiceConfig.d.ts","sourceRoot":"","sources":["../../src/DynamoDBDocumentServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAAE,MAAM,EAAE,KAAK,EAAc,MAAM,QAAQ,CAAC;AAEnD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAW5E;;;GAGG;AACH,eAAO,MAAM,iCAAiC,EAAE;IAC9C,CAAC,MAAM,EAAE,uBAAuB,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC9G,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,uBAAuB,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAK3G,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gCAAgC,WAAY,wBAAwB,MAAM,qCAC1B,CAAC;AAE9D;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,CAAC,eAAe,CAAmD,CAAC"}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
|
-
import { Config, Effect, Layer } from "effect";
|
|
4
|
+
import { Config, Effect, Layer, ServiceMap } from "effect";
|
|
5
5
|
import { DynamoDBDocumentService } from "./DynamoDBDocumentService.js";
|
|
6
6
|
type WithoutTableNameInArgs = {
|
|
7
7
|
[K in keyof Omit<DynamoDBDocumentService.Type, "_">]: Parameters<DynamoDBDocumentService.Type[K]>[0] extends {
|
|
8
8
|
TableName?: string;
|
|
9
|
-
} ? (args: Omit<Parameters<DynamoDBDocumentService.Type[K]>[0], "TableName">, options?: Parameters<DynamoDBDocumentService.Type[K]>[1]) => Effect.Effect<Effect.
|
|
9
|
+
} ? (args: Omit<Parameters<DynamoDBDocumentService.Type[K]>[0], "TableName">, options?: Parameters<DynamoDBDocumentService.Type[K]>[1]) => Effect.Effect<Effect.Success<ReturnType<DynamoDBDocumentService.Type[K]>> extends {
|
|
10
10
|
Item?: infer Item;
|
|
11
|
-
} ? Item | undefined : Effect.
|
|
11
|
+
} ? Item | undefined : Effect.Success<ReturnType<DynamoDBDocumentService.Type[K]>> extends {
|
|
12
12
|
Items?: infer Items;
|
|
13
|
-
} ? Items : Effect.
|
|
13
|
+
} ? Items : Effect.Success<ReturnType<DynamoDBDocumentService.Type[K]>> extends {
|
|
14
14
|
Attributes?: infer Attributes;
|
|
15
|
-
} ? Attributes | undefined : never, Effect.
|
|
15
|
+
} ? Attributes | undefined : never, Effect.Error<ReturnType<DynamoDBDocumentService.Type[K]>>, Effect.Services<ReturnType<DynamoDBDocumentService.Type[K]>>> : never;
|
|
16
16
|
};
|
|
17
17
|
type WithoutTableNameInBatchRequest = {
|
|
18
18
|
[K in keyof Omit<DynamoDBDocumentService.Type, "_">]: Parameters<DynamoDBDocumentService.Type[K]>[0] extends {
|
|
@@ -29,10 +29,10 @@ type OmitNeverProps<T> = {
|
|
|
29
29
|
* @category constructors
|
|
30
30
|
*/
|
|
31
31
|
export declare const makeDynamoDBStore: (props: DynamoDBStore.Config) => Effect.Effect<{
|
|
32
|
-
scan: (args: Omit<import("@aws-sdk/lib-dynamodb").ScanCommandInput, "TableName">) => Effect.Effect<Record<string, any>[], import("effect/Cause").
|
|
33
|
-
query: (args: Omit<import("@aws-sdk/lib-dynamodb").QueryCommandInput, "TableName">) => Effect.Effect<Record<string, any>[], import("effect/Cause").
|
|
34
|
-
get: (args: Omit<import("@aws-sdk/lib-dynamodb").GetCommandInput, "TableName">) => Effect.Effect<Record<string, any> | undefined, import("effect/Cause").
|
|
35
|
-
put: (args: Omit<import("@aws-sdk/lib-dynamodb").PutCommandInput, "TableName">) => Effect.Effect<Record<string, any> | undefined, import("effect/Cause").
|
|
32
|
+
scan: (args: Omit<import("@aws-sdk/lib-dynamodb").ScanCommandInput, "TableName">) => Effect.Effect<Record<string, any>[], import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError, never>;
|
|
33
|
+
query: (args: Omit<import("@aws-sdk/lib-dynamodb").QueryCommandInput, "TableName">) => Effect.Effect<Record<string, any>[], import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError, never>;
|
|
34
|
+
get: (args: Omit<import("@aws-sdk/lib-dynamodb").GetCommandInput, "TableName">) => Effect.Effect<Record<string, any> | undefined, import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError, never>;
|
|
35
|
+
put: (args: Omit<import("@aws-sdk/lib-dynamodb").PutCommandInput, "TableName">) => Effect.Effect<Record<string, any> | undefined, import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError | import("@effect-aws/client-dynamodb").ItemCollectionSizeLimitExceededError | import("@effect-aws/client-dynamodb").ConditionalCheckFailedError | import("@effect-aws/client-dynamodb").TransactionConflictError, never>;
|
|
36
36
|
batchWrite: (items: (Omit<import("@aws-sdk/client-dynamodb").WriteRequest, "PutRequest" | "DeleteRequest"> & {
|
|
37
37
|
PutRequest?: (Omit<import("@aws-sdk/client-dynamodb").PutRequest, "Item"> & {
|
|
38
38
|
Item: Record<string, any> | undefined;
|
|
@@ -40,25 +40,23 @@ export declare const makeDynamoDBStore: (props: DynamoDBStore.Config) => Effect.
|
|
|
40
40
|
DeleteRequest?: (Omit<import("@aws-sdk/client-dynamodb").DeleteRequest, "Key"> & {
|
|
41
41
|
Key: Record<string, any> | undefined;
|
|
42
42
|
}) | undefined;
|
|
43
|
-
})[]) => Effect.Effect<import("@aws-sdk/lib-dynamodb").BatchWriteCommandOutput, import("effect/Cause").
|
|
44
|
-
batchPut: (items: Record<string, any>[]) => Effect.Effect<import("@aws-sdk/lib-dynamodb").BatchWriteCommandOutput, import("effect/Cause").
|
|
45
|
-
batchDelete: (keys: Record<string, any>[]) => Effect.Effect<import("@aws-sdk/lib-dynamodb").BatchWriteCommandOutput, import("effect/Cause").
|
|
43
|
+
})[]) => Effect.Effect<import("@aws-sdk/lib-dynamodb").BatchWriteCommandOutput, import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError | import("@effect-aws/client-dynamodb").ItemCollectionSizeLimitExceededError, never>;
|
|
44
|
+
batchPut: (items: Record<string, any>[]) => Effect.Effect<import("@aws-sdk/lib-dynamodb").BatchWriteCommandOutput, import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError | import("@effect-aws/client-dynamodb").ItemCollectionSizeLimitExceededError, never>;
|
|
45
|
+
batchDelete: (keys: Record<string, any>[]) => Effect.Effect<import("@aws-sdk/lib-dynamodb").BatchWriteCommandOutput, import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError | import("@effect-aws/client-dynamodb").ItemCollectionSizeLimitExceededError, never>;
|
|
46
46
|
batchGet: (items: Omit<import("@aws-sdk/client-dynamodb").KeysAndAttributes, "Keys"> & {
|
|
47
47
|
Keys: Record<string, any>[] | undefined;
|
|
48
|
-
}) => Effect.Effect<import("@aws-sdk/lib-dynamodb").BatchGetCommandOutput, import("effect/Cause").
|
|
49
|
-
update: (args: Omit<import("@aws-sdk/lib-dynamodb").UpdateCommandInput, "TableName">) => Effect.Effect<Record<string, any> | undefined, import("effect/Cause").
|
|
50
|
-
delete: (args: Omit<import("@aws-sdk/lib-dynamodb").DeleteCommandInput, "TableName">) => Effect.Effect<Record<string, any> | undefined, import("effect/Cause").
|
|
48
|
+
}) => Effect.Effect<import("@aws-sdk/lib-dynamodb").BatchGetCommandOutput, import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError, never>;
|
|
49
|
+
update: (args: Omit<import("@aws-sdk/lib-dynamodb").UpdateCommandInput, "TableName">) => Effect.Effect<Record<string, any> | undefined, import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError | import("@effect-aws/client-dynamodb").ItemCollectionSizeLimitExceededError | import("@effect-aws/client-dynamodb").ConditionalCheckFailedError | import("@effect-aws/client-dynamodb").TransactionConflictError, never>;
|
|
50
|
+
delete: (args: Omit<import("@aws-sdk/lib-dynamodb").DeleteCommandInput, "TableName">) => Effect.Effect<Record<string, any> | undefined, import("effect/Cause").TimeoutError | import("@effect-aws/client-dynamodb").SdkError | import("@effect-aws/client-dynamodb").InternalServerError | import("@effect-aws/client-dynamodb").RequestLimitExceededError | import("@effect-aws/client-dynamodb").InvalidEndpointError | import("@effect-aws/client-dynamodb").ProvisionedThroughputExceededError | import("@effect-aws/client-dynamodb").ResourceNotFoundError | import("@effect-aws/client-dynamodb").ItemCollectionSizeLimitExceededError | import("@effect-aws/client-dynamodb").ConditionalCheckFailedError | import("@effect-aws/client-dynamodb").TransactionConflictError, never>;
|
|
51
51
|
}, never, DynamoDBDocumentService>;
|
|
52
|
-
declare const DynamoDBStore_base:
|
|
53
|
-
use: <X>(body: (_: DynamoDBStore.Type) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, R | DynamoDBStore> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, import("effect/Cause").UnknownException, DynamoDBStore> : Effect.Effect<X, never, DynamoDBStore>;
|
|
54
|
-
};
|
|
52
|
+
declare const DynamoDBStore_base: ServiceMap.ServiceClass<DynamoDBStore, "@effect-aws/dynamodb/DynamoDBStore", DynamoDBStore.Type>;
|
|
55
53
|
/**
|
|
56
54
|
* @since 1.0.0
|
|
57
55
|
* @category models
|
|
58
56
|
*/
|
|
59
57
|
export declare class DynamoDBStore extends DynamoDBStore_base {
|
|
60
58
|
static layer: (props: DynamoDBStore.Config) => Layer.Layer<DynamoDBStore, never, DynamoDBDocumentService>;
|
|
61
|
-
static layerConfig: (config: Config.
|
|
59
|
+
static layerConfig: (config: Config.Wrap<DynamoDBStore.Config>) => Layer.Layer<DynamoDBStore, Config.ConfigError, DynamoDBDocumentService>;
|
|
62
60
|
}
|
|
63
61
|
/**
|
|
64
62
|
* @since 1.0.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamoDBStore.d.ts","sourceRoot":"","sources":["../../src/DynamoDBStore.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"DynamoDBStore.d.ts","sourceRoot":"","sources":["../../src/DynamoDBStore.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,25 +3,25 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { DynamoDBDocumentClient } from "@aws-sdk/lib-dynamodb";
|
|
5
5
|
import { DynamoDBClientInstance } from "@effect-aws/client-dynamodb";
|
|
6
|
-
import {
|
|
6
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
7
7
|
import * as DynamoDBDocumentServiceConfig from "./DynamoDBDocumentServiceConfig.js";
|
|
8
8
|
/**
|
|
9
9
|
* @since 1.0.0
|
|
10
10
|
* @category tags
|
|
11
11
|
*/
|
|
12
|
-
export class DynamoDBDocumentClientInstance extends
|
|
12
|
+
export class DynamoDBDocumentClientInstance extends ServiceMap.Service()("@effect-aws/dynamodb/DynamoDBDocumentClientInstance") {
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
15
|
* @since 1.0.0
|
|
16
16
|
* @category constructors
|
|
17
17
|
*/
|
|
18
18
|
export const make = Effect.all([
|
|
19
|
-
DynamoDBClientInstance.DynamoDBClientInstance,
|
|
19
|
+
DynamoDBClientInstance.DynamoDBClientInstance.asEffect(),
|
|
20
20
|
DynamoDBDocumentServiceConfig.toTranslateConfig,
|
|
21
21
|
]).pipe(Effect.map(([client, config]) => DynamoDBDocumentClient.from(client, config)));
|
|
22
22
|
/**
|
|
23
23
|
* @since 1.0.0
|
|
24
24
|
* @category layers
|
|
25
25
|
*/
|
|
26
|
-
export const layer = Layer.
|
|
26
|
+
export const layer = Layer.effect(DynamoDBDocumentClientInstance, make).pipe(Layer.provide(DynamoDBClientInstance.layer));
|
|
27
27
|
//# sourceMappingURL=DynamoDBDocumentClientInstance.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamoDBDocumentClientInstance.js","sourceRoot":"","sources":["../../src/DynamoDBDocumentClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"DynamoDBDocumentClientInstance.js","sourceRoot":"","sources":["../../src/DynamoDBDocumentClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACnD,OAAO,KAAK,6BAA6B,MAAM,oCAAoC,CAAC;AAEpF;;;GAGG;AACH,MAAM,OAAO,8BACX,SAAQ,UAAU,CAAC,OAAO,EAA0D,CAClF,qDAAqD,CACtD;CACD;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,IAAI,GAAG,MAAM,CAAC,GAAG,CAAC;IAC7B,sBAAsB,CAAC,sBAAsB,CAAC,QAAQ,EAAE;IACxD,6BAA6B,CAAC,iBAAiB;CAChD,CAAC,CAAC,IAAI,CACL,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,sBAAsB,CAAC,IAAI,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAC9E,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,8BAA8B,EAAE,IAAI,CAAC,CAAC,IAAI,CAC1E,KAAK,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,CAAC,CAC5C,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BatchExecuteStatementCommand, BatchGetCommand, BatchWriteCommand, DeleteCommand, ExecuteStatementCommand, ExecuteTransactionCommand, GetCommand, PutCommand, QueryCommand, ScanCommand, TransactGetCommand, TransactWriteCommand, UpdateCommand, } from "@aws-sdk/lib-dynamodb";
|
|
2
2
|
import { DynamoDBServiceConfig } from "@effect-aws/client-dynamodb";
|
|
3
3
|
import { Service } from "@effect-aws/commons";
|
|
4
|
-
import { Effect, Layer } from "effect";
|
|
4
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
5
5
|
import * as Instance from "./DynamoDBDocumentClientInstance.js";
|
|
6
6
|
import * as DynamoDBDocumentServiceConfig from "./DynamoDBDocumentServiceConfig.js";
|
|
7
7
|
const commands = {
|
|
@@ -33,7 +33,7 @@ export const makeDynamoDBDocumentService = Effect.gen(function* () {
|
|
|
33
33
|
* @since 1.0.0
|
|
34
34
|
* @category models
|
|
35
35
|
*/
|
|
36
|
-
export class DynamoDBDocumentService extends
|
|
36
|
+
export class DynamoDBDocumentService extends ServiceMap.Service()("@effect-aws/dynamodb/DynamoDBDocumentService") {
|
|
37
37
|
static defaultLayer = Layer.effect(this, makeDynamoDBDocumentService).pipe(Layer.provide(Instance.layer));
|
|
38
38
|
static layer = (config) => Layer.effect(this, makeDynamoDBDocumentService).pipe(Layer.provide(Instance.layer), Layer.provide(DynamoDBDocumentServiceConfig.setDynamoDBDocumentServiceConfig(config)));
|
|
39
39
|
static baseLayer = (evaluate) => Layer.effect(this, makeDynamoDBDocumentService).pipe(Layer.provide(Layer.effect(Instance.DynamoDBDocumentClientInstance, Effect.map(DynamoDBServiceConfig.toDynamoDBClientConfig, evaluate))));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamoDBDocumentService.js","sourceRoot":"","sources":["../../src/DynamoDBDocumentService.ts"],"names":[],"mappings":"AAkCA,OAAO,EACL,4BAA4B,EAC5B,eAAe,EACf,iBAAiB,EACjB,aAAa,EACb,uBAAuB,EACvB,yBAAyB,EACzB,UAAU,EACV,UAAU,EACV,YAAY,EACZ,WAAW,EACX,kBAAkB,EAClB,oBAAoB,EACpB,aAAa,GACd,MAAM,uBAAuB,CAAC;AAgB/B,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAA2B,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAEvE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"DynamoDBDocumentService.js","sourceRoot":"","sources":["../../src/DynamoDBDocumentService.ts"],"names":[],"mappings":"AAkCA,OAAO,EACL,4BAA4B,EAC5B,eAAe,EACf,iBAAiB,EACjB,aAAa,EACb,uBAAuB,EACvB,yBAAyB,EACzB,UAAU,EACV,UAAU,EACV,YAAY,EACZ,WAAW,EACX,kBAAkB,EAClB,oBAAoB,EACpB,aAAa,GACd,MAAM,uBAAuB,CAAC;AAgB/B,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAA2B,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAEvE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACnD,OAAO,KAAK,QAAQ,MAAM,qCAAqC,CAAC;AAChE,OAAO,KAAK,6BAA6B,MAAM,oCAAoC,CAAC;AAEpF,MAAM,QAAQ,GAAG;IACf,4BAA4B;IAC5B,eAAe;IACf,iBAAiB;IACjB,aAAa;IACb,uBAAuB;IACvB,yBAAyB;IACzB,UAAU;IACV,UAAU;IACV,YAAY;IACZ,WAAW;IACX,kBAAkB;IAClB,oBAAoB;IACpB,aAAa;CACd,CAAC;AAgPF;;;GAGG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAG,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IAC7D,MAAM,MAAM,GAAG,KAAK,CAAC,CAAC,QAAQ,CAAC,8BAA8B,CAAC;IAE9D,OAAO,KAAK,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAA2B,MAAM,EAAE,QAAQ,EAAE;QACtF,mBAAmB,EAAE,qBAAqB,CAAC,sBAAsB;KAClE,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,OAAO,uBAAwB,SAAQ,UAAU,CAAC,OAAO,EAAqD,CAClH,8CAA8C,CAC/C;IACC,MAAM,CAAU,YAAY,GAAG,KAAK,CAAC,MAAM,CAAC,IAAI,EAAE,2BAA2B,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC;IACnH,MAAM,CAAU,KAAK,GAAG,CAAC,MAAsC,EAAE,EAAE,CACjE,KAAK,CAAC,MAAM,CAAC,IAAI,EAAE,2BAA2B,CAAC,CAAC,IAAI,CAClD,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,EAC7B,KAAK,CAAC,OAAO,CAAC,6BAA6B,CAAC,gCAAgC,CAAC,MAAM,CAAC,CAAC,CACtF,CAAC;IACJ,MAAM,CAAU,SAAS,GAAG,CAC1B,QAAyE,EACzE,EAAE,CACF,KAAK,CAAC,MAAM,CAAC,IAAI,EAAE,2BAA2B,CAAC,CAAC,IAAI,CAClD,KAAK,CAAC,OAAO,CACX,KAAK,CAAC,MAAM,CACV,QAAQ,CAAC,8BAA8B,EACvC,MAAM,CAAC,GAAG,CAAC,qBAAqB,CAAC,sBAAsB,EAAE,QAAQ,CAAC,CACnE,CACF,CACF,CAAC"}
|
|
@@ -1,24 +1,23 @@
|
|
|
1
|
-
import { Effect,
|
|
1
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
2
2
|
import { dual } from "effect/Function";
|
|
3
|
-
import { globalValue } from "effect/GlobalValue";
|
|
4
3
|
/**
|
|
5
4
|
* @since 1.0.0
|
|
6
5
|
* @category dynamodb service config
|
|
7
6
|
*/
|
|
8
|
-
const currentDynamoDBDocumentServiceConfig =
|
|
7
|
+
const currentDynamoDBDocumentServiceConfig = ServiceMap.Reference("@effect-aws/dynamodb/currentDynamoDBDocumentServiceConfig", { defaultValue: () => ({}) });
|
|
9
8
|
/**
|
|
10
9
|
* @since 1.0.0
|
|
11
10
|
* @category dynamodb service config
|
|
12
11
|
*/
|
|
13
|
-
export const withDynamoDBDocumentServiceConfig = dual(2, (effect, config) => Effect.
|
|
12
|
+
export const withDynamoDBDocumentServiceConfig = dual(2, (effect, config) => Effect.provideService(effect, currentDynamoDBDocumentServiceConfig, config));
|
|
14
13
|
/**
|
|
15
14
|
* @since 1.0.0
|
|
16
15
|
* @category dynamodb service config
|
|
17
16
|
*/
|
|
18
|
-
export const setDynamoDBDocumentServiceConfig = (config) => Layer.
|
|
17
|
+
export const setDynamoDBDocumentServiceConfig = (config) => Layer.succeed(currentDynamoDBDocumentServiceConfig, config);
|
|
19
18
|
/**
|
|
20
19
|
* @since 1.0.0
|
|
21
20
|
* @category adapters
|
|
22
21
|
*/
|
|
23
|
-
export const toTranslateConfig =
|
|
22
|
+
export const toTranslateConfig = currentDynamoDBDocumentServiceConfig.asEffect();
|
|
24
23
|
//# sourceMappingURL=DynamoDBDocumentServiceConfig.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamoDBDocumentServiceConfig.js","sourceRoot":"","sources":["../../src/DynamoDBDocumentServiceConfig.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"DynamoDBDocumentServiceConfig.js","sourceRoot":"","sources":["../../src/DynamoDBDocumentServiceConfig.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AAGvC;;;GAGG;AACH,MAAM,oCAAoC,GAAG,UAAU,CAAC,SAAS,CAC/D,2DAA2D,EAC3D,EAAE,YAAY,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAC7B,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAG1C,IAAI,CACN,CAAC,EACD,CAAU,MAA8B,EAAE,MAAsC,EAA0B,EAAE,CAC1G,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,oCAAoC,EAAE,MAAM,CAAC,CAC9E,CAAC;AAEF;;;GAGG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC,MAAsC,EAAE,EAAE,CACzF,KAAK,CAAC,OAAO,CAAC,oCAAoC,EAAE,MAAM,CAAC,CAAC;AAE9D;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAmC,oCAAoC,CAAC,QAAQ,EAAE,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
|
-
import { Config, Effect, Layer } from "effect";
|
|
4
|
+
import { Config, Effect, Layer, ServiceMap } from "effect";
|
|
5
5
|
import { DynamoDBDocumentService } from "./DynamoDBDocumentService.js";
|
|
6
6
|
/**
|
|
7
7
|
* @since 1.0.0
|
|
@@ -46,8 +46,8 @@ export const makeDynamoDBStore = Effect.fn(function* (props) {
|
|
|
46
46
|
* @since 1.0.0
|
|
47
47
|
* @category models
|
|
48
48
|
*/
|
|
49
|
-
export class DynamoDBStore extends
|
|
49
|
+
export class DynamoDBStore extends ServiceMap.Service()("@effect-aws/dynamodb/DynamoDBStore") {
|
|
50
50
|
static layer = (props) => Layer.effect(this, makeDynamoDBStore(props));
|
|
51
|
-
static layerConfig = (config) => Layer.effect(this, Config.unwrap(config).pipe(Effect.flatMap(makeDynamoDBStore)));
|
|
51
|
+
static layerConfig = (config) => Layer.effect(this, Config.unwrap(config).asEffect().pipe(Effect.flatMap(makeDynamoDBStore)));
|
|
52
52
|
}
|
|
53
53
|
//# sourceMappingURL=DynamoDBStore.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamoDBStore.js","sourceRoot":"","sources":["../../src/DynamoDBStore.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"DynamoDBStore.js","sourceRoot":"","sources":["../../src/DynamoDBStore.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-aws/dynamodb",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.0",
|
|
4
4
|
"description": "Effectful AWS DynamoDB library & functions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -17,41 +17,35 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@aws-sdk/client-dynamodb": "^3",
|
|
19
19
|
"@aws-sdk/lib-dynamodb": "^3",
|
|
20
|
-
"@effect-aws/commons": "^0.
|
|
20
|
+
"@effect-aws/commons": "^1.0.0-beta.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"effect": ">=
|
|
24
|
-
"@effect-aws/client-dynamodb": "^
|
|
23
|
+
"effect": ">=4.0.0 <5.0.0",
|
|
24
|
+
"@effect-aws/client-dynamodb": "^2.0.0-beta.0"
|
|
25
25
|
},
|
|
26
|
-
"main": "./dist/cjs/index.js",
|
|
27
26
|
"module": "./dist/esm/index.js",
|
|
28
27
|
"types": "./dist/dts/index.d.ts",
|
|
29
28
|
"exports": {
|
|
30
29
|
"./package.json": "./package.json",
|
|
31
30
|
".": {
|
|
32
31
|
"types": "./dist/dts/index.d.ts",
|
|
33
|
-
"import": "./dist/esm/index.js"
|
|
34
|
-
"default": "./dist/cjs/index.js"
|
|
32
|
+
"import": "./dist/esm/index.js"
|
|
35
33
|
},
|
|
36
34
|
"./DynamoDBDocumentClientInstance": {
|
|
37
35
|
"types": "./dist/dts/DynamoDBDocumentClientInstance.d.ts",
|
|
38
|
-
"import": "./dist/esm/DynamoDBDocumentClientInstance.js"
|
|
39
|
-
"default": "./dist/cjs/DynamoDBDocumentClientInstance.js"
|
|
36
|
+
"import": "./dist/esm/DynamoDBDocumentClientInstance.js"
|
|
40
37
|
},
|
|
41
38
|
"./DynamoDBDocumentService": {
|
|
42
39
|
"types": "./dist/dts/DynamoDBDocumentService.d.ts",
|
|
43
|
-
"import": "./dist/esm/DynamoDBDocumentService.js"
|
|
44
|
-
"default": "./dist/cjs/DynamoDBDocumentService.js"
|
|
40
|
+
"import": "./dist/esm/DynamoDBDocumentService.js"
|
|
45
41
|
},
|
|
46
42
|
"./DynamoDBDocumentServiceConfig": {
|
|
47
43
|
"types": "./dist/dts/DynamoDBDocumentServiceConfig.d.ts",
|
|
48
|
-
"import": "./dist/esm/DynamoDBDocumentServiceConfig.js"
|
|
49
|
-
"default": "./dist/cjs/DynamoDBDocumentServiceConfig.js"
|
|
44
|
+
"import": "./dist/esm/DynamoDBDocumentServiceConfig.js"
|
|
50
45
|
},
|
|
51
46
|
"./DynamoDBStore": {
|
|
52
47
|
"types": "./dist/dts/DynamoDBStore.d.ts",
|
|
53
|
-
"import": "./dist/esm/DynamoDBStore.js"
|
|
54
|
-
"default": "./dist/cjs/DynamoDBStore.js"
|
|
48
|
+
"import": "./dist/esm/DynamoDBStore.js"
|
|
55
49
|
}
|
|
56
50
|
},
|
|
57
51
|
"typesVersions": {
|
|
@@ -3,23 +3,25 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { DynamoDBDocumentClient } from "@aws-sdk/lib-dynamodb";
|
|
5
5
|
import { DynamoDBClientInstance } from "@effect-aws/client-dynamodb";
|
|
6
|
-
import {
|
|
6
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
7
7
|
import * as DynamoDBDocumentServiceConfig from "./DynamoDBDocumentServiceConfig.js";
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* @since 1.0.0
|
|
11
11
|
* @category tags
|
|
12
12
|
*/
|
|
13
|
-
export class DynamoDBDocumentClientInstance
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
export class DynamoDBDocumentClientInstance
|
|
14
|
+
extends ServiceMap.Service<DynamoDBDocumentClientInstance, DynamoDBDocumentClient>()(
|
|
15
|
+
"@effect-aws/dynamodb/DynamoDBDocumentClientInstance",
|
|
16
|
+
)
|
|
17
|
+
{}
|
|
16
18
|
|
|
17
19
|
/**
|
|
18
20
|
* @since 1.0.0
|
|
19
21
|
* @category constructors
|
|
20
22
|
*/
|
|
21
23
|
export const make = Effect.all([
|
|
22
|
-
DynamoDBClientInstance.DynamoDBClientInstance,
|
|
24
|
+
DynamoDBClientInstance.DynamoDBClientInstance.asEffect(),
|
|
23
25
|
DynamoDBDocumentServiceConfig.toTranslateConfig,
|
|
24
26
|
]).pipe(
|
|
25
27
|
Effect.map(([client, config]) => DynamoDBDocumentClient.from(client, config)),
|
|
@@ -29,6 +31,6 @@ export const make = Effect.all([
|
|
|
29
31
|
* @since 1.0.0
|
|
30
32
|
* @category layers
|
|
31
33
|
*/
|
|
32
|
-
export const layer = Layer.
|
|
34
|
+
export const layer = Layer.effect(DynamoDBDocumentClientInstance, make).pipe(
|
|
33
35
|
Layer.provide(DynamoDBClientInstance.layer),
|
|
34
36
|
);
|