authhero 0.139.0 → 0.141.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.
@@ -9218,6 +9218,107 @@ export declare const formControlSchema: z.ZodObject<{
9218
9218
  customizations?: Record<string, any> | undefined;
9219
9219
  }>;
9220
9220
  export type FormControl = z.infer<typeof formControlSchema>;
9221
+ /**
9222
+ * Schema for form components (fields, text, buttons, etc)
9223
+ */
9224
+ export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type", [
9225
+ z.ZodObject<{
9226
+ id: z.ZodString;
9227
+ type: z.ZodLiteral<"RICH_TEXT">;
9228
+ config: z.ZodObject<{
9229
+ content: z.ZodString;
9230
+ }, "strip", z.ZodTypeAny, {
9231
+ content: string;
9232
+ }, {
9233
+ content: string;
9234
+ }>;
9235
+ order: z.ZodOptional<z.ZodNumber>;
9236
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
9237
+ }, "strip", z.ZodTypeAny, {
9238
+ type: "RICH_TEXT";
9239
+ id: string;
9240
+ config: {
9241
+ content: string;
9242
+ };
9243
+ visible: boolean;
9244
+ order?: number | undefined;
9245
+ }, {
9246
+ type: "RICH_TEXT";
9247
+ id: string;
9248
+ config: {
9249
+ content: string;
9250
+ };
9251
+ order?: number | undefined;
9252
+ visible?: boolean | undefined;
9253
+ }>,
9254
+ z.ZodObject<{
9255
+ id: z.ZodString;
9256
+ type: z.ZodLiteral<"LEGAL">;
9257
+ config: z.ZodObject<{
9258
+ text: z.ZodString;
9259
+ html: z.ZodOptional<z.ZodBoolean>;
9260
+ }, "strip", z.ZodTypeAny, {
9261
+ text: string;
9262
+ html?: boolean | undefined;
9263
+ }, {
9264
+ text: string;
9265
+ html?: boolean | undefined;
9266
+ }>;
9267
+ required: z.ZodOptional<z.ZodBoolean>;
9268
+ order: z.ZodOptional<z.ZodNumber>;
9269
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
9270
+ }, "strip", z.ZodTypeAny, {
9271
+ type: "LEGAL";
9272
+ id: string;
9273
+ config: {
9274
+ text: string;
9275
+ html?: boolean | undefined;
9276
+ };
9277
+ visible: boolean;
9278
+ required?: boolean | undefined;
9279
+ order?: number | undefined;
9280
+ }, {
9281
+ type: "LEGAL";
9282
+ id: string;
9283
+ config: {
9284
+ text: string;
9285
+ html?: boolean | undefined;
9286
+ };
9287
+ required?: boolean | undefined;
9288
+ order?: number | undefined;
9289
+ visible?: boolean | undefined;
9290
+ }>,
9291
+ z.ZodObject<{
9292
+ id: z.ZodString;
9293
+ type: z.ZodLiteral<"NEXT_BUTTON">;
9294
+ config: z.ZodObject<{
9295
+ text: z.ZodOptional<z.ZodString>;
9296
+ }, "strip", z.ZodTypeAny, {
9297
+ text?: string | undefined;
9298
+ }, {
9299
+ text?: string | undefined;
9300
+ }>;
9301
+ order: z.ZodOptional<z.ZodNumber>;
9302
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
9303
+ }, "strip", z.ZodTypeAny, {
9304
+ type: "NEXT_BUTTON";
9305
+ id: string;
9306
+ config: {
9307
+ text?: string | undefined;
9308
+ };
9309
+ visible: boolean;
9310
+ order?: number | undefined;
9311
+ }, {
9312
+ type: "NEXT_BUTTON";
9313
+ id: string;
9314
+ config: {
9315
+ text?: string | undefined;
9316
+ };
9317
+ order?: number | undefined;
9318
+ visible?: boolean | undefined;
9319
+ }>
9320
+ ]>;
9321
+ export type FormNodeComponent = z.infer<typeof formNodeComponentDefinition>;
9221
9322
  /**
9222
9323
  * Schema for forms (flow-based, matches new JSON structure)
9223
9324
  */
@@ -9393,20 +9494,194 @@ export declare const formInsertSchema: z.ZodObject<{
9393
9494
  }>;
9394
9495
  alias: z.ZodOptional<z.ZodString>;
9395
9496
  config: z.ZodObject<{
9396
- components: z.ZodArray<z.ZodAny, "many">;
9497
+ components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
9498
+ z.ZodObject<{
9499
+ id: z.ZodString;
9500
+ type: z.ZodLiteral<"RICH_TEXT">;
9501
+ config: z.ZodObject<{
9502
+ content: z.ZodString;
9503
+ }, "strip", z.ZodTypeAny, {
9504
+ content: string;
9505
+ }, {
9506
+ content: string;
9507
+ }>;
9508
+ order: z.ZodOptional<z.ZodNumber>;
9509
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
9510
+ }, "strip", z.ZodTypeAny, {
9511
+ type: "RICH_TEXT";
9512
+ id: string;
9513
+ config: {
9514
+ content: string;
9515
+ };
9516
+ visible: boolean;
9517
+ order?: number | undefined;
9518
+ }, {
9519
+ type: "RICH_TEXT";
9520
+ id: string;
9521
+ config: {
9522
+ content: string;
9523
+ };
9524
+ order?: number | undefined;
9525
+ visible?: boolean | undefined;
9526
+ }>,
9527
+ z.ZodObject<{
9528
+ id: z.ZodString;
9529
+ type: z.ZodLiteral<"LEGAL">;
9530
+ config: z.ZodObject<{
9531
+ text: z.ZodString;
9532
+ html: z.ZodOptional<z.ZodBoolean>;
9533
+ }, "strip", z.ZodTypeAny, {
9534
+ text: string;
9535
+ html?: boolean | undefined;
9536
+ }, {
9537
+ text: string;
9538
+ html?: boolean | undefined;
9539
+ }>;
9540
+ required: z.ZodOptional<z.ZodBoolean>;
9541
+ order: z.ZodOptional<z.ZodNumber>;
9542
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
9543
+ }, "strip", z.ZodTypeAny, {
9544
+ type: "LEGAL";
9545
+ id: string;
9546
+ config: {
9547
+ text: string;
9548
+ html?: boolean | undefined;
9549
+ };
9550
+ visible: boolean;
9551
+ required?: boolean | undefined;
9552
+ order?: number | undefined;
9553
+ }, {
9554
+ type: "LEGAL";
9555
+ id: string;
9556
+ config: {
9557
+ text: string;
9558
+ html?: boolean | undefined;
9559
+ };
9560
+ required?: boolean | undefined;
9561
+ order?: number | undefined;
9562
+ visible?: boolean | undefined;
9563
+ }>,
9564
+ z.ZodObject<{
9565
+ id: z.ZodString;
9566
+ type: z.ZodLiteral<"NEXT_BUTTON">;
9567
+ config: z.ZodObject<{
9568
+ text: z.ZodOptional<z.ZodString>;
9569
+ }, "strip", z.ZodTypeAny, {
9570
+ text?: string | undefined;
9571
+ }, {
9572
+ text?: string | undefined;
9573
+ }>;
9574
+ order: z.ZodOptional<z.ZodNumber>;
9575
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
9576
+ }, "strip", z.ZodTypeAny, {
9577
+ type: "NEXT_BUTTON";
9578
+ id: string;
9579
+ config: {
9580
+ text?: string | undefined;
9581
+ };
9582
+ visible: boolean;
9583
+ order?: number | undefined;
9584
+ }, {
9585
+ type: "NEXT_BUTTON";
9586
+ id: string;
9587
+ config: {
9588
+ text?: string | undefined;
9589
+ };
9590
+ order?: number | undefined;
9591
+ visible?: boolean | undefined;
9592
+ }>
9593
+ ]>, "many">;
9397
9594
  next_node: z.ZodString;
