@tailor-platform/sdk 1.4.0 → 1.4.1
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 +16 -0
- package/dist/cli/index.mjs +1 -1
- package/dist/cli/lib.d.mts +2 -1
- package/dist/cli/lib.mjs +1 -1
- package/dist/configure/index.d.mts +2 -2
- package/dist/{index-CTExbeYE.d.mts → index-lDsl6VDv.d.mts} +8 -3
- package/dist/{list-1cs_CGF8.mjs → list-CafRw3ao.mjs} +2 -2
- package/dist/{list-1cs_CGF8.mjs.map → list-CafRw3ao.mjs.map} +1 -1
- package/dist/{types-Yxg4lgU0.d.mts → types-BWzDv7TK.d.mts} +12 -17
- package/dist/utils/test/index.d.mts +2 -2
- package/package.json +2 -2
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/// <reference path="./user-defined.d.ts" />
|
|
2
|
-
import * as
|
|
2
|
+
import * as zod0 from "zod";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
import * as type_fest0 from "type-fest";
|
|
5
5
|
import { IsAny, NonEmptyObject } from "type-fest";
|
|
6
6
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
7
|
-
import * as
|
|
7
|
+
import * as zod_v4_core0 from "zod/v4/core";
|
|
8
8
|
|
|
9
9
|
//#region src/parser/service/tailordb/relation.d.ts
|
|
10
10
|
declare const relationTypes: {
|
|
@@ -324,11 +324,6 @@ type TailorUser = {
|
|
|
324
324
|
/** Represents an unauthenticated user in the Tailor platform. */
|
|
325
325
|
declare const unauthenticatedTailorUser: TailorUser;
|
|
326
326
|
//#endregion
|
|
327
|
-
//#region src/configure/types/env.d.ts
|
|
328
|
-
interface Env {}
|
|
329
|
-
/** Represents environment variables in the Tailor platform. */
|
|
330
|
-
type TailorEnv = keyof Env extends never ? Record<string, string> : Env;
|
|
331
|
-
//#endregion
|
|
332
327
|
//#region src/configure/services/tailordb/permission.d.ts
|
|
333
328
|
type TailorTypePermission<User extends object = InferredAttributeMap, Type extends object = object> = {
|
|
334
329
|
create: readonly ActionPermission<"record", User, Type, false>[];
|
|
@@ -1512,9 +1507,9 @@ type CodeGeneratorBase = Omit<z.output<typeof CodeGeneratorSchema>, "dependencie
|
|
|
1512
1507
|
};
|
|
1513
1508
|
//#endregion
|
|
1514
1509
|
//#region src/configure/config.d.ts
|
|
1515
|
-
interface AppConfig<Auth extends AuthConfig = AuthConfig, Idp extends IdPConfig[] = IdPConfig[], StaticWebsites extends StaticWebsiteConfig[] = StaticWebsiteConfig[], Env
|
|
1510
|
+
interface AppConfig<Auth extends AuthConfig = AuthConfig, Idp extends IdPConfig[] = IdPConfig[], StaticWebsites extends StaticWebsiteConfig[] = StaticWebsiteConfig[], Env extends Record<string, string | number | boolean> = Record<string, string | number | boolean>> {
|
|
1516
1511
|
name: string;
|
|
1517
|
-
env?: Env
|
|
1512
|
+
env?: Env;
|
|
1518
1513
|
cors?: string[];
|
|
1519
1514
|
allowedIpAddresses?: string[];
|
|
1520
1515
|
disableIntrospection?: boolean;
|
|
@@ -1551,12 +1546,12 @@ declare function defineGenerators(...configs: GeneratorConfig[]): (["@tailor-pla
|
|
|
1551
1546
|
id: string;
|
|
1552
1547
|
description: string;
|
|
1553
1548
|
dependencies: ("tailordb" | "resolver" | "executor")[];
|
|
1554
|
-
aggregate:
|
|
1555
|
-
processType?:
|
|
1556
|
-
processResolver?:
|
|
1557
|
-
processExecutor?:
|
|
1558
|
-
processTailorDBNamespace?:
|
|
1559
|
-
processResolverNamespace?:
|
|
1549
|
+
aggregate: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod0.ZodAny>;
|
|
1550
|
+
processType?: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut> | undefined;
|
|
1551
|
+
processResolver?: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut> | undefined;
|
|
1552
|
+
processExecutor?: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut> | undefined;
|
|
1553
|
+
processTailorDBNamespace?: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut> | undefined;
|
|
1554
|
+
processResolverNamespace?: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut> | undefined;
|
|
1560
1555
|
})[];
|
|
1561
1556
|
//#endregion
|
|
1562
1557
|
//#region src/parser/service/executor/schema.d.ts
|
|
@@ -1694,5 +1689,5 @@ type WorkflowOperation = z.infer<typeof WorkflowOperationSchema>;
|
|
|
1694
1689
|
type Executor = z.infer<typeof ExecutorSchema>;
|
|
1695
1690
|
type ExecutorInput = z.input<typeof ExecutorSchema>;
|
|
1696
1691
|
//#endregion
|
|
1697
|
-
export { TenantProviderConfig as $, AuthOwnConfig as A, BuiltinIdP as B, ResolverServiceConfig as C,
|
|
1698
|
-
//# sourceMappingURL=types-
|
|
1692
|
+
export { TenantProviderConfig as $, AuthOwnConfig as A, BuiltinIdP as B, ResolverServiceConfig as C, TailorFieldType as Ct, AuthConfig as D, ExecutorServiceInput as E, output as Et, db as F, OIDC as G, IdProviderConfig as H, AllowedValues as I, SCIMAttributeMapping as J, SAML as K, AllowedValuesOutput as L, TailorDBField as M, TailorDBInstance as N, AuthExternalConfig as O, TailorDBType as P, SCIMResource as Q, ParsedTailorDBType as R, ResolverExternalConfig as S, FieldOutput$1 as St, ExecutorServiceConfig as T, JsonCompatible as Tt, OAuth2ClientGrantType as U, IDToken as V, OAuth2ClientInput as W, SCIMAuthorization as X, SCIMAttributeType as Y, SCIMConfig as Z, StaticWebsiteConfig as _, Resolver as _t, IncomingWebhookTrigger as a, PermissionCondition as at, IdPExternalConfig as b, FieldMetadata as bt, ScheduleTriggerInput as c, unsafeAllowAllGqlPermission as ct, AppConfig as d, AttributeMap as dt, UserAttributeKey as et, defineConfig as f, TailorUser as ft, WorkflowServiceInput as g, QueryType as gt, WorkflowServiceConfig as h, TailorField as ht, GqlOperation as i, ValueOperand as it, defineAuth as j, AuthInvoker as k, WebhookOperation as l, unsafeAllowAllTypePermission as lt, Generator as m, TailorAnyField as mt, ExecutorInput as n, UserAttributeMap as nt, RecordTrigger as o, TailorTypeGqlPermission as ot, defineGenerators as p, unauthenticatedTailorUser as pt, SCIMAttribute as q, FunctionOperation as r, UsernameFieldKey as rt, ResolverExecutedTrigger as s, TailorTypePermission as st, Executor as t, UserAttributeListKey as tt, WorkflowOperation as u, AttributeList as ut, defineStaticWebSite as v, ResolverInput as vt, ResolverServiceInput as w, InferFieldsOutput as wt, defineIdp as x, FieldOptions as xt, IdPConfig as y, ArrayFieldOutput as yt, AuthServiceInput as z };
|
|
1693
|
+
//# sourceMappingURL=types-BWzDv7TK.d.mts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference path="./../../user-defined.d.ts" />
|
|
2
|
-
import { P as TailorDBType,
|
|
3
|
-
import { n as output } from "../../index-
|
|
2
|
+
import { P as TailorDBType, ht as TailorField } from "../../types-BWzDv7TK.mjs";
|
|
3
|
+
import { n as output } from "../../index-lDsl6VDv.mjs";
|
|
4
4
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
5
5
|
|
|
6
6
|
//#region src/utils/test/index.d.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tailor-platform/sdk",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Tailor Platform SDK - The SDK to work with Tailor Platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"@types/madge": "5.0.3",
|
|
80
80
|
"@types/mime-types": "3.0.1",
|
|
81
81
|
"@types/node": "24.10.9",
|
|
82
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
82
|
+
"@typescript/native-preview": "7.0.0-dev.20260118.1",
|
|
83
83
|
"@vitest/coverage-v8": "4.0.17",
|
|
84
84
|
"cross-env": "10.1.0",
|
|
85
85
|
"eslint": "9.39.2",
|