authhero 0.289.0 → 0.290.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.
@@ -643,6 +643,7 @@ export declare const clientInsertSchema: z.ZodObject<{
643
643
  web_origins: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
644
644
  client_aliases: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
645
645
  allowed_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
646
+ connections: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
646
647
  allowed_logout_urls: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
647
648
  session_transfer: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
648
649
  oidc_logout: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
@@ -715,6 +716,7 @@ export declare const clientInsertSchema: z.ZodObject<{
715
716
  web_origins?: string[] | undefined;
716
717
  client_aliases?: string[] | undefined;
717
718
  allowed_clients?: string[] | undefined;
719
+ connections?: string[] | undefined;
718
720
  allowed_logout_urls?: string[] | undefined;
719
721
  session_transfer?: Record<string, any> | undefined;
720
722
  oidc_logout?: Record<string, any> | undefined;
@@ -756,6 +758,7 @@ export declare const clientInsertSchema: z.ZodObject<{
756
758
  web_origins?: string[] | undefined;
757
759
  client_aliases?: string[] | undefined;
758
760
  allowed_clients?: string[] | undefined;
761
+ connections?: string[] | undefined;
759
762
  allowed_logout_urls?: string[] | undefined;
760
763
  session_transfer?: Record<string, any> | undefined;
761
764
  oidc_logout?: Record<string, any> | undefined;
@@ -830,6 +833,7 @@ export declare const clientSchema: z.ZodObject<{
830
833
  web_origins: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
831
834
  client_aliases: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
832
835
  allowed_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
836
+ connections: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
833
837
  allowed_logout_urls: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
834
838
  session_transfer: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
835
839
  oidc_logout: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
@@ -906,6 +910,7 @@ export declare const clientSchema: z.ZodObject<{
906
910
  web_origins?: string[] | undefined;
907
911
  client_aliases?: string[] | undefined;
908
912
  allowed_clients?: string[] | undefined;
913
+ connections?: string[] | undefined;
909
914
  allowed_logout_urls?: string[] | undefined;
910
915
  session_transfer?: Record<string, any> | undefined;
911
916
  oidc_logout?: Record<string, any> | undefined;
@@ -949,6 +954,7 @@ export declare const clientSchema: z.ZodObject<{
949
954
  web_origins?: string[] | undefined;
950
955
  client_aliases?: string[] | undefined;
951
956
  allowed_clients?: string[] | undefined;
957
+ connections?: string[] | undefined;
952
958
  allowed_logout_urls?: string[] | undefined;
953
959
  session_transfer?: Record<string, any> | undefined;
954
960
  oidc_logout?: Record<string, any> | undefined;
@@ -8953,6 +8959,41 @@ declare const LegacyClientSchema: z.ZodObject<{
8953
8959
  global: boolean;
8954
8960
  is_first_party: boolean;
8955
8961
  oidc_conformant: boolean;
8962
+ connections: {
8963
+ options: {
8964
+ provider?: string | undefined;
8965
+ client_id?: string | undefined;
8966
+ client_secret?: string | undefined;
8967
+ scope?: string | undefined;
8968
+ kid?: string | undefined;
8969
+ team_id?: string | undefined;
8970
+ realms?: string | undefined;
8971
+ authentication_method?: string | undefined;
8972
+ app_secret?: string | undefined;
8973
+ authorization_endpoint?: string | undefined;
8974
+ token_endpoint?: string | undefined;
8975
+ userinfo_endpoint?: string | undefined;
8976
+ jwks_uri?: string | undefined;
8977
+ discovery_url?: string | undefined;
8978
+ issuer?: string | undefined;
8979
+ from?: string | undefined;
8980
+ twilio_sid?: string | undefined;
8981
+ twilio_token?: string | undefined;
8982
+ icon_url?: string | undefined;
8983
+ };
8984
+ created_at: string;
8985
+ updated_at: string;
8986
+ name: string;
8987
+ strategy: string;
8988
+ id?: string | undefined;
8989
+ response_type?: AuthorizationResponseType | undefined;
8990
+ response_mode?: AuthorizationResponseMode | undefined;
8991
+ display_name?: string | undefined;
8992
+ enabled_clients?: string[] | undefined;
8993
+ is_domain_connection?: boolean | undefined;
8994
+ show_as_button?: boolean | undefined;
8995
+ metadata?: Record<string, any> | undefined;
8996
+ }[];
8956
8997
  sso: boolean;
8957
8998
  sso_disabled: boolean;
8958
8999
  cross_origin_authentication: boolean;
@@ -9060,41 +9101,6 @@ declare const LegacyClientSchema: z.ZodObject<{
9060
9101
  pushed_authorization_requests_supported?: boolean | undefined;
9061
9102
  authorization_response_iss_parameter_supported?: boolean | undefined;
9062
9103
  };
9063
- connections: {
9064
- options: {
9065
- provider?: string | undefined;
9066
- client_id?: string | undefined;
9067
- client_secret?: string | undefined;
9068
- scope?: string | undefined;
9069
- kid?: string | undefined;
9070
- team_id?: string | undefined;
9071
- realms?: string | undefined;
9072
- authentication_method?: string | undefined;
9073
- app_secret?: string | undefined;
9074
- authorization_endpoint?: string | undefined;
9075
- token_endpoint?: string | undefined;
9076
- userinfo_endpoint?: string | undefined;
9077
- jwks_uri?: string | undefined;
9078
- discovery_url?: string | undefined;
9079
- issuer?: string | undefined;
9080
- from?: string | undefined;
9081
- twilio_sid?: string | undefined;
9082
- twilio_token?: string | undefined;
9083
- icon_url?: string | undefined;
9084
- };
9085
- created_at: string;
9086
- updated_at: string;
9087
- name: string;
9088
- strategy: string;
9089
- id?: string | undefined;
9090
- response_type?: AuthorizationResponseType | undefined;
9091
- response_mode?: AuthorizationResponseMode | undefined;
9092
- display_name?: string | undefined;
9093
- enabled_clients?: string[] | undefined;
9094
- is_domain_connection?: boolean | undefined;
9095
- show_as_button?: boolean | undefined;
9096
- metadata?: Record<string, any> | undefined;
9097
- }[];
9098
9104
  description?: string | undefined;
9099
9105
  refresh_token?: Record<string, any> | undefined;
9100
9106
  client_secret?: string | undefined;
@@ -9135,6 +9141,41 @@ declare const LegacyClientSchema: z.ZodObject<{
9135
9141
  updated_at: string;
9136
9142
  name: string;
9137
9143
  client_id: string;
9144
+ connections: {
9145
+ created_at: string;
9146
+ updated_at: string;
9147
+ name: string;
9148
+ strategy: string;
9149
+ options?: {
9150
+ provider?: string | undefined;
9151
+ client_id?: string | undefined;
9152
+ client_secret?: string | undefined;
9153
+ scope?: string | undefined;
9154
+ kid?: string | undefined;
9155
+ team_id?: string | undefined;
9156
+ realms?: string | undefined;
9157
+ authentication_method?: string | undefined;
9158
+ app_secret?: string | undefined;
9159
+ authorization_endpoint?: string | undefined;
9160
+ token_endpoint?: string | undefined;
9161
+ userinfo_endpoint?: string | undefined;
9162
+ jwks_uri?: string | undefined;
9163
+ discovery_url?: string | undefined;
9164
+ issuer?: string | undefined;
9165
+ from?: string | undefined;
9166
+ twilio_sid?: string | undefined;
9167
+ twilio_token?: string | undefined;
9168
+ icon_url?: string | undefined;
9169
+ } | undefined;
9170
+ id?: string | undefined;
9171
+ response_type?: AuthorizationResponseType | undefined;
9172
+ response_mode?: AuthorizationResponseMode | undefined;
9173
+ display_name?: string | undefined;
9174
+ enabled_clients?: string[] | undefined;
9175
+ is_domain_connection?: boolean | undefined;
9176
+ show_as_button?: boolean | undefined;
9177
+ metadata?: Record<string, any> | undefined;
9178
+ }[];
9138
9179
  tenant: {
9139
9180
  created_at: string | null;
9140
9181
  updated_at: string | null;
@@ -9236,41 +9277,6 @@ declare const LegacyClientSchema: z.ZodObject<{
9236
9277
  pushed_authorization_requests_supported?: boolean | undefined;
9237
9278
  authorization_response_iss_parameter_supported?: boolean | undefined;
9238
9279
  };
9239
- connections: {
9240
- created_at: string;
9241
- updated_at: string;
9242
- name: string;
9243
- strategy: string;
9244
- options?: {
9245
- provider?: string | undefined;
9246
- client_id?: string | undefined;
9247
- client_secret?: string | undefined;
9248
- scope?: string | undefined;
9249
- kid?: string | undefined;
9250
- team_id?: string | undefined;
9251
- realms?: string | undefined;
9252
- authentication_method?: string | undefined;
9253
- app_secret?: string | undefined;
9254
- authorization_endpoint?: string | undefined;
9255
- token_endpoint?: string | undefined;
9256
- userinfo_endpoint?: string | undefined;
9257
- jwks_uri?: string | undefined;
9258
- discovery_url?: string | undefined;
9259
- issuer?: string | undefined;
9260
- from?: string | undefined;
9261
- twilio_sid?: string | undefined;
9262
- twilio_token?: string | undefined;
9263
- icon_url?: string | undefined;
9264
- } | undefined;
9265
- id?: string | undefined;
9266
- response_type?: AuthorizationResponseType | undefined;
9267
- response_mode?: AuthorizationResponseMode | undefined;
9268
- display_name?: string | undefined;
9269
- enabled_clients?: string[] | undefined;
9270
- is_domain_connection?: boolean | undefined;
9271
- show_as_button?: boolean | undefined;
9272
- metadata?: Record<string, any> | undefined;
9273
- }[];
9274
9280
  description?: string | undefined;
9275
9281
  refresh_token?: Record<string, any> | undefined;
9276
9282
  global?: boolean | undefined;
@@ -10060,7 +10066,11 @@ export type FormControl = z.infer<typeof formControlSchema>;
10060
10066
  export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type", [
10061
10067
  z.ZodObject<{
10062
10068
  id: z.ZodString;
10069
+ order: z.ZodOptional<z.ZodNumber>;
10070
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10071
+ } & {
10063
10072
  category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10073
+ } & {
10064
10074
  type: z.ZodLiteral<"RICH_TEXT">;
10065
10075
  config: z.ZodObject<{
10066
10076
  content: z.ZodString;
@@ -10069,8 +10079,6 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10069
10079
  }, {
10070
10080
  content: string;
10071
10081
  }>;
10072
- order: z.ZodOptional<z.ZodNumber>;
10073
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10074
10082
  }, "strip", z.ZodTypeAny, {
10075
10083
  type: "RICH_TEXT";
10076
10084
  id: string;
@@ -10090,9 +10098,15 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10090
10098
  order?: number | undefined;
10091
10099
  visible?: boolean | undefined;
10092
10100
  }>,
10093
- z.ZodObject<{
10101
+ z.ZodObject<Omit<{
10094
10102
  id: z.ZodString;
10103
+ order: z.ZodOptional<z.ZodNumber>;
10104
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10105
+ } & {
10095
10106
  category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10107
+ required: z.ZodOptional<z.ZodBoolean>;
10108
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10109
+ }, "sensitive"> & {
10096
10110
  type: z.ZodLiteral<"LEGAL">;
10097
10111
  config: z.ZodObject<{
10098
10112
  text: z.ZodString;
@@ -10104,9 +10118,6 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10104
10118
  text: string;
10105
10119
  html?: boolean | undefined;
10106
10120
  }>;
10107
- required: z.ZodOptional<z.ZodBoolean>;
10108
- order: z.ZodOptional<z.ZodNumber>;
10109
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10110
10121
  }, "strip", z.ZodTypeAny, {
10111
10122
  type: "LEGAL";
10112
10123
  id: string;
@@ -10132,7 +10143,13 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10132
10143
  }>,
10133
10144
  z.ZodObject<{
10134
10145
  id: z.ZodString;
10146
+ order: z.ZodOptional<z.ZodNumber>;
10147
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10148
+ } & {
10135
10149
  category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10150
+ required: z.ZodOptional<z.ZodBoolean>;
10151
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10152
+ } & {
10136
10153
  type: z.ZodLiteral<"TEXT">;
10137
10154
  config: z.ZodObject<{
10138
10155
  placeholder: z.ZodOptional<z.ZodString>;
@@ -10144,10 +10161,6 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10144
10161
  placeholder?: string | undefined;
10145
10162
  multiline?: boolean | undefined;
10146
10163
  }>;
10147
- required: z.ZodOptional<z.ZodBoolean>;
10148
- sensitive: z.ZodOptional<z.ZodBoolean>;
10149
- order: z.ZodOptional<z.ZodNumber>;
10150
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10151
10164
  }, "strip", z.ZodTypeAny, {
10152
10165
  type: "TEXT";
10153
10166
  id: string;
@@ -10175,7 +10188,11 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10175
10188
  }>,
10176
10189
  z.ZodObject<{
10177
10190
  id: z.ZodString;
10191
+ order: z.ZodOptional<z.ZodNumber>;
10192
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10193
+ } & {
10178
10194
  category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10195
+ } & {
10179
10196
  type: z.ZodLiteral<"NEXT_BUTTON">;
10180
10197
  config: z.ZodObject<{
10181
10198
  text: z.ZodOptional<z.ZodString>;
@@ -10184,8 +10201,6 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10184
10201
  }, {
10185
10202
  text?: string | undefined;
10186
10203
  }>;
10187
- order: z.ZodOptional<z.ZodNumber>;
10188
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10189
10204
  }, "strip", z.ZodTypeAny, {
10190
10205
  type: "NEXT_BUTTON";
10191
10206
  id: string;
@@ -10204,34 +10219,169 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10204
10219
  category?: "BLOCK" | undefined;
10205
10220
  order?: number | undefined;
10206
10221
  visible?: boolean | undefined;
10207
- }>
10208
- ]>;
10209
- export type FormNodeComponent = z.infer<typeof formNodeComponentDefinition>;
10210
- /**
10211
- * Schema for forms (flow-based, matches new JSON structure)
10212
- */
10213
- export declare const formInsertSchema: z.ZodObject<{
10214
- name: z.ZodString;
10215
- messages: z.ZodOptional<z.ZodObject<{
10216
- errors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10217
- custom: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10222
+ }>,
10223
+ z.ZodObject<{
10224
+ id: z.ZodString;
10225
+ order: z.ZodOptional<z.ZodNumber>;
10226
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10227
+ } & {
10228
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10229
+ required: z.ZodOptional<z.ZodBoolean>;
10230
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10231
+ } & {
10232
+ type: z.ZodLiteral<"EMAIL">;
10233
+ config: z.ZodObject<{
10234
+ label: z.ZodOptional<z.ZodString>;
10235
+ placeholder: z.ZodOptional<z.ZodString>;
10236
+ }, "strip", z.ZodTypeAny, {
10237
+ label?: string | undefined;
10238
+ placeholder?: string | undefined;
10239
+ }, {
10240
+ label?: string | undefined;
10241
+ placeholder?: string | undefined;
10242
+ }>;
10218
10243
  }, "strip", z.ZodTypeAny, {
10219
- custom?: Record<string, any> | undefined;
10220
- errors?: Record<string, any> | undefined;
10244
+ type: "EMAIL";
10245
+ id: string;
10246
+ config: {
10247
+ label?: string | undefined;
10248
+ placeholder?: string | undefined;
10249
+ };
10250
+ visible: boolean;
10251
+ required?: boolean | undefined;
10252
+ category?: "FIELD" | undefined;
10253
+ sensitive?: boolean | undefined;
10254
+ order?: number | undefined;
10221
10255
  }, {
10222
- custom?: Record<string, any> | undefined;
10223
- errors?: Record<string, any> | undefined;
10224
- }>>;
10225
- languages: z.ZodOptional<z.ZodObject<{
10226
- primary: z.ZodOptional<z.ZodString>;
10227
- default: z.ZodOptional<z.ZodString>;
10256
+ type: "EMAIL";
10257
+ id: string;
10258
+ config: {
10259
+ label?: string | undefined;
10260
+ placeholder?: string | undefined;
10261
+ };
10262
+ required?: boolean | undefined;
10263
+ category?: "FIELD" | undefined;
10264
+ sensitive?: boolean | undefined;
10265
+ order?: number | undefined;
10266
+ visible?: boolean | undefined;
10267
+ }>,
10268
+ z.ZodObject<{
10269
+ id: z.ZodString;
10270
+ order: z.ZodOptional<z.ZodNumber>;
10271
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10272
+ } & {
10273
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10274
+ required: z.ZodOptional<z.ZodBoolean>;
10275
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10276
+ } & {
10277
+ type: z.ZodLiteral<"NUMBER">;
10278
+ config: z.ZodObject<{
10279
+ label: z.ZodOptional<z.ZodString>;
10280
+ placeholder: z.ZodOptional<z.ZodString>;
10281
+ }, "strip", z.ZodTypeAny, {
10282
+ label?: string | undefined;
10283
+ placeholder?: string | undefined;
10284
+ }, {
10285
+ label?: string | undefined;
10286
+ placeholder?: string | undefined;
10287
+ }>;
10228
10288
  }, "strip", z.ZodTypeAny, {
10229
- default?: string | undefined;
10230
- primary?: string | undefined;
10231
- }, {
10232
- default?: string | undefined;
10233
- primary?: string | undefined;
10234
- }>>;
10289
+ type: "NUMBER";
10290
+ id: string;
10291
+ config: {
10292
+ label?: string | undefined;
10293
+ placeholder?: string | undefined;
10294
+ };
10295
+ visible: boolean;
10296
+ required?: boolean | undefined;
10297
+ category?: "FIELD" | undefined;
10298
+ sensitive?: boolean | undefined;
10299
+ order?: number | undefined;
10300
+ }, {
10301
+ type: "NUMBER";
10302
+ id: string;
10303
+ config: {
10304
+ label?: string | undefined;
10305
+ placeholder?: string | undefined;
10306
+ };
10307
+ required?: boolean | undefined;
10308
+ category?: "FIELD" | undefined;
10309
+ sensitive?: boolean | undefined;
10310
+ order?: number | undefined;
10311
+ visible?: boolean | undefined;
10312
+ }>,
10313
+ z.ZodObject<{
10314
+ id: z.ZodString;
10315
+ order: z.ZodOptional<z.ZodNumber>;
10316
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10317
+ } & {
10318
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10319
+ required: z.ZodOptional<z.ZodBoolean>;
10320
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10321
+ } & {
10322
+ type: z.ZodLiteral<"PHONE">;
10323
+ config: z.ZodObject<{
10324
+ label: z.ZodOptional<z.ZodString>;
10325
+ placeholder: z.ZodOptional<z.ZodString>;
10326
+ }, "strip", z.ZodTypeAny, {
10327
+ label?: string | undefined;
10328
+ placeholder?: string | undefined;
10329
+ }, {
10330
+ label?: string | undefined;
10331
+ placeholder?: string | undefined;
10332
+ }>;
10333
+ }, "strip", z.ZodTypeAny, {
10334
+ type: "PHONE";
10335
+ id: string;
10336
+ config: {
10337
+ label?: string | undefined;
10338
+ placeholder?: string | undefined;
10339
+ };
10340
+ visible: boolean;
10341
+ required?: boolean | undefined;
10342
+ category?: "FIELD" | undefined;
10343
+ sensitive?: boolean | undefined;
10344
+ order?: number | undefined;
10345
+ }, {
10346
+ type: "PHONE";
10347
+ id: string;
10348
+ config: {
10349
+ label?: string | undefined;
10350
+ placeholder?: string | undefined;
10351
+ };
10352
+ required?: boolean | undefined;
10353
+ category?: "FIELD" | undefined;
10354
+ sensitive?: boolean | undefined;
10355
+ order?: number | undefined;
10356
+ visible?: boolean | undefined;
10357
+ }>
10358
+ ]>;
10359
+ export type FormNodeComponent = z.infer<typeof formNodeComponentDefinition>;
10360
+ /**
10361
+ * Schema for forms (flow-based, matches new JSON structure)
10362
+ */
10363
+ export declare const formInsertSchema: z.ZodObject<{
10364
+ name: z.ZodString;
10365
+ messages: z.ZodOptional<z.ZodObject<{
10366
+ errors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10367
+ custom: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10368
+ }, "strip", z.ZodTypeAny, {
10369
+ custom?: Record<string, any> | undefined;
10370
+ errors?: Record<string, any> | undefined;
10371
+ }, {
10372
+ custom?: Record<string, any> | undefined;
10373
+ errors?: Record<string, any> | undefined;
10374
+ }>>;
10375
+ languages: z.ZodOptional<z.ZodObject<{
10376
+ primary: z.ZodOptional<z.ZodString>;
10377
+ default: z.ZodOptional<z.ZodString>;
10378
+ }, "strip", z.ZodTypeAny, {
10379
+ default?: string | undefined;
10380
+ primary?: string | undefined;
10381
+ }, {
10382
+ default?: string | undefined;
10383
+ primary?: string | undefined;
10384
+ }>>;
10235
10385
  translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10236
10386
  nodes: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [
10237
10387
  z.ZodObject<{
@@ -10385,7 +10535,11 @@ export declare const formInsertSchema: z.ZodObject<{
10385
10535
  components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
10386
10536
  z.ZodObject<{
10387
10537
  id: z.ZodString;
10538
+ order: z.ZodOptional<z.ZodNumber>;
10539
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10540
+ } & {
10388
10541
  category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10542
+ } & {
10389
10543
  type: z.ZodLiteral<"RICH_TEXT">;
10390
10544
  config: z.ZodObject<{
10391
10545
  content: z.ZodString;
@@ -10394,8 +10548,6 @@ export declare const formInsertSchema: z.ZodObject<{
10394
10548
  }, {
10395
10549
  content: string;
10396
10550
  }>;
10397
- order: z.ZodOptional<z.ZodNumber>;
10398
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10399
10551
  }, "strip", z.ZodTypeAny, {
10400
10552
  type: "RICH_TEXT";
10401
10553
  id: string;
@@ -10415,9 +10567,15 @@ export declare const formInsertSchema: z.ZodObject<{
10415
10567
  order?: number | undefined;
10416
10568
  visible?: boolean | undefined;
10417
10569
  }>,
10418
- z.ZodObject<{
10570
+ z.ZodObject<Omit<{
10419
10571
  id: z.ZodString;
10572
+ order: z.ZodOptional<z.ZodNumber>;
10573
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10574
+ } & {
10420
10575
  category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10576
+ required: z.ZodOptional<z.ZodBoolean>;
10577
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10578
+ }, "sensitive"> & {
10421
10579
  type: z.ZodLiteral<"LEGAL">;
10422
10580
  config: z.ZodObject<{
10423
10581
  text: z.ZodString;
@@ -10429,9 +10587,6 @@ export declare const formInsertSchema: z.ZodObject<{
10429
10587
  text: string;
10430
10588
  html?: boolean | undefined;
10431
10589
  }>;
10432
- required: z.ZodOptional<z.ZodBoolean>;
10433
- order: z.ZodOptional<z.ZodNumber>;
10434
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10435
10590
  }, "strip", z.ZodTypeAny, {
10436
10591
  type: "LEGAL";
10437
10592
  id: string;
@@ -10457,7 +10612,13 @@ export declare const formInsertSchema: z.ZodObject<{
10457
10612
  }>,
10458
10613
  z.ZodObject<{
10459
10614
  id: z.ZodString;
10615
+ order: z.ZodOptional<z.ZodNumber>;
10616
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10617
+ } & {
10460
10618
  category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10619
+ required: z.ZodOptional<z.ZodBoolean>;
10620
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10621
+ } & {
10461
10622
  type: z.ZodLiteral<"TEXT">;
10462
10623
  config: z.ZodObject<{
10463
10624
  placeholder: z.ZodOptional<z.ZodString>;
@@ -10469,10 +10630,6 @@ export declare const formInsertSchema: z.ZodObject<{
10469
10630
  placeholder?: string | undefined;
10470
10631
  multiline?: boolean | undefined;
10471
10632
  }>;
10472
- required: z.ZodOptional<z.ZodBoolean>;
10473
- sensitive: z.ZodOptional<z.ZodBoolean>;
10474
- order: z.ZodOptional<z.ZodNumber>;
10475
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10476
10633
  }, "strip", z.ZodTypeAny, {
10477
10634
  type: "TEXT";
10478
10635
  id: string;
@@ -10500,7 +10657,11 @@ export declare const formInsertSchema: z.ZodObject<{
10500
10657
  }>,
10501
10658
  z.ZodObject<{
10502
10659
  id: z.ZodString;
10660
+ order: z.ZodOptional<z.ZodNumber>;
10661
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10662
+ } & {
10503
10663
  category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10664
+ } & {
10504
10665
  type: z.ZodLiteral<"NEXT_BUTTON">;
10505
10666
  config: z.ZodObject<{
10506
10667
  text: z.ZodOptional<z.ZodString>;
@@ -10509,8 +10670,6 @@ export declare const formInsertSchema: z.ZodObject<{
10509
10670
  }, {
10510
10671
  text?: string | undefined;
10511
10672
  }>;
10512
- order: z.ZodOptional<z.ZodNumber>;
10513
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10514
10673
  }, "strip", z.ZodTypeAny, {
10515
10674
  type: "NEXT_BUTTON";
10516
10675
  id: string;
@@ -10529,6 +10688,141 @@ export declare const formInsertSchema: z.ZodObject<{
10529
10688
  category?: "BLOCK" | undefined;
10530
10689
  order?: number | undefined;
10531
10690
  visible?: boolean | undefined;
10691
+ }>,
10692
+ z.ZodObject<{
10693
+ id: z.ZodString;
10694
+ order: z.ZodOptional<z.ZodNumber>;
10695
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10696
+ } & {
10697
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10698
+ required: z.ZodOptional<z.ZodBoolean>;
10699
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10700
+ } & {
10701
+ type: z.ZodLiteral<"EMAIL">;
10702
+ config: z.ZodObject<{
10703
+ label: z.ZodOptional<z.ZodString>;
10704
+ placeholder: z.ZodOptional<z.ZodString>;
10705
+ }, "strip", z.ZodTypeAny, {
10706
+ label?: string | undefined;
10707
+ placeholder?: string | undefined;
10708
+ }, {
10709
+ label?: string | undefined;
10710
+ placeholder?: string | undefined;
10711
+ }>;
10712
+ }, "strip", z.ZodTypeAny, {
10713
+ type: "EMAIL";
10714
+ id: string;
10715
+ config: {
10716
+ label?: string | undefined;
10717
+ placeholder?: string | undefined;
10718
+ };
10719
+ visible: boolean;
10720
+ required?: boolean | undefined;
10721
+ category?: "FIELD" | undefined;
10722
+ sensitive?: boolean | undefined;
10723
+ order?: number | undefined;
10724
+ }, {
10725
+ type: "EMAIL";
10726
+ id: string;
10727
+ config: {
10728
+ label?: string | undefined;
10729
+ placeholder?: string | undefined;
10730
+ };
10731
+ required?: boolean | undefined;
10732
+ category?: "FIELD" | undefined;
10733
+ sensitive?: boolean | undefined;
10734
+ order?: number | undefined;
10735
+ visible?: boolean | undefined;
10736
+ }>,
10737
+ z.ZodObject<{
10738
+ id: z.ZodString;
10739
+ order: z.ZodOptional<z.ZodNumber>;
10740
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10741
+ } & {
10742
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10743
+ required: z.ZodOptional<z.ZodBoolean>;
10744
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10745
+ } & {
10746
+ type: z.ZodLiteral<"NUMBER">;
10747
+ config: z.ZodObject<{
10748
+ label: z.ZodOptional<z.ZodString>;
10749
+ placeholder: z.ZodOptional<z.ZodString>;
10750
+ }, "strip", z.ZodTypeAny, {
10751
+ label?: string | undefined;
10752
+ placeholder?: string | undefined;
10753
+ }, {
10754
+ label?: string | undefined;
10755
+ placeholder?: string | undefined;
10756
+ }>;
10757
+ }, "strip", z.ZodTypeAny, {
10758
+ type: "NUMBER";
10759
+ id: string;
10760
+ config: {
10761
+ label?: string | undefined;
10762
+ placeholder?: string | undefined;
10763
+ };
10764
+ visible: boolean;
10765
+ required?: boolean | undefined;
10766
+ category?: "FIELD" | undefined;
10767
+ sensitive?: boolean | undefined;
10768
+ order?: number | undefined;
10769
+ }, {
10770
+ type: "NUMBER";
10771
+ id: string;
10772
+ config: {
10773
+ label?: string | undefined;
10774
+ placeholder?: string | undefined;
10775
+ };
10776
+ required?: boolean | undefined;
10777
+ category?: "FIELD" | undefined;
10778
+ sensitive?: boolean | undefined;
10779
+ order?: number | undefined;
10780
+ visible?: boolean | undefined;
10781
+ }>,
10782
+ z.ZodObject<{
10783
+ id: z.ZodString;
10784
+ order: z.ZodOptional<z.ZodNumber>;
10785
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10786
+ } & {
10787
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10788
+ required: z.ZodOptional<z.ZodBoolean>;
10789
+ sensitive: z.ZodOptional<z.ZodBoolean>;
10790
+ } & {
10791
+ type: z.ZodLiteral<"PHONE">;
10792
+ config: z.ZodObject<{
10793
+ label: z.ZodOptional<z.ZodString>;
10794
+ placeholder: z.ZodOptional<z.ZodString>;
10795
+ }, "strip", z.ZodTypeAny, {
10796
+ label?: string | undefined;
10797
+ placeholder?: string | undefined;
10798
+ }, {
10799
+ label?: string | undefined;
10800
+ placeholder?: string | undefined;
10801
+ }>;
10802
+ }, "strip", z.ZodTypeAny, {
10803
+ type: "PHONE";
10804
+ id: string;
10805
+ config: {
10806
+ label?: string | undefined;
10807
+ placeholder?: string | undefined;
10808
+ };
10809
+ visible: boolean;
10810
+ required?: boolean | undefined;
10811
+ category?: "FIELD" | undefined;
10812
+ sensitive?: boolean | undefined;
10813
+ order?: number | undefined;
10814
+ }, {
10815
+ type: "PHONE";
10816
+ id: string;
10817
+ config: {
10818
+ label?: string | undefined;
10819
+ placeholder?: string | undefined;
10820
+ };
10821
+ required?: boolean | undefined;
10822
+ category?: "FIELD" | undefined;
10823
+ sensitive?: boolean | undefined;
10824
+ order?: number | undefined;
10825
+ visible?: boolean | undefined;
10532
10826
  }>
10533
10827
  ]>, "many">;
10534
10828
  next_node: z.ZodOptional<z.ZodString>;
@@ -10574,6 +10868,42 @@ export declare const formInsertSchema: z.ZodObject<{
10574
10868
  visible: boolean;
10575
10869
  category?: "BLOCK" | undefined;
10576
10870
  order?: number | undefined;
10871
+ } | {
10872
+ type: "EMAIL";
10873
+ id: string;
10874
+ config: {
10875
+ label?: string | undefined;
10876
+ placeholder?: string | undefined;
10877
+ };
10878
+ visible: boolean;
10879
+ required?: boolean | undefined;
10880
+ category?: "FIELD" | undefined;
10881
+ sensitive?: boolean | undefined;
10882
+ order?: number | undefined;
10883
+ } | {
10884
+ type: "NUMBER";
10885
+ id: string;
10886
+ config: {
10887
+ label?: string | undefined;
10888
+ placeholder?: string | undefined;
10889
+ };
10890
+ visible: boolean;
10891
+ required?: boolean | undefined;
10892
+ category?: "FIELD" | undefined;
10893
+ sensitive?: boolean | undefined;
10894
+ order?: number | undefined;
10895
+ } | {
10896
+ type: "PHONE";
10897
+ id: string;
10898
+ config: {
10899
+ label?: string | undefined;
10900
+ placeholder?: string | undefined;
10901
+ };
10902
+ visible: boolean;
10903
+ required?: boolean | undefined;
10904
+ category?: "FIELD" | undefined;
10905
+ sensitive?: boolean | undefined;
10906
+ order?: number | undefined;
10577
10907
  })[];
10578
10908
  next_node?: string | undefined;
10579
10909
  }, {
@@ -10618,6 +10948,42 @@ export declare const formInsertSchema: z.ZodObject<{
10618
10948
  category?: "BLOCK" | undefined;
10619
10949
  order?: number | undefined;
10620
10950
  visible?: boolean | undefined;
10951
+ } | {
10952
+ type: "EMAIL";
10953
+ id: string;
10954
+ config: {
10955
+ label?: string | undefined;
10956
+ placeholder?: string | undefined;
10957
+ };
10958
+ required?: boolean | undefined;
10959
+ category?: "FIELD" | undefined;
10960
+ sensitive?: boolean | undefined;
10961
+ order?: number | undefined;
10962
+ visible?: boolean | undefined;
10963
+ } | {
10964
+ type: "NUMBER";
10965
+ id: string;
10966
+ config: {
10967
+ label?: string | undefined;
10968
+ placeholder?: string | undefined;
10969
+ };
10970
+ required?: boolean | undefined;
10971
+ category?: "FIELD" | undefined;
10972
+ sensitive?: boolean | undefined;
10973
+ order?: number | undefined;
10974
+ visible?: boolean | undefined;
10975
+ } | {
10976
+ type: "PHONE";
10977
+ id: string;
10978
+ config: {
10979
+ label?: string | undefined;
10980
+ placeholder?: string | undefined;
10981
+ };
10982
+ required?: boolean | undefined;
10983
+ category?: "FIELD" | undefined;
10984
+ sensitive?: boolean | undefined;
10985
+ order?: number | undefined;
10986
+ visible?: boolean | undefined;
10621
10987
  })[];
10622
10988
  next_node?: string | undefined;
10623
10989
  }>;
@@ -10666,6 +11032,42 @@ export declare const formInsertSchema: z.ZodObject<{
10666
11032
  visible: boolean;
10667
11033
  category?: "BLOCK" | undefined;
10668
11034
  order?: number | undefined;
11035
+ } | {
11036
+ type: "EMAIL";
11037
+ id: string;
11038
+ config: {
11039
+ label?: string | undefined;
11040
+ placeholder?: string | undefined;
11041
+ };
11042
+ visible: boolean;
11043
+ required?: boolean | undefined;
11044
+ category?: "FIELD" | undefined;
11045
+ sensitive?: boolean | undefined;
11046
+ order?: number | undefined;
11047
+ } | {
11048
+ type: "NUMBER";
11049
+ id: string;
11050
+ config: {
11051
+ label?: string | undefined;
11052
+ placeholder?: string | undefined;
11053
+ };
11054
+ visible: boolean;
11055
+ required?: boolean | undefined;
11056
+ category?: "FIELD" | undefined;
11057
+ sensitive?: boolean | undefined;
11058
+ order?: number | undefined;
11059
+ } | {
11060
+ type: "PHONE";
11061
+ id: string;
11062
+ config: {
11063
+ label?: string | undefined;
11064
+ placeholder?: string | undefined;
11065
+ };
11066
+ visible: boolean;
11067
+ required?: boolean | undefined;
11068
+ category?: "FIELD" | undefined;
11069
+ sensitive?: boolean | undefined;
11070
+ order?: number | undefined;
10669
11071
  })[];
10670
11072
  next_node?: string | undefined;
10671
11073
  };
@@ -10719,6 +11121,42 @@ export declare const formInsertSchema: z.ZodObject<{
10719
11121
  category?: "BLOCK" | undefined;
10720
11122
  order?: number | undefined;
10721
11123
  visible?: boolean | undefined;
11124
+ } | {
11125
+ type: "EMAIL";
11126
+ id: string;
11127
+ config: {
11128
+ label?: string | undefined;
11129
+ placeholder?: string | undefined;
11130
+ };
11131
+ required?: boolean | undefined;
11132
+ category?: "FIELD" | undefined;
11133
+ sensitive?: boolean | undefined;
11134
+ order?: number | undefined;
11135
+ visible?: boolean | undefined;
11136
+ } | {
11137
+ type: "NUMBER";
11138
+ id: string;
11139
+ config: {
11140
+ label?: string | undefined;
11141
+ placeholder?: string | undefined;
11142
+ };
11143
+ required?: boolean | undefined;
11144
+ category?: "FIELD" | undefined;
11145
+ sensitive?: boolean | undefined;
11146
+ order?: number | undefined;
11147
+ visible?: boolean | undefined;
11148
+ } | {
11149
+ type: "PHONE";
11150
+ id: string;
11151
+ config: {
11152
+ label?: string | undefined;
11153
+ placeholder?: string | undefined;
11154
+ };
11155
+ required?: boolean | undefined;
11156
+ category?: "FIELD" | undefined;
11157
+ sensitive?: boolean | undefined;
11158
+ order?: number | undefined;
11159
+ visible?: boolean | undefined;
10722
11160
  })[];
10723
11161
  next_node?: string | undefined;
10724
11162
  };
@@ -10929,6 +11367,42 @@ export declare const formInsertSchema: z.ZodObject<{
10929
11367
  visible: boolean;
10930
11368
  category?: "BLOCK" | undefined;
10931
11369
  order?: number | undefined;
11370
+ } | {
11371
+ type: "EMAIL";
11372
+ id: string;
11373
+ config: {
11374
+ label?: string | undefined;
11375
+ placeholder?: string | undefined;
11376
+ };
11377
+ visible: boolean;
11378
+ required?: boolean | undefined;
11379
+ category?: "FIELD" | undefined;
11380
+ sensitive?: boolean | undefined;
11381
+ order?: number | undefined;
11382
+ } | {
11383
+ type: "NUMBER";
11384
+ id: string;
11385
+ config: {
11386
+ label?: string | undefined;
11387
+ placeholder?: string | undefined;
11388
+ };
11389
+ visible: boolean;
11390
+ required?: boolean | undefined;
11391
+ category?: "FIELD" | undefined;
11392
+ sensitive?: boolean | undefined;
11393
+ order?: number | undefined;
11394
+ } | {
11395
+ type: "PHONE";
11396
+ id: string;
11397
+ config: {
11398
+ label?: string | undefined;
11399
+ placeholder?: string | undefined;
11400
+ };
11401
+ visible: boolean;
11402
+ required?: boolean | undefined;
11403
+ category?: "FIELD" | undefined;
11404
+ sensitive?: boolean | undefined;
11405
+ order?: number | undefined;
10932
11406
  })[];
10933
11407
  next_node?: string | undefined;
10934
11408
  };
@@ -11051,6 +11525,42 @@ export declare const formInsertSchema: z.ZodObject<{
11051
11525
  category?: "BLOCK" | undefined;
11052
11526
  order?: number | undefined;
11053
11527
  visible?: boolean | undefined;
11528
+ } | {
11529
+ type: "EMAIL";
11530
+ id: string;
11531
+ config: {
11532
+ label?: string | undefined;
11533
+ placeholder?: string | undefined;
11534
+ };
11535
+ required?: boolean | undefined;
11536
+ category?: "FIELD" | undefined;
11537
+ sensitive?: boolean | undefined;
11538
+ order?: number | undefined;
11539
+ visible?: boolean | undefined;
11540
+ } | {
11541
+ type: "NUMBER";
11542
+ id: string;
11543
+ config: {
11544
+ label?: string | undefined;
11545
+ placeholder?: string | undefined;
11546
+ };
11547
+ required?: boolean | undefined;
11548
+ category?: "FIELD" | undefined;
11549
+ sensitive?: boolean | undefined;
11550
+ order?: number | undefined;
11551
+ visible?: boolean | undefined;
11552
+ } | {
11553
+ type: "PHONE";
11554
+ id: string;
11555
+ config: {
11556
+ label?: string | undefined;
11557
+ placeholder?: string | undefined;
11558
+ };
11559
+ required?: boolean | undefined;
11560
+ category?: "FIELD" | undefined;
11561
+ sensitive?: boolean | undefined;
11562
+ order?: number | undefined;
11563
+ visible?: boolean | undefined;
11054
11564
  })[];
11055
11565
  next_node?: string | undefined;
11056
11566
  };
@@ -11260,7 +11770,11 @@ export declare const formSchema: z.ZodObject<{
11260
11770
  components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
11261
11771
  z.ZodObject<{
11262
11772
  id: z.ZodString;
11773
+ order: z.ZodOptional<z.ZodNumber>;
11774
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11775
+ } & {
11263
11776
  category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
11777
+ } & {
11264
11778
  type: z.ZodLiteral<"RICH_TEXT">;
11265
11779
  config: z.ZodObject<{
11266
11780
  content: z.ZodString;
@@ -11269,8 +11783,6 @@ export declare const formSchema: z.ZodObject<{
11269
11783
  }, {
11270
11784
  content: string;
11271
11785
  }>;
11272
- order: z.ZodOptional<z.ZodNumber>;
11273
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11274
11786
  }, "strip", z.ZodTypeAny, {
11275
11787
  type: "RICH_TEXT";
11276
11788
  id: string;
@@ -11290,9 +11802,15 @@ export declare const formSchema: z.ZodObject<{
11290
11802
  order?: number | undefined;
11291
11803
  visible?: boolean | undefined;
11292
11804
  }>,
11293
- z.ZodObject<{
11805
+ z.ZodObject<Omit<{
11294
11806
  id: z.ZodString;
11807
+ order: z.ZodOptional<z.ZodNumber>;
11808
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11809
+ } & {
11295
11810
  category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
11811
+ required: z.ZodOptional<z.ZodBoolean>;
11812
+ sensitive: z.ZodOptional<z.ZodBoolean>;
11813
+ }, "sensitive"> & {
11296
11814
  type: z.ZodLiteral<"LEGAL">;
11297
11815
  config: z.ZodObject<{
11298
11816
  text: z.ZodString;
@@ -11304,9 +11822,6 @@ export declare const formSchema: z.ZodObject<{
11304
11822
  text: string;
11305
11823
  html?: boolean | undefined;
11306
11824
  }>;
11307
- required: z.ZodOptional<z.ZodBoolean>;
11308
- order: z.ZodOptional<z.ZodNumber>;
11309
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11310
11825
  }, "strip", z.ZodTypeAny, {
11311
11826
  type: "LEGAL";
11312
11827
  id: string;
@@ -11332,7 +11847,13 @@ export declare const formSchema: z.ZodObject<{
11332
11847
  }>,
11333
11848
  z.ZodObject<{
11334
11849
  id: z.ZodString;
11850
+ order: z.ZodOptional<z.ZodNumber>;
11851
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11852
+ } & {
11335
11853
  category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
11854
+ required: z.ZodOptional<z.ZodBoolean>;
11855
+ sensitive: z.ZodOptional<z.ZodBoolean>;
11856
+ } & {
11336
11857
  type: z.ZodLiteral<"TEXT">;
11337
11858
  config: z.ZodObject<{
11338
11859
  placeholder: z.ZodOptional<z.ZodString>;
@@ -11344,10 +11865,6 @@ export declare const formSchema: z.ZodObject<{
11344
11865
  placeholder?: string | undefined;
11345
11866
  multiline?: boolean | undefined;
11346
11867
  }>;
11347
- required: z.ZodOptional<z.ZodBoolean>;
11348
- sensitive: z.ZodOptional<z.ZodBoolean>;
11349
- order: z.ZodOptional<z.ZodNumber>;
11350
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11351
11868
  }, "strip", z.ZodTypeAny, {
11352
11869
  type: "TEXT";
11353
11870
  id: string;
@@ -11375,7 +11892,11 @@ export declare const formSchema: z.ZodObject<{
11375
11892
  }>,
11376
11893
  z.ZodObject<{
11377
11894
  id: z.ZodString;
11895
+ order: z.ZodOptional<z.ZodNumber>;
11896
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11897
+ } & {
11378
11898
  category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
11899
+ } & {
11379
11900
  type: z.ZodLiteral<"NEXT_BUTTON">;
11380
11901
  config: z.ZodObject<{
11381
11902
  text: z.ZodOptional<z.ZodString>;
@@ -11384,8 +11905,6 @@ export declare const formSchema: z.ZodObject<{
11384
11905
  }, {
11385
11906
  text?: string | undefined;
11386
11907
  }>;
11387
- order: z.ZodOptional<z.ZodNumber>;
11388
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11389
11908
  }, "strip", z.ZodTypeAny, {
11390
11909
  type: "NEXT_BUTTON";
11391
11910
  id: string;
@@ -11404,6 +11923,141 @@ export declare const formSchema: z.ZodObject<{
11404
11923
  category?: "BLOCK" | undefined;
11405
11924
  order?: number | undefined;
11406
11925
  visible?: boolean | undefined;
11926
+ }>,
11927
+ z.ZodObject<{
11928
+ id: z.ZodString;
11929
+ order: z.ZodOptional<z.ZodNumber>;
11930
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11931
+ } & {
11932
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
11933
+ required: z.ZodOptional<z.ZodBoolean>;
11934
+ sensitive: z.ZodOptional<z.ZodBoolean>;
11935
+ } & {
11936
+ type: z.ZodLiteral<"EMAIL">;
11937
+ config: z.ZodObject<{
11938
+ label: z.ZodOptional<z.ZodString>;
11939
+ placeholder: z.ZodOptional<z.ZodString>;
11940
+ }, "strip", z.ZodTypeAny, {
11941
+ label?: string | undefined;
11942
+ placeholder?: string | undefined;
11943
+ }, {
11944
+ label?: string | undefined;
11945
+ placeholder?: string | undefined;
11946
+ }>;
11947
+ }, "strip", z.ZodTypeAny, {
11948
+ type: "EMAIL";
11949
+ id: string;
11950
+ config: {
11951
+ label?: string | undefined;
11952
+ placeholder?: string | undefined;
11953
+ };
11954
+ visible: boolean;
11955
+ required?: boolean | undefined;
11956
+ category?: "FIELD" | undefined;
11957
+ sensitive?: boolean | undefined;
11958
+ order?: number | undefined;
11959
+ }, {
11960
+ type: "EMAIL";
11961
+ id: string;
11962
+ config: {
11963
+ label?: string | undefined;
11964
+ placeholder?: string | undefined;
11965
+ };
11966
+ required?: boolean | undefined;
11967
+ category?: "FIELD" | undefined;
11968
+ sensitive?: boolean | undefined;
11969
+ order?: number | undefined;
11970
+ visible?: boolean | undefined;
11971
+ }>,
11972
+ z.ZodObject<{
11973
+ id: z.ZodString;
11974
+ order: z.ZodOptional<z.ZodNumber>;
11975
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11976
+ } & {
11977
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
11978
+ required: z.ZodOptional<z.ZodBoolean>;
11979
+ sensitive: z.ZodOptional<z.ZodBoolean>;
11980
+ } & {
11981
+ type: z.ZodLiteral<"NUMBER">;
11982
+ config: z.ZodObject<{
11983
+ label: z.ZodOptional<z.ZodString>;
11984
+ placeholder: z.ZodOptional<z.ZodString>;
11985
+ }, "strip", z.ZodTypeAny, {
11986
+ label?: string | undefined;
11987
+ placeholder?: string | undefined;
11988
+ }, {
11989
+ label?: string | undefined;
11990
+ placeholder?: string | undefined;
11991
+ }>;
11992
+ }, "strip", z.ZodTypeAny, {
11993
+ type: "NUMBER";
11994
+ id: string;
11995
+ config: {
11996
+ label?: string | undefined;
11997
+ placeholder?: string | undefined;
11998
+ };
11999
+ visible: boolean;
12000
+ required?: boolean | undefined;
12001
+ category?: "FIELD" | undefined;
12002
+ sensitive?: boolean | undefined;
12003
+ order?: number | undefined;
12004
+ }, {
12005
+ type: "NUMBER";
12006
+ id: string;
12007
+ config: {
12008
+ label?: string | undefined;
12009
+ placeholder?: string | undefined;
12010
+ };
12011
+ required?: boolean | undefined;
12012
+ category?: "FIELD" | undefined;
12013
+ sensitive?: boolean | undefined;
12014
+ order?: number | undefined;
12015
+ visible?: boolean | undefined;
12016
+ }>,
12017
+ z.ZodObject<{
12018
+ id: z.ZodString;
12019
+ order: z.ZodOptional<z.ZodNumber>;
12020
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
12021
+ } & {
12022
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
12023
+ required: z.ZodOptional<z.ZodBoolean>;
12024
+ sensitive: z.ZodOptional<z.ZodBoolean>;
12025
+ } & {
12026
+ type: z.ZodLiteral<"PHONE">;
12027
+ config: z.ZodObject<{
12028
+ label: z.ZodOptional<z.ZodString>;
12029
+ placeholder: z.ZodOptional<z.ZodString>;
12030
+ }, "strip", z.ZodTypeAny, {
12031
+ label?: string | undefined;
12032
+ placeholder?: string | undefined;
12033
+ }, {
12034
+ label?: string | undefined;
12035
+ placeholder?: string | undefined;
12036
+ }>;
12037
+ }, "strip", z.ZodTypeAny, {
12038
+ type: "PHONE";
12039
+ id: string;
12040
+ config: {
12041
+ label?: string | undefined;
12042
+ placeholder?: string | undefined;
12043
+ };
12044
+ visible: boolean;
12045
+ required?: boolean | undefined;
12046
+ category?: "FIELD" | undefined;
12047
+ sensitive?: boolean | undefined;
12048
+ order?: number | undefined;
12049
+ }, {
12050
+ type: "PHONE";
12051
+ id: string;
12052
+ config: {
12053
+ label?: string | undefined;
12054
+ placeholder?: string | undefined;
12055
+ };
12056
+ required?: boolean | undefined;
12057
+ category?: "FIELD" | undefined;
12058
+ sensitive?: boolean | undefined;
12059
+ order?: number | undefined;
12060
+ visible?: boolean | undefined;
11407
12061
  }>
11408
12062
  ]>, "many">;
11409
12063
  next_node: z.ZodOptional<z.ZodString>;
@@ -11412,28 +12066,61 @@ export declare const formSchema: z.ZodObject<{
11412
12066
  type: "RICH_TEXT";
11413
12067
  id: string;
11414
12068
  config: {
11415
- content: string;
12069
+ content: string;
12070
+ };
12071
+ visible: boolean;
12072
+ category?: "BLOCK" | undefined;
12073
+ order?: number | undefined;
12074
+ } | {
12075
+ type: "LEGAL";
12076
+ id: string;
12077
+ config: {
12078
+ text: string;
12079
+ html?: boolean | undefined;
12080
+ };
12081
+ visible: boolean;
12082
+ required?: boolean | undefined;
12083
+ category?: "FIELD" | undefined;
12084
+ order?: number | undefined;
12085
+ } | {
12086
+ type: "TEXT";
12087
+ id: string;
12088
+ config: {
12089
+ placeholder?: string | undefined;
12090
+ multiline?: boolean | undefined;
12091
+ };
12092
+ visible: boolean;
12093
+ required?: boolean | undefined;
12094
+ category?: "FIELD" | undefined;
12095
+ sensitive?: boolean | undefined;
12096
+ order?: number | undefined;
12097
+ } | {
12098
+ type: "NEXT_BUTTON";
12099
+ id: string;
12100
+ config: {
12101
+ text?: string | undefined;
11416
12102
  };
11417
12103
  visible: boolean;
11418
12104
  category?: "BLOCK" | undefined;
11419
12105
  order?: number | undefined;
11420
12106
  } | {
11421
- type: "LEGAL";
12107
+ type: "EMAIL";
11422
12108
  id: string;
11423
12109
  config: {
11424
- text: string;
11425
- html?: boolean | undefined;
12110
+ label?: string | undefined;
12111
+ placeholder?: string | undefined;
11426
12112
  };
11427
12113
  visible: boolean;
11428
12114
  required?: boolean | undefined;
11429
12115
  category?: "FIELD" | undefined;
12116
+ sensitive?: boolean | undefined;
11430
12117
  order?: number | undefined;
11431
12118
  } | {
11432
- type: "TEXT";
12119
+ type: "NUMBER";
11433
12120
  id: string;
11434
12121
  config: {
12122
+ label?: string | undefined;
11435
12123
  placeholder?: string | undefined;
11436
- multiline?: boolean | undefined;
11437
12124
  };
11438
12125
  visible: boolean;
11439
12126
  required?: boolean | undefined;
@@ -11441,13 +12128,16 @@ export declare const formSchema: z.ZodObject<{
11441
12128
  sensitive?: boolean | undefined;
11442
12129
  order?: number | undefined;
11443
12130
  } | {
11444
- type: "NEXT_BUTTON";
12131
+ type: "PHONE";
11445
12132
  id: string;
11446
12133
  config: {
11447
- text?: string | undefined;
12134
+ label?: string | undefined;
12135
+ placeholder?: string | undefined;
11448
12136
  };
11449
12137
  visible: boolean;
11450
- category?: "BLOCK" | undefined;
12138
+ required?: boolean | undefined;
12139
+ category?: "FIELD" | undefined;
12140
+ sensitive?: boolean | undefined;
11451
12141
  order?: number | undefined;
11452
12142
  })[];
11453
12143
  next_node?: string | undefined;
@@ -11493,6 +12183,42 @@ export declare const formSchema: z.ZodObject<{
11493
12183
  category?: "BLOCK" | undefined;
11494
12184
  order?: number | undefined;
11495
12185
  visible?: boolean | undefined;
12186
+ } | {
12187
+ type: "EMAIL";
12188
+ id: string;
12189
+ config: {
12190
+ label?: string | undefined;
12191
+ placeholder?: string | undefined;
12192
+ };
12193
+ required?: boolean | undefined;
12194
+ category?: "FIELD" | undefined;
12195
+ sensitive?: boolean | undefined;
12196
+ order?: number | undefined;
12197
+ visible?: boolean | undefined;
12198
+ } | {
12199
+ type: "NUMBER";
12200
+ id: string;
12201
+ config: {
12202
+ label?: string | undefined;
12203
+ placeholder?: string | undefined;
12204
+ };
12205
+ required?: boolean | undefined;
12206
+ category?: "FIELD" | undefined;
12207
+ sensitive?: boolean | undefined;
12208
+ order?: number | undefined;
12209
+ visible?: boolean | undefined;
12210
+ } | {
12211
+ type: "PHONE";
12212
+ id: string;
12213
+ config: {
12214
+ label?: string | undefined;
12215
+ placeholder?: string | undefined;
12216
+ };
12217
+ required?: boolean | undefined;
12218
+ category?: "FIELD" | undefined;
12219
+ sensitive?: boolean | undefined;
12220
+ order?: number | undefined;
12221
+ visible?: boolean | undefined;
11496
12222
  })[];
11497
12223
  next_node?: string | undefined;
11498
12224
  }>;
@@ -11541,6 +12267,42 @@ export declare const formSchema: z.ZodObject<{
11541
12267
  visible: boolean;
11542
12268
  category?: "BLOCK" | undefined;
11543
12269
  order?: number | undefined;
12270
+ } | {
12271
+ type: "EMAIL";
12272
+ id: string;
12273
+ config: {
12274
+ label?: string | undefined;
12275
+ placeholder?: string | undefined;
12276
+ };
12277
+ visible: boolean;
12278
+ required?: boolean | undefined;
12279
+ category?: "FIELD" | undefined;
12280
+ sensitive?: boolean | undefined;
12281
+ order?: number | undefined;
12282
+ } | {
12283
+ type: "NUMBER";
12284
+ id: string;
12285
+ config: {
12286
+ label?: string | undefined;
12287
+ placeholder?: string | undefined;
12288
+ };
12289
+ visible: boolean;
12290
+ required?: boolean | undefined;
12291
+ category?: "FIELD" | undefined;
12292
+ sensitive?: boolean | undefined;
12293
+ order?: number | undefined;
12294
+ } | {
12295
+ type: "PHONE";
12296
+ id: string;
12297
+ config: {
12298
+ label?: string | undefined;
12299
+ placeholder?: string | undefined;
12300
+ };
12301
+ visible: boolean;
12302
+ required?: boolean | undefined;
12303
+ category?: "FIELD" | undefined;
12304
+ sensitive?: boolean | undefined;
12305
+ order?: number | undefined;
11544
12306
  })[];
11545
12307
  next_node?: string | undefined;
11546
12308
  };
@@ -11594,6 +12356,42 @@ export declare const formSchema: z.ZodObject<{
11594
12356
  category?: "BLOCK" | undefined;
11595
12357
  order?: number | undefined;
11596
12358
  visible?: boolean | undefined;
12359
+ } | {
12360
+ type: "EMAIL";
12361
+ id: string;
12362
+ config: {
12363
+ label?: string | undefined;
12364
+ placeholder?: string | undefined;
12365
+ };
12366
+ required?: boolean | undefined;
12367
+ category?: "FIELD" | undefined;
12368
+ sensitive?: boolean | undefined;
12369
+ order?: number | undefined;
12370
+ visible?: boolean | undefined;
12371
+ } | {
12372
+ type: "NUMBER";
12373
+ id: string;
12374
+ config: {
12375
+ label?: string | undefined;
12376
+ placeholder?: string | undefined;
12377
+ };
12378
+ required?: boolean | undefined;
12379
+ category?: "FIELD" | undefined;
12380
+ sensitive?: boolean | undefined;
12381
+ order?: number | undefined;
12382
+ visible?: boolean | undefined;
12383
+ } | {
12384
+ type: "PHONE";
12385
+ id: string;
12386
+ config: {
12387
+ label?: string | undefined;
12388
+ placeholder?: string | undefined;
12389
+ };
12390
+ required?: boolean | undefined;
12391
+ category?: "FIELD" | undefined;
12392
+ sensitive?: boolean | undefined;
12393
+ order?: number | undefined;
12394
+ visible?: boolean | undefined;
11597
12395
  })[];
11598
12396
  next_node?: string | undefined;
11599
12397
  };
@@ -11809,6 +12607,42 @@ export declare const formSchema: z.ZodObject<{
11809
12607
  visible: boolean;
11810
12608
  category?: "BLOCK" | undefined;
11811
12609
  order?: number | undefined;
12610
+ } | {
12611
+ type: "EMAIL";
12612
+ id: string;
12613
+ config: {
12614
+ label?: string | undefined;
12615
+ placeholder?: string | undefined;
12616
+ };
12617
+ visible: boolean;
12618
+ required?: boolean | undefined;
12619
+ category?: "FIELD" | undefined;
12620
+ sensitive?: boolean | undefined;
12621
+ order?: number | undefined;
12622
+ } | {
12623
+ type: "NUMBER";
12624
+ id: string;
12625
+ config: {
12626
+ label?: string | undefined;
12627
+ placeholder?: string | undefined;
12628
+ };
12629
+ visible: boolean;
12630
+ required?: boolean | undefined;
12631
+ category?: "FIELD" | undefined;
12632
+ sensitive?: boolean | undefined;
12633
+ order?: number | undefined;
12634
+ } | {
12635
+ type: "PHONE";
12636
+ id: string;
12637
+ config: {
12638
+ label?: string | undefined;
12639
+ placeholder?: string | undefined;
12640
+ };
12641
+ visible: boolean;
12642
+ required?: boolean | undefined;
12643
+ category?: "FIELD" | undefined;
12644
+ sensitive?: boolean | undefined;
12645
+ order?: number | undefined;
11812
12646
  })[];
11813
12647
  next_node?: string | undefined;
11814
12648
  };
@@ -11934,6 +12768,42 @@ export declare const formSchema: z.ZodObject<{
11934
12768
  category?: "BLOCK" | undefined;
11935
12769
  order?: number | undefined;
11936
12770
  visible?: boolean | undefined;
12771
+ } | {
12772
+ type: "EMAIL";
12773
+ id: string;
12774
+ config: {
12775
+ label?: string | undefined;
12776
+ placeholder?: string | undefined;
12777
+ };
12778
+ required?: boolean | undefined;
12779
+ category?: "FIELD" | undefined;
12780
+ sensitive?: boolean | undefined;
12781
+ order?: number | undefined;
12782
+ visible?: boolean | undefined;
12783
+ } | {
12784
+ type: "NUMBER";
12785
+ id: string;
12786
+ config: {
12787
+ label?: string | undefined;
12788
+ placeholder?: string | undefined;
12789
+ };
12790
+ required?: boolean | undefined;
12791
+ category?: "FIELD" | undefined;
12792
+ sensitive?: boolean | undefined;
12793
+ order?: number | undefined;
12794
+ visible?: boolean | undefined;
12795
+ } | {
12796
+ type: "PHONE";
12797
+ id: string;
12798
+ config: {
12799
+ label?: string | undefined;
12800
+ placeholder?: string | undefined;
12801
+ };
12802
+ required?: boolean | undefined;
12803
+ category?: "FIELD" | undefined;
12804
+ sensitive?: boolean | undefined;
12805
+ order?: number | undefined;
12806
+ visible?: boolean | undefined;
11937
12807
  })[];
11938
12808
  next_node?: string | undefined;
11939
12809
  };
@@ -17210,6 +18080,31 @@ export interface ClientsAdapter {
17210
18080
  }>;
17211
18081
  update(tenant_id: string, client_id: string, client: Partial<Client>): Promise<boolean>;
17212
18082
  }
18083
+ export interface ClientConnectionsAdapter {
18084
+ /**
18085
+ * Get all connections enabled for a specific client
18086
+ * Returns connections in the order they were stored
18087
+ */
18088
+ listByClient(tenant_id: string, client_id: string): Promise<Connection[]>;
18089
+ /**
18090
+ * Update the connections for a client
18091
+ * The connection_ids array determines both which connections are enabled
18092
+ * and their display order on the login page
18093
+ */
18094
+ updateByClient(tenant_id: string, client_id: string, connection_ids: string[]): Promise<boolean>;
18095
+ /**
18096
+ * Get all clients that have a specific connection enabled
18097
+ */
18098
+ listByConnection(tenant_id: string, connection_id: string): Promise<string[]>;
18099
+ /**
18100
+ * Add a client to a connection (add client_id to the list of clients using this connection)
18101
+ */
18102
+ addClientToConnection(tenant_id: string, connection_id: string, client_id: string): Promise<boolean>;
18103
+ /**
18104
+ * Remove a client from a connection
18105
+ */
18106
+ removeClientFromConnection(tenant_id: string, connection_id: string, client_id: string): Promise<boolean>;
18107
+ }
17213
18108
  export interface ListClientGrantsResponse extends Totals {
17214
18109
  client_grants: ClientGrant[];
17215
18110
  }
@@ -17470,6 +18365,7 @@ export interface DataAdapters {
17470
18365
  branding: BrandingAdapter;
17471
18366
  cache?: CacheAdapter;
17472
18367
  clients: ClientsAdapter;
18368
+ clientConnections: ClientConnectionsAdapter;
17473
18369
  clientGrants: ClientGrantsAdapter;
17474
18370
  legacyClients: LegacyClientsAdapter;
17475
18371
  codes: CodesAdapter;
@@ -18130,7 +19026,7 @@ export interface LabelProps {
18130
19026
  style?: Record<string, string | number>;
18131
19027
  }
18132
19028
  declare const Label: FC<PropsWithChildren<LabelProps>>;
18133
- export declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }\n\n/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}body:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.right-2{right:.5rem}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-0\\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-9{width:2.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-auto{width:auto}.w-full{width:100%}.min-w-0{min-width:0}.max-w-\\[1295px\\]{max-width:1295px}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1\\/2{--tw-translate-y:-50%}.-translate-y-1\\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1\\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity,1))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity,1))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity,1))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity,1))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pl-12{padding-left:3rem}.pl-6{padding-left:1.5rem}.pr-12{padding-right:3rem}.pr-6{padding-right:1.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-\\[0\\]{line-height:0}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity,1))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity,1))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity,1))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity,1))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity,1))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-white{--tw-ring-offset-color:#fff}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.file\\:border-0::file-selector-button{border-width:0}.file\\:text-sm::file-selector-button{font-size:.875rem;line-height:120%}.file\\:font-medium::file-selector-button{font-weight:500}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.first\\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\\:border-l:first-child{border-left-width:1px}.last\\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(191 188 215/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity,1))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:brightness-90:hover{--tw-brightness:brightness(.9);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\\:z-10:focus{z-index:10}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group[open] .group-open\\:rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:disabled~.peer-disabled\\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\\:opacity-70{opacity:.7}.has-\\[\\:disabled\\]\\:opacity-50:has(:disabled){opacity:.5}.dark\\:border-gray-400:is(.dark *){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity,1))}.dark\\:border-gray-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.dark\\:border-gray-600:is(.dark *){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity,1))}.dark\\:border-gray-700:is(.dark *){--tw-border-opacity:1;border-color:rgb(30 30 39/var(--tw-border-opacity,1))}.dark\\:bg-black:is(.dark *){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.dark\\:bg-gray-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity,1))}.dark\\:bg-gray-700:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:bg-gray-800:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}.dark\\:text-\\[\\#201a41\\]:is(.dark *){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity,1))}.dark\\:text-gray-300:is(.dark *){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.dark\\:text-gray-400:is(.dark *){--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.dark\\:ring-offset-gray-900:is(.dark *){--tw-ring-offset-color:#08080e}.dark\\:placeholder\\:text-gray-400:is(.dark *)::-moz-placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:placeholder\\:text-gray-400:is(.dark *)::placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:hover\\:bg-black\\/90:hover:is(.dark *){background-color:rgba(0,0,0,.9)}.dark\\:hover\\:bg-gray-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:hover\\:bg-gray-800:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}.dark\\:focus\\:ring-offset-gray-900:focus:is(.dark *){--tw-ring-offset-color:#08080e}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:w-full{width:100%}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:p-10{padding:2.5rem}.md\\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.md\\:pl-10{padding-left:2.5rem}.md\\:pl-20{padding-left:5rem}.md\\:pr-10{padding-right:2.5rem}.md\\:pr-20{padding-right:5rem}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:inline{display:inline}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:flex-1{flex:1 1 0%}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
19029
+ export declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }\n\n/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}body:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.right-2{right:.5rem}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-1{margin-bottom:.25rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mt-0\\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.hidden{display:none}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-9{width:2.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-auto{width:auto}.w-full{width:100%}.min-w-0{min-width:0}.max-w-\\[1295px\\]{max-width:1295px}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1\\/2{--tw-translate-y:-50%}.-translate-y-1\\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-1\\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity,1))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity,1))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity,1))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity,1))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pl-12{padding-left:3rem}.pl-6{padding-left:1.5rem}.pr-12{padding-right:3rem}.pr-6{padding-right:1.5rem}.pr-8{padding-right:2rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-\\[0\\]{line-height:0}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-tight{letter-spacing:-.025em}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity,1))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity,1))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity,1))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity,1))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity,1))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-white{--tw-ring-offset-color:#fff}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-200{transition-duration:.2s}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.file\\:border-0::file-selector-button{border-width:0}.file\\:text-sm::file-selector-button{font-size:.875rem;line-height:120%}.file\\:font-medium::file-selector-button{font-weight:500}.placeholder\\:normal-case::-moz-placeholder{text-transform:none}.placeholder\\:normal-case::placeholder{text-transform:none}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.placeholder\\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity,1))}.first\\:rounded-l-md:first-child{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.first\\:border-l:first-child{border-left-width:1px}.last\\:rounded-r-md:last-child{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(191 188 215/var(--tw-bg-opacity,1))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity,1))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:brightness-90:hover{--tw-brightness:brightness(.9);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.focus\\:z-10:focus{z-index:10}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus-visible\\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group[open] .group-open\\:rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:disabled~.peer-disabled\\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\\:opacity-70{opacity:.7}.has-\\[\\:disabled\\]\\:opacity-50:has(:disabled){opacity:.5}.dark\\:border-gray-400:is(.dark *){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity,1))}.dark\\:border-gray-500:is(.dark *){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity,1))}.dark\\:border-gray-600:is(.dark *){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity,1))}.dark\\:border-gray-700:is(.dark *){--tw-border-opacity:1;border-color:rgb(30 30 39/var(--tw-border-opacity,1))}.dark\\:bg-black:is(.dark *){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.dark\\:bg-gray-600:is(.dark *){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity,1))}.dark\\:bg-gray-700:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:bg-gray-800:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}.dark\\:text-\\[\\#201a41\\]:is(.dark *){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity,1))}.dark\\:text-gray-300:is(.dark *){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity,1))}.dark\\:text-gray-400:is(.dark *){--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:text-white:is(.dark *){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.dark\\:ring-offset-gray-900:is(.dark *){--tw-ring-offset-color:#08080e}.dark\\:placeholder\\:text-gray-400:is(.dark *)::-moz-placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:placeholder\\:text-gray-400:is(.dark *)::placeholder{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity,1))}.dark\\:hover\\:bg-black\\/90:hover:is(.dark *){background-color:rgba(0,0,0,.9)}.dark\\:hover\\:bg-gray-700:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity,1))}.dark\\:hover\\:bg-gray-800:hover:is(.dark *){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity,1))}.dark\\:focus\\:ring-offset-gray-900:focus:is(.dark *){--tw-ring-offset-color:#08080e}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:w-full{width:100%}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:p-10{padding:2.5rem}.md\\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.md\\:pl-10{padding-left:2.5rem}.md\\:pl-20{padding-left:5rem}.md\\:pr-10{padding-right:2.5rem}.md\\:pr-20{padding-right:5rem}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:inline{display:inline}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:flex-1{flex:1 1 0%}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
18134
19030
  export declare function injectTailwindCSS(): void;
18135
19031
  export interface MainTenantAdapterConfig {
18136
19032
  mainTenantId?: string;
@@ -19501,6 +20397,42 @@ export declare function init(config: AuthHeroConfig): {
19501
20397
  visible: boolean;
19502
20398
  category?: "BLOCK" | undefined | undefined;
19503
20399
  order?: number | undefined | undefined;
20400
+ } | {
20401
+ type: "EMAIL";
20402
+ id: string;
20403
+ config: {
20404
+ label?: string | undefined | undefined;
20405
+ placeholder?: string | undefined | undefined;
20406
+ };
20407
+ visible: boolean;
20408
+ required?: boolean | undefined | undefined;
20409
+ category?: "FIELD" | undefined | undefined;
20410
+ sensitive?: boolean | undefined | undefined;
20411
+ order?: number | undefined | undefined;
20412
+ } | {
20413
+ type: "NUMBER";
20414
+ id: string;
20415
+ config: {
20416
+ label?: string | undefined | undefined;
20417
+ placeholder?: string | undefined | undefined;
20418
+ };
20419
+ visible: boolean;
20420
+ required?: boolean | undefined | undefined;
20421
+ category?: "FIELD" | undefined | undefined;
20422
+ sensitive?: boolean | undefined | undefined;
20423
+ order?: number | undefined | undefined;
20424
+ } | {
20425
+ type: "PHONE";
20426
+ id: string;
20427
+ config: {
20428
+ label?: string | undefined | undefined;
20429
+ placeholder?: string | undefined | undefined;
20430
+ };
20431
+ visible: boolean;
20432
+ required?: boolean | undefined | undefined;
20433
+ category?: "FIELD" | undefined | undefined;
20434
+ sensitive?: boolean | undefined | undefined;
20435
+ order?: number | undefined | undefined;
19504
20436
  })[];
19505
20437
  next_node?: string | undefined | undefined;
19506
20438
  };
