@tailor-platform/sdk 1.25.2 → 1.25.4

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.
@@ -1,5 +1,5 @@
1
1
  import { V as TailorDBType, tt as TailorField } from "../../plugin-zY5wvV82.mjs";
2
- import { G as WORKFLOW_TEST_ENV_KEY, n as output } from "../../index-DuZRAsc3.mjs";
2
+ import { G as WORKFLOW_TEST_ENV_KEY, n as output } from "../../index-Bu12qy3m.mjs";
3
3
  import { StandardSchemaV1 } from "@standard-schema/spec";
4
4
 
5
5
  //#region src/utils/test/mock.d.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tailor-platform/sdk",
3
- "version": "1.25.2",
3
+ "version": "1.25.4",
4
4
  "description": "Tailor Platform SDK - The SDK to work with Tailor Platform",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -81,6 +81,8 @@
81
81
  "@bufbuild/protobuf": "2.10.2",
82
82
  "@connectrpc/connect": "2.1.1",
83
83
  "@connectrpc/connect-node": "2.1.1",
84
+ "@inquirer/core": "11.1.5",
85
+ "@inquirer/prompts": "8.3.0",
84
86
  "@liam-hq/cli": "0.7.24",
85
87
  "@opentelemetry/api": "1.9.0",
86
88
  "@opentelemetry/exporter-trace-otlp-proto": "0.212.0",
@@ -95,7 +97,6 @@
95
97
  "chalk": "5.6.2",
96
98
  "chokidar": "5.0.0",
97
99
  "confbox": "0.2.4",
98
- "consola": "3.4.2",
99
100
  "date-fns": "4.1.0",
100
101
  "es-toolkit": "1.45.1",
101
102
  "find-up-simple": "1.0.1",
@@ -113,7 +114,7 @@
113
114
  "pgsql-ast-parser": "12.0.2",
114
115
  "pkg-types": "2.3.0",
115
116
  "politty": "0.4.9",
116
- "rolldown": "1.0.0-rc.7",
117
+ "rolldown": "1.0.0-rc.9",
117
118
  "serve": "14.2.6",
118
119
  "std-env": "3.10.0",
119
120
  "table": "6.9.0",
@@ -129,18 +130,18 @@
129
130
  "@tailor-platform/function-types": "0.8.2",
130
131
  "@types/madge": "5.0.3",
131
132
  "@types/mime-types": "3.0.1",
132
- "@types/node": "24.10.9",
133
+ "@types/node": "24.12.0",
133
134
  "@typescript/native-preview": "7.0.0-dev.20260308.1",
134
135
  "@vitest/coverage-v8": "4.0.18",
135
136
  "eslint": "9.39.4",
136
137
  "eslint-plugin-jsdoc": "62.7.1",
137
138
  "eslint-plugin-oxlint": "1.39.0",
138
139
  "oxlint": "1.39.0",
139
- "oxlint-tsgolint": "0.11.1",
140
- "sonda": "0.10.1",
141
- "tsdown": "0.21.1",
140
+ "oxlint-tsgolint": "0.16.0",
141
+ "sonda": "0.11.1",
142
+ "tsdown": "0.21.2",
142
143
  "typescript": "5.9.3",
143
- "typescript-eslint": "8.53.0",
144
+ "typescript-eslint": "8.57.0",
144
145
  "vitest": "4.0.18",
145
146
  "zinfer": "0.1.7"
146
147
  },
package/postinstall.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { existsSync, mkdirSync, writeFileSync } from "node:fs";
3
+ import { existsSync } from "node:fs";
4
4
  import { dirname, resolve } from "node:path";
5
5
  import { pathToFileURL } from "node:url";
6
6
  import { register } from "node:module";
@@ -26,48 +26,23 @@ async function install() {
26
26
  ? resolve(cwd, process.env.TAILOR_PLATFORM_SDK_CONFIG_PATH)
27
27
  : findUpSync(DEFAULT_CONFIG_FILENAME, { cwd });
28
28
 
29
- if (configPath && existsSync(configPath)) {
30
- try {
31
- const configDir = dirname(configPath);
32
- process.chdir(configDir);
33
- register("tsx", import.meta.url, { data: {} });
34
-
35
- const { generateUserTypes, loadConfig } = await import(
36
- pathToFileURL(resolve(__dirname, "dist", "cli", "lib.mjs")).href
37
- );
38
- const { config } = await loadConfig(configPath);
39
- await generateUserTypes({ config, configPath });
40
- return;
41
- } catch (error) {
42
- console.warn("⚠️ Failed to generate types from config:", error.message);
43
- // Fall through to create empty type definition
44
- }
45
- }
46
-
47
- // Create empty type definition file as fallback (in cwd, next to where config would be)
48
- const pluginTypesPath = resolve(cwd, "tailor.d.ts");
49
- const initialContent = `// This file is auto-generated by @tailor-platform/sdk
50
- // Do not edit this file manually
51
- // Regenerated automatically when running 'tailor-sdk apply' or 'tailor-sdk generate'
52
-
53
- declare module "@tailor-platform/sdk" {
54
- interface AttributeMap {}
55
- interface AttributeList {
56
- __tuple: string[];
29
+ if (!configPath || !existsSync(configPath)) {
30
+ console.log("⚠️ No tailor.config.ts found, skipping type generation");
31
+ return;
57
32
  }
58
- interface Env {}
59
- }
60
-
61
- export {};
62
- `;
63
33
 
64
34
  try {
65
- mkdirSync(dirname(pluginTypesPath), { recursive: true });
66
- writeFileSync(pluginTypesPath, initialContent);
67
- console.log(" Created initial type definitions");
35
+ const configDir = dirname(configPath);
36
+ process.chdir(configDir);
37
+ register("tsx", import.meta.url, { data: {} });
38
+
39
+ const { generateUserTypes, loadConfig } = await import(
40
+ pathToFileURL(resolve(__dirname, "dist", "cli", "lib.mjs")).href
41
+ );
42
+ const { config } = await loadConfig(configPath);
43
+ await generateUserTypes({ config, configPath });
68
44
  } catch (error) {
69
- console.error("Failed to create type definitions:", error.message);
70
- // Don't exit with error - this shouldn't break the installation
45
+ console.warn("⚠️ Failed to generate types from config:", error.message);
71
46
  }
72
47
  }
73
48