9398
9595
  }, "strip", z.ZodTypeAny, {
9399
- components: any[];
9596
+ components: ({
9597
+ type: "RICH_TEXT";
9598
+ id: string;
9599
+ config: {
9600
+ content: string;
9601
+ };
9602
+ visible: boolean;
9603
+ order?: number | undefined;
9604
+ } | {
9605
+ type: "LEGAL";
9606
+ id: string;
9607
+ config: {
9608
+ text: string;
9609
+ html?: boolean | undefined;
9610
+ };
9611
+ visible: boolean;
9612
+ required?: boolean | undefined;
9613
+ order?: number | undefined;
9614
+ } | {
9615
+ type: "NEXT_BUTTON";
9616
+ id: string;
9617
+ config: {
9618
+ text?: string | undefined;
9619
+ };
9620
+ visible: boolean;
9621
+ order?: number | undefined;
9622
+ })[];
9400
9623
  next_node: string;
9401
9624
  }, {
9402
- components: any[];
9625
+ components: ({
9626
+ type: "RICH_TEXT";
9627
+ id: string;
9628
+ config: {
9629
+ content: string;
9630
+ };
9631
+ order?: number | undefined;
9632
+ visible?: boolean | undefined;
9633
+ } | {
9634
+ type: "LEGAL";
9635
+ id: string;
9636
+ config: {
9637
+ text: string;
9638
+ html?: boolean | undefined;
9639
+ };
9640
+ required?: boolean | undefined;
9641
+ order?: number | undefined;
9642
+ visible?: boolean | undefined;
9643
+ } | {
9644
+ type: "NEXT_BUTTON";
9645
+ id: string;
9646
+ config: {
9647
+ text?: string | undefined;
9648
+ };
9649
+ order?: number | undefined;
9650
+ visible?: boolean | undefined;
9651
+ })[];
9403
9652
  next_node: string;
9404
9653
  }>;
