milkio 1.0.0-alpha.23 → 1.0.0-alpha.24
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/.co.toml +0 -0
- package/.publish/publish.json +0 -0
- package/.publish/releases/0.0.0.md +0 -0
- package/.publish/releases/0.1.0.md +0 -0
- package/.publish/releases/0.2.0.md +0 -0
- package/.publish/releases/0.3.0.md +0 -0
- package/.publish/releases/0.4.0.md +0 -0
- package/.publish/releases/0.5.0.md +0 -0
- package/.publish/releases/0.6.0.md +0 -0
- package/.publish/releases/0.8.0.md +0 -0
- package/.publish/releases-github/0.0.0.md +0 -0
- package/.publish/releases-github/0.1.0.md +0 -0
- package/.publish/releases-github/0.2.0.md +0 -0
- package/.publish/releases-github/0.3.0.md +0 -0
- package/.publish/releases-github/0.4.0.md +0 -0
- package/.publish/releases-github/0.5.0.md +0 -0
- package/.publish/releases-github/0.6.0.md +0 -0
- package/.publish/releases-github/0.8.0.md +0 -0
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/action/index.ts +0 -0
- package/command/index.ts +0 -0
- package/context/index.ts +0 -0
- package/events/index.ts +0 -0
- package/exception/index.ts +0 -0
- package/execute/execute-id-generator.ts +0 -0
- package/execute/index.ts +0 -0
- package/index.ts +0 -0
- package/listener/index.ts +1 -1
- package/logger/index.ts +0 -0
- package/meta/index.ts +0 -0
- package/package.json +1 -1
- package/stream/index.ts +0 -0
- package/tsconfig.json +0 -0
- package/types/index.ts +0 -0
- package/utils/create-id.ts +0 -0
- package/utils/send-cookbook-event.ts +0 -0
- package/world/index.ts +0 -0
package/.co.toml
CHANGED
|
File without changes
|
package/.publish/publish.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/action/index.ts
CHANGED
|
File without changes
|
package/command/index.ts
CHANGED
|
File without changes
|
package/context/index.ts
CHANGED
|
File without changes
|
package/events/index.ts
CHANGED
|
File without changes
|
package/exception/index.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/execute/index.ts
CHANGED
|
File without changes
|
package/index.ts
CHANGED
|
File without changes
|
package/listener/index.ts
CHANGED
|
@@ -108,7 +108,7 @@ export const __initListener = (generated: GeneratedInit, runtime: any, executer:
|
|
|
108
108
|
paramsType: "string",
|
|
109
109
|
});
|
|
110
110
|
|
|
111
|
-
if (executed.results.value !== undefined) response.body = TSON.stringify({ success: true, data: executed.results.value, executeId } satisfies MilkioResponseSuccess<any>);
|
|
111
|
+
if (response.body === "" && executed.results.value !== undefined) response.body = TSON.stringify({ success: true, data: executed.results.value, executeId } satisfies MilkioResponseSuccess<any>);
|
|
112
112
|
|
|
113
113
|
await runtime.emit("milkio:httpResponse", { executeId, logger, path: http.path.string as string, http, context: executed.context });
|
|
114
114
|
|
package/logger/index.ts
CHANGED
|
File without changes
|
package/meta/index.ts
CHANGED
|
File without changes
|
package/package.json
CHANGED
package/stream/index.ts
CHANGED
|
File without changes
|
package/tsconfig.json
CHANGED
|
File without changes
|
package/types/index.ts
CHANGED
|
File without changes
|
package/utils/create-id.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/world/index.ts
CHANGED
|
File without changes
|