@@ -19608,19 +20540,52 @@ export declare function init(config: AuthHeroConfig): {
19608
20540
  type: "LEGAL";
19609
20541
  id: string;
19610
20542
  config: {
19611
- text: string;
19612
- html?: boolean | undefined | undefined;
20543
+ text: string;
20544
+ html?: boolean | undefined | undefined;
20545
+ };
20546
+ visible: boolean;
20547
+ required?: boolean | undefined | undefined;
20548
+ category?: "FIELD" | undefined | undefined;
20549
+ order?: number | undefined | undefined;
20550
+ } | {
20551
+ type: "TEXT";
20552
+ id: string;
20553
+ config: {
20554
+ placeholder?: string | undefined | undefined;
20555
+ multiline?: boolean | undefined | undefined;
20556
+ };
20557
+ visible: boolean;
20558
+ required?: boolean | undefined | undefined;
20559
+ category?: "FIELD" | undefined | undefined;
20560
+ sensitive?: boolean | undefined | undefined;
20561
+ order?: number | undefined | undefined;
20562
+ } | {
20563
+ type: "NEXT_BUTTON";
20564
+ id: string;
20565
+ config: {
20566
+ text?: string | undefined | undefined;
20567
+ };
20568
+ visible: boolean;
20569
+ category?: "BLOCK" | undefined | undefined;
20570
+ order?: number | undefined | undefined;
20571
+ } | {
20572
+ type: "EMAIL";
20573
+ id: string;
20574
+ config: {
20575
+ label?: string | undefined | undefined;
20576
+ placeholder?: string | undefined | undefined;
19613
20577
  };
19614
20578
  visible: boolean;
19615
20579
  required?: boolean | undefined | undefined;
19616
20580
  category?: "FIELD" | undefined | undefined;
20581
+ sensitive?: boolean | undefined | undefined;
19617
20582
  order?: number | undefined | undefined;
19618
20583
  } | {
19619
- type: "TEXT";
20584
+ type: "NUMBER";
19620
20585
  id: string;
19621
20586
  config: {
20587
+ label?: string | undefined | undefined;
19622
20588
  placeholder?: string | undefined | undefined;
19623
- multiline?: boolean | undefined | undefined;
19624
20589
  };
19625
20590
  visible: boolean;
19626
20591
  required?: boolean | undefined | undefined;
@@ -19628,13 +20593,16 @@ export declare function init(config: AuthHeroConfig): {
19628
20593
  sensitive?: boolean | undefined | undefined;
19629
20594
  order?: number | undefined | undefined;
19630
20595
  } | {
19631
- type: "NEXT_BUTTON";
20596
+ type: "PHONE";
19632
20597
  id: string;
19633
20598
  config: {
19634
- text?: string | undefined | undefined;
20599
+ label?: string | undefined | undefined;
20600
+ placeholder?: string | undefined | undefined;
19635
20601
  };
19636
20602
  visible: boolean;
19637
- category?: "BLOCK" | undefined | undefined;
20603
+ required?: boolean | undefined | undefined;
20604
+ category?: "FIELD" | undefined | undefined;
20605
+ sensitive?: boolean | undefined | undefined;
19638
20606
  order?: number | undefined | undefined;
19639
20607
  })[];
