@salto-io/persistent-pool 0.5.1-main.64da1a65c → 0.5.1-main.657bf6ca3
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/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/{src/index.js → index.js} +3 -3
- package/dist/index.js.map +1 -0
- package/package.json +10 -9
- package/dist/src/index.d.ts +0 -4
- package/dist/src/index.d.ts.map +0 -1
- package/dist/src/index.js.map +0 -1
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,IAAI,IAAI,YAAY,EAAE,cAAc,IAAI,gBAAgB,EAAE,MAAM,kCAAkC,CAAA;AAC3G,cAAc,aAAa,CAAA;AAC3B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAA"}
|
|
@@ -25,9 +25,9 @@ exports.RenewedLease = exports.dynamoDbRepo = void 0;
|
|
|
25
25
|
*
|
|
26
26
|
* CERTAIN THIRD PARTY SOFTWARE MAY BE CONTAINED IN PORTIONS OF THE SOFTWARE. See NOTICE FILE AT https://github.com/salto-io/salto/blob/main/NOTICES
|
|
27
27
|
*/
|
|
28
|
-
var dynamodb_repo_1 = require("./lib/dynamodb/dynamodb_repo");
|
|
28
|
+
var dynamodb_repo_1 = require("./src/lib/dynamodb/dynamodb_repo");
|
|
29
29
|
Object.defineProperty(exports, "dynamoDbRepo", { enumerable: true, get: function () { return dynamodb_repo_1.repo; } });
|
|
30
|
-
__exportStar(require("./types"), exports);
|
|
31
|
-
var renewed_lease_1 = require("./lib/renewed_lease");
|
|
30
|
+
__exportStar(require("./src/types"), exports);
|
|
31
|
+
var renewed_lease_1 = require("./src/lib/renewed_lease");
|
|
32
32
|
Object.defineProperty(exports, "RenewedLease", { enumerable: true, get: function () { return __importDefault(renewed_lease_1).default; } });
|
|
33
33
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;GAMG;AACH,kEAA2G;AAAlG,6GAAA,IAAI,OAAgB;AAC7B,8CAA2B;AAC3B,yDAAmF;AAA1E,8HAAA,OAAO,OAAgB"}
|
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salto-io/persistent-pool",
|
|
3
|
-
"version": "0.5.1-main.
|
|
3
|
+
"version": "0.5.1-main.657bf6ca3",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "Keeps a persistent pool of objects",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/salto-io/
|
|
8
|
+
"url": "https://github.com/salto-io/salto"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
|
-
"dist/src"
|
|
14
|
+
"dist/src",
|
|
15
|
+
"dist/index.*"
|
|
15
16
|
],
|
|
16
|
-
"main": "dist/
|
|
17
|
-
"types": "dist/
|
|
17
|
+
"main": "dist/index.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
18
19
|
"scripts": {
|
|
19
20
|
"build": "../../build_utils/turbo_run.sh build-ts ; ../../build_utils/turbo_run.sh lint",
|
|
20
21
|
"build-ts": "tsc -b",
|
|
@@ -29,9 +30,9 @@
|
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"@aws-sdk/client-dynamodb": "3.198.0",
|
|
31
32
|
"@aws-sdk/lib-dynamodb": "3.198.0",
|
|
32
|
-
"@salto-io/logging": "0.5.1-main.
|
|
33
|
-
"@salto-io/lowerdash": "0.5.1-main.
|
|
34
|
-
"@salto-io/test-utils": "0.5.1-main.
|
|
33
|
+
"@salto-io/logging": "0.5.1-main.657bf6ca3",
|
|
34
|
+
"@salto-io/lowerdash": "0.5.1-main.657bf6ca3",
|
|
35
|
+
"@salto-io/test-utils": "0.5.1-main.657bf6ca3",
|
|
35
36
|
"uuid": "^10.0.0"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
@@ -47,5 +48,5 @@
|
|
|
47
48
|
"turbo": "^2.0.6",
|
|
48
49
|
"typescript": "4.8.4"
|
|
49
50
|
},
|
|
50
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "72da49f9fe994136a58c9290df4724b35ea2ac5f"
|
|
51
52
|
}
|
package/dist/src/index.d.ts
DELETED
package/dist/src/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,IAAI,IAAI,YAAY,EAAE,cAAc,IAAI,gBAAgB,EAAE,MAAM,8BAA8B,CAAA;AACvG,cAAc,SAAS,CAAA;AACvB,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA"}
|
package/dist/src/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;GAMG;AACH,8DAAuG;AAA9F,6GAAA,IAAI,OAAgB;AAC7B,0CAAuB;AACvB,qDAA+E;AAAtE,8HAAA,OAAO,OAAgB"}
|