@tailor-platform/sdk 1.16.0 → 1.17.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/CHANGELOG.md +30 -0
- package/dist/application-D5ZEr4zk.mjs +4 -0
- package/dist/{application-DQ2F9UmJ.mjs → application-DYfVZVPT.mjs} +4806 -67
- package/dist/application-DYfVZVPT.mjs.map +1 -0
- package/dist/cli/index.mjs +3 -3
- package/dist/cli/lib.d.mts +147 -29
- package/dist/cli/lib.mjs +3 -3
- package/dist/cli/lib.mjs.map +1 -1
- package/dist/configure/index.d.mts +3 -3
- package/dist/configure/index.mjs +46 -2
- package/dist/configure/index.mjs.map +1 -1
- package/dist/{index-1V_2bvT4.d.mts → index-qQXpN674.d.mts} +136 -11
- package/dist/job-CULA2Pvf.mjs +51 -0
- package/dist/job-CULA2Pvf.mjs.map +1 -0
- package/dist/plugin/index.d.mts +1 -1
- package/dist/{schema-DRYB-nzA.mjs → schema-R5TxC5Pn.mjs} +143 -1
- package/dist/schema-R5TxC5Pn.mjs.map +1 -0
- package/dist/{index-Ds8lbSJb.d.mts → types-BeNtD-fA.d.mts} +88 -115
- package/dist/{types-_sYDzqHG.d.mts → types-DzvazVmg.d.mts} +169 -11
- package/dist/update-DQKCUNmr.mjs +10701 -0
- package/dist/update-DQKCUNmr.mjs.map +1 -0
- package/dist/utils/test/index.d.mts +3 -3
- package/dist/utils/test/index.mjs +1 -1
- package/package.json +1 -1
- package/postinstall.mjs +2 -2
- package/dist/application-CNpRSiWJ.mjs +0 -4
- package/dist/application-DQ2F9UmJ.mjs.map +0 -1
- package/dist/job-XiwGyFJt.mjs +0 -21
- package/dist/job-XiwGyFJt.mjs.map +0 -1
- package/dist/schema-DRYB-nzA.mjs.map +0 -1
- package/dist/update-C5jgLxpK.mjs +0 -15436
- package/dist/update-C5jgLxpK.mjs.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference path="./../../user-defined.d.ts" />
|
|
2
|
-
import { M as TailorDBType, st as TailorField } from "../../types-
|
|
3
|
-
import "../../
|
|
4
|
-
import { G as WORKFLOW_TEST_ENV_KEY, n as output } from "../../index-
|
|
2
|
+
import { M as TailorDBType, st as TailorField } from "../../types-DzvazVmg.mjs";
|
|
3
|
+
import "../../types-BeNtD-fA.mjs";
|
|
4
|
+
import { G as WORKFLOW_TEST_ENV_KEY, n as output } from "../../index-qQXpN674.mjs";
|
|
5
5
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
6
6
|
|
|
7
7
|
//#region src/utils/test/index.d.ts
|
package/package.json
CHANGED
package/postinstall.mjs
CHANGED
|
@@ -44,10 +44,10 @@ async function install() {
|
|
|
44
44
|
register("tsx", import.meta.url, { data: {} });
|
|
45
45
|
|
|
46
46
|
const { generateUserTypes, loadConfig } = await import(
|
|
47
|
-
pathToFileURL(resolve(__dirname, "dist", "cli", "
|
|
47
|
+
pathToFileURL(resolve(__dirname, "dist", "cli", "lib.mjs")).href
|
|
48
48
|
);
|
|
49
49
|
const { config } = await loadConfig(configPath);
|
|
50
|
-
await generateUserTypes(config, configPath);
|
|
50
|
+
await generateUserTypes({ config, configPath });
|
|
51
51
|
return;
|
|
52
52
|
} catch (error) {
|
|
53
53
|
console.warn("⚠️ Failed to generate types from config:", error.message);
|