19640
20608
  next_node?: string | undefined | undefined;
@@ -19785,6 +20753,42 @@ export declare function init(config: AuthHeroConfig): {
19785
20753
  visible: boolean;
19786
20754
  category?: "BLOCK" | undefined | undefined;
19787
20755
  order?: number | undefined | undefined;
20756
+ } | {
20757
+ type: "EMAIL";
20758
+ id: string;
20759
+ config: {
20760
+ label?: string | undefined | undefined;
20761
+ placeholder?: string | undefined | undefined;
20762
+ };
20763
+ visible: boolean;
20764
+ required?: boolean | undefined | undefined;
20765
+ category?: "FIELD" | undefined | undefined;
20766
+ sensitive?: boolean | undefined | undefined;
20767
+ order?: number | undefined | undefined;
20768
+ } | {
20769
+ type: "NUMBER";
20770
+ id: string;
20771
+ config: {
20772
+ label?: string | undefined | undefined;
20773
+ placeholder?: string | undefined | undefined;
20774
+ };
20775
+ visible: boolean;
20776
+ required?: boolean | undefined | undefined;
20777
+ category?: "FIELD" | undefined | undefined;
20778
+ sensitive?: boolean | undefined | undefined;
20779
+ order?: number | undefined | undefined;
20780
+ } | {
20781
+ type: "PHONE";
20782
+ id: string;
20783
+ config: {
20784
+ label?: string | undefined | undefined;
20785
+ placeholder?: string | undefined | undefined;
20786
+ };
20787
+ visible: boolean;
20788
+ required?: boolean | undefined | undefined;
20789
+ category?: "FIELD" | undefined | undefined;
20790
+ sensitive?: boolean | undefined | undefined;
20791
+ order?: number | undefined | undefined;
19788
20792
  })[];
