@isaacthoman/pulpo 0.66.0 → 0.67.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/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17235,6 +17235,10 @@ var updateQueuedMessageSchema = external_exports.discriminatedUnion("action", [
|
|
|
17235
17235
|
path: ["input"]
|
|
17236
17236
|
})
|
|
17237
17237
|
]);
|
|
17238
|
+
var reorderQueuedMessageSchema = external_exports.object({
|
|
17239
|
+
targetMessageId: idSchema,
|
|
17240
|
+
edge: external_exports.enum(["before", "after"])
|
|
17241
|
+
});
|
|
17238
17242
|
var startChatSchema = external_exports.object({
|
|
17239
17243
|
chat: createChatSchema.extend({ clientId: idSchema }),
|
|
17240
17244
|
response: createChatResponseSchema.safeExtend({ clientId: idSchema })
|
|
@@ -17881,7 +17885,7 @@ async function runModelTest(input) {
|
|
|
17881
17885
|
}
|
|
17882
17886
|
|
|
17883
17887
|
// src/index.ts
|
|
17884
|
-
var CLI_VERSION = true ? "0.
|
|
17888
|
+
var CLI_VERSION = true ? "0.67.0" : "0.1.0";
|
|
17885
17889
|
var CLI_BUNDLED = true;
|
|
17886
17890
|
var commandIo = /* @__PURE__ */ new WeakMap();
|
|
17887
17891
|
var commandClientFactory = /* @__PURE__ */ new WeakMap();
|