simple-dynamo-ts 1.0.7 → 1.0.8

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.
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DuplicateDecoratorError = exports.DecoratorMissingError = exports.InvalidParametersError = exports.ItemNotFoundError = void 0;
4
+ class ItemNotFoundError extends Error {
5
+ constructor(message) {
6
+ super(message);
7
+ this.name = "ItemNotFoundError";
8
+ Object.setPrototypeOf(this, ItemNotFoundError.prototype);
9
+ }
10
+ }
11
+ exports.ItemNotFoundError = ItemNotFoundError;
12
+ class InvalidParametersError extends Error {
13
+ constructor(message) {
14
+ super(message);
15
+ this.name = "InvalidParametersError";
16
+ Object.setPrototypeOf(this, InvalidParametersError.prototype);
17
+ }
18
+ }
19
+ exports.InvalidParametersError = InvalidParametersError;
20
+ class DecoratorMissingError extends Error {
21
+ constructor(message) {
22
+ super(message);
23
+ this.name = "DecoratorMissingError";
24
+ Object.setPrototypeOf(this, DecoratorMissingError.prototype);
25
+ }
26
+ }
27
+ exports.DecoratorMissingError = DecoratorMissingError;
28
+ class DuplicateDecoratorError extends Error {
29
+ constructor(message) {
30
+ super(message);
31
+ this.name = "DuplicateDecoratorError";
32
+ Object.setPrototypeOf(this, DuplicateDecoratorError.prototype);
33
+ }
34
+ }
35
+ exports.DuplicateDecoratorError = DuplicateDecoratorError;
36
+ //# sourceMappingURL=exceptions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"exceptions.js","sourceRoot":"","sources":["../src/exceptions.ts"],"names":[],"mappings":";;;AAAA,MAAa,iBAAkB,SAAQ,KAAK;IAC1C,YAAY,OAAe;QACzB,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,mBAAmB,CAAC;QAGhC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,iBAAiB,CAAC,SAAS,CAAC,CAAC;IAC3D,CAAC;CACF;AARD,8CAQC;AAED,MAAa,sBAAuB,SAAQ,KAAK;IAC/C,YAAY,OAAe;QACzB,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,wBAAwB,CAAC;QAGrC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,sBAAsB,CAAC,SAAS,CAAC,CAAC;IAChE,CAAC;CACF;AARD,wDAQC;AAED,MAAa,qBAAsB,SAAQ,KAAK;IAC9C,YAAY,OAAe;QACzB,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,uBAAuB,CAAC;QAGpC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,qBAAqB,CAAC,SAAS,CAAC,CAAC;IAC/D,CAAC;CACF;AARD,sDAQC;AAED,MAAa,uBAAwB,SAAQ,KAAK;IAChD,YAAY,OAAe;QACzB,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,yBAAyB,CAAC;QAGtC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,uBAAuB,CAAC,SAAS,CAAC,CAAC;IACjE,CAAC;CACF;AARD,0DAQC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simple-dynamo-ts",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "A simple TypeScript library for working with DynamoDB using decorators and a repository pattern",
5
5
  "keywords": [
6
6
  "dynamodb",