19789
20793
  next_node?: string | undefined | undefined;
19790
20794
  };
@@ -19943,6 +20947,42 @@ export declare function init(config: AuthHeroConfig): {
19943
20947
  category?: "BLOCK" | undefined;
19944
20948
  order?: number | undefined;
19945
20949
  visible?: boolean | undefined;
20950
+ } | {
20951
+ type: "EMAIL";
20952
+ id: string;
20953
+ config: {
20954
+ label?: string | undefined;
20955
+ placeholder?: string | undefined;
20956
+ };
20957
+ required?: boolean | undefined;
20958
+ category?: "FIELD" | undefined;
20959
+ sensitive?: boolean | undefined;
20960
+ order?: number | undefined;
20961
+ visible?: boolean | undefined;
20962
+ } | {
20963
+ type: "NUMBER";
20964
+ id: string;
20965
+ config: {
20966
+ label?: string | undefined;
20967
+ placeholder?: string | undefined;
20968
+ };
20969
+ required?: boolean | undefined;
20970
+ category?: "FIELD" | undefined;
20971
+ sensitive?: boolean | undefined;
20972
+ order?: number | undefined;
20973
+ visible?: boolean | undefined;
20974
+ } | {
20975
+ type: "PHONE";
20976
+ id: string;
20977
+ config: {
20978
+ label?: string | undefined;
20979
+ placeholder?: string | undefined;
20980
+ };
20981
+ required?: boolean | undefined;
20982
+ category?: "FIELD" | undefined;
20983
+ sensitive?: boolean | undefined;
20984
+ order?: number | undefined;
20985
+ visible?: boolean | undefined;
19946
20986
  })[];
