@proteinjs/conversation 2.7.3 → 3.0.0
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/CHANGELOG.md +16 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/index.ts +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.0.0](https://github.com/proteinjs/conversation/compare/@proteinjs/conversation@2.7.3...@proteinjs/conversation@3.0.0) (2026-03-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### chore
|
|
10
|
+
|
|
11
|
+
* **conversation:** trigger major version bump ([f1598e6](https://github.com/proteinjs/conversation/commit/f1598e63e6d24d79b86c9bfcf9d39a94d67474e3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### BREAKING CHANGES
|
|
15
|
+
|
|
16
|
+
* **conversation:** Conversation v2 rewrites the class API to use Vercel AI SDK v6
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [2.7.3](https://github.com/proteinjs/conversation/compare/@proteinjs/conversation@2.7.2...@proteinjs/conversation@2.7.3) (2026-03-25)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @proteinjs/conversation
|
package/dist/index.js
CHANGED
|
@@ -38,4 +38,5 @@ __exportStar(require("./src/fs/keyword_to_files_index/KeywordToFilesIndexModule"
|
|
|
38
38
|
__exportStar(require("./src/fs/keyword_to_files_index/KeywordToFilesIndexFunctions"), exports);
|
|
39
39
|
__exportStar(require("./src/fs/package/PackageModule"), exports);
|
|
40
40
|
__exportStar(require("./src/fs/package/PackageFunctions"), exports);
|
|
41
|
+
// bump
|
|
41
42
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA+B;AAC/B,kDAAgC;AAChC,4DAA4D;AAC5D,+CAA6B;AAC7B,mEAAiD;AACjD,qDAAmC;AACnC,4DAA0C;AAC1C,2DAAyC;AACzC,2DAAyC;AACzC,iDAA+B;AAC/B,iEAA+C;AAC/C,+DAA6C;AAC7C,0EAAwD;AAGxD,kDAAgC;AAChC,wDAAsC;AACtC,qDAAmC;AAEnC,uBAAuB;AACvB,gFAA8D;AAC9D,uEAAqD;AACrD,yDAAuC;AACvC,4FAA0E;AAC1E,+FAA6E;AAC7E,iEAA+C;AAC/C,oEAAkD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA+B;AAC/B,kDAAgC;AAChC,4DAA4D;AAC5D,+CAA6B;AAC7B,mEAAiD;AACjD,qDAAmC;AACnC,4DAA0C;AAC1C,2DAAyC;AACzC,2DAAyC;AACzC,iDAA+B;AAC/B,iEAA+C;AAC/C,+DAA6C;AAC7C,0EAAwD;AAGxD,kDAAgC;AAChC,wDAAsC;AACtC,qDAAmC;AAEnC,uBAAuB;AACvB,gFAA8D;AAC9D,uEAAqD;AACrD,yDAAuC;AACvC,4FAA0E;AAC1E,+FAA6E;AAC7E,iEAA+C;AAC/C,oEAAkD;AAElD,OAAO"}
|
package/index.ts
CHANGED
|
@@ -25,3 +25,5 @@ export * from './src/fs/keyword_to_files_index/KeywordToFilesIndexModule';
|
|
|
25
25
|
export * from './src/fs/keyword_to_files_index/KeywordToFilesIndexFunctions';
|
|
26
26
|
export * from './src/fs/package/PackageModule';
|
|
27
27
|
export * from './src/fs/package/PackageFunctions';
|
|
28
|
+
|
|
29
|
+
// bump
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proteinjs/conversation",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"tiktoken": "1.0.22",
|
|
43
43
|
"typescript": "5.2.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "5d5d3d0eb7929a9c4516f6796be99ab63b3822b4"
|
|
46
46
|
}
|