postgresai 0.14.0-dev.50 → 0.14.0-dev.51
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/bin/postgres-ai.js +3 -2
- package/lib/checkup.ts +2 -0
- package/package.json +1 -1
package/dist/bin/postgres-ai.js
CHANGED
|
@@ -13064,7 +13064,7 @@ var {
|
|
|
13064
13064
|
// package.json
|
|
13065
13065
|
var package_default = {
|
|
13066
13066
|
name: "postgresai",
|
|
13067
|
-
version: "0.14.0-dev.
|
|
13067
|
+
version: "0.14.0-dev.51",
|
|
13068
13068
|
description: "postgres_ai CLI",
|
|
13069
13069
|
license: "Apache-2.0",
|
|
13070
13070
|
private: false,
|
|
@@ -15881,7 +15881,7 @@ var Result = import_lib.default.Result;
|
|
|
15881
15881
|
var TypeOverrides = import_lib.default.TypeOverrides;
|
|
15882
15882
|
var defaults = import_lib.default.defaults;
|
|
15883
15883
|
// package.json
|
|
15884
|
-
var version = "0.14.0-dev.
|
|
15884
|
+
var version = "0.14.0-dev.51";
|
|
15885
15885
|
var package_default2 = {
|
|
15886
15886
|
name: "postgresai",
|
|
15887
15887
|
version,
|
|
@@ -24951,6 +24951,7 @@ function createBaseReport(checkId, checkTitle, nodeName) {
|
|
|
24951
24951
|
return {
|
|
24952
24952
|
version: version || null,
|
|
24953
24953
|
build_ts: buildTs,
|
|
24954
|
+
generation_mode: "express",
|
|
24954
24955
|
checkId,
|
|
24955
24956
|
checkTitle,
|
|
24956
24957
|
timestamptz: new Date().toISOString(),
|
package/lib/checkup.ts
CHANGED
|
@@ -166,6 +166,7 @@ export interface NodeResult {
|
|
|
166
166
|
export interface Report {
|
|
167
167
|
version: string | null;
|
|
168
168
|
build_ts: string | null;
|
|
169
|
+
generation_mode: string | null;
|
|
169
170
|
checkId: string;
|
|
170
171
|
checkTitle: string;
|
|
171
172
|
timestamptz: string;
|
|
@@ -572,6 +573,7 @@ export function createBaseReport(
|
|
|
572
573
|
return {
|
|
573
574
|
version: pkg.version || null,
|
|
574
575
|
build_ts: buildTs,
|
|
576
|
+
generation_mode: "express",
|
|
575
577
|
checkId,
|
|
576
578
|
checkTitle,
|
|
577
579
|
timestamptz: new Date().toISOString(),
|