19947
20987
  next_node?: string | undefined;
19948
20988
  };
@@ -20074,6 +21114,42 @@ export declare function init(config: AuthHeroConfig): {
20074
21114
  visible: boolean;
20075
21115
  category?: "BLOCK" | undefined | undefined;
20076
21116
  order?: number | undefined | undefined;
21117
+ } | {
21118
+ type: "EMAIL";
21119
+ id: string;
21120
+ config: {
21121
+ label?: string | undefined | undefined;
21122
+ placeholder?: string | undefined | undefined;
21123
+ };
21124
+ visible: boolean;
21125
+ required?: boolean | undefined | undefined;
21126
+ category?: "FIELD" | undefined | undefined;
21127
+ sensitive?: boolean | undefined | undefined;
21128
+ order?: number | undefined | undefined;
21129
+ } | {
21130
+ type: "NUMBER";
21131
+ id: string;
21132
+ config: {
21133
+ label?: string | undefined | undefined;
21134
+ placeholder?: string | undefined | undefined;
21135
+ };
21136
+ visible: boolean;
21137
+ required?: boolean | undefined | undefined;
21138
+ category?: "FIELD" | undefined | undefined;
21139
+ sensitive?: boolean | undefined | undefined;
21140
+ order?: number | undefined | undefined;
21141
+ } | {
21142
+ type: "PHONE";
21143
+ id: string;
21144
+ config: {
21145
+ label?: string | undefined | undefined;
21146
+ placeholder?: string | undefined | undefined;
21147
+ };
21148
+ visible: boolean;
21149
+ required?: boolean | undefined | undefined;
21150
+ category?: "FIELD" | undefined | undefined;
21151
+ sensitive?: boolean | undefined | undefined;
21152
+ order?: number | undefined | undefined;
20077
21153
  })[];