9405
9654
  }, "strip", z.ZodTypeAny, {
9406
9655
  type: "STEP";
9407
9656
  id: string;
9408
9657
  config: {
9409
- components: any[];
9658
+ components: ({
9659
+ type: "RICH_TEXT";
9660
+ id: string;
9661
+ config: {
9662
+ content: string;
9663
+ };
9664
+ visible: boolean;
9665
+ order?: number | undefined;
9666
+ } | {
9667
+ type: "LEGAL";
9668
+ id: string;
9669
+ config: {
9670
+ text: string;
9671
+ html?: boolean | undefined;
9672
+ };
9673
+ visible: boolean;
9674
+ required?: boolean | undefined;
9675
+ order?: number | undefined;
9676
+ } | {
9677
+ type: "NEXT_BUTTON";
9678
+ id: string;
9679
+ config: {
9680
+ text?: string | undefined;
9681
+ };
9682
+ visible: boolean;
9683
+ order?: number | undefined;
9684
+ })[];
9410
9685
  next_node: string;
9411
9686
  };
9412
9687
  coordinates: {
@@ -9418,7 +9693,33 @@ export declare const formInsertSchema: z.ZodObject<{
9418
9693
  type: "STEP";
9419
9694
  id: string;
9420
9695
  config: {
9421
- components: any[];
9696
+ components: ({
9697
+ type: "RICH_TEXT";
9698
+ id: string;
9699
+ config: {
9700
+ content: string;
9701
+ };
9702
+ order?: number | undefined;
9703
+ visible?: boolean | undefined;
9704
+ } | {
9705
+ type: "LEGAL";
9706
+ id: string;
9707
+ config: {
9708
+ text: string;
9709
+ html?: boolean | undefined;
9710
+ };
9711
+ required?: boolean | undefined;
9712
+ order?: number | undefined;
9713
+ visible?: boolean | undefined;
9714
+ } | {
9715
+ type: "NEXT_BUTTON";
9716
+ id: string;
9717
+ config: {
9718
+ text?: string | undefined;
9719
+ };
9720
+ order?: number | undefined;
9721
+ visible?: boolean | undefined;
9722
+ })[];
9422
9723
  next_node: string;
9423
9724
  };
9424
9725
  coordinates: {
@@ -9587,7 +9888,33 @@ export declare const formInsertSchema: z.ZodObject<{
9587
9888
  type: "STEP";
9588
9889
  id: string;
9589
9890
  config: {
9590
- components: any[];
9891
+ components: ({
9892
+ type: "RICH_TEXT";
9893
+ id: string;
9894
+ config: {
9895
+ content: string;
9896
+ };
9897
+ visible: boolean;
9898
+ order?: number | undefined;
9899
+ } | {
9900
+ type: "LEGAL";
9901
+ id: string;
9902
+ config: {
9903
+ text: string;
9904
+ html?: boolean | undefined;
9905
+ };
9906
+ visible: boolean;
9907
+ required?: boolean | undefined;
9908
+ order?: number | undefined;
9909
+ } | {
9910
+ type: "NEXT_BUTTON";
9911
+ id: string;
9912
+ config: {
9913
+ text?: string | undefined;
9914
+ };
9915
+ visible: boolean;
9916
+ order?: number | undefined;
9917
+ })[];
9591
9918
  next_node: string;
9592
9919
  };
9593
9920
  coordinates: {
@@ -9668,7 +9995,33 @@ export declare const formInsertSchema: z.ZodObject<{
9668
9995
  type: "STEP";
9669
9996
  id: string;
9670
9997
  config: {
9671
- components: any[];
9998
+ components: ({
9999
+ type: "RICH_TEXT";
10000
+ id: string;
10001
+ config: {
10002
+ content: string;
10003
+ };
10004
+ order?: number | undefined;
10005
+ visible?: boolean | undefined;
10006
+ } | {
10007
+ type: "LEGAL";
10008
+ id: string;
10009
+ config: {
10010
+ text: string;
10011
+ html?: boolean | undefined;
10012
+ };
10013
+ required?: boolean | undefined;
10014
+ order?: number | undefined;
10015
+ visible?: boolean | undefined;
10016
+ } | {
10017
+ type: "NEXT_BUTTON";
10018
+ id: string;
10019
+ config: {
10020
+ text?: string | undefined;
10021
+ };
10022
+ order?: number | undefined;
10023
+ visible?: boolean | undefined;
10024
+ })[];
9672
10025
  next_node: string;
9673
10026
  };
9674
10027
  coordinates: {
@@ -9874,20 +10227,194 @@ export declare const formSchema: z.ZodObject<{
9874
10227
  }>;
9875
10228
  alias: z.ZodOptional<z.ZodString>;
9876
10229
  config: z.ZodObject<{
9877
- components: z.ZodArray<z.ZodAny, "many">;
10230
+ components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
10231
+ z.ZodObject<{
10232
+ id: z.ZodString;
10233
+ type: z.ZodLiteral<"RICH_TEXT">;
10234
+ config: z.ZodObject<{
10235
+ content: z.ZodString;
10236
+ }, "strip", z.ZodTypeAny, {
10237
+ content: string;
10238
+ }, {
10239
+ content: string;
10240
+ }>;
10241
+ order: z.ZodOptional<z.ZodNumber>;
10242
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10243
+ }, "strip", z.ZodTypeAny, {
10244
+ type: "RICH_TEXT";
10245
+ id: string;
10246
+ config: {
10247
+ content: string;
10248
+ };
10249
+ visible: boolean;
10250
+ order?: number | undefined;
10251
+ }, {
10252
+ type: "RICH_TEXT";
10253
+ id: string;
10254
+ config: {
10255
+ content: string;
10256
+ };
10257
+ order?: number | undefined;
10258
+ visible?: boolean | undefined;
10259
+ }>,
10260
+ z.ZodObject<{
10261
+ id: z.ZodString;
10262
+ type: z.ZodLiteral<"LEGAL">;
10263
+ config: z.ZodObject<{
10264
+ text: z.ZodString;
10265
+ html: z.ZodOptional<z.ZodBoolean>;
10266
+ }, "strip", z.ZodTypeAny, {
10267
+ text: string;
10268
+ html?: boolean | undefined;
10269
+ }, {
10270
+ text: string;
10271
+ html?: boolean | undefined;
10272
+ }>;
10273
+ required: z.ZodOptional<z.ZodBoolean>;
10274
+ order: z.ZodOptional<z.ZodNumber>;
10275
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10276
+ }, "strip", z.ZodTypeAny, {
10277
+ type: "LEGAL";
10278
+ id: string;
10279
+ config: {
10280
+ text: string;
10281
+ html?: boolean | undefined;
10282
+ };
10283
+ visible: boolean;
10284
+ required?: boolean | undefined;
10285
+ order?: number | undefined;
10286
+ }, {
10287
+ type: "LEGAL";
10288
+ id: string;
10289
+ config: {
10290
+ text: string;
10291
+ html?: boolean | undefined;
10292
+ };
10293
+ required?: boolean | undefined;
10294
+ order?: number | undefined;
10295
+ visible?: boolean | undefined;
10296
+ }>,
10297
+ z.ZodObject<{
10298
+ id: z.ZodString;
10299
+ type: z.ZodLiteral<"NEXT_BUTTON">;
10300
+ config: z.ZodObject<{
10301
+ text: z.ZodOptional<z.ZodString>;
10302
+ }, "strip", z.ZodTypeAny, {
10303
+ text?: string | undefined;
10304
+ }, {
10305
+ text?: string | undefined;
10306
+ }>;
10307
+ order: z.ZodOptional<z.ZodNumber>;
10308
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
10309
+ }, "strip", z.ZodTypeAny, {
10310
+ type: "NEXT_BUTTON";
10311
+ id: string;
10312
+ config: {
10313
+ text?: string | undefined;
10314
+ };
10315
+ visible: boolean;
10316
+ order?: number | undefined;
10317
+ }, {
10318
+ type: "NEXT_BUTTON";
10319
+ id: string;
10320
+ config: {
10321
+ text?: string | undefined;
10322
+ };
10323
+ order?: number | undefined;
10324
+ visible?: boolean | undefined;
10325
+ }>
10326
+ ]>, "many">;
9878
10327
  next_node: z.ZodString;
9879
10328
  }, "strip", z.ZodTypeAny, {
9880
- components: any[];
9881
- next_node: string;
9882
- }, {
9883
- components: any[];
9884
- next_node: string;
9885
- }>;
9886
- }, "strip", z.ZodTypeAny, {
9887
- type: "STEP";
9888
- id: string;
9889
- config: {
9890
- components: any[];
10329
+ components: ({
10330
+ type: "RICH_TEXT";
10331
+ id: string;
10332
+ config: {
10333
+ content: string;
10334
+ };
10335
+ visible: boolean;
10336
+ order?: number | undefined;
10337
+ } | {
10338
+ type: "LEGAL";
10339
+ id: string;
10340
+ config: {
10341
+ text: string;
10342
+ html?: boolean | undefined;
10343
+ };
10344
+ visible: boolean;
10345
+ required?: boolean | undefined;
10346
+ order?: number | undefined;
10347
+ } | {
10348
+ type: "NEXT_BUTTON";
10349
+ id: string;
10350
+ config: {
10351
+ text?: string | undefined;
10352
+ };
10353
+ visible: boolean;
10354
+ order?: number | undefined;
10355
+ })[];
10356
+ next_node: string;
10357
+ }, {
10358
+ components: ({
10359
+ type: "RICH_TEXT";
10360
+ id: string;
10361
+ config: {
10362
+ content: string;
10363
+ };
10364
+ order?: number | undefined;
10365
+ visible?: boolean | undefined;
10366
+ } | {
10367
+ type: "LEGAL";
10368
+ id: string;
10369
+ config: {
10370
+ text: string;
10371
+ html?: boolean | undefined;
10372
+ };
10373
+ required?: boolean | undefined;
10374
+ order?: number | undefined;
10375
+ visible?: boolean | undefined;
10376
+ } | {
10377
+ type: "NEXT_BUTTON";
10378
+ id: string;
10379
+ config: {
10380
+ text?: string | undefined;
10381
+ };
10382
+ order?: number | undefined;
10383
+ visible?: boolean | undefined;
10384
+ })[];
10385
+ next_node: string;
10386
+ }>;
10387
+ }, "strip", z.ZodTypeAny, {
10388
+ type: "STEP";
10389
+ id: string;
10390
+ config: {
10391
+ components: ({
10392
+ type: "RICH_TEXT";
10393
+ id: string;
10394
+ config: {
10395
+ content: string;
10396
+ };
10397
+ visible: boolean;
10398
+ order?: number | undefined;
10399
+ } | {
10400
+ type: "LEGAL";
10401
+ id: string;
10402
+ config: {
10403
+ text: string;
10404
+ html?: boolean | undefined;
10405
+ };
10406
+ visible: boolean;
10407
+ required?: boolean | undefined;
10408
+ order?: number | undefined;
10409
+ } | {
10410
+ type: "NEXT_BUTTON";
10411
+ id: string;
10412
+ config: {
10413
+ text?: string | undefined;
10414
+ };
10415
+ visible: boolean;
10416
+ order?: number | undefined;
10417
+ })[];
9891
10418
  next_node: string;
9892
10419
  };
9893
10420
  coordinates: {
@@ -9899,7 +10426,33 @@ export declare const formSchema: z.ZodObject<{
9899
10426
  type: "STEP";
9900
10427
  id: string;
9901
10428
  config: {
9902
- components: any[];
10429
+ components: ({
10430
+ type: "RICH_TEXT";
10431
+ id: string;
10432
+ config: {
10433
+ content: string;
10434
+ };
10435
+ order?: number | undefined;
10436
+ visible?: boolean | undefined;
10437
+ } | {
10438
+ type: "LEGAL";
10439
+ id: string;
10440
+ config: {
10441
+ text: string;
10442
+ html?: boolean | undefined;
10443
+ };
10444
+ required?: boolean | undefined;
10445
+ order?: number | undefined;
10446
+ visible?: boolean | undefined;
10447
+ } | {
10448
+ type: "NEXT_BUTTON";
10449
+ id: string;
10450
+ config: {
10451
+ text?: string | undefined;
10452
+ };
10453
+ order?: number | undefined;
10454
+ visible?: boolean | undefined;
10455
+ })[];
9903
10456
  next_node: string;
9904
10457
  };
9905
10458
  coordinates: {
@@ -10073,7 +10626,33 @@ export declare const formSchema: z.ZodObject<{
10073
10626
  type: "STEP";
10074
10627
  id: string;
10075
10628
  config: {
10076
- components: any[];
10629
+ components: ({
10630
+ type: "RICH_TEXT";
10631
+ id: string;
10632
+ config: {
10633
+ content: string;
10634
+ };
10635
+ visible: boolean;
10636
+ order?: number | undefined;
10637
+ } | {
10638
+ type: "LEGAL";
10639
+ id: string;
10640
+ config: {
10641
+ text: string;
10642
+ html?: boolean | undefined;
10643
+ };
10644
+ visible: boolean;
10645
+ required?: boolean | undefined;
10646
+ order?: number | undefined;
10647
+ } | {
10648
+ type: "NEXT_BUTTON";
10649
+ id: string;
10650
+ config: {
10651
+ text?: string | undefined;
10652
+ };
10653
+ visible: boolean;
10654
+ order?: number | undefined;
10655
+ })[];
10077
10656
  next_node: string;
10078
10657
  };
10079
10658
  coordinates: {
@@ -10157,7 +10736,33 @@ export declare const formSchema: z.ZodObject<{
10157
10736
  type: "STEP";
10158
10737
  id: string;
10159
10738
  config: {
10160
- components: any[];
10739
+ components: ({
10740
+ type: "RICH_TEXT";
10741
+ id: string;
10742
+ config: {
10743
+ content: string;
10744
+ };
10745
+ order?: number | undefined;
10746
+ visible?: boolean | undefined;
10747
+ } | {
10748
+ type: "LEGAL";
10749
+ id: string;
10750
+ config: {
10751
+ text: string;
10752
+ html?: boolean | undefined;
10753
+ };
10754
+ required?: boolean | undefined;
10755
+ order?: number | undefined;
10756
+ visible?: boolean | undefined;
10757
+ } | {
10758
+ type: "NEXT_BUTTON";
10759
+ id: string;
10760
+ config: {
10761
+ text?: string | undefined;
10762
+ };
10763
+ order?: number | undefined;
10764
+ visible?: boolean | undefined;
10765
+ })[];
10161
10766
  next_node: string;
10162
10767
  };
10163
10768
  coordinates: {
@@ -13084,6 +13689,12 @@ export type OnExecutePostUserRegistrationAPI = {
13084
13689
  };
13085
13690
  export type OnExecutePreUserRegistration = (event: HookEvent, api: OnExecutePreUserRegistrationAPI) => Promise<void>;
13086
13691
  export type OnExecutePostUserRegistration = (event: HookEvent, api: OnExecutePostUserRegistrationAPI) => Promise<void>;
13692
+ export type OnExecutePostLoginAPI = {
13693
+ prompt: {
13694
+ render: (formId: string) => void;
13695
+ };
13696
+ };
13697
+ export type OnExecutePostLogin = (event: HookEvent, api: OnExecutePostLoginAPI) => Promise<void>;
13087
13698
  export type SendEmailParams = {
13088
13699
  emailProvider: EmailProvider;
13089
13700
  to: string;
@@ -13144,6 +13755,7 @@ export type Bindings = {
13144
13755
  onExecuteCredentialsExchange?: OnExecuteCredentialsExchange;
13145
13756
  onExecutePreUserRegistration?: OnExecutePreUserRegistration;
13146
13757
  onExecutePostUserRegistration?: OnExecutePostUserRegistration;
13758
+ onExecutePostLogin?: OnExecutePostLogin;
13147
13759
  };
13148
13760
  emailProviders?: {
13149
13761
  [key: string]: EmailService;
@@ -13333,7 +13945,7 @@ declare const UserNotFound: FC<Props$21>;
13333
13945
  export declare const VippsLogo: ({ ...props }: {
13334
13946
  [x: string]: any;
13335
13947
  }) => import("hono/jsx/jsx-dev-runtime").JSX.Element;
13336
- 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\"}\n\n/*! tailwindcss v3.4.1 | 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;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-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]{display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity));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%}}:is(.dark body){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}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%}}*,: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: }::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: }.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.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}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.\\!hidden{display:none!important}.hidden{display:none}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.max-h-full{max-height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.w-10{width:2.5rem}.w-5{width:1.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-full{width:100%}.max-w-\\[1295px\\]{max-width:1295px}.flex-1{flex:1 1 0%}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.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-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{overflow:hidden}.rounded-2xl{border-radius:1.25rem}.rounded-lg{border-radius:.625rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.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-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}.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}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.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}.indent-\\[5px\\]{text-indent:5px}.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-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-medium{font-weight:500}.font-semibold{font-weight:600}.leading-\\[0\\]{line-height:0}.text-\\[\\#1196F5\\]{--tw-text-opacity:1;color:rgb(17 150 245/var(--tw-text-opacity))}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.opacity-40{opacity:.4}.row-up-left{align-content:flex-start;justify-content:flex-start}.row,.row-up-left{display:flex;flex-direction:row;flex-wrap:wrap}.row{align-content:center;align-items:center;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:#7e69f4;--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%}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.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))}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.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-2:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}:is(.dark .dark\\:border-gray-400){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-500){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-600){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity))}:is(.dark .dark\\:bg-black){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:text-\\[\\#201a41\\]){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-300){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}:is(.dark .dark\\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\\:hover\\:bg-black\\/90:hover){background-color:rgba(0,0,0,.9)}:is(.dark .dark\\:focus\\:ring-offset-gray-900:focus){--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\\: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\\: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\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.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}.short\\:text-xl{font-size:1.25rem;line-height:120%}}";
13948
+ 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\"}\n\n/*! tailwindcss v3.4.1 | 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;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-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]{display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity));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%}}:is(.dark body){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}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%}}*,: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: }::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: }.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}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.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}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.\\!hidden{display:none!important}.hidden{display:none}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.max-h-full{max-height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.w-10{width:2.5rem}.w-5{width:1.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-full{width:100%}.max-w-\\[1295px\\]{max-width:1295px}.flex-1{flex:1 1 0%}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.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-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{overflow:hidden}.rounded-2xl{border-radius:1.25rem}.rounded-lg{border-radius:.625rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.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-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}.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}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.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}.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-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-medium{font-weight:500}.font-semibold{font-weight:600}.leading-\\[0\\]{line-height:0}.leading-tight{line-height:1.25}.text-\\[\\#1196F5\\]{--tw-text-opacity:1;color:rgb(17 150 245/var(--tw-text-opacity))}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.row-up-left{align-content:flex-start;justify-content:flex-start}.row,.row-up-left{display:flex;flex-direction:row;flex-wrap:wrap}.row{align-content:center;align-items:center;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:#7e69f4;--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%}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.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))}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.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-2:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}:is(.dark .dark\\:border-gray-400){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-500){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-600){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity))}:is(.dark .dark\\:bg-black){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:text-\\[\\#201a41\\]){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-300){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}:is(.dark .dark\\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\\:hover\\:bg-black\\/90:hover){background-color:rgba(0,0,0,.9)}:is(.dark .dark\\:focus\\:ring-offset-gray-900:focus){--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\\: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\\: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\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.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}.short\\:text-xl{font-size:1.25rem;line-height:120%}}";
13337
13949
  export declare function injectTailwindCSS(): void;
13338
13950
  export declare function init(config: AuthHeroConfig): {
13339
13951
  app: OpenAPIHono<{
@@ -13415,7 +14027,33 @@ export declare function init(config: AuthHeroConfig): {
13415
14027
  type: "STEP";
13416
14028
  id: string;
13417
14029
  config: {
13418
- components: any[];
14030
+ components: ({
14031
+ type: "RICH_TEXT";
14032
+ id: string;
14033
+ config: {
14034
+ content: string;
14035
+ };
14036
+ visible: boolean;
14037
+ order?: number | undefined | undefined;
14038
+ } | {
14039
+ type: "LEGAL";
14040
+ id: string;
14041
+ config: {
14042
+ text: string;
14043
+ html?: boolean | undefined | undefined;
14044
+ };
14045
+ visible: boolean;
14046
+ required?: boolean | undefined | undefined;
14047
+ order?: number | undefined | undefined;
14048
+ } | {
14049
+ type: "NEXT_BUTTON";
14050
+ id: string;
14051
+ config: {
14052
+ text?: string | undefined | undefined;
14053
+ };
14054
+ visible: boolean;
14055
+ order?: number | undefined | undefined;
14056
+ })[];
13419
14057
  next_node: string;
13420
14058
  };
13421
14059
  coordinates: {
@@ -13509,7 +14147,33 @@ export declare function init(config: AuthHeroConfig): {
13509
14147
  type: "STEP";
13510
14148
  id: string;
13511
14149
  config: {
13512
- components: any[];
14150
+ components: ({
14151
+ type: "RICH_TEXT";
14152
+ id: string;
14153
+ config: {
14154
+ content: string;
14155
+ };
14156
+ visible: boolean;
14157
+ order?: number | undefined | undefined;
14158
+ } | {
14159
+ type: "LEGAL";
14160
+ id: string;
14161
+ config: {
14162
+ text: string;
14163
+ html?: boolean | undefined | undefined;
14164
+ };
14165
+ visible: boolean;
14166
+ required?: boolean | undefined | undefined;
14167
+ order?: number | undefined | undefined;
14168
+ } | {
14169
+ type: "NEXT_BUTTON";
14170
+ id: string;
14171
+ config: {
14172
+ text?: string | undefined | undefined;
14173
+ };
14174
+ visible: boolean;
14175
+ order?: number | undefined | undefined;
14176
+ })[];
13513
14177
  next_node: string;
13514
14178
  };
13515
14179
  coordinates: {
@@ -13617,7 +14281,33 @@ export declare function init(config: AuthHeroConfig): {
13617
14281
  type: "STEP";
13618
14282
  id: string;
13619
14283
  config: {
13620
- components: any[];
14284
+ components: ({
14285
+ type: "RICH_TEXT";
14286
+ id: string;
14287
+ config: {
14288
+ content: string;
14289
+ };
14290
+ visible: boolean;
14291
+ order?: number | undefined | undefined;
14292
+ } | {
14293
+ type: "LEGAL";
14294
+ id: string;
14295
+ config: {
14296
+ text: string;
14297
+ html?: boolean | undefined | undefined;
14298
+ };
14299
+ visible: boolean;
14300
+ required?: boolean | undefined | undefined;
14301
+ order?: number | undefined | undefined;
14302
+ } | {
14303
+ type: "NEXT_BUTTON";
14304
+ id: string;
14305
+ config: {
14306
+ text?: string | undefined | undefined;
14307
+ };
14308
+ visible: boolean;
14309
+ order?: number | undefined | undefined;
14310
+ })[];
13621
14311
  next_node: string;
13622
14312
  };
13623
14313
  coordinates: {
@@ -13738,7 +14428,33 @@ export declare function init(config: AuthHeroConfig): {
13738
14428
  type: "STEP";
13739
14429
  id: string;
13740
14430
  config: {
13741
- components: any[];
14431
+ components: ({
14432
+ type: "RICH_TEXT";
14433
+ id: string;
14434
+ config: {
14435
+ content: string;
14436
+ };
14437
+ order?: number | undefined;
14438
+ visible?: boolean | undefined;
14439
+ } | {
14440
+ type: "LEGAL";
14441
+ id: string;
14442
+ config: {
14443
+ text: string;
14444
+ html?: boolean | undefined;
14445
+ };
14446
+ required?: boolean | undefined;
14447
+ order?: number | undefined;
14448
+ visible?: boolean | undefined;
14449
+ } | {
14450
+ type: "NEXT_BUTTON";
14451
+ id: string;
14452
+ config: {
14453
+ text?: string | undefined;
14454
+ };
14455
+ order?: number | undefined;
14456
+ visible?: boolean | undefined;
14457
+ })[];
13742
14458
  next_node: string;
13743
14459
  };
13744
14460
  coordinates: {
@@ -13824,7 +14540,33 @@ export declare function init(config: AuthHeroConfig): {
13824
14540
  type: "STEP";
13825
14541
  id: string;
13826
14542
  config: {
13827
- components: any[];
14543
+ components: ({
14544
+ type: "RICH_TEXT";
14545
+ id: string;
14546
+ config: {
14547
+ content: string;
14548
+ };
14549
+ visible: boolean;
14550
+ order?: number | undefined | undefined;
14551
+ } | {
14552
+ type: "LEGAL";
14553
+ id: string;
14554
+ config: {
14555
+ text: string;
14556
+ html?: boolean | undefined | undefined;
14557
+ };
14558
+ visible: boolean;
14559
+ required?: boolean | undefined | undefined;
14560
+ order?: number | undefined | undefined;
14561
+ } | {
14562
+ type: "NEXT_BUTTON";
14563
+ id: string;
14564
+ config: {
14565
+ text?: string | undefined | undefined;
14566
+ };
14567
+ visible: boolean;
14568
+ order?: number | undefined | undefined;
14569
+ })[];
13828
14570
  next_node: string;
13829
14571
  };
13830
14572
  coordinates: {
@@ -13924,7 +14666,33 @@ export declare function init(config: AuthHeroConfig): {
13924
14666
  type: "STEP";
13925
14667
  id: string;
13926
14668
  config: {
13927
- components: any[];
14669
+ components: ({
14670
+ type: "RICH_TEXT";
14671
+ id: string;
14672
+ config: {
14673
+ content: string;
14674
+ };
14675
+ order?: number | undefined;
14676
+ visible?: boolean | undefined;
14677
+ } | {
14678
+ type: "LEGAL";
14679
+ id: string;
14680
+ config: {
14681
+ text: string;
14682
+ html?: boolean | undefined;
14683
+ };
14684
+ required?: boolean | undefined;
14685
+ order?: number | undefined;
14686
+ visible?: boolean | undefined;
14687
+ } | {
14688
+ type: "NEXT_BUTTON";
14689
+ id: string;
14690
+ config: {
14691
+ text?: string | undefined;
14692
+ };
14693
+ order?: number | undefined;
14694
+ visible?: boolean | undefined;
14695
+ })[];
13928
14696
  next_node: string;
13929
14697
  };
13930
14698
  coordinates: {
@@ -14010,7 +14778,33 @@ export declare function init(config: AuthHeroConfig): {
14010
14778
  type: "STEP";
14011
14779
  id: string;
14012
14780
  config: {
14013
- components: any[];
14781
+ components: ({
14782
+ type: "RICH_TEXT";
14783
+ id: string;
14784
+ config: {
14785
+ content: string;
14786
+ };
14787
+ visible: boolean;
14788
+ order?: number | undefined | undefined;
14789
+ } | {
14790
+ type: "LEGAL";
14791
+ id: string;
14792
+ config: {
14793
+ text: string;
14794
+ html?: boolean | undefined | undefined;
14795
+ };
14796
+ visible: boolean;
14797
+ required?: boolean | undefined | undefined;
14798
+ order?: number | undefined | undefined;
14799
+ } | {
14800
+ type: "NEXT_BUTTON";
14801
+ id: string;
14802
+ config: {
14803
+ text?: string | undefined | undefined;
14804
+ };
14805
+ visible: boolean;
14806
+ order?: number | undefined | undefined;
14807
+ })[];
14014
14808
  next_node: string;
14015
14809
  };
14016
14810
  coordinates: {
@@ -16238,6 +17032,42 @@ export declare function init(config: AuthHeroConfig): {
16238
17032
  output: {};
16239
17033
  outputFormat: string;
16240
17034
  status: 302;
17035
+ } | {
17036
+ input: {
17037
+ query: {
17038
+ state: string;
17039
+ code?: string | undefined;
17040
+ error?: string | undefined;
17041
+ scope?: string | undefined;
17042
+ error_description?: string | undefined;
17043
+ error_reason?: string | undefined;
17044
+ error_code?: string | undefined;
17045
+ hd?: string | undefined;
17046
+ };
17047
+ };
17048
+ output: {
17049
+ message: string;
17050
+ };
17051
+ outputFormat: "json";
17052
+ status: 400;
17053
+ } | {
17054
+ input: {
17055
+ query: {
17056
+ state: string;
17057
+ code?: string | undefined;
17058
+ error?: string | undefined;
17059
+ scope?: string | undefined;
17060
+ error_description?: string | undefined;
17061
+ error_reason?: string | undefined;
17062
+ error_code?: string | undefined;
17063
+ hd?: string | undefined;
17064
+ };
17065
+ };
17066
+ output: {
17067
+ message: string;
17068
+ };
17069
+ outputFormat: "json";
17070
+ status: 500;
16241
17071
  };
16242
17072
  };
16243
17073
  } & {
@@ -16258,6 +17088,42 @@ export declare function init(config: AuthHeroConfig): {
16258
17088
  output: {};
16259
17089
  outputFormat: string;
16260
17090
  status: 302;
17091
+ } | {
17092
+ input: {
17093
+ form: {
17094
+ state: string;
17095
+ code?: string | undefined;
17096
+ error?: string | undefined;
17097
+ scope?: string | undefined;
17098
+ error_description?: string | undefined;
17099
+ error_reason?: string | undefined;
17100
+ error_code?: string | undefined;
17101
+ hd?: string | undefined;
17102
+ };
17103
+ };
17104
+ output: {
17105
+ message: string;
17106
+ };
17107
+ outputFormat: "json";
17108
+ status: 400;
17109
+ } | {
17110
+ input: {
17111
+ form: {
17112
+ state: string;
17113
+ code?: string | undefined;
17114
+ error?: string | undefined;
17115
+ scope?: string | undefined;
17116
+ error_description?: string | undefined;
17117
+ error_reason?: string | undefined;
17118
+ error_code?: string | undefined;
17119
+ hd?: string | undefined;
17120
+ };
17121
+ };
17122
+ output: {
17123
+ message: string;
17124
+ };
17125
+ outputFormat: "json";
17126
+ status: 500;
16261
17127
  };
16262
17128
  };
16263
17129
  }, "/callback"> & import("hono/types").MergeSchemaPath<{
@@ -16288,9 +17154,9 @@ export declare function init(config: AuthHeroConfig): {
16288
17154
  max_age?: string | undefined;
16289
17155
  };
16290
17156
  };
16291
- output: {};
16292
- outputFormat: string;
16293
- status: 200;
17157
+ output: Response;
17158
+ outputFormat: "json";
17159
+ status: import("hono/utils/http-status").StatusCode;
16294
17160
  } | {
16295
17161
  input: {
16296
17162
  query: {
@@ -16320,47 +17186,146 @@ export declare function init(config: AuthHeroConfig): {
16320
17186
  output: {};
16321
17187
  outputFormat: string;
16322
17188
  status: 302;
16323
- };
16324
- };
16325
- }, "/authorize"> & import("hono/types").MergeSchemaPath<{
16326
- "/": {
16327
- $post: {
17189
+ } | {
16328
17190
  input: {
16329
- json: {
16330
- client_id: string;
16331
- username: string;
16332
- otp: string;
16333
- realm: "email";
16334
- credential_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
16335
- scope?: string | undefined;
16336
- } | {
16337
- password: string;
17191
+ query: {
16338
17192
  client_id: string;
16339
- username: string;
16340
- realm: "Username-Password-Authentication";
16341
- credential_type: "http://auth0.com/oauth/grant-type/password-realm";
17193
+ state: string;
17194
+ redirect_uri: string;
17195
+ nonce?: string | undefined;
17196
+ response_mode?: AuthorizationResponseMode | undefined;
17197
+ connection?: string | undefined;
17198
+ response_type?: AuthorizationResponseType | undefined;
17199
+ audience?: string | undefined;
17200
+ auth0Client?: string | undefined;
16342
17201
  scope?: string | undefined;
17202
+ login_ticket?: string | undefined;
17203
+ screen_hint?: string | undefined;
17204
+ code_challenge_method?: CodeChallengeMethod | undefined;
17205
+ realm?: string | undefined;
17206
+ code_challenge?: string | undefined;
17207
+ organization?: string | undefined;
17208
+ prompt?: string | undefined;
17209
+ ui_locales?: string | undefined;
17210
+ vendor_id?: string | undefined;
17211
+ login_hint?: string | undefined;
17212
+ max_age?: string | undefined;
16343
17213
  };
16344
17214
  };
16345
- output: {};
16346
- outputFormat: string;
17215
+ output: string | {
17216
+ access_token: string;
17217
+ token_type: string;
17218
+ expires_in: number;
17219
+ refresh_token?: string | undefined | undefined;
17220
+ state?: string | undefined | undefined;
17221
+ scope?: string | undefined | undefined;
17222
+ id_token?: string | undefined | undefined;
17223
+ };
17224
+ outputFormat: "json";
16347
17225
  status: 200;
16348
- };
16349
- };
16350
- }, "/co/authenticate"> & import("hono/types").MergeSchemaPath<{
16351
- "/start": {
16352
- $post: {
17226
+ } | {
16353
17227
  input: {
16354
- json: {
16355
- email: string;
17228
+ query: {
16356
17229
  client_id: string;
16357
- connection: "email";
16358
- authParams: {
16359
- nonce?: string | undefined;
16360
- response_mode?: AuthorizationResponseMode | undefined;
16361
- username?: string | undefined;
16362
- response_type?: AuthorizationResponseType | undefined;
16363
- audience?: string | undefined;
17230
+ state: string;
17231
+ redirect_uri: string;
17232
+ nonce?: string | undefined;
17233
+ response_mode?: AuthorizationResponseMode | undefined;
17234
+ connection?: string | undefined;
17235
+ response_type?: AuthorizationResponseType | undefined;
17236
+ audience?: string | undefined;
17237
+ auth0Client?: string | undefined;
17238
+ scope?: string | undefined;
17239
+ login_ticket?: string | undefined;
17240
+ screen_hint?: string | undefined;
17241
+ code_challenge_method?: CodeChallengeMethod | undefined;
17242
+ realm?: string | undefined;
17243
+ code_challenge?: string | undefined;
17244
+ organization?: string | undefined;
17245
+ prompt?: string | undefined;
17246
+ ui_locales?: string | undefined;
17247
+ vendor_id?: string | undefined;
17248
+ login_hint?: string | undefined;
17249
+ max_age?: string | undefined;
17250
+ };
17251
+ };
17252
+ output: {
17253
+ message: string;
17254
+ };
17255
+ outputFormat: "json";
17256
+ status: 400;
17257
+ } | {
17258
+ input: {
17259
+ query: {
17260
+ client_id: string;
17261
+ state: string;
17262
+ redirect_uri: string;
17263
+ nonce?: string | undefined;
17264
+ response_mode?: AuthorizationResponseMode | undefined;
17265
+ connection?: string | undefined;
17266
+ response_type?: AuthorizationResponseType | undefined;
17267
+ audience?: string | undefined;
17268
+ auth0Client?: string | undefined;
17269
+ scope?: string | undefined;
17270
+ login_ticket?: string | undefined;
17271
+ screen_hint?: string | undefined;
17272
+ code_challenge_method?: CodeChallengeMethod | undefined;
17273
+ realm?: string | undefined;
17274
+ code_challenge?: string | undefined;
17275
+ organization?: string | undefined;
17276
+ prompt?: string | undefined;
17277
+ ui_locales?: string | undefined;
17278
+ vendor_id?: string | undefined;
17279
+ login_hint?: string | undefined;
17280
+ max_age?: string | undefined;
17281
+ };
17282
+ };
17283
+ output: {
17284
+ message: string;
17285
+ };
17286
+ outputFormat: "json";
17287
+ status: 403;
17288
+ };
17289
+ };
17290
+ }, "/authorize"> & import("hono/types").MergeSchemaPath<{
17291
+ "/": {
17292
+ $post: {
17293
+ input: {
17294
+ json: {
17295
+ client_id: string;
17296
+ username: string;
17297
+ otp: string;
17298
+ realm: "email";
17299
+ credential_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
17300
+ scope?: string | undefined;
17301
+ } | {
17302
+ password: string;
17303
+ client_id: string;
17304
+ username: string;
17305
+ realm: "Username-Password-Authentication";
17306
+ credential_type: "http://auth0.com/oauth/grant-type/password-realm";
17307
+ scope?: string | undefined;
17308
+ };
17309
+ };
17310
+ output: {};
17311
+ outputFormat: string;
17312
+ status: 200;
17313
+ };
17314
+ };
17315
+ }, "/co/authenticate"> & import("hono/types").MergeSchemaPath<{
17316
+ "/start": {
17317
+ $post: {
17318
+ input: {
17319
+ json: {
17320
+ email: string;
17321
+ client_id: string;
17322
+ connection: "email";
17323
+ authParams: {
17324
+ nonce?: string | undefined;
17325
+ response_mode?: AuthorizationResponseMode | undefined;
17326
+ username?: string | undefined;
17327
+ response_type?: AuthorizationResponseType | undefined;
17328
+ audience?: string | undefined;
16364
17329
  state?: string | undefined;
16365
17330
  scope?: string | undefined;
16366
17331
  redirect_uri?: string | undefined;
@@ -16422,6 +17387,48 @@ export declare function init(config: AuthHeroConfig): {
16422
17387
  output: {};
16423
17388
  outputFormat: string;
16424
17389
  status: 302;
17390
+ } | {
17391
+ input: {
17392
+ query: {
17393
+ email: string;
17394
+ client_id: string;
17395
+ connection: string;
17396
+ response_type: AuthorizationResponseType;
17397
+ state: string;
17398
+ scope: string;
17399
+ redirect_uri: string;
17400
+ verification_code: string;
17401
+ nonce?: string | undefined;
17402
+ audience?: string | undefined;
17403
+ };
17404
+ };
17405
+ output: {
17406
+ error: string;
17407
+ error_description?: string | undefined;
17408
+ };
17409
+ outputFormat: "json";
17410
+ status: 400;
17411
+ } | {
17412
+ input: {
17413
+ query: {
17414
+ email: string;
17415
+ client_id: string;
17416
+ connection: string;
17417
+ response_type: AuthorizationResponseType;
17418
+ state: string;
17419
+ scope: string;
17420
+ redirect_uri: string;
17421
+ verification_code: string;
17422
+ nonce?: string | undefined;
17423
+ audience?: string | undefined;
17424
+ };
17425
+ };
17426
+ output: {
17427
+ error: string;
17428
+ error_description?: string | undefined;
17429
+ };
17430
+ outputFormat: "json";
17431
+ status: 500;
16425
17432
  };
16426
17433
  };
16427
17434
  }, "/passwordless"> & import("hono/types").MergeSchemaPath<{
@@ -16464,6 +17471,42 @@ export declare function init(config: AuthHeroConfig): {
16464
17471
  }, "/dbconnections"> & import("hono/types").MergeSchemaPath<{
16465
17472
  "/": {
16466
17473
  $post: {
17474
+ input: {
17475
+ form: {
17476
+ grant_type: "client_credentials";
17477
+ client_id?: string | undefined;
17478
+ audience?: string | undefined;
17479
+ scope?: string | undefined;
17480
+ client_secret?: string | undefined;
17481
+ } | {
17482
+ code: string;
17483
+ client_id: string;
17484
+ redirect_uri: string;
17485
+ grant_type: "authorization_code";
17486
+ code_verifier: string;
17487
+ } | {
17488
+ code: string;
17489
+ grant_type: "authorization_code";
17490
+ client_id?: string | undefined;
17491
+ client_secret?: string | undefined;
17492
+ redirect_uri?: string | undefined;
17493
+ } | {
17494
+ client_id: string;
17495
+ refresh_token: string;
17496
+ grant_type: "refresh_token";
17497
+ redirect_uri?: string | undefined;
17498
+ } | {
17499
+ client_id: string;
17500
+ username: string;
17501
+ otp: string;
17502
+ grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
17503
+ realm: "email" | "sms";
17504
+ };
17505
+ };
17506
+ output: {};
17507
+ outputFormat: string;
17508
+ status: 302;
17509
+ } | {
16467
17510
  input: {
16468
17511
  form: {
16469
17512
  grant_type: "client_credentials";
@@ -16507,6 +17550,84 @@ export declare function init(config: AuthHeroConfig): {
16507
17550
  };
16508
17551
  outputFormat: "json";
16509
17552
  status: 200;
17553
+ } | {
17554
+ input: {
17555
+ form: {
17556
+ grant_type: "client_credentials";
17557
+ client_id?: string | undefined;
17558
+ audience?: string | undefined;
17559
+ scope?: string | undefined;
17560
+ client_secret?: string | undefined;
17561
+ } | {
17562
+ code: string;
17563
+ client_id: string;
17564
+ redirect_uri: string;
17565
+ grant_type: "authorization_code";
17566
+ code_verifier: string;
17567
+ } | {
17568
+ code: string;
17569
+ grant_type: "authorization_code";
17570
+ client_id?: string | undefined;
17571
+ client_secret?: string | undefined;
17572
+ redirect_uri?: string | undefined;
17573
+ } | {
17574
+ client_id: string;
17575
+ refresh_token: string;
17576
+ grant_type: "refresh_token";
17577
+ redirect_uri?: string | undefined;
17578
+ } | {
17579
+ client_id: string;
17580
+ username: string;
17581
+ otp: string;
17582
+ grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
17583
+ realm: "email" | "sms";
17584
+ };
17585
+ };
17586
+ output: {
17587
+ error: string;
17588
+ error_description?: string | undefined;
17589
+ };
17590
+ outputFormat: "json";
17591
+ status: 400;
17592
+ } | {
17593
+ input: {
17594
+ form: {
17595
+ grant_type: "client_credentials";
17596
+ client_id?: string | undefined;
17597
+ audience?: string | undefined;
17598
+ scope?: string | undefined;
17599
+ client_secret?: string | undefined;
17600
+ } | {
17601
+ code: string;
17602
+ client_id: string;
17603
+ redirect_uri: string;
17604
+ grant_type: "authorization_code";
17605
+ code_verifier: string;
17606
+ } | {
17607
+ code: string;
17608
+ grant_type: "authorization_code";
17609
+ client_id?: string | undefined;
17610
+ client_secret?: string | undefined;
17611
+ redirect_uri?: string | undefined;
17612
+ } | {
17613
+ client_id: string;
17614
+ refresh_token: string;
17615
+ grant_type: "refresh_token";
17616
+ redirect_uri?: string | undefined;
17617
+ } | {
17618
+ client_id: string;
17619
+ username: string;
17620
+ otp: string;
17621
+ grant_type: "http://auth0.com/oauth/grant-type/passwordless/otp";
17622
+ realm: "email" | "sms";
17623
+ };
17624
+ };
17625
+ output: {
17626
+ error: string;
17627
+ error_description?: string | undefined;
17628
+ };
17629
+ outputFormat: "json";
17630
+ status: 401;
16510
17631
  };
16511
17632
  };
16512
17633
  }, "/oauth/token"> & import("hono/types").MergeSchemaPath<{
@@ -16593,6 +17714,74 @@ export declare function init(config: AuthHeroConfig): {
16593
17714
  Bindings: Bindings;
16594
17715
  Variables: Variables;
16595
17716
  }, import("hono/types").MergeSchemaPath<{
17717
+ "/:formId/nodes/:nodeId": {
17718
+ $get: {
17719
+ input: {
17720
+ param: {
17721
+ formId: string;
17722
+ nodeId: string;
17723
+ };
17724
+ } & {
17725
+ query: {
17726
+ state: string;
17727
+ };
17728
+ };
17729
+ output: {};
17730
+ outputFormat: string;
17731
+ status: 200;
17732
+ } | {
17733
+ input: {
17734
+ param: {
17735
+ formId: string;
17736
+ nodeId: string;
17737
+ };
17738
+ } & {
17739
+ query: {
17740
+ state: string;
17741
+ };
17742
+ };
17743
+ output: {};
17744
+ outputFormat: string;
17745
+ status: 404;
17746
+ };
17747
+ };
17748
+ } & {
17749
+ "/:formId/nodes/:nodeId": {
17750
+ $post: {
17751
+ input: {
17752
+ param: {
17753
+ formId: string;
17754
+ nodeId: string;
17755
+ };
17756
+ } & {
17757
+ query: {
17758
+ state: string;
17759
+ };
17760
+ } & {
17761
+ form: Record<string, string>;
17762
+ };
17763
+ output: {};
17764
+ outputFormat: string;
17765
+ status: 200;
17766
+ } | {
17767
+ input: {
17768
+ param: {
17769
+ formId: string;
17770
+ nodeId: string;
17771
+ };
17772
+ } & {
17773
+ query: {
17774
+ state: string;
17775
+ };
17776
+ } & {
17777
+ form: Record<string, string>;
17778
+ };
17779
+ output: {};
17780
+ outputFormat: string;
17781
+ status: 404;
17782
+ };
17783
+ };
17784
+ }, "/forms"> & import("hono/types").MergeSchemaPath<{
16596
17785
  "/": {
16597
17786
  $get: {
16598
17787
  input: {
@@ -16609,6 +17798,21 @@ export declare function init(config: AuthHeroConfig): {
16609
17798
  } & {
16610
17799
  "/": {
16611
17800
  $post: {
17801
+ input: {
17802
+ query: {
17803
+ state: string;
17804
+ };
17805
+ } & {
17806
+ form: {
17807
+ password: string;
17808
+ "re-enter-password": string;
17809
+ code?: string | undefined;
17810
+ };
17811
+ };
17812
+ output: Response;
17813
+ outputFormat: "json";
17814
+ status: import("hono/utils/http-status").StatusCode;
17815
+ } | {
16612
17816
  input: {
16613
17817
  query: {
16614
17818
  state: string;
@@ -16622,7 +17826,7 @@ export declare function init(config: AuthHeroConfig): {
16622
17826
  };
16623
17827
  output: {};
16624
17828
  outputFormat: string;
16625
- status: 200;
17829
+ status: 302;
16626
17830
  };
16627
17831
  };
16628
17832
  }, "/signup"> & import("hono/types").MergeSchemaPath<{
@@ -16766,6 +17970,19 @@ export declare function init(config: AuthHeroConfig): {
16766
17970
  } & {
16767
17971
  "/": {
16768
17972
  $post: {
17973
+ input: {
17974
+ query: {
17975
+ state: string;
17976
+ };
17977
+ } & {
17978
+ form: {
17979
+ password: string;
17980
+ };
17981
+ };
17982
+ output: Response;
17983
+ outputFormat: "json";
17984
+ status: import("hono/utils/http-status").StatusCode;
17985
+ } | {
16769
17986
  input: {
16770
17987
  query: {
16771
17988
  state: string;
@@ -16777,7 +17994,7 @@ export declare function init(config: AuthHeroConfig): {
16777
17994
  };
16778
17995
  output: {};
16779
17996
  outputFormat: string;
16780
- status: 200;
17997
+ status: 302;
16781
17998
  };
16782
17999
  };
16783
18000
  }, "/enter-password"> & import("hono/types").MergeSchemaPath<{
@@ -16788,14 +18005,27 @@ export declare function init(config: AuthHeroConfig): {
16788
18005
  state: string;
16789
18006
  };
16790
18007
  };
16791
- output: {};
16792
- outputFormat: string;
16793
- status: 200;
18008
+ output: Response;
18009
+ outputFormat: "json";
18010
+ status: import("hono/utils/http-status").StatusCode;
16794
18011
  };
16795
18012
  };
16796
18013
  } & {
16797
18014
  "/": {
16798
18015
  $post: {
18016
+ input: {
18017
+ query: {
18018
+ state: string;
18019
+ };
18020
+ } & {
18021
+ form: {
18022
+ code: string;
18023
+ };
18024
+ };
18025
+ output: Response;
18026
+ outputFormat: "json";
18027
+ status: import("hono/utils/http-status").StatusCode;
18028
+ } | {
16799
18029
  input: {
16800
18030
  query: {
16801
18031
  state: string;
@@ -16807,7 +18037,7 @@ export declare function init(config: AuthHeroConfig): {
16807
18037
  };
16808
18038
  output: {};
16809
18039
  outputFormat: string;
16810
- status: 200;
18040
+ status: 302;
16811
18041
  };
16812
18042
  };
16813
18043
  }, "/enter-code"> & import("hono/types").MergeSchemaPath<{
@@ -16845,6 +18075,15 @@ export declare function init(config: AuthHeroConfig): {
16845
18075
  }, "/login/identifier"> & import("hono/types").MergeSchemaPath<{
16846
18076
  "/": {
16847
18077
  $get: {
18078
+ input: {
18079
+ query: {
18080
+ state: string;
18081
+ };
18082
+ };
18083
+ output: Response;
18084
+ outputFormat: "json";
18085
+ status: import("hono/utils/http-status").StatusCode;
18086
+ } | {
16848
18087
  input: {
16849
18088
  query: {
16850
18089
  state: string;
@@ -16852,12 +18091,21 @@ export declare function init(config: AuthHeroConfig): {
16852
18091
  };
16853
18092
  output: {};
16854
18093
  outputFormat: string;
16855
- status: 200;
18094
+ status: 302;
16856
18095
  };
16857
18096
  };
16858
18097
  } & {
16859
18098
  "/": {
16860
18099
  $post: {
18100
+ input: {
18101
+ query: {
18102
+ state: string;
18103
+ };
18104
+ };
18105
+ output: Response;
18106
+ outputFormat: "json";
18107
+ status: import("hono/utils/http-status").StatusCode;
18108
+ } | {
16861
18109
  input: {
16862
18110
  query: {
16863
18111
  state: string;