@farukada/aws-langgraph-dynamodb-ts 0.0.2 → 0.0.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,2 @@
1
+ export {};
2
+ //# sourceMappingURL=esbuild-bundle-hints.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"esbuild-bundle-hints.d.ts","sourceRoot":"","sources":["../src/esbuild-bundle-hints.ts"],"names":[],"mappings":""}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ try {
4
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
5
+ // @ts-expect-error
6
+ import('jsonpath/include/module.js');
7
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
8
+ // @ts-expect-error
9
+ import('jsonpath/include/action.js');
10
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
11
+ // @ts-expect-error
12
+ import('esprima');
13
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
14
+ }
15
+ catch (e) {
16
+ // Ignore if not present
17
+ }
18
+ //# sourceMappingURL=esbuild-bundle-hints.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"esbuild-bundle-hints.js","sourceRoot":"","sources":["../src/esbuild-bundle-hints.ts"],"names":[],"mappings":";;AAAA,IAAI,CAAC;IACH,6DAA6D;IAC7D,mBAAmB;IACnB,MAAM,CAAC,4BAA4B,CAAC,CAAC;IACrC,6DAA6D;IAC7D,mBAAmB;IACnB,MAAM,CAAC,4BAA4B,CAAC,CAAC;IACrC,6DAA6D;IAC7D,mBAAmB;IACnB,MAAM,CAAC,SAAS,CAAC,CAAC;IACpB,6DAA6D;AAC7D,CAAC;AAAC,OAAO,CAAC,EAAE,CAAC;IACX,wBAAwB;AAC1B,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import './esbuild-bundle-hints';
1
2
  export { DynamoDBSaver } from './checkpointer';
2
3
  export type { DynamoDBSaverOptions } from './checkpointer/types';
3
4
  export { DynamoDBStore } from './store';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,YAAY,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AACxC,YAAY,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,wBAAwB,CAAC;AAChC,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,YAAY,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AACxC,YAAY,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC"}
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DynamoDBStore = exports.DynamoDBSaver = void 0;
4
+ require("./esbuild-bundle-hints");
4
5
  var checkpointer_1 = require("./checkpointer");
5
6
  Object.defineProperty(exports, "DynamoDBSaver", { enumerable: true, get: function () { return checkpointer_1.DynamoDBSaver; } });
6
7
  var store_1 = require("./store");
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,+CAA+C;AAAtC,6GAAA,aAAa,OAAA;AAEtB,iCAAwC;AAA/B,sGAAA,aAAa,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,kCAAgC;AAChC,+CAA+C;AAAtC,6GAAA,aAAa,OAAA;AAEtB,iCAAwC;AAA/B,sGAAA,aAAa,OAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farukada/aws-langgraph-dynamodb-ts",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "license": "MIT",
5
5
  "description": "AWS DynamoDB implementation for LangGraph Memory Store and Checkpoint Saver in TypeScript",
6
6
  "keywords": [
@@ -43,6 +43,7 @@
43
43
  "@langchain/core": "^1.0.2",
44
44
  "@langchain/langgraph": "^1.0.1",
45
45
  "@langchain/langgraph-checkpoint": "^1.0.0",
46
+ "esprima": "^4.0.1",
46
47
  "jsonpath": "^1.1.1"
47
48
  },
48
49
  "devDependencies": {