20078
21154
  next_node?: string | undefined | undefined;
20079
21155
  };
@@ -20211,6 +21287,42 @@ export declare function init(config: AuthHeroConfig): {
20211
21287
  category?: "BLOCK" | undefined;
20212
21288
  order?: number | undefined;
20213
21289
  visible?: boolean | undefined;
21290
+ } | {
21291
+ type: "EMAIL";
21292
+ id: string;
21293
+ config: {
21294
+ label?: string | undefined;
21295
+ placeholder?: string | undefined;
21296
+ };
21297
+ required?: boolean | undefined;
21298
+ category?: "FIELD" | undefined;
21299
+ sensitive?: boolean | undefined;
21300
+ order?: number | undefined;
21301
+ visible?: boolean | undefined;
21302
+ } | {
21303
+ type: "NUMBER";
21304
+ id: string;
21305
+ config: {
21306
+ label?: string | undefined;
21307
+ placeholder?: string | undefined;
21308
+ };
21309
+ required?: boolean | undefined;
21310
+ category?: "FIELD" | undefined;
21311
+ sensitive?: boolean | undefined;
21312
+ order?: number | undefined;
21313
+ visible?: boolean | undefined;
21314
+ } | {
21315
+ type: "PHONE";
21316
+ id: string;
21317
+ config: {
21318
+ label?: string | undefined;
21319
+ placeholder?: string | undefined;
21320
+ };
21321
+ required?: boolean | undefined;
21322
+ category?: "FIELD" | undefined;
21323
+ sensitive?: boolean | undefined;
21324
+ order?: number | undefined;
21325
+ visible?: boolean | undefined;
20214
21326
  })[];
