@tailor-platform/sdk 0.12.3 → 0.12.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.
@@ -992,7 +992,6 @@ declare class TailorDBType<const Fields extends Record<string, TailorDBField<any
992
992
  readonly fields: Fields;
993
993
  readonly _output: InferFieldsOutput<Fields>;
994
994
  _description?: string;
995
- readonly referenced: Record<string, [TailorDBType<any, any>, string]>;
996
995
  private _settings;
997
996
  private _indexes;
998
997
  private _permissions;
@@ -1122,6 +1121,10 @@ declare const IdPSchema: z.core.$ZodBranded<z.ZodObject<{
1122
1121
  cel: z.ZodString;
1123
1122
  }, z.core.$strip>]>;
1124
1123
  clients: z.ZodArray<z.ZodString>;
1124
+ lang: z.ZodOptional<z.ZodEnum<{
1125
+ en: "en";
1126
+ ja: "ja";
1127
+ }>>;
1125
1128
  }, z.core.$strip>, "IdPConfig">;
1126
1129
  //#endregion
1127
1130
  //#region src/parser/service/idp/types.d.ts
@@ -1145,6 +1148,7 @@ declare function defineIdp<const TClients extends string[]>(name: string, config
1145
1148
  readonly authorization: "insecure" | "loggedIn" | {
1146
1149
  cel: string;
1147
1150
  };
1151
+ readonly lang?: "en" | "ja" | undefined;
1148
1152
  readonly clients: TClients;
1149
1153
  } & IdpDefinitionBrand;
1150
1154
  type IdPExternalConfig = {
@@ -1426,4 +1430,4 @@ type Executor = z.infer<typeof ExecutorSchema>;
1426
1430
  type ExecutorInput = z.input<typeof ExecutorSchema>;
1427
1431
  //#endregion
1428
1432
  export { AllowedValues, AllowedValuesOutput, AppConfig, ArrayFieldOutput, AttributeList$1 as AttributeList, AttributeMap$1 as AttributeMap, AuthConfig, AuthExternalConfig, AuthOwnConfig, type AuthServiceInput, type BuiltinIdP, CodeGeneratorBase, Executor, ExecutorInput, ExecutorServiceConfig, ExecutorServiceInput, FieldMetadata, FieldOptions, FieldOutput, FunctionOperation, Generator, GqlOperation, type IDToken, IdPConfig, IdPExternalConfig, type IdProviderConfig, IncomingWebhookTrigger, InferFieldsOutput, type OAuth2Client, type OAuth2ClientGrantType, type OIDC, PermissionCondition, QueryType, RecordTrigger, Resolver, ResolverExecutedTrigger, ResolverExternalConfig, ResolverInput, ResolverServiceConfig, ResolverServiceInput, type SAML, type SCIMAttribute, type SCIMAttributeMapping, type SCIMAttributeType, type SCIMAuthorization, type SCIMConfig, type SCIMResource, ScheduleTriggerInput, StaticWebsiteConfig, TailorDBField, TailorDBInstance, TailorDBType, TailorDBTypeConfig, TailorField, TailorTypeGqlPermission, TailorTypePermission, TailorUser, type TenantProviderConfig, type UserAttributeKey, type UserAttributeListKey, type UserAttributeMap, type UsernameFieldKey, type ValueOperand, WebhookOperation, WorkflowServiceConfig, WorkflowServiceInput, db, defineAuth, defineConfig, defineGenerators, defineIdp, defineStaticWebSite, output, unauthenticatedTailorUser };
1429
- //# sourceMappingURL=types-BdwXWhOF.d.mts.map
1433
+ //# sourceMappingURL=types-CrOeSu4i.d.mts.map
@@ -1,7 +1,7 @@
1
1
  /// <reference path="./../../user-defined.d.ts" />
2
2
 
3
- import { TailorDBType, TailorField, TailorUser } from "../../types-BdwXWhOF.mjs";
4
- import { output } from "../../index-R8wrvOCv.mjs";
3
+ import { TailorDBType, TailorField, TailorUser } from "../../types-CrOeSu4i.mjs";
4
+ import { output } from "../../index-BjdZmtxR.mjs";
5
5
  import { StandardSchemaV1 } from "@standard-schema/spec";
6
6
 
7
7
  //#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": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "description": "Tailor Platform SDK - The SDK to work with Tailor Platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/configure/index.mjs",