@zimtsui/typechat 0.0.90 → 0.0.91

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
+ import './escape.ts';
2
+ export declare function encode(text: string): string;
@@ -0,0 +1,8 @@
1
+ import Handlebars from 'handlebars';
2
+ import Assets from "../../assets.js";
3
+ import "./escape.js";
4
+ const template = Handlebars.compile(Assets.verbatim.meta);
5
+ export function encode(text) {
6
+ return template({ text });
7
+ }
8
+ //# sourceMappingURL=meta.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"meta.js","sourceRoot":"","sources":["../../../src/verbatim/codec/meta.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,YAAY,CAAC;AACpC,OAAO,MAAM,MAAM,iBAAiB,CAAC;AACrC,OAAO,aAAa,CAAC;AAGrB,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAiB,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;AAO1E,MAAM,UAAU,MAAM,CAAC,IAAY;IAC/B,OAAO,QAAQ,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;AAC9B,CAAC"}
@@ -2,3 +2,4 @@ export * as Declarations from './codec/declarations.ts';
2
2
  export * as Request from './codec/request.ts';
3
3
  export * as Quotation from './codec/quotation.ts';
4
4
  export * as Response from './codec/response.ts';
5
+ export * as Meta from './codec/meta.ts';
@@ -2,4 +2,5 @@ export * as Declarations from "./codec/declarations.js";
2
2
  export * as Request from "./codec/request.js";
3
3
  export * as Quotation from "./codec/quotation.js";
4
4
  export * as Response from "./codec/response.js";
5
+ export * as Meta from "./codec/meta.js";
5
6
  //# sourceMappingURL=codec.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"codec.js","sourceRoot":"","sources":["../../src/verbatim/codec.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC"}
1
+ {"version":3,"file":"codec.js","sourceRoot":"","sources":["../../src/verbatim/codec.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zimtsui/typechat",
3
- "version": "0.0.90",
3
+ "version": "0.0.91",
4
4
  "exports": {
5
5
  ".": "./build/exports.js",
6
6
  "./assets": "./build/assets.js",