simple-dynamo-ts 1.0.5 → 1.0.6
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/dist/decorators.d.ts +1 -0
- package/dist/decorators.js +1 -0
- package/dist/exceptions.d.ts +1 -0
- package/dist/exceptions.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/simple-dynamodb-repository.d.ts +1 -0
- package/dist/simple-dynamodb-repository.js +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/types.js +1 -0
- package/package.json +2 -2
package/dist/decorators.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ export declare function getPartitionKeyName(target: DynamoEntityTarget): string
|
|
|
15
15
|
export declare function getSortKeyName(target: DynamoEntityTarget): string | undefined;
|
|
16
16
|
export declare function getIndexPartitionKeyName(target: DynamoEntityTarget, indexName: string): string | undefined;
|
|
17
17
|
export declare function getIndexSortKeyName(target: DynamoEntityTarget, indexName: string): string | undefined;
|
|
18
|
+
//# sourceMappingURL=decorators.d.ts.map
|
package/dist/decorators.js
CHANGED
package/dist/exceptions.d.ts
CHANGED
package/dist/exceptions.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ export { DynamoDBRepository } from "./simple-dynamodb-repository";
|
|
|
2
2
|
export { DynamoTable, PartitionKey, SortKey, IndexPartitionKey, IndexSortKey, getDynamoTableName, getPartitionKeyName, getSortKeyName, getIndexPartitionKeyName, getIndexSortKeyName, } from "./decorators";
|
|
3
3
|
export type { QueryOptions, DynamoKey, DynamoKeyMap } from "./types";
|
|
4
4
|
export { ItemNotFoundError, InvalidParametersError, DecoratorMissingError, DuplicateDecoratorError, } from "./exceptions";
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -19,3 +19,4 @@ Object.defineProperty(exports, "ItemNotFoundError", { enumerable: true, get: fun
|
|
|
19
19
|
Object.defineProperty(exports, "InvalidParametersError", { enumerable: true, get: function () { return exceptions_1.InvalidParametersError; } });
|
|
20
20
|
Object.defineProperty(exports, "DecoratorMissingError", { enumerable: true, get: function () { return exceptions_1.DecoratorMissingError; } });
|
|
21
21
|
Object.defineProperty(exports, "DuplicateDecoratorError", { enumerable: true, get: function () { return exceptions_1.DuplicateDecoratorError; } });
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
package/dist/types.d.ts
CHANGED
package/dist/types.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simple-dynamo-ts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "A simple TypeScript library for working with DynamoDB using decorators and a repository pattern",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dynamodb",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
".": {
|
|
26
26
|
"types": "./dist/index.d.ts",
|
|
27
27
|
"import": "./dist/index.js",
|
|
28
|
-
"require": "./dist/index.
|
|
28
|
+
"require": "./dist/index.js"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"main": "./dist/index.js",
|