@axiom-lattice/protocols 4.1.2 → 4.1.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.
- package/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/WorkspaceStoreProtocol.ts +3 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/protocols@4.1.
|
|
2
|
+
> @axiom-lattice/protocols@4.1.3 build /home/runner/work/agentic/agentic/packages/protocols
|
|
3
3
|
> tsup src/index.ts --format cjs,esm --dts --sourcemap
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[32mESM[39m [1mdist/index.mjs [22m[32m33.51 KB[39m
|
|
12
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m120.
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
12
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m120.47 KB[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 269ms
|
|
14
14
|
[32mCJS[39m [1mdist/index.js [22m[32m37.33 KB[39m
|
|
15
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m123.
|
|
16
|
-
[32mCJS[39m ⚡️ Build success in
|
|
15
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m123.78 KB[39m
|
|
16
|
+
[32mCJS[39m ⚡️ Build success in 294ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m199.
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m199.
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 11582ms
|
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m199.35 KB[39m
|
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m199.35 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -2012,8 +2012,10 @@ interface WorkspaceStore {
|
|
|
2012
2012
|
* Project kind classification
|
|
2013
2013
|
*
|
|
2014
2014
|
* Defaults to "business" for legacy rows and omitted input.
|
|
2015
|
+
* "public" is reserved for the automatically ensured workspace public room;
|
|
2016
|
+
* user-facing project create/update APIs reject it.
|
|
2015
2017
|
*/
|
|
2016
|
-
type ProjectKind = "business" | "training" | "personal";
|
|
2018
|
+
type ProjectKind = "business" | "training" | "personal" | "public";
|
|
2017
2019
|
/**
|
|
2018
2020
|
* Project type definition
|
|
2019
2021
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -2012,8 +2012,10 @@ interface WorkspaceStore {
|
|
|
2012
2012
|
* Project kind classification
|
|
2013
2013
|
*
|
|
2014
2014
|
* Defaults to "business" for legacy rows and omitted input.
|
|
2015
|
+
* "public" is reserved for the automatically ensured workspace public room;
|
|
2016
|
+
* user-facing project create/update APIs reject it.
|
|
2015
2017
|
*/
|
|
2016
|
-
type ProjectKind = "business" | "training" | "personal";
|
|
2018
|
+
type ProjectKind = "business" | "training" | "personal" | "public";
|
|
2017
2019
|
/**
|
|
2018
2020
|
* Project type definition
|
|
2019
2021
|
*/
|