authhero 0.288.0 → 0.290.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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,6 +10066,7 @@ 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
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10063
10070
  type: z.ZodLiteral<"RICH_TEXT">;
10064
10071
  config: z.ZodObject<{
10065
10072
  content: z.ZodString;
@@ -10077,6 +10084,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10077
10084
  content: string;
10078
10085
  };
10079
10086
  visible: boolean;
10087
+ category?: "BLOCK" | undefined;
10080
10088
  order?: number | undefined;
10081
10089
  }, {
10082
10090
  type: "RICH_TEXT";
@@ -10084,11 +10092,13 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10084
10092
  config: {
10085
10093
  content: string;
10086
10094
  };
10095
+ category?: "BLOCK" | undefined;
10087
10096
  order?: number | undefined;
10088
10097
  visible?: boolean | undefined;
10089
10098
  }>,
10090
10099
  z.ZodObject<{
10091
10100
  id: z.ZodString;
10101
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10092
10102
  type: z.ZodLiteral<"LEGAL">;
10093
10103
  config: z.ZodObject<{
10094
10104
  text: z.ZodString;
@@ -10112,6 +10122,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10112
10122
  };
10113
10123
  visible: boolean;
10114
10124
  required?: boolean | undefined;
10125
+ category?: "FIELD" | undefined;
10115
10126
  order?: number | undefined;
10116
10127
  }, {
10117
10128
  type: "LEGAL";
@@ -10121,11 +10132,13 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10121
10132
  html?: boolean | undefined;
10122
10133
  };
10123
10134
  required?: boolean | undefined;
10135
+ category?: "FIELD" | undefined;
10124
10136
  order?: number | undefined;
10125
10137
  visible?: boolean | undefined;
10126
10138
  }>,
10127
10139
  z.ZodObject<{
10128
10140
  id: z.ZodString;
10141
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10129
10142
  type: z.ZodLiteral<"TEXT">;
10130
10143
  config: z.ZodObject<{
10131
10144
  placeholder: z.ZodOptional<z.ZodString>;
@@ -10150,6 +10163,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10150
10163
  };
10151
10164
  visible: boolean;
10152
10165
  required?: boolean | undefined;
10166
+ category?: "FIELD" | undefined;
10153
10167
  sensitive?: boolean | undefined;
10154
10168
  order?: number | undefined;
10155
10169
  }, {
@@ -10160,12 +10174,14 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10160
10174
  multiline?: boolean | undefined;
10161
10175
  };
10162
10176
  required?: boolean | undefined;
10177
+ category?: "FIELD" | undefined;
10163
10178
  sensitive?: boolean | undefined;
10164
10179
  order?: number | undefined;
10165
10180
  visible?: boolean | undefined;
10166
10181
  }>,
10167
10182
  z.ZodObject<{
10168
10183
  id: z.ZodString;
10184
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10169
10185
  type: z.ZodLiteral<"NEXT_BUTTON">;
10170
10186
  config: z.ZodObject<{
10171
10187
  text: z.ZodOptional<z.ZodString>;
@@ -10183,6 +10199,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10183
10199
  text?: string | undefined;
10184
10200
  };
10185
10201
  visible: boolean;
10202
+ category?: "BLOCK" | undefined;
10186
10203
  order?: number | undefined;
10187
10204
  }, {
10188
10205
  type: "NEXT_BUTTON";
@@ -10190,6 +10207,7 @@ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type"
10190
10207
  config: {
10191
10208
  text?: string | undefined;
10192
10209
  };
10210
+ category?: "BLOCK" | undefined;
10193
10211
  order?: number | undefined;
10194
10212
  visible?: boolean | undefined;
10195
10213
  }>
