@tailor-platform/sdk 0.8.5 → 0.9.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 +41 -0
- package/dist/cli/api.d.mts +12 -11
- package/dist/cli/api.mjs +1 -1
- package/dist/cli/index.mjs +4 -5
- package/dist/configure/index.d.mts +2 -2
- package/dist/{index-Bwrm8M8p.d.mts → index-DHpKRtq3.d.mts} +1 -1
- package/dist/{token-B9zkxSMS.mjs → token-DwKmpi9i.mjs} +726 -301
- package/dist/{types-BP7g8Bh3.d.mts → types-CPcmGK_X.d.mts} +8 -8
- package/dist/utils/test/index.d.mts +2 -2
- package/docs/cli-reference.md +1 -0
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference path="./plugin-generated.d.ts" />
|
|
2
2
|
|
|
3
|
-
import * as
|
|
3
|
+
import * as zod34 from "zod";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
6
6
|
import * as type_fest0 from "type-fest";
|
|
7
7
|
import { IsAny, NonEmptyObject } from "type-fest";
|
|
8
|
-
import * as
|
|
8
|
+
import * as zod_v4_core50 from "zod/v4/core";
|
|
9
9
|
|
|
10
10
|
//#region src/configure/types/helpers.d.ts
|
|
11
11
|
type Prettify<T> = { [K in keyof T as string extends K ? never : K]: T[K] } & {};
|
|
@@ -1277,12 +1277,12 @@ declare function defineGenerators(...configs: GeneratorConfig[]): (["@tailor-pla
|
|
|
1277
1277
|
}] | {
|
|
1278
1278
|
id: string;
|
|
1279
1279
|
description: string;
|
|
1280
|
-
processType:
|
|
1281
|
-
processResolver:
|
|
1282
|
-
processExecutor:
|
|
1283
|
-
aggregate:
|
|
1284
|
-
processTailorDBNamespace?:
|
|
1285
|
-
processResolverNamespace?:
|
|
1280
|
+
processType: zod_v4_core50.$InferInnerFunctionType<zod_v4_core50.$ZodFunctionArgs, zod_v4_core50.$ZodFunctionOut>;
|
|
1281
|
+
processResolver: zod_v4_core50.$InferInnerFunctionType<zod_v4_core50.$ZodFunctionArgs, zod_v4_core50.$ZodFunctionOut>;
|
|
1282
|
+
processExecutor: zod_v4_core50.$InferInnerFunctionType<zod_v4_core50.$ZodFunctionArgs, zod_v4_core50.$ZodFunctionOut>;
|
|
1283
|
+
aggregate: zod_v4_core50.$InferInnerFunctionType<zod_v4_core50.$ZodFunctionArgs, zod34.ZodAny>;
|
|
1284
|
+
processTailorDBNamespace?: zod_v4_core50.$InferInnerFunctionType<zod_v4_core50.$ZodFunctionArgs, zod_v4_core50.$ZodFunctionOut> | undefined;
|
|
1285
|
+
processResolverNamespace?: zod_v4_core50.$InferInnerFunctionType<zod_v4_core50.$ZodFunctionArgs, zod_v4_core50.$ZodFunctionOut> | undefined;
|
|
1286
1286
|
})[];
|
|
1287
1287
|
//#endregion
|
|
1288
1288
|
//#region src/parser/service/executor/schema.d.ts
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference path="./../../plugin-generated.d.ts" />
|
|
2
2
|
|
|
3
|
-
import { TailorDBType, TailorField, TailorUser } from "../../types-
|
|
4
|
-
import { output } from "../../index-
|
|
3
|
+
import { TailorDBType, TailorField, TailorUser } from "../../types-CPcmGK_X.mjs";
|
|
4
|
+
import { output } from "../../index-DHpKRtq3.mjs";
|
|
5
5
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
6
6
|
|
|
7
7
|
//#region src/utils/test/index.d.ts
|
package/docs/cli-reference.md
CHANGED
|
@@ -69,6 +69,7 @@ tailor-sdk apply [options]
|
|
|
69
69
|
- `-p, --profile` - Workspace profile to use
|
|
70
70
|
- `-c, --config` - Path to the SDK config file (default: `tailor.config.ts`)
|
|
71
71
|
- `-d, --dryRun` - Run the command without making any changes
|
|
72
|
+
- `-y, --yes` - Skip confirmation prompt
|
|
72
73
|
|
|
73
74
|
### show
|
|
74
75
|
|