20215
21327
  next_node?: string | undefined;
20216
21328
  };
@@ -20342,6 +21454,42 @@ export declare function init(config: AuthHeroConfig): {
20342
21454
  visible: boolean;
20343
21455
  category?: "BLOCK" | undefined | undefined;
20344
21456
  order?: number | undefined | undefined;
21457
+ } | {
21458
+ type: "EMAIL";
21459
+ id: string;
21460
+ config: {
21461
+ label?: string | undefined | undefined;
21462
+ placeholder?: string | undefined | undefined;
21463
+ };
21464
+ visible: boolean;
21465
+ required?: boolean | undefined | undefined;
21466
+ category?: "FIELD" | undefined | undefined;
21467
+ sensitive?: boolean | undefined | undefined;
21468
+ order?: number | undefined | undefined;
21469
+ } | {
21470
+ type: "NUMBER";
21471
+ id: string;
21472
+ config: {
21473
+ label?: string | undefined | undefined;
21474
+ placeholder?: string | undefined | undefined;
21475
+ };
21476
+ visible: boolean;
21477
+ required?: boolean | undefined | undefined;
21478
+ category?: "FIELD" | undefined | undefined;
21479
+ sensitive?: boolean | undefined | undefined;
21480
+ order?: number | undefined | undefined;
21481
+ } | {
21482
+ type: "PHONE";
21483
+ id: string;
21484
+ config: {
21485
+ label?: string | undefined | undefined;
21486
+ placeholder?: string | undefined | undefined;
21487
+ };
21488
+ visible: boolean;
21489
+ required?: boolean | undefined | undefined;
21490
+ category?: "FIELD" | undefined | undefined;
21491
+ sensitive?: boolean | undefined | undefined;
21492
+ order?: number | undefined | undefined;
20345
21493
  })[];
