@salto-io/persistent-pool 0.5.0-daniel.1 → 0.5.0-daniel.3

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,4 @@
1
+ export { repo as dynamoDbRepo, DynamoRepoOpts as DynamoDbRepoOpts } from './src/lib/dynamodb/dynamodb_repo';
2
+ export * from './src/types';
3
+ export { default as RenewedLease, RenewedLeaseOpts } from './src/lib/renewed_lease';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -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"}
package/dist/index.js ADDED
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ var __importDefault = (this && this.__importDefault) || function (mod) {
17
+ return (mod && mod.__esModule) ? mod : { "default": mod };
18
+ };
19
+ Object.defineProperty(exports, "__esModule", { value: true });
20
+ exports.RenewedLease = exports.dynamoDbRepo = void 0;
21
+ /*
22
+ * Copyright 2025 Salto Labs Ltd.
23
+ * Licensed under the Salto Terms of Use (the "License");
24
+ * You may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.salto.io/terms-of-use
25
+ *
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
+ */
28
+ var dynamodb_repo_1 = require("./src/lib/dynamodb/dynamodb_repo");
29
+ Object.defineProperty(exports, "dynamoDbRepo", { enumerable: true, get: function () { return dynamodb_repo_1.repo; } });
30
+ __exportStar(require("./src/types"), exports);
31
+ var renewed_lease_1 = require("./src/lib/renewed_lease");
32
+ Object.defineProperty(exports, "RenewedLease", { enumerable: true, get: function () { return __importDefault(renewed_lease_1).default; } });
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@salto-io/persistent-pool",
3
- "version": "0.5.0-daniel.1",
3
+ "version": "0.5.0-daniel.3",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "Keeps a persistent pool of objects",
6
6
  "repository": {
@@ -30,9 +30,9 @@
30
30
  "dependencies": {
31
31
  "@aws-sdk/client-dynamodb": "3.198.0",
32
32
  "@aws-sdk/lib-dynamodb": "3.198.0",
33
- "@salto-io/logging": "0.5.0-daniel.1",
34
- "@salto-io/lowerdash": "0.5.0-daniel.1",
35
- "@salto-io/test-utils": "0.5.0-daniel.1",
33
+ "@salto-io/logging": "0.5.0-daniel.3",
34
+ "@salto-io/lowerdash": "0.5.0-daniel.3",
35
+ "@salto-io/test-utils": "0.5.0-daniel.3",
36
36
  "uuid": "^10.0.0"
37
37
  },
38
38
  "devDependencies": {
@@ -48,5 +48,5 @@
48
48
  "turbo": "^2.0.6",
49
49
  "typescript": "4.8.4"
50
50
  },
51
- "gitHead": "ed3e59c76d09fbb9e8c17010840d70308e8ca409"
51
+ "gitHead": "6747388eead77ca888d6583a2bbd69c749891332"
52
52
  }