@tailor-platform/sdk 0.23.0 → 0.23.2
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 +22 -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-QGMXFOXH.d.mts → index-CANeLBB6.d.mts} +2 -2
- package/dist/{list-DLqfJ2jD.mjs → list-BvYJeydE.mjs} +75 -69
- package/dist/{list-DLqfJ2jD.mjs.map → list-BvYJeydE.mjs.map} +1 -1
- package/dist/{types-ClG0gN3S.d.mts → types-CgO-wV9v.d.mts} +17 -9
- package/dist/utils/test/index.d.mts +2 -2
- package/package.json +1 -1
|
@@ -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/configure/types/helpers.d.ts
|
|
10
10
|
type Prettify<T$1> = { [K in keyof T$1 as string extends K ? never : K]: T$1[K] } & {};
|
|
@@ -516,6 +516,13 @@ type AttributeListValue<User extends TailorDBInstance, Key extends UserAttribute
|
|
|
516
516
|
type AttributeListToTuple<User extends TailorDBInstance, AttributeList$1 extends readonly UserAttributeListKey<User>[]> = { [Index in keyof AttributeList$1]: AttributeList$1[Index] extends UserAttributeListKey<User> ? AttributeListValue<User, AttributeList$1[Index]> : never };
|
|
517
517
|
type AttributeMapSelectedKeys<User extends TailorDBInstance, AttributeMap$1 extends UserAttributeMap<User>> = Extract<{ [K in keyof AttributeMap$1]-?: undefined extends AttributeMap$1[K] ? never : K }[keyof AttributeMap$1], UserAttributeKey<User>>;
|
|
518
518
|
type UserProfile<User extends TailorDBInstance, AttributeMap$1 extends UserAttributeMap<User>, AttributeList$1 extends UserAttributeListKey<User>[]> = {
|
|
519
|
+
/**
|
|
520
|
+
* TailorDB namespace where the user type is defined.
|
|
521
|
+
*
|
|
522
|
+
* Usually auto-resolved, so you don't need to specify this.
|
|
523
|
+
* Required only when multiple TailorDBs exist and the type is in an external TailorDB.
|
|
524
|
+
*/
|
|
525
|
+
namespace?: string;
|
|
519
526
|
type: User;
|
|
520
527
|
usernameField: UsernameFieldKey<User>;
|
|
521
528
|
attributes?: DisallowExtraKeys<AttributeMap$1, UserAttributeKey<User>>;
|
|
@@ -562,6 +569,7 @@ declare function defineAuth<const Name extends string, const User extends Tailor
|
|
|
562
569
|
readonly machineUserName: M;
|
|
563
570
|
};
|
|
564
571
|
readonly userProfile?: {
|
|
572
|
+
namespace?: string;
|
|
565
573
|
type: User;
|
|
566
574
|
usernameField: UsernameFieldKey<User>;
|
|
567
575
|
attributes?: (AttributeMap$1 & { [K in Exclude<keyof AttributeMap$1, UserAttributeKey<User>>]: never }) | undefined;
|
|
@@ -1409,12 +1417,12 @@ declare function defineGenerators(...configs: GeneratorConfig[]): (["@tailor-pla
|
|
|
1409
1417
|
}] | {
|
|
1410
1418
|
id: string;
|
|
1411
1419
|
description: string;
|
|
1412
|
-
processType:
|
|
1413
|
-
processResolver:
|
|
1414
|
-
processExecutor:
|
|
1415
|
-
aggregate:
|
|
1416
|
-
processTailorDBNamespace?:
|
|
1417
|
-
processResolverNamespace?:
|
|
1420
|
+
processType: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut>;
|
|
1421
|
+
processResolver: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut>;
|
|
1422
|
+
processExecutor: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut>;
|
|
1423
|
+
aggregate: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod0.ZodAny>;
|
|
1424
|
+
processTailorDBNamespace?: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut> | undefined;
|
|
1425
|
+
processResolverNamespace?: zod_v4_core0.$InferInnerFunctionType<zod_v4_core0.$ZodFunctionArgs, zod_v4_core0.$ZodFunctionOut> | undefined;
|
|
1418
1426
|
})[];
|
|
1419
1427
|
//#endregion
|
|
1420
1428
|
//#region src/parser/service/executor/schema.d.ts
|
|
@@ -1553,4 +1561,4 @@ type Executor = z.infer<typeof ExecutorSchema>;
|
|
|
1553
1561
|
type ExecutorInput = z.input<typeof ExecutorSchema>;
|
|
1554
1562
|
//#endregion
|
|
1555
1563
|
export { SCIMAttribute as $, TailorDBType as A, AuthConfig as B, ResolverExternalConfig as C, InferFieldsOutput as Ct, ExecutorServiceInput as D, ExecutorServiceConfig as E, PermissionCondition as F, AuthServiceInput as G, AuthInvoker as H, TailorTypeGqlPermission as I, IdProviderConfig as J, BuiltinIdP as K, TailorTypePermission as L, AllowedValues as M, AllowedValuesOutput as N, TailorDBField as O, ParsedTailorDBType as P, SAML as Q, unsafeAllowAllGqlPermission as R, defineIdp as S, FieldOutput$1 as St, ResolverServiceInput as T, output as Tt, AuthOwnConfig as U, AuthExternalConfig as V, defineAuth as W, OAuth2ClientInput as X, OAuth2ClientGrantType as Y, OIDC as Z, WorkflowServiceInput as _, Resolver as _t, IncomingWebhookTrigger as a, TenantProviderConfig as at, IdPConfig as b, FieldMetadata as bt, ScheduleTriggerInput as c, UserAttributeMap as ct, AppConfig as d, AttributeList as dt, SCIMAttributeMapping as et, defineConfig as f, AttributeMap as ft, WorkflowServiceConfig as g, QueryType as gt, Generator as h, TailorField as ht, GqlOperation as i, SCIMResource as it, db as j, TailorDBInstance as k, WebhookOperation as l, UsernameFieldKey as lt, CodeGeneratorBase as m, unauthenticatedTailorUser as mt, ExecutorInput as n, SCIMAuthorization as nt, RecordTrigger as o, UserAttributeKey as ot, defineGenerators as p, TailorUser as pt, IDToken as q, FunctionOperation as r, SCIMConfig as rt, ResolverExecutedTrigger as s, UserAttributeListKey as st, Executor as t, SCIMAttributeType as tt, WorkflowOperation as u, ValueOperand as ut, StaticWebsiteConfig as v, ResolverInput as vt, ResolverServiceConfig as w, JsonCompatible as wt, IdPExternalConfig as x, FieldOptions as xt, defineStaticWebSite as y, ArrayFieldOutput as yt, unsafeAllowAllTypePermission as z };
|
|
1556
|
-
//# sourceMappingURL=types-
|
|
1564
|
+
//# sourceMappingURL=types-CgO-wV9v.d.mts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference path="./../../user-defined.d.ts" />
|
|
2
|
-
import { A as TailorDBType, ht as TailorField } from "../../types-
|
|
3
|
-
import { n as output } from "../../index-
|
|
2
|
+
import { A as TailorDBType, ht as TailorField } from "../../types-CgO-wV9v.mjs";
|
|
3
|
+
import { n as output } from "../../index-CANeLBB6.mjs";
|
|
4
4
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
5
5
|
|
|
6
6
|
//#region src/utils/test/index.d.ts
|