20346
21494
  next_node?: string | undefined | undefined;
20347
21495
  };
@@ -20884,6 +22032,50 @@ export declare function init(config: AuthHeroConfig): {
20884
22032
  status: 201;
20885
22033
  };
20886
22034
  };
22035
+ } & {
22036
+ "/:id/clients": {
22037
+ $get: {
22038
+ input: {
22039
+ param: {
22040
+ id: string;
22041
+ };
22042
+ } & {
22043
+ header: {
22044
+ "tenant-id": string;
22045
+ };
22046
+ };
22047
+ output: {
22048
+ enabled_clients: {
22049
+ name: string;
22050
+ client_id: string;
22051
+ }[];
22052
+ };
22053
+ outputFormat: "json";
22054
+ status: 200;
22055
+ };
22056
+ };
22057
+ } & {
22058
+ "/:id/clients": {
22059
+ $patch: {
22060
+ input: {
22061
+ param: {
22062
+ id: string;
22063
+ };
22064
+ } & {
22065
+ header: {
22066
+ "tenant-id": string;
22067
+ };
22068
+ } & {
22069
+ json: {
22070
+ status: boolean;
22071
+ client_id: string;
22072
+ }[];
22073
+ };
22074
+ output: {};
22075
+ outputFormat: string;
22076
+ status: 200;
22077
+ };
22078
+ };
20887
22079
  }, "/connections"> & import("hono/types").MergeSchemaPath<{
20888
22080
  "/": {
20889
22081
  $get: {
@@ -22099,6 +23291,7 @@ export declare function init(config: AuthHeroConfig): {
22099
23291
  web_origins?: string[] | undefined | undefined;
22100
23292
  client_aliases?: string[] | undefined | undefined;
22101
23293
  allowed_clients?: string[] | undefined | undefined;
23294
+ connections?: string[] | undefined | undefined;
22102
23295
  allowed_logout_urls?: string[] | undefined | undefined;
22103
23296
  session_transfer?: {
22104
23297
  [x: string]: any;
@@ -22180,6 +23373,7 @@ export declare function init(config: AuthHeroConfig): {
22180
23373
  web_origins?: string[] | undefined | undefined;
22181
23374
  client_aliases?: string[] | undefined | undefined;
22182
23375
  allowed_clients?: string[] | undefined | undefined;
23376
+ connections?: string[] | undefined | undefined;
22183
23377
  allowed_logout_urls?: string[] | undefined | undefined;
22184
23378
  session_transfer?: {
22185
23379
  [x: string]: any;
@@ -22275,6 +23469,7 @@ export declare function init(config: AuthHeroConfig): {
22275
23469
  web_origins?: string[] | undefined | undefined;
22276
23470
  client_aliases?: string[] | undefined | undefined;
22277
23471
  allowed_clients?: string[] | undefined | undefined;
23472
+ connections?: string[] | undefined | undefined;
22278
23473
  allowed_logout_urls?: string[] | undefined | undefined;
22279
23474
  session_transfer?: {
22280
23475
  [x: string]: any;
@@ -22383,6 +23578,7 @@ export declare function init(config: AuthHeroConfig): {
22383
23578
  web_origins?: string[] | undefined;
22384
23579
  client_aliases?: string[] | undefined;
22385
23580
  allowed_clients?: string[] | undefined;
23581
+ connections?: string[] | undefined;
22386
23582
  allowed_logout_urls?: string[] | undefined;
22387
23583
  session_transfer?: Record<string, any> | undefined;
22388
23584
  oidc_logout?: Record<string, any> | undefined;
@@ -22435,6 +23631,7 @@ export declare function init(config: AuthHeroConfig): {
22435
23631
  web_origins?: string[] | undefined | undefined;
22436
23632
  client_aliases?: string[] | undefined | undefined;
22437
23633
  allowed_clients?: string[] | undefined | undefined;
23634
+ connections?: string[] | undefined | undefined;
22438
23635
  allowed_logout_urls?: string[] | undefined | undefined;
22439
23636
  session_transfer?: {
22440
23637
  [x: string]: any;
@@ -22522,6 +23719,7 @@ export declare function init(config: AuthHeroConfig): {
22522
23719
  web_origins?: string[] | undefined;
22523
23720
  client_aliases?: string[] | undefined;
22524
23721
  allowed_clients?: string[] | undefined;
23722
+ connections?: string[] | undefined;
22525
23723
  allowed_logout_urls?: string[] | undefined;
22526
23724
  session_transfer?: Record<string, any> | undefined;
22527
23725
  oidc_logout?: Record<string, any> | undefined;
@@ -22577,6 +23775,7 @@ export declare function init(config: AuthHeroConfig): {
22577
23775
  web_origins?: string[] | undefined;
22578
23776
  client_aliases?: string[] | undefined;
22579
23777
  allowed_clients?: string[] | undefined;
23778
+ connections?: string[] | undefined;
22580
23779
  allowed_logout_urls?: string[] | undefined;
22581
23780
  session_transfer?: {
22582
23781
  [x: string]: any;
@@ -22630,6 +23829,124 @@ export declare function init(config: AuthHeroConfig): {
22630
23829
  status: 201;
22631
23830
  };
22632
23831
  };
23832
+ } & {
23833
+ "/:id/connections": {
23834
+ $get: {
23835
+ input: {
23836
+ param: {
23837
+ id: string;
23838
+ };
23839
+ } & {
23840
+ header: {
23841
+ "tenant-id": string;
23842
+ };
23843
+ };
23844
+ output: {
23845
+ enabled_connections: {
23846
+ connection_id: string;
23847
+ connection?: {
23848
+ options: {
23849
+ provider?: string | undefined | undefined;
23850
+ client_id?: string | undefined | undefined;
23851
+ client_secret?: string | undefined | undefined;
23852
+ scope?: string | undefined | undefined;
23853
+ kid?: string | undefined | undefined;
23854
+ team_id?: string | undefined | undefined;
23855
+ realms?: string | undefined | undefined;
23856
+ authentication_method?: string | undefined | undefined;
23857
+ app_secret?: string | undefined | undefined;
23858
+ authorization_endpoint?: string | undefined | undefined;
23859
+ token_endpoint?: string | undefined | undefined;
23860
+ userinfo_endpoint?: string | undefined | undefined;
23861
+ jwks_uri?: string | undefined | undefined;
23862
+ discovery_url?: string | undefined | undefined;
23863
+ issuer?: string | undefined | undefined;
23864
+ from?: string | undefined | undefined;
23865
+ twilio_sid?: string | undefined | undefined;
23866
+ twilio_token?: string | undefined | undefined;
23867
+ icon_url?: string | undefined | undefined;
23868
+ };
23869
+ created_at: string;
23870
+ updated_at: string;
23871
+ name: string;
23872
+ strategy: string;
23873
+ id?: string | undefined | undefined;
23874
+ response_type?: AuthorizationResponseType | undefined;
23875
+ response_mode?: AuthorizationResponseMode | undefined;
23876
+ display_name?: string | undefined | undefined;
23877
+ enabled_clients?: string[] | undefined | undefined;
23878
+ is_domain_connection?: boolean | undefined | undefined;
23879
+ show_as_button?: boolean | undefined | undefined;
23880
+ metadata?: {
23881
+ [x: string]: any;
23882
+ } | undefined;
23883
+ } | undefined;
23884
+ }[];
23885
+ };
23886
+ outputFormat: "json";
23887
+ status: 200;
23888
+ };
23889
+ };
23890
+ } & {
23891
+ "/:id/connections": {
23892
+ $patch: {
23893
+ input: {
23894
+ param: {
23895
+ id: string;
23896
+ };
23897
+ } & {
23898
+ header: {
23899
+ "tenant-id": string;
23900
+ };
23901
+ } & {
23902
+ json: string[];
23903
+ };
23904
+ output: {
23905
+ enabled_connections: {
23906
+ connection_id: string;
23907
+ connection?: {
23908
+ options: {
23909
+ provider?: string | undefined | undefined;
23910
+ client_id?: string | undefined | undefined;
23911
+ client_secret?: string | undefined | undefined;
23912
+ scope?: string | undefined | undefined;
23913
+ kid?: string | undefined | undefined;
23914
+ team_id?: string | undefined | undefined;
23915
+ realms?: string | undefined | undefined;
23916
+ authentication_method?: string | undefined | undefined;
23917
+ app_secret?: string | undefined | undefined;
23918
+ authorization_endpoint?: string | undefined | undefined;
23919
+ token_endpoint?: string | undefined | undefined;
23920
+ userinfo_endpoint?: string | undefined | undefined;
23921
+ jwks_uri?: string | undefined | undefined;
23922
+ discovery_url?: string | undefined | undefined;
23923
+ issuer?: string | undefined | undefined;
23924
+ from?: string | undefined | undefined;
23925
+ twilio_sid?: string | undefined | undefined;
23926
+ twilio_token?: string | undefined | undefined;
23927
+ icon_url?: string | undefined | undefined;
23928
+ };
23929
+ created_at: string;
23930
+ updated_at: string;
23931
+ name: string;
23932
+ strategy: string;
23933
+ id?: string | undefined | undefined;
23934
+ response_type?: AuthorizationResponseType | undefined;
23935
+ response_mode?: AuthorizationResponseMode | undefined;
23936
+ display_name?: string | undefined | undefined;
23937
+ enabled_clients?: string[] | undefined | undefined;
23938
+ is_domain_connection?: boolean | undefined | undefined;
23939
+ show_as_button?: boolean | undefined | undefined;
23940
+ metadata?: {
23941
+ [x: string]: any;
23942
+ } | undefined;
23943
+ } | undefined;
23944
+ }[];
23945
+ };
23946
+ outputFormat: "json";
23947
+ status: 200;
23948
+ };
23949
+ };
22633
23950
  }, "/clients"> & import("hono/types").MergeSchemaPath<{
22634
23951
  "/": {
22635
23952
  $get: {