@@ -10238,20 +10256,20 @@ export declare const formInsertSchema: z.ZodObject<{
10238
10256
  alias: z.ZodOptional<z.ZodString>;
10239
10257
  config: z.ZodObject<{
10240
10258
  flow_id: z.ZodString;
10241
- next_node: z.ZodString;
10259
+ next_node: z.ZodOptional<z.ZodString>;
10242
10260
  }, "strip", z.ZodTypeAny, {
10243
- next_node: string;
10244
10261
  flow_id: string;
10262
+ next_node?: string | undefined;
10245
10263
  }, {
10246
- next_node: string;
10247
10264
  flow_id: string;
10265
+ next_node?: string | undefined;
10248
10266
  }>;
10249
10267
  }, "strip", z.ZodTypeAny, {
10250
10268
  type: "FLOW";
10251
10269
  id: string;
10252
10270
  config: {
10253
- next_node: string;
10254
10271
  flow_id: string;
10272
+ next_node?: string | undefined;
10255
10273
  };
10256
10274
  coordinates: {
10257
10275
  x: number;
@@ -10262,8 +10280,8 @@ export declare const formInsertSchema: z.ZodObject<{
10262
10280
  type: "FLOW";
10263
10281
  id: string;
10264
10282
  config: {
10265
- next_node: string;
10266
10283
  flow_id: string;
10284
+ next_node?: string | undefined;
10267
10285
  };
10268
10286
  coordinates: {
10269
10287
  x: number;
@@ -10302,7 +10320,7 @@ export declare const formInsertSchema: z.ZodObject<{
10302
10320
  alias?: string | undefined;
10303
10321
  condition?: any;
10304
10322
  }>, "many">;
10305
- fallback: z.ZodArray<z.ZodString, "many">;
10323
+ fallback: z.ZodString;
10306
10324
  }, "strip", z.ZodTypeAny, {
10307
10325
  rules: {
10308
10326
  id: string;
@@ -10310,7 +10328,7 @@ export declare const formInsertSchema: z.ZodObject<{
10310
10328
  alias?: string | undefined;
10311
10329
  condition?: any;
10312
10330
  }[];
10313
- fallback: string[];
10331
+ fallback: string;
10314
10332
  }, {
10315
10333
  rules: {
10316
10334
  id: string;
@@ -10318,7 +10336,7 @@ export declare const formInsertSchema: z.ZodObject<{
10318
10336
  alias?: string | undefined;
10319
10337
  condition?: any;
10320
10338
  }[];
10321
- fallback: string[];
10339
+ fallback: string;
10322
10340
  }>;
10323
10341
  }, "strip", z.ZodTypeAny, {
10324
10342
  type: "ROUTER";
@@ -10330,7 +10348,7 @@ export declare const formInsertSchema: z.ZodObject<{
10330
10348
  alias?: string | undefined;
10331
10349
  condition?: any;
10332
10350
  }[];
10333
- fallback: string[];
10351
+ fallback: string;
10334
10352
  };
10335
10353
  coordinates: {
10336
10354
  x: number;
@@ -10347,7 +10365,7 @@ export declare const formInsertSchema: z.ZodObject<{
10347
10365
  alias?: string | undefined;
10348
10366
  condition?: any;
10349
10367
  }[];
10350
- fallback: string[];
10368
+ fallback: string;
10351
10369
  };
10352
10370
  coordinates: {
10353
10371
  x: number;
@@ -10373,6 +10391,7 @@ export declare const formInsertSchema: z.ZodObject<{
10373
10391
  components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
10374
10392
  z.ZodObject<{
10375
10393
  id: z.ZodString;
10394
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10376
10395
  type: z.ZodLiteral<"RICH_TEXT">;
10377
10396
  config: z.ZodObject<{
10378
10397
  content: z.ZodString;
@@ -10390,6 +10409,7 @@ export declare const formInsertSchema: z.ZodObject<{
10390
10409
  content: string;
10391
10410
  };
10392
10411
  visible: boolean;
10412
+ category?: "BLOCK" | undefined;
10393
10413
  order?: number | undefined;
10394
10414
  }, {
10395
10415
  type: "RICH_TEXT";
@@ -10397,11 +10417,13 @@ export declare const formInsertSchema: z.ZodObject<{
10397
10417
  config: {
10398
10418
  content: string;
10399
10419
  };
10420
+ category?: "BLOCK" | undefined;
10400
10421
  order?: number | undefined;
10401
10422
  visible?: boolean | undefined;
10402
10423
  }>,
10403
10424
  z.ZodObject<{
10404
10425
  id: z.ZodString;
10426
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10405
10427
  type: z.ZodLiteral<"LEGAL">;
10406
10428
  config: z.ZodObject<{
10407
10429
  text: z.ZodString;
@@ -10425,6 +10447,7 @@ export declare const formInsertSchema: z.ZodObject<{
10425
10447
  };
10426
10448
  visible: boolean;
10427
10449
  required?: boolean | undefined;
10450
+ category?: "FIELD" | undefined;
10428
10451
  order?: number | undefined;
10429
10452
  }, {
10430
10453
  type: "LEGAL";
@@ -10434,11 +10457,13 @@ export declare const formInsertSchema: z.ZodObject<{
10434
10457
  html?: boolean | undefined;
10435
10458
  };
10436
10459
  required?: boolean | undefined;
10460
+ category?: "FIELD" | undefined;
10437
10461
  order?: number | undefined;
10438
10462
  visible?: boolean | undefined;
10439
10463
  }>,
10440
10464
  z.ZodObject<{
10441
10465
  id: z.ZodString;
10466
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
10442
10467
  type: z.ZodLiteral<"TEXT">;
10443
10468
  config: z.ZodObject<{
10444
10469
  placeholder: z.ZodOptional<z.ZodString>;
@@ -10463,6 +10488,7 @@ export declare const formInsertSchema: z.ZodObject<{
10463
10488
  };
10464
10489
  visible: boolean;
10465
10490
  required?: boolean | undefined;
10491
+ category?: "FIELD" | undefined;
10466
10492
  sensitive?: boolean | undefined;
10467
10493
  order?: number | undefined;
10468
10494
  }, {
@@ -10473,12 +10499,14 @@ export declare const formInsertSchema: z.ZodObject<{
10473
10499
  multiline?: boolean | undefined;
10474
10500
  };
10475
10501
  required?: boolean | undefined;
10502
+ category?: "FIELD" | undefined;
10476
10503
  sensitive?: boolean | undefined;
10477
10504
  order?: number | undefined;
10478
10505
  visible?: boolean | undefined;
10479
10506
  }>,
10480
10507
  z.ZodObject<{
10481
10508
  id: z.ZodString;
10509
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
10482
10510
  type: z.ZodLiteral<"NEXT_BUTTON">;
10483
10511
  config: z.ZodObject<{
10484
10512
  text: z.ZodOptional<z.ZodString>;
@@ -10496,6 +10524,7 @@ export declare const formInsertSchema: z.ZodObject<{
10496
10524
  text?: string | undefined;
10497
10525
  };
10498
10526
  visible: boolean;
10527
+ category?: "BLOCK" | undefined;
10499
10528
  order?: number | undefined;
10500
10529
  }, {
10501
10530
  type: "NEXT_BUTTON";
@@ -10503,11 +10532,12 @@ export declare const formInsertSchema: z.ZodObject<{
10503
10532
  config: {
10504
10533
  text?: string | undefined;
10505
10534
  };
10535
+ category?: "BLOCK" | undefined;
10506
10536
  order?: number | undefined;
10507
10537
  visible?: boolean | undefined;
10508
10538
  }>
10509
10539
  ]>, "many">;
10510
- next_node: z.ZodString;
10540
+ next_node: z.ZodOptional<z.ZodString>;
10511
10541
  }, "strip", z.ZodTypeAny, {
10512
10542
  components: ({
10513
10543
  type: "RICH_TEXT";
@@ -10516,6 +10546,7 @@ export declare const formInsertSchema: z.ZodObject<{
10516
10546
  content: string;
10517
10547
  };
10518
10548
  visible: boolean;
10549
+ category?: "BLOCK" | undefined;
10519
10550
  order?: number | undefined;
10520
10551
  } | {
10521
10552
  type: "LEGAL";
@@ -10526,6 +10557,7 @@ export declare const formInsertSchema: z.ZodObject<{
10526
10557
  };
10527
10558
  visible: boolean;
10528
10559
  required?: boolean | undefined;
10560
+ category?: "FIELD" | undefined;
10529
10561
  order?: number | undefined;
10530
10562
  } | {
10531
10563
  type: "TEXT";
@@ -10536,6 +10568,7 @@ export declare const formInsertSchema: z.ZodObject<{
10536
10568
  };
10537
10569
  visible: boolean;
10538
10570
  required?: boolean | undefined;
10571
+ category?: "FIELD" | undefined;
10539
10572
  sensitive?: boolean | undefined;
10540
10573
  order?: number | undefined;
10541
10574
  } | {
@@ -10545,9 +10578,10 @@ export declare const formInsertSchema: z.ZodObject<{
10545
10578
  text?: string | undefined;
10546
10579
  };
10547
10580
  visible: boolean;
10581
+ category?: "BLOCK" | undefined;
10548
10582
  order?: number | undefined;
10549
10583
  })[];
10550
- next_node: string;
10584
+ next_node?: string | undefined;
10551
10585
  }, {
10552
10586
  components: ({
10553
10587
  type: "RICH_TEXT";
@@ -10555,6 +10589,7 @@ export declare const formInsertSchema: z.ZodObject<{
10555
10589
  config: {
10556
10590
  content: string;
10557
10591
  };
10592
+ category?: "BLOCK" | undefined;
10558
10593
  order?: number | undefined;
10559
10594
  visible?: boolean | undefined;
10560
10595
  } | {
@@ -10565,6 +10600,7 @@ export declare const formInsertSchema: z.ZodObject<{
10565
10600
  html?: boolean | undefined;
10566
10601
  };
10567
10602
  required?: boolean | undefined;
10603
+ category?: "FIELD" | undefined;
10568
10604
  order?: number | undefined;
10569
10605
  visible?: boolean | undefined;
10570
10606
  } | {
@@ -10575,6 +10611,7 @@ export declare const formInsertSchema: z.ZodObject<{
10575
10611
  multiline?: boolean | undefined;
10576
10612
  };
10577
10613
  required?: boolean | undefined;
10614
+ category?: "FIELD" | undefined;
10578
10615
  sensitive?: boolean | undefined;
10579
10616
  order?: number | undefined;
10580
10617
  visible?: boolean | undefined;
@@ -10584,10 +10621,11 @@ export declare const formInsertSchema: z.ZodObject<{
10584
10621
  config: {
10585
10622
  text?: string | undefined;
10586
10623
  };
10624
+ category?: "BLOCK" | undefined;
10587
10625
  order?: number | undefined;
10588
10626
  visible?: boolean | undefined;
10589
10627
  })[];
10590
- next_node: string;
10628
+ next_node?: string | undefined;
10591
10629
  }>;
10592
10630
  }, "strip", z.ZodTypeAny, {
10593
10631
  type: "STEP";
@@ -10600,6 +10638,7 @@ export declare const formInsertSchema: z.ZodObject<{
10600
10638
  content: string;
10601
10639
  };
10602
10640
  visible: boolean;
10641
+ category?: "BLOCK" | undefined;
10603
10642
  order?: number | undefined;
10604
10643
  } | {
10605
10644
  type: "LEGAL";
@@ -10610,6 +10649,7 @@ export declare const formInsertSchema: z.ZodObject<{
10610
10649
  };
10611
10650
  visible: boolean;
10612
10651
  required?: boolean | undefined;
10652
+ category?: "FIELD" | undefined;
10613
10653
  order?: number | undefined;
10614
10654
  } | {
10615
10655
  type: "TEXT";
@@ -10620,6 +10660,7 @@ export declare const formInsertSchema: z.ZodObject<{
10620
10660
  };
10621
10661
  visible: boolean;
10622
10662
  required?: boolean | undefined;
10663
+ category?: "FIELD" | undefined;
10623
10664
  sensitive?: boolean | undefined;
10624
10665
  order?: number | undefined;
10625
10666
  } | {
@@ -10629,9 +10670,10 @@ export declare const formInsertSchema: z.ZodObject<{
10629
10670
  text?: string | undefined;
10630
10671
  };
10631
10672
  visible: boolean;
10673
+ category?: "BLOCK" | undefined;
10632
10674
  order?: number | undefined;
10633
10675
  })[];
10634
- next_node: string;
10676
+ next_node?: string | undefined;
10635
10677
  };
10636
10678
  coordinates: {
10637
10679
  x: number;
@@ -10648,6 +10690,7 @@ export declare const formInsertSchema: z.ZodObject<{
10648
10690
  config: {
10649
10691
  content: string;
10650
10692
  };
10693
+ category?: "BLOCK" | undefined;
10651
10694
  order?: number | undefined;
10652
10695
  visible?: boolean | undefined;
10653
10696
  } | {
@@ -10658,6 +10701,7 @@ export declare const formInsertSchema: z.ZodObject<{
10658
10701
  html?: boolean | undefined;
10659
10702
  };
10660
10703
  required?: boolean | undefined;
10704
+ category?: "FIELD" | undefined;
10661
10705
  order?: number | undefined;
10662
10706
  visible?: boolean | undefined;
10663
10707
  } | {
@@ -10668,6 +10712,7 @@ export declare const formInsertSchema: z.ZodObject<{
10668
10712
  multiline?: boolean | undefined;
10669
10713
  };
10670
10714
  required?: boolean | undefined;
10715
+ category?: "FIELD" | undefined;
10671
10716
  sensitive?: boolean | undefined;
10672
10717
  order?: number | undefined;
10673
10718
  visible?: boolean | undefined;
@@ -10677,10 +10722,11 @@ export declare const formInsertSchema: z.ZodObject<{
10677
10722
  config: {
10678
10723
  text?: string | undefined;
10679
10724
  };
10725
+ category?: "BLOCK" | undefined;
10680
10726
  order?: number | undefined;
10681
10727
  visible?: boolean | undefined;
10682
10728
  })[];
10683
- next_node: string;
10729
+ next_node?: string | undefined;
10684
10730
  };
10685
10731
  coordinates: {
10686
10732
  x: number;
@@ -10819,8 +10865,8 @@ export declare const formInsertSchema: z.ZodObject<{
10819
10865
  type: "FLOW";
10820
10866
  id: string;
10821
10867
  config: {
10822
- next_node: string;
10823
10868
  flow_id: string;
10869
+ next_node?: string | undefined;
10824
10870
  };
10825
10871
  coordinates: {
10826
10872
  x: number;
@@ -10837,7 +10883,7 @@ export declare const formInsertSchema: z.ZodObject<{
10837
10883
  alias?: string | undefined;
10838
10884
  condition?: any;
10839
10885
  }[];
10840
- fallback: string[];
10886
+ fallback: string;
10841
10887
  };
10842
10888
  coordinates: {
10843
10889
  x: number;
@@ -10855,6 +10901,7 @@ export declare const formInsertSchema: z.ZodObject<{
10855
10901
  content: string;
10856
10902
  };
10857
10903
  visible: boolean;
10904
+ category?: "BLOCK" | undefined;
10858
10905
  order?: number | undefined;
10859
10906
  } | {
10860
10907
  type: "LEGAL";
@@ -10865,6 +10912,7 @@ export declare const formInsertSchema: z.ZodObject<{
10865
10912
  };
10866
10913
  visible: boolean;
10867
10914
  required?: boolean | undefined;
10915
+ category?: "FIELD" | undefined;
10868
10916
  order?: number | undefined;
10869
10917
  } | {
10870
10918
  type: "TEXT";
@@ -10875,6 +10923,7 @@ export declare const formInsertSchema: z.ZodObject<{
10875
10923
  };
10876
10924
  visible: boolean;
10877
10925
  required?: boolean | undefined;
10926
+ category?: "FIELD" | undefined;
10878
10927
  sensitive?: boolean | undefined;
10879
10928
  order?: number | undefined;
10880
10929
  } | {
@@ -10884,9 +10933,10 @@ export declare const formInsertSchema: z.ZodObject<{
10884
10933
  text?: string | undefined;
10885
10934
  };
10886
10935
  visible: boolean;
10936
+ category?: "BLOCK" | undefined;
10887
10937
  order?: number | undefined;
10888
10938
  })[];
10889
- next_node: string;
10939
+ next_node?: string | undefined;
10890
10940
  };
10891
10941
  coordinates: {
10892
10942
  x: number;
@@ -10937,8 +10987,8 @@ export declare const formInsertSchema: z.ZodObject<{
10937
10987
  type: "FLOW";
10938
10988
  id: string;
10939
10989
  config: {
10940
- next_node: string;
10941
10990
  flow_id: string;
10991
+ next_node?: string | undefined;
10942
10992
  };
10943
10993
  coordinates: {
10944
10994
  x: number;
@@ -10955,7 +11005,7 @@ export declare const formInsertSchema: z.ZodObject<{
10955
11005
  alias?: string | undefined;
10956
11006
  condition?: any;
10957
11007
  }[];
10958
- fallback: string[];
11008
+ fallback: string;
10959
11009
  };
10960
11010
  coordinates: {
10961
11011
  x: number;
@@ -10972,6 +11022,7 @@ export declare const formInsertSchema: z.ZodObject<{
10972
11022
  config: {
10973
11023
  content: string;
10974
11024
  };
11025
+ category?: "BLOCK" | undefined;
10975
11026
  order?: number | undefined;
10976
11027
  visible?: boolean | undefined;
10977
11028
  } | {
@@ -10982,6 +11033,7 @@ export declare const formInsertSchema: z.ZodObject<{
10982
11033
  html?: boolean | undefined;
10983
11034
  };
10984
11035
  required?: boolean | undefined;
11036
+ category?: "FIELD" | undefined;
10985
11037
  order?: number | undefined;
10986
11038
  visible?: boolean | undefined;
10987
11039
  } | {
@@ -10992,6 +11044,7 @@ export declare const formInsertSchema: z.ZodObject<{
10992
11044
  multiline?: boolean | undefined;
10993
11045
  };
10994
11046
  required?: boolean | undefined;
11047
+ category?: "FIELD" | undefined;
10995
11048
  sensitive?: boolean | undefined;
10996
11049
  order?: number | undefined;
10997
11050
  visible?: boolean | undefined;
@@ -11001,10 +11054,11 @@ export declare const formInsertSchema: z.ZodObject<{
11001
11054
  config: {
11002
11055
  text?: string | undefined;
11003
11056
  };
11057
+ category?: "BLOCK" | undefined;
11004
11058
  order?: number | undefined;
11005
11059
  visible?: boolean | undefined;
11006
11060
  })[];
11007
- next_node: string;
11061
+ next_node?: string | undefined;
11008
11062
  };
11009
11063
  coordinates: {
11010
11064
  x: number;
@@ -11077,20 +11131,20 @@ export declare const formSchema: z.ZodObject<{
11077
11131
  alias: z.ZodOptional<z.ZodString>;
11078
11132
  config: z.ZodObject<{
11079
11133
  flow_id: z.ZodString;
11080
- next_node: z.ZodString;
11134
+ next_node: z.ZodOptional<z.ZodString>;
11081
11135
  }, "strip", z.ZodTypeAny, {
11082
- next_node: string;
11083
11136
  flow_id: string;
11137
+ next_node?: string | undefined;
11084
11138
  }, {
11085
- next_node: string;
11086
11139
  flow_id: string;
11140
+ next_node?: string | undefined;
11087
11141
  }>;
11088
11142
  }, "strip", z.ZodTypeAny, {
11089
11143
  type: "FLOW";
11090
11144
  id: string;
11091
11145
  config: {
11092
- next_node: string;
11093
11146
  flow_id: string;
11147
+ next_node?: string | undefined;
11094
11148
  };
11095
11149
  coordinates: {
11096
11150
  x: number;
@@ -11101,8 +11155,8 @@ export declare const formSchema: z.ZodObject<{
11101
11155
  type: "FLOW";
11102
11156
  id: string;
11103
11157
  config: {
11104
- next_node: string;
11105
11158
  flow_id: string;
11159
+ next_node?: string | undefined;
11106
11160
  };
11107
11161
  coordinates: {
11108
11162
  x: number;
@@ -11141,7 +11195,7 @@ export declare const formSchema: z.ZodObject<{
11141
11195
  alias?: string | undefined;
11142
11196
  condition?: any;
11143
11197
  }>, "many">;
11144
- fallback: z.ZodArray<z.ZodString, "many">;
11198
+ fallback: z.ZodString;
11145
11199
  }, "strip", z.ZodTypeAny, {
11146
11200
  rules: {
11147
11201
  id: string;
@@ -11149,7 +11203,7 @@ export declare const formSchema: z.ZodObject<{
11149
11203
  alias?: string | undefined;
11150
11204
  condition?: any;
11151
11205
  }[];
11152
- fallback: string[];
11206
+ fallback: string;
11153
11207
  }, {
11154
11208
  rules: {
11155
11209
  id: string;
@@ -11157,7 +11211,7 @@ export declare const formSchema: z.ZodObject<{
11157
11211
  alias?: string | undefined;
11158
11212
  condition?: any;
11159
11213
  }[];
11160
- fallback: string[];
11214
+ fallback: string;
11161
11215
  }>;
11162
11216
  }, "strip", z.ZodTypeAny, {
11163
11217
  type: "ROUTER";
@@ -11169,7 +11223,7 @@ export declare const formSchema: z.ZodObject<{
11169
11223
  alias?: string | undefined;
11170
11224
  condition?: any;
11171
11225
  }[];
11172
- fallback: string[];
11226
+ fallback: string;
11173
11227
  };
11174
11228
  coordinates: {
11175
11229
  x: number;
@@ -11186,7 +11240,7 @@ export declare const formSchema: z.ZodObject<{
11186
11240
  alias?: string | undefined;
11187
11241
  condition?: any;
11188
11242
  }[];
11189
- fallback: string[];
11243
+ fallback: string;
11190
11244
  };
11191
11245
  coordinates: {
11192
11246
  x: number;
@@ -11212,6 +11266,7 @@ export declare const formSchema: z.ZodObject<{
11212
11266
  components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
11213
11267
  z.ZodObject<{
11214
11268
  id: z.ZodString;
11269
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
11215
11270
  type: z.ZodLiteral<"RICH_TEXT">;
11216
11271
  config: z.ZodObject<{
11217
11272
  content: z.ZodString;
@@ -11229,6 +11284,7 @@ export declare const formSchema: z.ZodObject<{
11229
11284
  content: string;
11230
11285
  };
11231
11286
  visible: boolean;
11287
+ category?: "BLOCK" | undefined;
11232
11288
  order?: number | undefined;
11233
11289
  }, {
11234
11290
  type: "RICH_TEXT";
@@ -11236,11 +11292,13 @@ export declare const formSchema: z.ZodObject<{
11236
11292
  config: {
11237
11293
  content: string;
11238
11294
  };
11295
+ category?: "BLOCK" | undefined;
11239
11296
  order?: number | undefined;
11240
11297
  visible?: boolean | undefined;
11241
11298
  }>,
11242
11299
  z.ZodObject<{
11243
11300
  id: z.ZodString;
11301
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
11244
11302
  type: z.ZodLiteral<"LEGAL">;
11245
11303
  config: z.ZodObject<{
11246
11304
  text: z.ZodString;
@@ -11264,6 +11322,7 @@ export declare const formSchema: z.ZodObject<{
11264
11322
  };
11265
11323
  visible: boolean;
11266
11324
  required?: boolean | undefined;
11325
+ category?: "FIELD" | undefined;
11267
11326
  order?: number | undefined;
11268
11327
  }, {
11269
11328
  type: "LEGAL";
@@ -11273,11 +11332,13 @@ export declare const formSchema: z.ZodObject<{
11273
11332
  html?: boolean | undefined;
11274
11333
  };
11275
11334
  required?: boolean | undefined;
11335
+ category?: "FIELD" | undefined;
11276
11336
  order?: number | undefined;
11277
11337
  visible?: boolean | undefined;
11278
11338
  }>,
11279
11339
  z.ZodObject<{
11280
11340
  id: z.ZodString;
11341
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
11281
11342
  type: z.ZodLiteral<"TEXT">;
11282
11343
  config: z.ZodObject<{
11283
11344
  placeholder: z.ZodOptional<z.ZodString>;
@@ -11302,6 +11363,7 @@ export declare const formSchema: z.ZodObject<{
11302
11363
  };
11303
11364
  visible: boolean;
11304
11365
  required?: boolean | undefined;
11366
+ category?: "FIELD" | undefined;
11305
11367
  sensitive?: boolean | undefined;
11306
11368
  order?: number | undefined;
11307
11369
  }, {
@@ -11312,12 +11374,14 @@ export declare const formSchema: z.ZodObject<{
11312
11374
  multiline?: boolean | undefined;
11313
11375
  };
11314
11376
  required?: boolean | undefined;
11377
+ category?: "FIELD" | undefined;
11315
11378
  sensitive?: boolean | undefined;
11316
11379
  order?: number | undefined;
11317
11380
  visible?: boolean | undefined;
11318
11381
  }>,
11319
11382
  z.ZodObject<{
11320
11383
  id: z.ZodString;
11384
+ category: z.ZodOptional<z.ZodLiteral<"BLOCK">>;
11321
11385
  type: z.ZodLiteral<"NEXT_BUTTON">;
11322
11386
  config: z.ZodObject<{
11323
11387
  text: z.ZodOptional<z.ZodString>;
@@ -11335,6 +11399,7 @@ export declare const formSchema: z.ZodObject<{
11335
11399
  text?: string | undefined;
11336
11400
  };
11337
11401
  visible: boolean;
11402
+ category?: "BLOCK" | undefined;
11338
11403
  order?: number | undefined;
11339
11404
  }, {
11340
11405
  type: "NEXT_BUTTON";
@@ -11342,11 +11407,12 @@ export declare const formSchema: z.ZodObject<{
11342
11407
  config: {
11343
11408
  text?: string | undefined;
11344
11409
  };
11410
+ category?: "BLOCK" | undefined;
11345
11411
  order?: number | undefined;
11346
11412
  visible?: boolean | undefined;
11347
11413
  }>
11348
11414
  ]>, "many">;
11349
- next_node: z.ZodString;
11415
+ next_node: z.ZodOptional<z.ZodString>;
11350
11416
  }, "strip", z.ZodTypeAny, {
11351
11417
  components: ({
11352
11418
  type: "RICH_TEXT";
@@ -11355,6 +11421,7 @@ export declare const formSchema: z.ZodObject<{
11355
11421
  content: string;
11356
11422
  };
11357
11423
  visible: boolean;
11424
+ category?: "BLOCK" | undefined;
11358
11425
  order?: number | undefined;
11359
11426
  } | {
11360
11427
  type: "LEGAL";
@@ -11365,6 +11432,7 @@ export declare const formSchema: z.ZodObject<{
11365
11432
  };
11366
11433
  visible: boolean;
11367
11434
  required?: boolean | undefined;
11435
+ category?: "FIELD" | undefined;
11368
11436
  order?: number | undefined;
11369
11437
  } | {
11370
11438
  type: "TEXT";
@@ -11375,6 +11443,7 @@ export declare const formSchema: z.ZodObject<{
11375
11443
  };
11376
11444
  visible: boolean;
11377
11445
  required?: boolean | undefined;
11446
+ category?: "FIELD" | undefined;
11378
11447
  sensitive?: boolean | undefined;
11379
11448
  order?: number | undefined;
11380
11449
  } | {
@@ -11384,9 +11453,10 @@ export declare const formSchema: z.ZodObject<{
11384
11453
  text?: string | undefined;
11385
11454
  };
11386
11455
  visible: boolean;
11456
+ category?: "BLOCK" | undefined;
11387
11457
  order?: number | undefined;
11388
11458
  })[];
11389
- next_node: string;
11459
+ next_node?: string | undefined;
11390
11460
  }, {
11391
11461
  components: ({
11392
11462
  type: "RICH_TEXT";
@@ -11394,6 +11464,7 @@ export declare const formSchema: z.ZodObject<{
11394
11464
  config: {
11395
11465
  content: string;
11396
11466
  };
11467
+ category?: "BLOCK" | undefined;
11397
11468
  order?: number | undefined;
11398
11469
  visible?: boolean | undefined;
11399
11470
  } | {
@@ -11404,6 +11475,7 @@ export declare const formSchema: z.ZodObject<{
11404
11475
  html?: boolean | undefined;
11405
11476
  };
11406
11477
  required?: boolean | undefined;
11478
+ category?: "FIELD" | undefined;
11407
11479
  order?: number | undefined;
11408
11480
  visible?: boolean | undefined;
11409
11481
  } | {
@@ -11414,6 +11486,7 @@ export declare const formSchema: z.ZodObject<{
11414
11486
  multiline?: boolean | undefined;
11415
11487
  };
11416
11488
  required?: boolean | undefined;
11489
+ category?: "FIELD" | undefined;
11417
11490
  sensitive?: boolean | undefined;
11418
11491
  order?: number | undefined;
11419
11492
  visible?: boolean | undefined;
@@ -11423,10 +11496,11 @@ export declare const formSchema: z.ZodObject<{
11423
11496
  config: {
11424
11497
  text?: string | undefined;
11425
11498
  };
11499
+ category?: "BLOCK" | undefined;
11426
11500
  order?: number | undefined;
11427
11501
  visible?: boolean | undefined;
11428
11502
  })[];
11429
- next_node: string;
11503
+ next_node?: string | undefined;
11430
11504
  }>;
11431
11505
  }, "strip", z.ZodTypeAny, {
11432
11506
  type: "STEP";
@@ -11439,6 +11513,7 @@ export declare const formSchema: z.ZodObject<{
11439
11513
  content: string;
11440
11514
  };
11441
11515
  visible: boolean;
11516
+ category?: "BLOCK" | undefined;
11442
11517
  order?: number | undefined;
11443
11518
  } | {
11444
11519
  type: "LEGAL";
@@ -11449,6 +11524,7 @@ export declare const formSchema: z.ZodObject<{
11449
11524
  };
11450
11525
  visible: boolean;
11451
11526
  required?: boolean | undefined;
11527
+ category?: "FIELD" | undefined;
11452
11528
  order?: number | undefined;
11453
11529
  } | {
11454
11530
  type: "TEXT";
@@ -11459,6 +11535,7 @@ export declare const formSchema: z.ZodObject<{
11459
11535
  };
11460
11536
  visible: boolean;
11461
11537
  required?: boolean | undefined;
11538
+ category?: "FIELD" | undefined;
11462
11539
  sensitive?: boolean | undefined;
11463
11540
  order?: number | undefined;
11464
11541
  } | {
@@ -11468,9 +11545,10 @@ export declare const formSchema: z.ZodObject<{
11468
11545
  text?: string | undefined;
11469
11546
  };
11470
11547
  visible: boolean;
11548
+ category?: "BLOCK" | undefined;
11471
11549
  order?: number | undefined;
11472
11550
  })[];
11473
- next_node: string;
11551
+ next_node?: string | undefined;
11474
11552
  };
11475
11553
  coordinates: {
11476
11554
  x: number;
@@ -11487,6 +11565,7 @@ export declare const formSchema: z.ZodObject<{
11487
11565
  config: {
11488
11566
  content: string;
11489
11567
  };
11568
+ category?: "BLOCK" | undefined;
11490
11569
  order?: number | undefined;
11491
11570
  visible?: boolean | undefined;
11492
11571
  } | {
@@ -11497,6 +11576,7 @@ export declare const formSchema: z.ZodObject<{
11497
11576
  html?: boolean | undefined;
11498
11577
  };
11499
11578
  required?: boolean | undefined;
11579
+ category?: "FIELD" | undefined;
11500
11580
  order?: number | undefined;
11501
11581
  visible?: boolean | undefined;
11502
11582
  } | {
@@ -11507,6 +11587,7 @@ export declare const formSchema: z.ZodObject<{
11507
11587
  multiline?: boolean | undefined;
11508
11588
  };
11509
11589
  required?: boolean | undefined;
11590
+ category?: "FIELD" | undefined;
11510
11591
  sensitive?: boolean | undefined;
11511
11592
  order?: number | undefined;
11512
11593
  visible?: boolean | undefined;
@@ -11516,10 +11597,11 @@ export declare const formSchema: z.ZodObject<{
11516
11597
  config: {
11517
11598
  text?: string | undefined;
11518
11599
  };
11600
+ category?: "BLOCK" | undefined;
11519
11601
  order?: number | undefined;
11520
11602
  visible?: boolean | undefined;
11521
11603
  })[];
11522
- next_node: string;
11604
+ next_node?: string | undefined;
11523
11605
  };
11524
11606
  coordinates: {
11525
11607
  x: number;
@@ -11663,8 +11745,8 @@ export declare const formSchema: z.ZodObject<{
11663
11745
  type: "FLOW";
11664
11746
  id: string;
11665
11747
  config: {
11666
- next_node: string;
11667
11748
  flow_id: string;
11749
+ next_node?: string | undefined;
11668
11750
  };
11669
11751
  coordinates: {
11670
11752
  x: number;
@@ -11681,7 +11763,7 @@ export declare const formSchema: z.ZodObject<{
11681
11763
  alias?: string | undefined;
11682
11764
  condition?: any;
11683
11765
  }[];
11684
- fallback: string[];
11766
+ fallback: string;
11685
11767
  };
11686
11768
  coordinates: {
11687
11769
  x: number;
@@ -11699,6 +11781,7 @@ export declare const formSchema: z.ZodObject<{
11699
11781
  content: string;
11700
11782
  };
11701
11783
  visible: boolean;
11784
+ category?: "BLOCK" | undefined;
11702
11785
  order?: number | undefined;
11703
11786
  } | {
11704
11787
  type: "LEGAL";
@@ -11709,6 +11792,7 @@ export declare const formSchema: z.ZodObject<{
11709
11792
  };
11710
11793
  visible: boolean;
11711
11794
  required?: boolean | undefined;
11795
+ category?: "FIELD" | undefined;
11712
11796
  order?: number | undefined;
11713
11797
  } | {
11714
11798
  type: "TEXT";
@@ -11719,6 +11803,7 @@ export declare const formSchema: z.ZodObject<{
11719
11803
  };
11720
11804
  visible: boolean;
11721
11805
  required?: boolean | undefined;
11806
+ category?: "FIELD" | undefined;
11722
11807
  sensitive?: boolean | undefined;
11723
11808
  order?: number | undefined;
11724
11809
  } | {
@@ -11728,9 +11813,10 @@ export declare const formSchema: z.ZodObject<{
11728
11813
  text?: string | undefined;
11729
11814
  };
11730
11815
  visible: boolean;
11816
+ category?: "BLOCK" | undefined;
11731
11817
  order?: number | undefined;
11732
11818
  })[];
11733
- next_node: string;
11819
+ next_node?: string | undefined;
11734
11820
  };
11735
11821
  coordinates: {
11736
11822
  x: number;
@@ -11784,8 +11870,8 @@ export declare const formSchema: z.ZodObject<{
11784
11870
  type: "FLOW";
11785
11871
  id: string;
11786
11872
  config: {
11787
- next_node: string;
11788
11873
  flow_id: string;
11874
+ next_node?: string | undefined;
11789
11875
  };
11790
11876
  coordinates: {
11791
11877
  x: number;
@@ -11802,7 +11888,7 @@ export declare const formSchema: z.ZodObject<{
11802
11888
  alias?: string | undefined;
11803
11889
  condition?: any;
11804
11890
  }[];
11805
- fallback: string[];
11891
+ fallback: string;
11806
11892
  };
11807
11893
  coordinates: {
11808
11894
  x: number;
@@ -11819,6 +11905,7 @@ export declare const formSchema: z.ZodObject<{
11819
11905
  config: {
11820
11906
  content: string;
11821
11907
  };
11908
+ category?: "BLOCK" | undefined;
11822
11909
  order?: number | undefined;
11823
11910
  visible?: boolean | undefined;
11824
11911
  } | {
@@ -11829,6 +11916,7 @@ export declare const formSchema: z.ZodObject<{
11829
11916
  html?: boolean | undefined;
11830
11917
  };
11831
11918
  required?: boolean | undefined;
11919
+ category?: "FIELD" | undefined;
11832
11920
  order?: number | undefined;
11833
11921
  visible?: boolean | undefined;
11834
11922
  } | {
@@ -11839,6 +11927,7 @@ export declare const formSchema: z.ZodObject<{
11839
11927
  multiline?: boolean | undefined;
11840
11928
  };
11841
11929
  required?: boolean | undefined;
11930
+ category?: "FIELD" | undefined;
11842
11931
  sensitive?: boolean | undefined;
11843
11932
  order?: number | undefined;
11844
11933
  visible?: boolean | undefined;
@@ -11848,10 +11937,11 @@ export declare const formSchema: z.ZodObject<{
11848
11937
  config: {
11849
11938
  text?: string | undefined;
11850
11939
  };
11940
+ category?: "BLOCK" | undefined;
11851
11941
  order?: number | undefined;
11852
11942
  visible?: boolean | undefined;
11853
11943
  })[];
11854
- next_node: string;
11944
+ next_node?: string | undefined;
11855
11945
  };
11856
11946
  coordinates: {
11857
11947
  x: number;
@@ -17126,6 +17216,31 @@ export interface ClientsAdapter {
17126
17216
  }>;
17127
17217
  update(tenant_id: string, client_id: string, client: Partial<Client>): Promise<boolean>;
17128
17218
  }
17219
+ export interface ClientConnectionsAdapter {
17220
+ /**
17221
+ * Get all connections enabled for a specific client
17222
+ * Returns connections in the order they were stored
17223
+ */
17224
+ listByClient(tenant_id: string, client_id: string): Promise<Connection[]>;
17225
+ /**
17226
+ * Update the connections for a client
17227
+ * The connection_ids array determines both which connections are enabled
17228
+ * and their display order on the login page
17229
+ */
17230
+ updateByClient(tenant_id: string, client_id: string, connection_ids: string[]): Promise<boolean>;
17231
+ /**
17232
+ * Get all clients that have a specific connection enabled
17233
+ */
17234
+ listByConnection(tenant_id: string, connection_id: string): Promise<string[]>;
17235
+ /**
17236
+ * Add a client to a connection (add client_id to the list of clients using this connection)
17237
+ */
17238
+ addClientToConnection(tenant_id: string, connection_id: string, client_id: string): Promise<boolean>;
17239
+ /**
17240
+ * Remove a client from a connection
17241
+ */
17242
+ removeClientFromConnection(tenant_id: string, connection_id: string, client_id: string): Promise<boolean>;
17243
+ }
17129
17244
  export interface ListClientGrantsResponse extends Totals {
17130
17245
  client_grants: ClientGrant[];
17131
17246
  }
@@ -17386,6 +17501,7 @@ export interface DataAdapters {
17386
17501
  branding: BrandingAdapter;
17387
17502
  cache?: CacheAdapter;
17388
17503
  clients: ClientsAdapter;
17504
+ clientConnections: ClientConnectionsAdapter;
17389
17505
  clientGrants: ClientGrantsAdapter;
17390
17506
  legacyClients: LegacyClientsAdapter;
17391
17507
  codes: CodesAdapter;
@@ -18046,7 +18162,7 @@ export interface LabelProps {
18046
18162
  style?: Record<string, string | number>;
18047
18163
  }
18048
18164
  declare const Label: FC<PropsWithChildren<LabelProps>>;
18049
- 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}";
18165
+ 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}";
18050
18166
  export declare function injectTailwindCSS(): void;
18051
18167
  export interface MainTenantAdapterConfig {
18052
18168
  mainTenantId?: string;
@@ -19347,8 +19463,8 @@ export declare function init(config: AuthHeroConfig): {
19347
19463
  type: "FLOW";
19348
19464
  id: string;
19349
19465
  config: {
19350
- next_node: string;
19351
19466
  flow_id: string;
19467
+ next_node?: string | undefined | undefined;
19352
19468
  };
19353
19469
  coordinates: {
19354
19470
  x: number;
@@ -19365,7 +19481,7 @@ export declare function init(config: AuthHeroConfig): {
19365
19481
  alias?: string | undefined | undefined;
19366
19482
  condition?: any;
19367
19483
  }[];
19368
- fallback: string[];
19484
+ fallback: string;
19369
19485
  };
19370
19486
  coordinates: {
19371
19487
  x: number;
@@ -19383,6 +19499,7 @@ export declare function init(config: AuthHeroConfig): {
19383
19499
  content: string;
19384
19500
  };
19385
19501
  visible: boolean;
19502
+ category?: "BLOCK" | undefined | undefined;
19386
19503
  order?: number | undefined | undefined;
19387
19504
  } | {
19388
19505
  type: "LEGAL";
@@ -19393,6 +19510,7 @@ export declare function init(config: AuthHeroConfig): {
19393
19510
  };
19394
19511
  visible: boolean;
19395
19512
  required?: boolean | undefined | undefined;
19513
+ category?: "FIELD" | undefined | undefined;
19396
19514
  order?: number | undefined | undefined;
19397
19515
  } | {
19398
19516
  type: "TEXT";
@@ -19403,6 +19521,7 @@ export declare function init(config: AuthHeroConfig): {
19403
19521
  };
19404
19522
  visible: boolean;
19405
19523
  required?: boolean | undefined | undefined;
19524
+ category?: "FIELD" | undefined | undefined;
19406
19525
  sensitive?: boolean | undefined | undefined;
19407
19526
  order?: number | undefined | undefined;
19408
19527
  } | {
@@ -19412,9 +19531,10 @@ export declare function init(config: AuthHeroConfig): {
19412
19531
  text?: string | undefined | undefined;
19413
19532
  };
19414
19533
  visible: boolean;
19534
+ category?: "BLOCK" | undefined | undefined;
19415
19535
  order?: number | undefined | undefined;
19416
19536
  })[];
19417
- next_node: string;
19537
+ next_node?: string | undefined | undefined;
19418
19538
  };
19419
19539
  coordinates: {
19420
19540
  x: number;
@@ -19478,8 +19598,8 @@ export declare function init(config: AuthHeroConfig): {
19478
19598
  type: "FLOW";
19479
19599
  id: string;
19480
19600
  config: {
19481
- next_node: string;
19482
19601
  flow_id: string;
19602
+ next_node?: string | undefined | undefined;
19483
19603
  };
19484
19604
  coordinates: {
19485
19605
  x: number;
@@ -19496,7 +19616,7 @@ export declare function init(config: AuthHeroConfig): {
19496
19616
  alias?: string | undefined | undefined;
19497
19617
  condition?: any;
19498
19618
  }[];
19499
- fallback: string[];
19619
+ fallback: string;
19500
19620
  };
19501
19621
  coordinates: {
19502
19622
  x: number;
@@ -19514,6 +19634,7 @@ export declare function init(config: AuthHeroConfig): {
19514
19634
  content: string;
19515
19635
  };
19516
19636
  visible: boolean;
19637
+ category?: "BLOCK" | undefined | undefined;
19517
19638
  order?: number | undefined | undefined;
19518
19639
  } | {
19519
19640
  type: "LEGAL";
@@ -19524,6 +19645,7 @@ export declare function init(config: AuthHeroConfig): {
19524
19645
  };
19525
19646
  visible: boolean;
19526
19647
  required?: boolean | undefined | undefined;
19648
+ category?: "FIELD" | undefined | undefined;
19527
19649
  order?: number | undefined | undefined;
19528
19650
  } | {
19529
19651
  type: "TEXT";
@@ -19534,6 +19656,7 @@ export declare function init(config: AuthHeroConfig): {
19534
19656
  };
19535
19657
  visible: boolean;
19536
19658
  required?: boolean | undefined | undefined;
19659
+ category?: "FIELD" | undefined | undefined;
19537
19660
  sensitive?: boolean | undefined | undefined;
19538
19661
  order?: number | undefined | undefined;
19539
19662
  } | {
@@ -19543,9 +19666,10 @@ export declare function init(config: AuthHeroConfig): {
19543
19666
  text?: string | undefined | undefined;
19544
19667
  };
19545
19668
  visible: boolean;
19669
+ category?: "BLOCK" | undefined | undefined;
19546
19670
  order?: number | undefined | undefined;
19547
19671
  })[];
19548
- next_node: string;
19672
+ next_node?: string | undefined | undefined;
19549
19673
  };
19550
19674
  coordinates: {
19551
19675
  x: number;
@@ -19623,8 +19747,8 @@ export declare function init(config: AuthHeroConfig): {
19623
19747
  type: "FLOW";
19624
19748
  id: string;
19625
19749
  config: {
19626
- next_node: string;
19627
19750
  flow_id: string;
19751
+ next_node?: string | undefined | undefined;
19628
19752
  };
19629
19753
  coordinates: {
19630
19754
  x: number;
@@ -19641,7 +19765,7 @@ export declare function init(config: AuthHeroConfig): {
19641
19765
  alias?: string | undefined | undefined;
19642
19766
  condition?: any;
19643
19767
  }[];
19644
- fallback: string[];
19768
+ fallback: string;
19645
19769
  };
19646
19770
  coordinates: {
19647
19771
  x: number;
@@ -19659,6 +19783,7 @@ export declare function init(config: AuthHeroConfig): {
19659
19783
  content: string;
19660
19784
  };
19661
19785
  visible: boolean;
19786
+ category?: "BLOCK" | undefined | undefined;
19662
19787
  order?: number | undefined | undefined;
19663
19788
  } | {
19664
19789
  type: "LEGAL";
@@ -19669,6 +19794,7 @@ export declare function init(config: AuthHeroConfig): {
19669
19794
  };
19670
19795
  visible: boolean;
19671
19796
  required?: boolean | undefined | undefined;
19797
+ category?: "FIELD" | undefined | undefined;
19672
19798
  order?: number | undefined | undefined;
19673
19799
  } | {
19674
19800
  type: "TEXT";
@@ -19679,6 +19805,7 @@ export declare function init(config: AuthHeroConfig): {
19679
19805
  };
19680
19806
  visible: boolean;
19681
19807
  required?: boolean | undefined | undefined;
19808
+ category?: "FIELD" | undefined | undefined;
19682
19809
  sensitive?: boolean | undefined | undefined;
19683
19810
  order?: number | undefined | undefined;
19684
19811
  } | {
@@ -19688,9 +19815,10 @@ export declare function init(config: AuthHeroConfig): {
19688
19815
  text?: string | undefined | undefined;
19689
19816
  };
19690
19817
  visible: boolean;
19818
+ category?: "BLOCK" | undefined | undefined;
19691
19819
  order?: number | undefined | undefined;
19692
19820
  })[];
19693
- next_node: string;
19821
+ next_node?: string | undefined | undefined;
19694
19822
  };
19695
19823
  coordinates: {
19696
19824
  x: number;
@@ -19777,8 +19905,8 @@ export declare function init(config: AuthHeroConfig): {
19777
19905
  type: "FLOW";
19778
19906
  id: string;
19779
19907
  config: {
19780
- next_node: string;
19781
19908
  flow_id: string;
19909
+ next_node?: string | undefined;
19782
19910
  };
19783
19911
  coordinates: {
19784
19912
  x: number;
@@ -19795,7 +19923,7 @@ export declare function init(config: AuthHeroConfig): {
19795
19923
  alias?: string | undefined;
19796
19924
  condition?: any;
19797
19925
  }[];
19798
- fallback: string[];
19926
+ fallback: string;
19799
19927
  };
19800
19928
  coordinates: {
19801
19929
  x: number;
@@ -19812,6 +19940,7 @@ export declare function init(config: AuthHeroConfig): {
19812
19940
  config: {
19813
19941
  content: string;
19814
19942
  };
19943
+ category?: "BLOCK" | undefined;
19815
19944
  order?: number | undefined;
19816
19945
  visible?: boolean | undefined;
19817
19946
  } | {
@@ -19822,6 +19951,7 @@ export declare function init(config: AuthHeroConfig): {
19822
19951
  html?: boolean | undefined;
19823
19952
  };
19824
19953
  required?: boolean | undefined;
19954
+ category?: "FIELD" | undefined;
19825
19955
  order?: number | undefined;
19826
19956
  visible?: boolean | undefined;
19827
19957
  } | {
@@ -19832,6 +19962,7 @@ export declare function init(config: AuthHeroConfig): {
19832
19962
  multiline?: boolean | undefined;
19833
19963
  };
19834
19964
  required?: boolean | undefined;
19965
+ category?: "FIELD" | undefined;
19835
19966
  sensitive?: boolean | undefined;
19836
19967
  order?: number | undefined;
19837
19968
  visible?: boolean | undefined;
@@ -19841,10 +19972,11 @@ export declare function init(config: AuthHeroConfig): {
19841
19972
  config: {
19842
19973
  text?: string | undefined;
19843
19974
  };
19975
+ category?: "BLOCK" | undefined;
19844
19976
  order?: number | undefined;
19845
19977
  visible?: boolean | undefined;
19846
19978
  })[];
19847
- next_node: string;
19979
+ next_node?: string | undefined;
19848
19980
  };
19849
19981
  coordinates: {
19850
19982
  x: number;
@@ -19904,8 +20036,8 @@ export declare function init(config: AuthHeroConfig): {
19904
20036
  type: "FLOW";
19905
20037
  id: string;
19906
20038
  config: {
19907
- next_node: string;
19908
20039
  flow_id: string;
20040
+ next_node?: string | undefined | undefined;
19909
20041
  };
19910
20042
  coordinates: {
19911
20043
  x: number;
@@ -19922,7 +20054,7 @@ export declare function init(config: AuthHeroConfig): {
19922
20054
  alias?: string | undefined | undefined;
19923
20055
  condition?: any;
19924
20056
  }[];
19925
- fallback: string[];
20057
+ fallback: string;
19926
20058
  };
19927
20059
  coordinates: {
19928
20060
  x: number;
@@ -19940,6 +20072,7 @@ export declare function init(config: AuthHeroConfig): {
19940
20072
  content: string;
19941
20073
  };
19942
20074
  visible: boolean;
20075
+ category?: "BLOCK" | undefined | undefined;
19943
20076
  order?: number | undefined | undefined;
19944
20077
  } | {
19945
20078
  type: "LEGAL";
@@ -19950,6 +20083,7 @@ export declare function init(config: AuthHeroConfig): {
19950
20083
  };
19951
20084
  visible: boolean;
19952
20085
  required?: boolean | undefined | undefined;
20086
+ category?: "FIELD" | undefined | undefined;
19953
20087
  order?: number | undefined | undefined;
19954
20088
  } | {
19955
20089
  type: "TEXT";
@@ -19960,6 +20094,7 @@ export declare function init(config: AuthHeroConfig): {
19960
20094
  };
19961
20095
  visible: boolean;
19962
20096
  required?: boolean | undefined | undefined;
20097
+ category?: "FIELD" | undefined | undefined;
19963
20098
  sensitive?: boolean | undefined | undefined;
19964
20099
  order?: number | undefined | undefined;
19965
20100
  } | {
@@ -19969,9 +20104,10 @@ export declare function init(config: AuthHeroConfig): {
19969
20104
  text?: string | undefined | undefined;
19970
20105
  };
19971
20106
  visible: boolean;
20107
+ category?: "BLOCK" | undefined | undefined;
19972
20108
  order?: number | undefined | undefined;
19973
20109
  })[];
19974
- next_node: string;
20110
+ next_node?: string | undefined | undefined;
19975
20111
  };
19976
20112
  coordinates: {
19977
20113
  x: number;
@@ -20037,8 +20173,8 @@ export declare function init(config: AuthHeroConfig): {
20037
20173
  type: "FLOW";
20038
20174
  id: string;
20039
20175
  config: {
20040
- next_node: string;
20041
20176
  flow_id: string;
20177
+ next_node?: string | undefined;
20042
20178
  };
20043
20179
  coordinates: {
20044
20180
  x: number;
@@ -20055,7 +20191,7 @@ export declare function init(config: AuthHeroConfig): {
20055
20191
  alias?: string | undefined;
20056
20192
  condition?: any;
20057
20193
  }[];
20058
- fallback: string[];
20194
+ fallback: string;
20059
20195
  };
20060
20196
  coordinates: {
20061
20197
  x: number;
@@ -20072,6 +20208,7 @@ export declare function init(config: AuthHeroConfig): {
20072
20208
  config: {
20073
20209
  content: string;
20074
20210
  };
20211
+ category?: "BLOCK" | undefined;
20075
20212
  order?: number | undefined;
20076
20213
  visible?: boolean | undefined;
20077
20214
  } | {
@@ -20082,6 +20219,7 @@ export declare function init(config: AuthHeroConfig): {
20082
20219
  html?: boolean | undefined;
20083
20220
  };
20084
20221
  required?: boolean | undefined;
20222
+ category?: "FIELD" | undefined;
20085
20223
  order?: number | undefined;
20086
20224
  visible?: boolean | undefined;
20087
20225
  } | {
@@ -20092,6 +20230,7 @@ export declare function init(config: AuthHeroConfig): {
20092
20230
  multiline?: boolean | undefined;
20093
20231
  };
20094
20232
  required?: boolean | undefined;
20233
+ category?: "FIELD" | undefined;
20095
20234
  sensitive?: boolean | undefined;
20096
20235
  order?: number | undefined;
20097
20236
  visible?: boolean | undefined;
@@ -20101,10 +20240,11 @@ export declare function init(config: AuthHeroConfig): {
20101
20240
  config: {
20102
20241
  text?: string | undefined;
20103
20242
  };
20243
+ category?: "BLOCK" | undefined;
20104
20244
  order?: number | undefined;
20105
20245
  visible?: boolean | undefined;
20106
20246
  })[];
20107
- next_node: string;
20247
+ next_node?: string | undefined;
20108
20248
  };
20109
20249
  coordinates: {
20110
20250
  x: number;
@@ -20164,8 +20304,8 @@ export declare function init(config: AuthHeroConfig): {
20164
20304
  type: "FLOW";
20165
20305
  id: string;
20166
20306
  config: {
20167
- next_node: string;
20168
20307
  flow_id: string;
20308
+ next_node?: string | undefined | undefined;
20169
20309
  };
20170
20310
  coordinates: {
20171
20311
  x: number;
@@ -20182,7 +20322,7 @@ export declare function init(config: AuthHeroConfig): {
20182
20322
  alias?: string | undefined | undefined;
20183
20323
  condition?: any;
20184
20324
  }[];
20185
- fallback: string[];
20325
+ fallback: string;
20186
20326
  };
20187
20327
  coordinates: {
20188
20328
  x: number;
@@ -20200,6 +20340,7 @@ export declare function init(config: AuthHeroConfig): {
20200
20340
  content: string;
20201
20341
  };
20202
20342
  visible: boolean;
20343
+ category?: "BLOCK" | undefined | undefined;
20203
20344
  order?: number | undefined | undefined;
20204
20345
  } | {
20205
20346
  type: "LEGAL";
@@ -20210,6 +20351,7 @@ export declare function init(config: AuthHeroConfig): {
20210
20351
  };
20211
20352
  visible: boolean;
20212
20353
  required?: boolean | undefined | undefined;
20354
+ category?: "FIELD" | undefined | undefined;
20213
20355
  order?: number | undefined | undefined;
20214
20356
  } | {
20215
20357
  type: "TEXT";
@@ -20220,6 +20362,7 @@ export declare function init(config: AuthHeroConfig): {
20220
20362
  };
20221
20363
  visible: boolean;
20222
20364
  required?: boolean | undefined | undefined;
20365
+ category?: "FIELD" | undefined | undefined;
20223
20366
  sensitive?: boolean | undefined | undefined;
20224
20367
  order?: number | undefined | undefined;
20225
20368
  } | {
@@ -20229,9 +20372,10 @@ export declare function init(config: AuthHeroConfig): {
20229
20372
  text?: string | undefined | undefined;
20230
20373
  };
20231
20374
  visible: boolean;
20375
+ category?: "BLOCK" | undefined | undefined;
20232
20376
  order?: number | undefined | undefined;
20233
20377
  })[];
20234
- next_node: string;
20378
+ next_node?: string | undefined | undefined;
20235
20379
  };
20236
20380
  coordinates: {
20237
20381
  x: number;
@@ -20772,6 +20916,50 @@ export declare function init(config: AuthHeroConfig): {
20772
20916
  status: 201;
20773
20917
  };
20774
20918
  };
20919
+ } & {
20920
+ "/:id/clients": {
20921
+ $get: {
20922
+ input: {
20923
+ param: {
20924
+ id: string;
20925
+ };
20926
+ } & {
20927
+ header: {
20928
+ "tenant-id": string;
20929
+ };
20930
+ };
20931
+ output: {
20932
+ enabled_clients: {
20933
+ name: string;
20934
+ client_id: string;
20935
+ }[];
20936
+ };
20937
+ outputFormat: "json";
20938
+ status: 200;
20939
+ };
20940
+ };
20941
+ } & {
20942
+ "/:id/clients": {
20943
+ $patch: {
20944
+ input: {
20945
+ param: {
20946
+ id: string;
20947
+ };
20948
+ } & {
20949
+ header: {
20950
+ "tenant-id": string;
20951
+ };
20952
+ } & {
20953
+ json: {
20954
+ status: boolean;
20955
+ client_id: string;
20956
+ }[];
20957
+ };
20958
+ output: {};
20959
+ outputFormat: string;
20960
+ status: 200;
20961
+ };
20962
+ };
20775
20963
  }, "/connections"> & import("hono/types").MergeSchemaPath<{
20776
20964
  "/": {
20777
20965
  $get: {
@@ -21987,6 +22175,7 @@ export declare function init(config: AuthHeroConfig): {
21987
22175
  web_origins?: string[] | undefined | undefined;
21988
22176
  client_aliases?: string[] | undefined | undefined;
21989
22177
  allowed_clients?: string[] | undefined | undefined;
22178
+ connections?: string[] | undefined | undefined;
21990
22179
  allowed_logout_urls?: string[] | undefined | undefined;
21991
22180
  session_transfer?: {
21992
22181
  [x: string]: any;
@@ -22068,6 +22257,7 @@ export declare function init(config: AuthHeroConfig): {
22068
22257
  web_origins?: string[] | undefined | undefined;
22069
22258
  client_aliases?: string[] | undefined | undefined;
22070
22259
  allowed_clients?: string[] | undefined | undefined;
22260
+ connections?: string[] | undefined | undefined;
22071
22261
  allowed_logout_urls?: string[] | undefined | undefined;
22072
22262
  session_transfer?: {
22073
22263
  [x: string]: any;
@@ -22163,6 +22353,7 @@ export declare function init(config: AuthHeroConfig): {
22163
22353
  web_origins?: string[] | undefined | undefined;
22164
22354
  client_aliases?: string[] | undefined | undefined;
22165
22355
  allowed_clients?: string[] | undefined | undefined;
22356
+ connections?: string[] | undefined | undefined;
22166
22357
  allowed_logout_urls?: string[] | undefined | undefined;
22167
22358
  session_transfer?: {
22168
22359
  [x: string]: any;
@@ -22271,6 +22462,7 @@ export declare function init(config: AuthHeroConfig): {
22271
22462
  web_origins?: string[] | undefined;
22272
22463
  client_aliases?: string[] | undefined;
22273
22464
  allowed_clients?: string[] | undefined;
22465
+ connections?: string[] | undefined;
22274
22466
  allowed_logout_urls?: string[] | undefined;
22275
22467
  session_transfer?: Record<string, any> | undefined;
22276
22468
  oidc_logout?: Record<string, any> | undefined;
@@ -22323,6 +22515,7 @@ export declare function init(config: AuthHeroConfig): {
22323
22515
  web_origins?: string[] | undefined | undefined;
22324
22516
  client_aliases?: string[] | undefined | undefined;
22325
22517
  allowed_clients?: string[] | undefined | undefined;
22518
+ connections?: string[] | undefined | undefined;
22326
22519
  allowed_logout_urls?: string[] | undefined | undefined;
22327
22520
  session_transfer?: {
22328
22521
  [x: string]: any;
@@ -22410,6 +22603,7 @@ export declare function init(config: AuthHeroConfig): {
22410
22603
  web_origins?: string[] | undefined;
22411
22604
  client_aliases?: string[] | undefined;
22412
22605
  allowed_clients?: string[] | undefined;
22606
+ connections?: string[] | undefined;
22413
22607
  allowed_logout_urls?: string[] | undefined;
22414
22608
  session_transfer?: Record<string, any> | undefined;
22415
22609
  oidc_logout?: Record<string, any> | undefined;
@@ -22465,6 +22659,7 @@ export declare function init(config: AuthHeroConfig): {
22465
22659
  web_origins?: string[] | undefined;
22466
22660
  client_aliases?: string[] | undefined;
22467
22661
  allowed_clients?: string[] | undefined;
22662
+ connections?: string[] | undefined;
22468
22663
  allowed_logout_urls?: string[] | undefined;
22469
22664
  session_transfer?: {
22470
22665
  [x: string]: any;
@@ -22518,6 +22713,124 @@ export declare function init(config: AuthHeroConfig): {
22518
22713
  status: 201;
22519
22714
  };
22520
22715
  };
22716
+ } & {
22717
+ "/:id/connections": {
22718
+ $get: {
22719
+ input: {
22720
+ param: {
22721
+ id: string;
22722
+ };
22723
+ } & {
22724
+ header: {
22725
+ "tenant-id": string;
22726
+ };
22727
+ };
22728
+ output: {
22729
+ enabled_connections: {
22730
+ connection_id: string;
22731
+ connection?: {
22732
+ options: {
22733
+ provider?: string | undefined | undefined;
22734
+ client_id?: string | undefined | undefined;
22735
+ client_secret?: string | undefined | undefined;
22736
+ scope?: string | undefined | undefined;
22737
+ kid?: string | undefined | undefined;
22738
+ team_id?: string | undefined | undefined;
22739
+ realms?: string | undefined | undefined;
22740
+ authentication_method?: string | undefined | undefined;
22741
+ app_secret?: string | undefined | undefined;
22742
+ authorization_endpoint?: string | undefined | undefined;
22743
+ token_endpoint?: string | undefined | undefined;
22744
+ userinfo_endpoint?: string | undefined | undefined;
22745
+ jwks_uri?: string | undefined | undefined;
22746
+ discovery_url?: string | undefined | undefined;
22747
+ issuer?: string | undefined | undefined;
22748
+ from?: string | undefined | undefined;
22749
+ twilio_sid?: string | undefined | undefined;
22750
+ twilio_token?: string | undefined | undefined;
22751
+ icon_url?: string | undefined | undefined;
22752
+ };
22753
+ created_at: string;
22754
+ updated_at: string;
22755
+ name: string;
22756
+ strategy: string;
22757
+ id?: string | undefined | undefined;
22758
+ response_type?: AuthorizationResponseType | undefined;
22759
+ response_mode?: AuthorizationResponseMode | undefined;
22760
+ display_name?: string | undefined | undefined;
22761
+ enabled_clients?: string[] | undefined | undefined;
22762
+ is_domain_connection?: boolean | undefined | undefined;
22763
+ show_as_button?: boolean | undefined | undefined;
22764
+ metadata?: {
22765
+ [x: string]: any;
22766
+ } | undefined;
22767
+ } | undefined;
22768
+ }[];
22769
+ };
22770
+ outputFormat: "json";
22771
+ status: 200;
22772
+ };
22773
+ };
22774
+ } & {
22775
+ "/:id/connections": {
22776
+ $patch: {
22777
+ input: {
22778
+ param: {
22779
+ id: string;
22780
+ };
22781
+ } & {
22782
+ header: {
22783
+ "tenant-id": string;
22784
+ };
22785
+ } & {
22786
+ json: string[];
22787
+ };
22788
+ output: {
22789
+ enabled_connections: {
22790
+ connection_id: string;
22791
+ connection?: {
22792
+ options: {
22793
+ provider?: string | undefined | undefined;
22794
+ client_id?: string | undefined | undefined;
22795
+ client_secret?: string | undefined | undefined;
22796
+ scope?: string | undefined | undefined;
22797
+ kid?: string | undefined | undefined;
22798
+ team_id?: string | undefined | undefined;
22799
+ realms?: string | undefined | undefined;
22800
+ authentication_method?: string | undefined | undefined;
22801
+ app_secret?: string | undefined | undefined;
22802
+ authorization_endpoint?: string | undefined | undefined;
22803
+ token_endpoint?: string | undefined | undefined;
22804
+ userinfo_endpoint?: string | undefined | undefined;
22805
+ jwks_uri?: string | undefined | undefined;
22806
+ discovery_url?: string | undefined | undefined;
22807
+ issuer?: string | undefined | undefined;
22808
+ from?: string | undefined | undefined;
22809
+ twilio_sid?: string | undefined | undefined;
22810
+ twilio_token?: string | undefined | undefined;
22811
+ icon_url?: string | undefined | undefined;
22812
+ };
22813
+ created_at: string;
22814
+ updated_at: string;
22815
+ name: string;
22816
+ strategy: string;
22817
+ id?: string | undefined | undefined;
22818
+ response_type?: AuthorizationResponseType | undefined;
22819
+ response_mode?: AuthorizationResponseMode | undefined;
22820
+ display_name?: string | undefined | undefined;
22821
+ enabled_clients?: string[] | undefined | undefined;
22822
+ is_domain_connection?: boolean | undefined | undefined;
22823
+ show_as_button?: boolean | undefined | undefined;
22824
+ metadata?: {
22825
+ [x: string]: any;
22826
+ } | undefined;
22827
+ } | undefined;
22828
+ }[];
22829
+ };
22830
+ outputFormat: "json";
22831
+ status: 200;
22832
+ };
22833
+ };
22521
22834
  }, "/clients"> & import("hono/types").MergeSchemaPath<{
22522
22835
  "/": {
22523
22836
  $get: {