authhero 8.14.1 → 8.15.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.
@@ -1,6 +1,6 @@
1
1
  import * as hono_utils_types from 'hono/utils/types';
2
2
  import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
3
- import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
3
+ import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
4
4
  export * from '@authhero/adapter-interfaces';
5
5
  import * as hono_types from 'hono/types';
6
6
  import * as hono_utils_http_status from 'hono/utils/http-status';
@@ -1008,6 +1008,21 @@ interface ManagementApiExtension {
1008
1008
  */
1009
1009
  router: OpenAPIHono<any, any, any>;
1010
1010
  }
1011
+ /**
1012
+ * Enqueues a durable tenant lifecycle operation (issue #1026): creates
1013
+ * the `tenant_operations` row and starts execution on the configured
1014
+ * engine. The inline engine resolves with a terminal row; durable engines
1015
+ * resolve as soon as the run is enqueued — clients poll
1016
+ * `GET /api/v2/operations/{id}`.
1017
+ */
1018
+ interface TenantOperationExecutorBinding {
1019
+ engine: string;
1020
+ enqueue(params: {
1021
+ kind: TenantOperationKind;
1022
+ tenant_id: string | null;
1023
+ initiated_by?: string;
1024
+ }): Promise<TenantOperation>;
1025
+ }
1011
1026
  /**
1012
1027
  * Configuration for the transactional outbox pattern.
1013
1028
  * When enabled, audit events are written atomically with entity mutations
@@ -1289,6 +1304,16 @@ interface AuthHeroConfig {
1289
1304
  * ```
1290
1305
  */
1291
1306
  tenantUpgrade?: (tenantId: string) => Promise<void>;
1307
+ /**
1308
+ * Optional executor for durable tenant lifecycle operations (issue
1309
+ * #1026). When set together with the `tenantOperations` /
1310
+ * `tenantOperationEvents` adapters, `POST /api/v2/tenants/{id}/operations`
1311
+ * enqueues operations through it. Kept structural so authhero core
1312
+ * depends on neither `@authhero/multi-tenancy` nor any engine —
1313
+ * `@authhero/multi-tenancy`'s `enqueueTenantOperation` + executors
1314
+ * satisfy this shape.
1315
+ */
1316
+ tenantOperationExecutor?: TenantOperationExecutorBinding;
1292
1317
  /**
1293
1318
  * Optional powered-by logo to display at the bottom left of the login widget.
1294
1319
  * This is only configurable in code, not stored in the database.
@@ -1554,6 +1579,7 @@ type Bindings = {
1554
1579
  codeExecutor?: CodeExecutor;
1555
1580
  webhookInvoker?: WebhookInvoker;
1556
1581
  tenantUpgrade?: (tenantId: string) => Promise<void>;
1582
+ tenantOperationExecutor?: TenantOperationExecutorBinding;
1557
1583
  outbox?: OutboxConfig;
1558
1584
  userLinkingMode?: UserLinkingModeOption;
1559
1585
  usernamePasswordProvider?: UsernamePasswordProviderResolver;
@@ -3015,8 +3041,8 @@ declare function init(config: AuthHeroConfig): {
3015
3041
  $get: {
3016
3042
  input: {
3017
3043
  query: {
3018
- include_password_hashes?: "false" | "true" | undefined;
3019
- gzip?: "false" | "true" | undefined;
3044
+ include_password_hashes?: "true" | "false" | undefined;
3045
+ gzip?: "true" | "false" | undefined;
3020
3046
  };
3021
3047
  } & {
3022
3048
  header: {
@@ -3029,8 +3055,8 @@ declare function init(config: AuthHeroConfig): {
3029
3055
  } | {
3030
3056
  input: {
3031
3057
  query: {
3032
- include_password_hashes?: "false" | "true" | undefined;
3033
- gzip?: "false" | "true" | undefined;
3058
+ include_password_hashes?: "true" | "false" | undefined;
3059
+ gzip?: "true" | "false" | undefined;
3034
3060
  };
3035
3061
  } & {
3036
3062
  header: {
@@ -3049,7 +3075,7 @@ declare function init(config: AuthHeroConfig): {
3049
3075
  $post: {
3050
3076
  input: {
3051
3077
  query: {
3052
- include_password_hashes?: "false" | "true" | undefined;
3078
+ include_password_hashes?: "true" | "false" | undefined;
3053
3079
  };
3054
3080
  } & {
3055
3081
  header: {
@@ -3103,7 +3129,7 @@ declare function init(config: AuthHeroConfig): {
3103
3129
  };
3104
3130
  } & {
3105
3131
  json: {
3106
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
3132
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3107
3133
  phone_number?: string | undefined;
3108
3134
  totp_secret?: string | undefined;
3109
3135
  credential_id?: string | undefined;
@@ -3243,7 +3269,7 @@ declare function init(config: AuthHeroConfig): {
3243
3269
  };
3244
3270
  };
3245
3271
  output: {
3246
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3272
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3247
3273
  enabled: boolean;
3248
3274
  trial_expired?: boolean | undefined;
3249
3275
  }[];
@@ -3398,7 +3424,7 @@ declare function init(config: AuthHeroConfig): {
3398
3424
  $get: {
3399
3425
  input: {
3400
3426
  param: {
3401
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3427
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3402
3428
  };
3403
3429
  } & {
3404
3430
  header: {
@@ -3406,7 +3432,7 @@ declare function init(config: AuthHeroConfig): {
3406
3432
  };
3407
3433
  };
3408
3434
  output: {
3409
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3435
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3410
3436
  enabled: boolean;
3411
3437
  trial_expired?: boolean | undefined;
3412
3438
  };
@@ -3419,7 +3445,7 @@ declare function init(config: AuthHeroConfig): {
3419
3445
  $put: {
3420
3446
  input: {
3421
3447
  param: {
3422
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3448
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3423
3449
  };
3424
3450
  } & {
3425
3451
  header: {
@@ -3431,7 +3457,7 @@ declare function init(config: AuthHeroConfig): {
3431
3457
  };
3432
3458
  };
3433
3459
  output: {
3434
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3460
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3435
3461
  enabled: boolean;
3436
3462
  trial_expired?: boolean | undefined;
3437
3463
  };
@@ -5031,7 +5057,7 @@ declare function init(config: AuthHeroConfig): {
5031
5057
  type: "REDIRECT";
5032
5058
  action: "REDIRECT_USER";
5033
5059
  params: {
5034
- target: "custom" | "account" | "change-email";
5060
+ target: "custom" | "change-email" | "account";
5035
5061
  custom_url?: string | undefined;
5036
5062
  };
5037
5063
  alias?: string | undefined;
@@ -5084,7 +5110,7 @@ declare function init(config: AuthHeroConfig): {
5084
5110
  type: "REDIRECT";
5085
5111
  action: "REDIRECT_USER";
5086
5112
  params: {
5087
- target: "custom" | "account" | "change-email";
5113
+ target: "custom" | "change-email" | "account";
5088
5114
  custom_url?: string | undefined;
5089
5115
  };
5090
5116
  alias?: string | undefined;
@@ -5152,7 +5178,7 @@ declare function init(config: AuthHeroConfig): {
5152
5178
  type: "REDIRECT";
5153
5179
  action: "REDIRECT_USER";
5154
5180
  params: {
5155
- target: "custom" | "account" | "change-email";
5181
+ target: "custom" | "change-email" | "account";
5156
5182
  custom_url?: string | undefined;
5157
5183
  };
5158
5184
  alias?: string | undefined;
@@ -5233,7 +5259,7 @@ declare function init(config: AuthHeroConfig): {
5233
5259
  type: "REDIRECT";
5234
5260
  action: "REDIRECT_USER";
5235
5261
  params: {
5236
- target: "custom" | "account" | "change-email";
5262
+ target: "custom" | "change-email" | "account";
5237
5263
  custom_url?: string | undefined;
5238
5264
  };
5239
5265
  alias?: string | undefined;
@@ -5281,7 +5307,7 @@ declare function init(config: AuthHeroConfig): {
5281
5307
  type: "REDIRECT";
5282
5308
  action: "REDIRECT_USER";
5283
5309
  params: {
5284
- target: "custom" | "account" | "change-email";
5310
+ target: "custom" | "change-email" | "account";
5285
5311
  custom_url?: string | undefined;
5286
5312
  };
5287
5313
  alias?: string | undefined;
@@ -5341,7 +5367,7 @@ declare function init(config: AuthHeroConfig): {
5341
5367
  type: "REDIRECT";
5342
5368
  action: "REDIRECT_USER";
5343
5369
  params: {
5344
- target: "custom" | "account" | "change-email";
5370
+ target: "custom" | "change-email" | "account";
5345
5371
  custom_url?: string | undefined;
5346
5372
  };
5347
5373
  alias?: string | undefined;
@@ -5389,7 +5415,7 @@ declare function init(config: AuthHeroConfig): {
5389
5415
  type: "REDIRECT";
5390
5416
  action: "REDIRECT_USER";
5391
5417
  params: {
5392
- target: "custom" | "account" | "change-email";
5418
+ target: "custom" | "change-email" | "account";
5393
5419
  custom_url?: string | undefined;
5394
5420
  };
5395
5421
  alias?: string | undefined;
@@ -5607,7 +5633,7 @@ declare function init(config: AuthHeroConfig): {
5607
5633
  hint?: string | undefined;
5608
5634
  messages?: {
5609
5635
  text: string;
5610
- type: "success" | "error" | "info" | "warning";
5636
+ type: "error" | "success" | "info" | "warning";
5611
5637
  id?: number | undefined;
5612
5638
  }[] | undefined;
5613
5639
  required?: boolean | undefined;
@@ -5625,7 +5651,7 @@ declare function init(config: AuthHeroConfig): {
5625
5651
  hint?: string | undefined;
5626
5652
  messages?: {
5627
5653
  text: string;
5628
- type: "success" | "error" | "info" | "warning";
5654
+ type: "error" | "success" | "info" | "warning";
5629
5655
  id?: number | undefined;
5630
5656
  }[] | undefined;
5631
5657
  required?: boolean | undefined;
@@ -5649,7 +5675,7 @@ declare function init(config: AuthHeroConfig): {
5649
5675
  hint?: string | undefined;
5650
5676
  messages?: {
5651
5677
  text: string;
5652
- type: "success" | "error" | "info" | "warning";
5678
+ type: "error" | "success" | "info" | "warning";
5653
5679
  id?: number | undefined;
5654
5680
  }[] | undefined;
5655
5681
  required?: boolean | undefined;
@@ -5673,7 +5699,7 @@ declare function init(config: AuthHeroConfig): {
5673
5699
  hint?: string | undefined;
5674
5700
  messages?: {
5675
5701
  text: string;
5676
- type: "success" | "error" | "info" | "warning";
5702
+ type: "error" | "success" | "info" | "warning";
5677
5703
  id?: number | undefined;
5678
5704
  }[] | undefined;
5679
5705
  required?: boolean | undefined;
@@ -5697,7 +5723,7 @@ declare function init(config: AuthHeroConfig): {
5697
5723
  hint?: string | undefined;
5698
5724
  messages?: {
5699
5725
  text: string;
5700
- type: "success" | "error" | "info" | "warning";
5726
+ type: "error" | "success" | "info" | "warning";
5701
5727
  id?: number | undefined;
5702
5728
  }[] | undefined;
5703
5729
  required?: boolean | undefined;
@@ -5726,7 +5752,7 @@ declare function init(config: AuthHeroConfig): {
5726
5752
  hint?: string | undefined;
5727
5753
  messages?: {
5728
5754
  text: string;
5729
- type: "success" | "error" | "info" | "warning";
5755
+ type: "error" | "success" | "info" | "warning";
5730
5756
  id?: number | undefined;
5731
5757
  }[] | undefined;
5732
5758
  required?: boolean | undefined;
@@ -5741,7 +5767,7 @@ declare function init(config: AuthHeroConfig): {
5741
5767
  hint?: string | undefined;
5742
5768
  messages?: {
5743
5769
  text: string;
5744
- type: "success" | "error" | "info" | "warning";
5770
+ type: "error" | "success" | "info" | "warning";
5745
5771
  id?: number | undefined;
5746
5772
  }[] | undefined;
5747
5773
  required?: boolean | undefined;
@@ -5762,7 +5788,7 @@ declare function init(config: AuthHeroConfig): {
5762
5788
  hint?: string | undefined;
5763
5789
  messages?: {
5764
5790
  text: string;
5765
- type: "success" | "error" | "info" | "warning";
5791
+ type: "error" | "success" | "info" | "warning";
5766
5792
  id?: number | undefined;
5767
5793
  }[] | undefined;
5768
5794
  required?: boolean | undefined;
@@ -5787,7 +5813,7 @@ declare function init(config: AuthHeroConfig): {
5787
5813
  hint?: string | undefined;
5788
5814
  messages?: {
5789
5815
  text: string;
5790
- type: "success" | "error" | "info" | "warning";
5816
+ type: "error" | "success" | "info" | "warning";
5791
5817
  id?: number | undefined;
5792
5818
  }[] | undefined;
5793
5819
  required?: boolean | undefined;
@@ -5806,7 +5832,7 @@ declare function init(config: AuthHeroConfig): {
5806
5832
  hint?: string | undefined;
5807
5833
  messages?: {
5808
5834
  text: string;
5809
- type: "success" | "error" | "info" | "warning";
5835
+ type: "error" | "success" | "info" | "warning";
5810
5836
  id?: number | undefined;
5811
5837
  }[] | undefined;
5812
5838
  required?: boolean | undefined;
@@ -5826,7 +5852,7 @@ declare function init(config: AuthHeroConfig): {
5826
5852
  hint?: string | undefined;
5827
5853
  messages?: {
5828
5854
  text: string;
5829
- type: "success" | "error" | "info" | "warning";
5855
+ type: "error" | "success" | "info" | "warning";
5830
5856
  id?: number | undefined;
5831
5857
  }[] | undefined;
5832
5858
  required?: boolean | undefined;
@@ -5845,7 +5871,7 @@ declare function init(config: AuthHeroConfig): {
5845
5871
  hint?: string | undefined;
5846
5872
  messages?: {
5847
5873
  text: string;
5848
- type: "success" | "error" | "info" | "warning";
5874
+ type: "error" | "success" | "info" | "warning";
5849
5875
  id?: number | undefined;
5850
5876
  }[] | undefined;
5851
5877
  required?: boolean | undefined;
@@ -5867,7 +5893,7 @@ declare function init(config: AuthHeroConfig): {
5867
5893
  hint?: string | undefined;
5868
5894
  messages?: {
5869
5895
  text: string;
5870
- type: "success" | "error" | "info" | "warning";
5896
+ type: "error" | "success" | "info" | "warning";
5871
5897
  id?: number | undefined;
5872
5898
  }[] | undefined;
5873
5899
  required?: boolean | undefined;
@@ -5889,7 +5915,7 @@ declare function init(config: AuthHeroConfig): {
5889
5915
  hint?: string | undefined;
5890
5916
  messages?: {
5891
5917
  text: string;
5892
- type: "success" | "error" | "info" | "warning";
5918
+ type: "error" | "success" | "info" | "warning";
5893
5919
  id?: number | undefined;
5894
5920
  }[] | undefined;
5895
5921
  required?: boolean | undefined;
@@ -5908,7 +5934,7 @@ declare function init(config: AuthHeroConfig): {
5908
5934
  hint?: string | undefined;
5909
5935
  messages?: {
5910
5936
  text: string;
5911
- type: "success" | "error" | "info" | "warning";
5937
+ type: "error" | "success" | "info" | "warning";
5912
5938
  id?: number | undefined;
5913
5939
  }[] | undefined;
5914
5940
  required?: boolean | undefined;
@@ -5933,7 +5959,7 @@ declare function init(config: AuthHeroConfig): {
5933
5959
  hint?: string | undefined;
5934
5960
  messages?: {
5935
5961
  text: string;
5936
- type: "success" | "error" | "info" | "warning";
5962
+ type: "error" | "success" | "info" | "warning";
5937
5963
  id?: number | undefined;
5938
5964
  }[] | undefined;
5939
5965
  required?: boolean | undefined;
@@ -5954,7 +5980,7 @@ declare function init(config: AuthHeroConfig): {
5954
5980
  hint?: string | undefined;
5955
5981
  messages?: {
5956
5982
  text: string;
5957
- type: "success" | "error" | "info" | "warning";
5983
+ type: "error" | "success" | "info" | "warning";
5958
5984
  id?: number | undefined;
5959
5985
  }[] | undefined;
5960
5986
  required?: boolean | undefined;
@@ -5975,7 +6001,7 @@ declare function init(config: AuthHeroConfig): {
5975
6001
  hint?: string | undefined;
5976
6002
  messages?: {
5977
6003
  text: string;
5978
- type: "success" | "error" | "info" | "warning";
6004
+ type: "error" | "success" | "info" | "warning";
5979
6005
  id?: number | undefined;
5980
6006
  }[] | undefined;
5981
6007
  required?: boolean | undefined;
@@ -6208,7 +6234,7 @@ declare function init(config: AuthHeroConfig): {
6208
6234
  hint?: string | undefined;
6209
6235
  messages?: {
6210
6236
  text: string;
6211
- type: "success" | "error" | "info" | "warning";
6237
+ type: "error" | "success" | "info" | "warning";
6212
6238
  id?: number | undefined;
6213
6239
  }[] | undefined;
6214
6240
  required?: boolean | undefined;
@@ -6226,7 +6252,7 @@ declare function init(config: AuthHeroConfig): {
6226
6252
  hint?: string | undefined;
6227
6253
  messages?: {
6228
6254
  text: string;
6229
- type: "success" | "error" | "info" | "warning";
6255
+ type: "error" | "success" | "info" | "warning";
6230
6256
  id?: number | undefined;
6231
6257
  }[] | undefined;
6232
6258
  required?: boolean | undefined;
@@ -6250,7 +6276,7 @@ declare function init(config: AuthHeroConfig): {
6250
6276
  hint?: string | undefined;
6251
6277
  messages?: {
6252
6278
  text: string;
6253
- type: "success" | "error" | "info" | "warning";
6279
+ type: "error" | "success" | "info" | "warning";
6254
6280
  id?: number | undefined;
6255
6281
  }[] | undefined;
6256
6282
  required?: boolean | undefined;
@@ -6274,7 +6300,7 @@ declare function init(config: AuthHeroConfig): {
6274
6300
  hint?: string | undefined;
6275
6301
  messages?: {
6276
6302
  text: string;
6277
- type: "success" | "error" | "info" | "warning";
6303
+ type: "error" | "success" | "info" | "warning";
6278
6304
  id?: number | undefined;
6279
6305
  }[] | undefined;
6280
6306
  required?: boolean | undefined;
@@ -6298,7 +6324,7 @@ declare function init(config: AuthHeroConfig): {
6298
6324
  hint?: string | undefined;
6299
6325
  messages?: {
6300
6326
  text: string;
6301
- type: "success" | "error" | "info" | "warning";
6327
+ type: "error" | "success" | "info" | "warning";
6302
6328
  id?: number | undefined;
6303
6329
  }[] | undefined;
6304
6330
  required?: boolean | undefined;
@@ -6327,7 +6353,7 @@ declare function init(config: AuthHeroConfig): {
6327
6353
  hint?: string | undefined;
6328
6354
  messages?: {
6329
6355
  text: string;
6330
- type: "success" | "error" | "info" | "warning";
6356
+ type: "error" | "success" | "info" | "warning";
6331
6357
  id?: number | undefined;
6332
6358
  }[] | undefined;
6333
6359
  required?: boolean | undefined;
@@ -6342,7 +6368,7 @@ declare function init(config: AuthHeroConfig): {
6342
6368
  hint?: string | undefined;
6343
6369
  messages?: {
6344
6370
  text: string;
6345
- type: "success" | "error" | "info" | "warning";
6371
+ type: "error" | "success" | "info" | "warning";
6346
6372
  id?: number | undefined;
6347
6373
  }[] | undefined;
6348
6374
  required?: boolean | undefined;
@@ -6363,7 +6389,7 @@ declare function init(config: AuthHeroConfig): {
6363
6389
  hint?: string | undefined;
6364
6390
  messages?: {
6365
6391
  text: string;
6366
- type: "success" | "error" | "info" | "warning";
6392
+ type: "error" | "success" | "info" | "warning";
6367
6393
  id?: number | undefined;
6368
6394
  }[] | undefined;
6369
6395
  required?: boolean | undefined;
@@ -6388,7 +6414,7 @@ declare function init(config: AuthHeroConfig): {
6388
6414
  hint?: string | undefined;
6389
6415
  messages?: {
6390
6416
  text: string;
6391
- type: "success" | "error" | "info" | "warning";
6417
+ type: "error" | "success" | "info" | "warning";
6392
6418
  id?: number | undefined;
6393
6419
  }[] | undefined;
6394
6420
  required?: boolean | undefined;
@@ -6407,7 +6433,7 @@ declare function init(config: AuthHeroConfig): {
6407
6433
  hint?: string | undefined;
6408
6434
  messages?: {
6409
6435
  text: string;
6410
- type: "success" | "error" | "info" | "warning";
6436
+ type: "error" | "success" | "info" | "warning";
6411
6437
  id?: number | undefined;
6412
6438
  }[] | undefined;
6413
6439
  required?: boolean | undefined;
@@ -6427,7 +6453,7 @@ declare function init(config: AuthHeroConfig): {
6427
6453
  hint?: string | undefined;
6428
6454
  messages?: {
6429
6455
  text: string;
6430
- type: "success" | "error" | "info" | "warning";
6456
+ type: "error" | "success" | "info" | "warning";
6431
6457
  id?: number | undefined;
6432
6458
  }[] | undefined;
6433
6459
  required?: boolean | undefined;
@@ -6446,7 +6472,7 @@ declare function init(config: AuthHeroConfig): {
6446
6472
  hint?: string | undefined;
6447
6473
  messages?: {
6448
6474
  text: string;
6449
- type: "success" | "error" | "info" | "warning";
6475
+ type: "error" | "success" | "info" | "warning";
6450
6476
  id?: number | undefined;
6451
6477
  }[] | undefined;
6452
6478
  required?: boolean | undefined;
@@ -6468,7 +6494,7 @@ declare function init(config: AuthHeroConfig): {
6468
6494
  hint?: string | undefined;
6469
6495
  messages?: {
6470
6496
  text: string;
6471
- type: "success" | "error" | "info" | "warning";
6497
+ type: "error" | "success" | "info" | "warning";
6472
6498
  id?: number | undefined;
6473
6499
  }[] | undefined;
6474
6500
  required?: boolean | undefined;
@@ -6490,7 +6516,7 @@ declare function init(config: AuthHeroConfig): {
6490
6516
  hint?: string | undefined;
6491
6517
  messages?: {
6492
6518
  text: string;
6493
- type: "success" | "error" | "info" | "warning";
6519
+ type: "error" | "success" | "info" | "warning";
6494
6520
  id?: number | undefined;
6495
6521
  }[] | undefined;
6496
6522
  required?: boolean | undefined;
@@ -6509,7 +6535,7 @@ declare function init(config: AuthHeroConfig): {
6509
6535
  hint?: string | undefined;
6510
6536
  messages?: {
6511
6537
  text: string;
6512
- type: "success" | "error" | "info" | "warning";
6538
+ type: "error" | "success" | "info" | "warning";
6513
6539
  id?: number | undefined;
6514
6540
  }[] | undefined;
6515
6541
  required?: boolean | undefined;
@@ -6534,7 +6560,7 @@ declare function init(config: AuthHeroConfig): {
6534
6560
  hint?: string | undefined;
6535
6561
  messages?: {
6536
6562
  text: string;
6537
- type: "success" | "error" | "info" | "warning";
6563
+ type: "error" | "success" | "info" | "warning";
6538
6564
  id?: number | undefined;
6539
6565
  }[] | undefined;
6540
6566
  required?: boolean | undefined;
@@ -6555,7 +6581,7 @@ declare function init(config: AuthHeroConfig): {
6555
6581
  hint?: string | undefined;
6556
6582
  messages?: {
6557
6583
  text: string;
6558
- type: "success" | "error" | "info" | "warning";
6584
+ type: "error" | "success" | "info" | "warning";
6559
6585
  id?: number | undefined;
6560
6586
  }[] | undefined;
6561
6587
  required?: boolean | undefined;
@@ -6576,7 +6602,7 @@ declare function init(config: AuthHeroConfig): {
6576
6602
  hint?: string | undefined;
6577
6603
  messages?: {
6578
6604
  text: string;
6579
- type: "success" | "error" | "info" | "warning";
6605
+ type: "error" | "success" | "info" | "warning";
6580
6606
  id?: number | undefined;
6581
6607
  }[] | undefined;
6582
6608
  required?: boolean | undefined;
@@ -6824,7 +6850,7 @@ declare function init(config: AuthHeroConfig): {
6824
6850
  hint?: string | undefined;
6825
6851
  messages?: {
6826
6852
  text: string;
6827
- type: "success" | "error" | "info" | "warning";
6853
+ type: "error" | "success" | "info" | "warning";
6828
6854
  id?: number | undefined;
6829
6855
  }[] | undefined;
6830
6856
  required?: boolean | undefined;
@@ -6842,7 +6868,7 @@ declare function init(config: AuthHeroConfig): {
6842
6868
  hint?: string | undefined;
6843
6869
  messages?: {
6844
6870
  text: string;
6845
- type: "success" | "error" | "info" | "warning";
6871
+ type: "error" | "success" | "info" | "warning";
6846
6872
  id?: number | undefined;
6847
6873
  }[] | undefined;
6848
6874
  required?: boolean | undefined;
@@ -6866,7 +6892,7 @@ declare function init(config: AuthHeroConfig): {
6866
6892
  hint?: string | undefined;
6867
6893
  messages?: {
6868
6894
  text: string;
6869
- type: "success" | "error" | "info" | "warning";
6895
+ type: "error" | "success" | "info" | "warning";
6870
6896
  id?: number | undefined;
6871
6897
  }[] | undefined;
6872
6898
  required?: boolean | undefined;
@@ -6890,7 +6916,7 @@ declare function init(config: AuthHeroConfig): {
6890
6916
  hint?: string | undefined;
6891
6917
  messages?: {
6892
6918
  text: string;
6893
- type: "success" | "error" | "info" | "warning";
6919
+ type: "error" | "success" | "info" | "warning";
6894
6920
  id?: number | undefined;
6895
6921
  }[] | undefined;
6896
6922
  required?: boolean | undefined;
@@ -6914,7 +6940,7 @@ declare function init(config: AuthHeroConfig): {
6914
6940
  hint?: string | undefined;
6915
6941
  messages?: {
6916
6942
  text: string;
6917
- type: "success" | "error" | "info" | "warning";
6943
+ type: "error" | "success" | "info" | "warning";
6918
6944
  id?: number | undefined;
6919
6945
  }[] | undefined;
6920
6946
  required?: boolean | undefined;
@@ -6943,7 +6969,7 @@ declare function init(config: AuthHeroConfig): {
6943
6969
  hint?: string | undefined;
6944
6970
  messages?: {
6945
6971
  text: string;
6946
- type: "success" | "error" | "info" | "warning";
6972
+ type: "error" | "success" | "info" | "warning";
6947
6973
  id?: number | undefined;
6948
6974
  }[] | undefined;
6949
6975
  required?: boolean | undefined;
@@ -6958,7 +6984,7 @@ declare function init(config: AuthHeroConfig): {
6958
6984
  hint?: string | undefined;
6959
6985
  messages?: {
6960
6986
  text: string;
6961
- type: "success" | "error" | "info" | "warning";
6987
+ type: "error" | "success" | "info" | "warning";
6962
6988
  id?: number | undefined;
6963
6989
  }[] | undefined;
6964
6990
  required?: boolean | undefined;
@@ -6979,7 +7005,7 @@ declare function init(config: AuthHeroConfig): {
6979
7005
  hint?: string | undefined;
6980
7006
  messages?: {
6981
7007
  text: string;
6982
- type: "success" | "error" | "info" | "warning";
7008
+ type: "error" | "success" | "info" | "warning";
6983
7009
  id?: number | undefined;
6984
7010
  }[] | undefined;
6985
7011
  required?: boolean | undefined;
@@ -7004,7 +7030,7 @@ declare function init(config: AuthHeroConfig): {
7004
7030
  hint?: string | undefined;
7005
7031
  messages?: {
7006
7032
  text: string;
7007
- type: "success" | "error" | "info" | "warning";
7033
+ type: "error" | "success" | "info" | "warning";
7008
7034
  id?: number | undefined;
7009
7035
  }[] | undefined;
7010
7036
  required?: boolean | undefined;
@@ -7023,7 +7049,7 @@ declare function init(config: AuthHeroConfig): {
7023
7049
  hint?: string | undefined;
7024
7050
  messages?: {
7025
7051
  text: string;
7026
- type: "success" | "error" | "info" | "warning";
7052
+ type: "error" | "success" | "info" | "warning";
7027
7053
  id?: number | undefined;
7028
7054
  }[] | undefined;
7029
7055
  required?: boolean | undefined;
@@ -7043,7 +7069,7 @@ declare function init(config: AuthHeroConfig): {
7043
7069
  hint?: string | undefined;
7044
7070
  messages?: {
7045
7071
  text: string;
7046
- type: "success" | "error" | "info" | "warning";
7072
+ type: "error" | "success" | "info" | "warning";
7047
7073
  id?: number | undefined;
7048
7074
  }[] | undefined;
7049
7075
  required?: boolean | undefined;
@@ -7062,7 +7088,7 @@ declare function init(config: AuthHeroConfig): {
7062
7088
  hint?: string | undefined;
7063
7089
  messages?: {
7064
7090
  text: string;
7065
- type: "success" | "error" | "info" | "warning";
7091
+ type: "error" | "success" | "info" | "warning";
7066
7092
  id?: number | undefined;
7067
7093
  }[] | undefined;
7068
7094
  required?: boolean | undefined;
@@ -7084,7 +7110,7 @@ declare function init(config: AuthHeroConfig): {
7084
7110
  hint?: string | undefined;
7085
7111
  messages?: {
7086
7112
  text: string;
7087
- type: "success" | "error" | "info" | "warning";
7113
+ type: "error" | "success" | "info" | "warning";
7088
7114
  id?: number | undefined;
7089
7115
  }[] | undefined;
7090
7116
  required?: boolean | undefined;
@@ -7106,7 +7132,7 @@ declare function init(config: AuthHeroConfig): {
7106
7132
  hint?: string | undefined;
7107
7133
  messages?: {
7108
7134
  text: string;
7109
- type: "success" | "error" | "info" | "warning";
7135
+ type: "error" | "success" | "info" | "warning";
7110
7136
  id?: number | undefined;
7111
7137
  }[] | undefined;
7112
7138
  required?: boolean | undefined;
@@ -7125,7 +7151,7 @@ declare function init(config: AuthHeroConfig): {
7125
7151
  hint?: string | undefined;
7126
7152
  messages?: {
7127
7153
  text: string;
7128
- type: "success" | "error" | "info" | "warning";
7154
+ type: "error" | "success" | "info" | "warning";
7129
7155
  id?: number | undefined;
7130
7156
  }[] | undefined;
7131
7157
  required?: boolean | undefined;
@@ -7150,7 +7176,7 @@ declare function init(config: AuthHeroConfig): {
7150
7176
  hint?: string | undefined;
7151
7177
  messages?: {
7152
7178
  text: string;
7153
- type: "success" | "error" | "info" | "warning";
7179
+ type: "error" | "success" | "info" | "warning";
7154
7180
  id?: number | undefined;
7155
7181
  }[] | undefined;
7156
7182
  required?: boolean | undefined;
@@ -7171,7 +7197,7 @@ declare function init(config: AuthHeroConfig): {
7171
7197
  hint?: string | undefined;
7172
7198
  messages?: {
7173
7199
  text: string;
7174
- type: "success" | "error" | "info" | "warning";
7200
+ type: "error" | "success" | "info" | "warning";
7175
7201
  id?: number | undefined;
7176
7202
  }[] | undefined;
7177
7203
  required?: boolean | undefined;
@@ -7192,7 +7218,7 @@ declare function init(config: AuthHeroConfig): {
7192
7218
  hint?: string | undefined;
7193
7219
  messages?: {
7194
7220
  text: string;
7195
- type: "success" | "error" | "info" | "warning";
7221
+ type: "error" | "success" | "info" | "warning";
7196
7222
  id?: number | undefined;
7197
7223
  }[] | undefined;
7198
7224
  required?: boolean | undefined;
@@ -7446,7 +7472,7 @@ declare function init(config: AuthHeroConfig): {
7446
7472
  hint?: string | undefined;
7447
7473
  messages?: {
7448
7474
  text: string;
7449
- type: "success" | "error" | "info" | "warning";
7475
+ type: "error" | "success" | "info" | "warning";
7450
7476
  id?: number | undefined;
7451
7477
  }[] | undefined;
7452
7478
  required?: boolean | undefined;
@@ -7464,7 +7490,7 @@ declare function init(config: AuthHeroConfig): {
7464
7490
  hint?: string | undefined;
7465
7491
  messages?: {
7466
7492
  text: string;
7467
- type: "success" | "error" | "info" | "warning";
7493
+ type: "error" | "success" | "info" | "warning";
7468
7494
  id?: number | undefined;
7469
7495
  }[] | undefined;
7470
7496
  required?: boolean | undefined;
@@ -7488,7 +7514,7 @@ declare function init(config: AuthHeroConfig): {
7488
7514
  hint?: string | undefined;
7489
7515
  messages?: {
7490
7516
  text: string;
7491
- type: "success" | "error" | "info" | "warning";
7517
+ type: "error" | "success" | "info" | "warning";
7492
7518
  id?: number | undefined;
7493
7519
  }[] | undefined;
7494
7520
  required?: boolean | undefined;
@@ -7512,7 +7538,7 @@ declare function init(config: AuthHeroConfig): {
7512
7538
  hint?: string | undefined;
7513
7539
  messages?: {
7514
7540
  text: string;
7515
- type: "success" | "error" | "info" | "warning";
7541
+ type: "error" | "success" | "info" | "warning";
7516
7542
  id?: number | undefined;
7517
7543
  }[] | undefined;
7518
7544
  required?: boolean | undefined;
@@ -7536,7 +7562,7 @@ declare function init(config: AuthHeroConfig): {
7536
7562
  hint?: string | undefined;
7537
7563
  messages?: {
7538
7564
  text: string;
7539
- type: "success" | "error" | "info" | "warning";
7565
+ type: "error" | "success" | "info" | "warning";
7540
7566
  id?: number | undefined;
7541
7567
  }[] | undefined;
7542
7568
  required?: boolean | undefined;
@@ -7561,7 +7587,7 @@ declare function init(config: AuthHeroConfig): {
7561
7587
  hint?: string | undefined;
7562
7588
  messages?: {
7563
7589
  text: string;
7564
- type: "success" | "error" | "info" | "warning";
7590
+ type: "error" | "success" | "info" | "warning";
7565
7591
  id?: number | undefined;
7566
7592
  }[] | undefined;
7567
7593
  required?: boolean | undefined;
@@ -7576,7 +7602,7 @@ declare function init(config: AuthHeroConfig): {
7576
7602
  hint?: string | undefined;
7577
7603
  messages?: {
7578
7604
  text: string;
7579
- type: "success" | "error" | "info" | "warning";
7605
+ type: "error" | "success" | "info" | "warning";
7580
7606
  id?: number | undefined;
7581
7607
  }[] | undefined;
7582
7608
  required?: boolean | undefined;
@@ -7597,7 +7623,7 @@ declare function init(config: AuthHeroConfig): {
7597
7623
  hint?: string | undefined;
7598
7624
  messages?: {
7599
7625
  text: string;
7600
- type: "success" | "error" | "info" | "warning";
7626
+ type: "error" | "success" | "info" | "warning";
7601
7627
  id?: number | undefined;
7602
7628
  }[] | undefined;
7603
7629
  required?: boolean | undefined;
@@ -7622,7 +7648,7 @@ declare function init(config: AuthHeroConfig): {
7622
7648
  hint?: string | undefined;
7623
7649
  messages?: {
7624
7650
  text: string;
7625
- type: "success" | "error" | "info" | "warning";
7651
+ type: "error" | "success" | "info" | "warning";
7626
7652
  id?: number | undefined;
7627
7653
  }[] | undefined;
7628
7654
  required?: boolean | undefined;
@@ -7641,7 +7667,7 @@ declare function init(config: AuthHeroConfig): {
7641
7667
  hint?: string | undefined;
7642
7668
  messages?: {
7643
7669
  text: string;
7644
- type: "success" | "error" | "info" | "warning";
7670
+ type: "error" | "success" | "info" | "warning";
7645
7671
  id?: number | undefined;
7646
7672
  }[] | undefined;
7647
7673
  required?: boolean | undefined;
@@ -7661,7 +7687,7 @@ declare function init(config: AuthHeroConfig): {
7661
7687
  hint?: string | undefined;
7662
7688
  messages?: {
7663
7689
  text: string;
7664
- type: "success" | "error" | "info" | "warning";
7690
+ type: "error" | "success" | "info" | "warning";
7665
7691
  id?: number | undefined;
7666
7692
  }[] | undefined;
7667
7693
  required?: boolean | undefined;
@@ -7680,7 +7706,7 @@ declare function init(config: AuthHeroConfig): {
7680
7706
  hint?: string | undefined;
7681
7707
  messages?: {
7682
7708
  text: string;
7683
- type: "success" | "error" | "info" | "warning";
7709
+ type: "error" | "success" | "info" | "warning";
7684
7710
  id?: number | undefined;
7685
7711
  }[] | undefined;
7686
7712
  required?: boolean | undefined;
@@ -7702,7 +7728,7 @@ declare function init(config: AuthHeroConfig): {
7702
7728
  hint?: string | undefined;
7703
7729
  messages?: {
7704
7730
  text: string;
7705
- type: "success" | "error" | "info" | "warning";
7731
+ type: "error" | "success" | "info" | "warning";
7706
7732
  id?: number | undefined;
7707
7733
  }[] | undefined;
7708
7734
  required?: boolean | undefined;
@@ -7724,7 +7750,7 @@ declare function init(config: AuthHeroConfig): {
7724
7750
  hint?: string | undefined;
7725
7751
  messages?: {
7726
7752
  text: string;
7727
- type: "success" | "error" | "info" | "warning";
7753
+ type: "error" | "success" | "info" | "warning";
7728
7754
  id?: number | undefined;
7729
7755
  }[] | undefined;
7730
7756
  required?: boolean | undefined;
@@ -7743,7 +7769,7 @@ declare function init(config: AuthHeroConfig): {
7743
7769
  hint?: string | undefined;
7744
7770
  messages?: {
7745
7771
  text: string;
7746
- type: "success" | "error" | "info" | "warning";
7772
+ type: "error" | "success" | "info" | "warning";
7747
7773
  id?: number | undefined;
7748
7774
  }[] | undefined;
7749
7775
  required?: boolean | undefined;
@@ -7768,7 +7794,7 @@ declare function init(config: AuthHeroConfig): {
7768
7794
  hint?: string | undefined;
7769
7795
  messages?: {
7770
7796
  text: string;
7771
- type: "success" | "error" | "info" | "warning";
7797
+ type: "error" | "success" | "info" | "warning";
7772
7798
  id?: number | undefined;
7773
7799
  }[] | undefined;
7774
7800
  required?: boolean | undefined;
@@ -7789,7 +7815,7 @@ declare function init(config: AuthHeroConfig): {
7789
7815
  hint?: string | undefined;
7790
7816
  messages?: {
7791
7817
  text: string;
7792
- type: "success" | "error" | "info" | "warning";
7818
+ type: "error" | "success" | "info" | "warning";
7793
7819
  id?: number | undefined;
7794
7820
  }[] | undefined;
7795
7821
  required?: boolean | undefined;
@@ -7810,7 +7836,7 @@ declare function init(config: AuthHeroConfig): {
7810
7836
  hint?: string | undefined;
7811
7837
  messages?: {
7812
7838
  text: string;
7813
- type: "success" | "error" | "info" | "warning";
7839
+ type: "error" | "success" | "info" | "warning";
7814
7840
  id?: number | undefined;
7815
7841
  }[] | undefined;
7816
7842
  required?: boolean | undefined;
@@ -8041,7 +8067,7 @@ declare function init(config: AuthHeroConfig): {
8041
8067
  hint?: string | undefined;
8042
8068
  messages?: {
8043
8069
  text: string;
8044
- type: "success" | "error" | "info" | "warning";
8070
+ type: "error" | "success" | "info" | "warning";
8045
8071
  id?: number | undefined;
8046
8072
  }[] | undefined;
8047
8073
  required?: boolean | undefined;
@@ -8059,7 +8085,7 @@ declare function init(config: AuthHeroConfig): {
8059
8085
  hint?: string | undefined;
8060
8086
  messages?: {
8061
8087
  text: string;
8062
- type: "success" | "error" | "info" | "warning";
8088
+ type: "error" | "success" | "info" | "warning";
8063
8089
  id?: number | undefined;
8064
8090
  }[] | undefined;
8065
8091
  required?: boolean | undefined;
@@ -8083,7 +8109,7 @@ declare function init(config: AuthHeroConfig): {
8083
8109
  hint?: string | undefined;
8084
8110
  messages?: {
8085
8111
  text: string;
8086
- type: "success" | "error" | "info" | "warning";
8112
+ type: "error" | "success" | "info" | "warning";
8087
8113
  id?: number | undefined;
8088
8114
  }[] | undefined;
8089
8115
  required?: boolean | undefined;
@@ -8107,7 +8133,7 @@ declare function init(config: AuthHeroConfig): {
8107
8133
  hint?: string | undefined;
8108
8134
  messages?: {
8109
8135
  text: string;
8110
- type: "success" | "error" | "info" | "warning";
8136
+ type: "error" | "success" | "info" | "warning";
8111
8137
  id?: number | undefined;
8112
8138
  }[] | undefined;
8113
8139
  required?: boolean | undefined;
@@ -8131,7 +8157,7 @@ declare function init(config: AuthHeroConfig): {
8131
8157
  hint?: string | undefined;
8132
8158
  messages?: {
8133
8159
  text: string;
8134
- type: "success" | "error" | "info" | "warning";
8160
+ type: "error" | "success" | "info" | "warning";
8135
8161
  id?: number | undefined;
8136
8162
  }[] | undefined;
8137
8163
  required?: boolean | undefined;
@@ -8160,7 +8186,7 @@ declare function init(config: AuthHeroConfig): {
8160
8186
  hint?: string | undefined;
8161
8187
  messages?: {
8162
8188
  text: string;
8163
- type: "success" | "error" | "info" | "warning";
8189
+ type: "error" | "success" | "info" | "warning";
8164
8190
  id?: number | undefined;
8165
8191
  }[] | undefined;
8166
8192
  required?: boolean | undefined;
@@ -8175,7 +8201,7 @@ declare function init(config: AuthHeroConfig): {
8175
8201
  hint?: string | undefined;
8176
8202
  messages?: {
8177
8203
  text: string;
8178
- type: "success" | "error" | "info" | "warning";
8204
+ type: "error" | "success" | "info" | "warning";
8179
8205
  id?: number | undefined;
8180
8206
  }[] | undefined;
8181
8207
  required?: boolean | undefined;
@@ -8196,7 +8222,7 @@ declare function init(config: AuthHeroConfig): {
8196
8222
  hint?: string | undefined;
8197
8223
  messages?: {
8198
8224
  text: string;
8199
- type: "success" | "error" | "info" | "warning";
8225
+ type: "error" | "success" | "info" | "warning";
8200
8226
  id?: number | undefined;
8201
8227
  }[] | undefined;
8202
8228
  required?: boolean | undefined;
@@ -8221,7 +8247,7 @@ declare function init(config: AuthHeroConfig): {
8221
8247
  hint?: string | undefined;
8222
8248
  messages?: {
8223
8249
  text: string;
8224
- type: "success" | "error" | "info" | "warning";
8250
+ type: "error" | "success" | "info" | "warning";
8225
8251
  id?: number | undefined;
8226
8252
  }[] | undefined;
8227
8253
  required?: boolean | undefined;
@@ -8240,7 +8266,7 @@ declare function init(config: AuthHeroConfig): {
8240
8266
  hint?: string | undefined;
8241
8267
  messages?: {
8242
8268
  text: string;
8243
- type: "success" | "error" | "info" | "warning";
8269
+ type: "error" | "success" | "info" | "warning";
8244
8270
  id?: number | undefined;
8245
8271
  }[] | undefined;
8246
8272
  required?: boolean | undefined;
@@ -8260,7 +8286,7 @@ declare function init(config: AuthHeroConfig): {
8260
8286
  hint?: string | undefined;
8261
8287
  messages?: {
8262
8288
  text: string;
8263
- type: "success" | "error" | "info" | "warning";
8289
+ type: "error" | "success" | "info" | "warning";
8264
8290
  id?: number | undefined;
8265
8291
  }[] | undefined;
8266
8292
  required?: boolean | undefined;
@@ -8279,7 +8305,7 @@ declare function init(config: AuthHeroConfig): {
8279
8305
  hint?: string | undefined;
8280
8306
  messages?: {
8281
8307
  text: string;
8282
- type: "success" | "error" | "info" | "warning";
8308
+ type: "error" | "success" | "info" | "warning";
8283
8309
  id?: number | undefined;
8284
8310
  }[] | undefined;
8285
8311
  required?: boolean | undefined;
@@ -8301,7 +8327,7 @@ declare function init(config: AuthHeroConfig): {
8301
8327
  hint?: string | undefined;
8302
8328
  messages?: {
8303
8329
  text: string;
8304
- type: "success" | "error" | "info" | "warning";
8330
+ type: "error" | "success" | "info" | "warning";
8305
8331
  id?: number | undefined;
8306
8332
  }[] | undefined;
8307
8333
  required?: boolean | undefined;
@@ -8323,7 +8349,7 @@ declare function init(config: AuthHeroConfig): {
8323
8349
  hint?: string | undefined;
8324
8350
  messages?: {
8325
8351
  text: string;
8326
- type: "success" | "error" | "info" | "warning";
8352
+ type: "error" | "success" | "info" | "warning";
8327
8353
  id?: number | undefined;
8328
8354
  }[] | undefined;
8329
8355
  required?: boolean | undefined;
@@ -8342,7 +8368,7 @@ declare function init(config: AuthHeroConfig): {
8342
8368
  hint?: string | undefined;
8343
8369
  messages?: {
8344
8370
  text: string;
8345
- type: "success" | "error" | "info" | "warning";
8371
+ type: "error" | "success" | "info" | "warning";
8346
8372
  id?: number | undefined;
8347
8373
  }[] | undefined;
8348
8374
  required?: boolean | undefined;
@@ -8367,7 +8393,7 @@ declare function init(config: AuthHeroConfig): {
8367
8393
  hint?: string | undefined;
8368
8394
  messages?: {
8369
8395
  text: string;
8370
- type: "success" | "error" | "info" | "warning";
8396
+ type: "error" | "success" | "info" | "warning";
8371
8397
  id?: number | undefined;
8372
8398
  }[] | undefined;
8373
8399
  required?: boolean | undefined;
@@ -8388,7 +8414,7 @@ declare function init(config: AuthHeroConfig): {
8388
8414
  hint?: string | undefined;
8389
8415
  messages?: {
8390
8416
  text: string;
8391
- type: "success" | "error" | "info" | "warning";
8417
+ type: "error" | "success" | "info" | "warning";
8392
8418
  id?: number | undefined;
8393
8419
  }[] | undefined;
8394
8420
  required?: boolean | undefined;
@@ -8409,7 +8435,7 @@ declare function init(config: AuthHeroConfig): {
8409
8435
  hint?: string | undefined;
8410
8436
  messages?: {
8411
8437
  text: string;
8412
- type: "success" | "error" | "info" | "warning";
8438
+ type: "error" | "success" | "info" | "warning";
8413
8439
  id?: number | undefined;
8414
8440
  }[] | undefined;
8415
8441
  required?: boolean | undefined;
@@ -8642,7 +8668,7 @@ declare function init(config: AuthHeroConfig): {
8642
8668
  hint?: string | undefined;
8643
8669
  messages?: {
8644
8670
  text: string;
8645
- type: "success" | "error" | "info" | "warning";
8671
+ type: "error" | "success" | "info" | "warning";
8646
8672
  id?: number | undefined;
8647
8673
  }[] | undefined;
8648
8674
  required?: boolean | undefined;
@@ -8660,7 +8686,7 @@ declare function init(config: AuthHeroConfig): {
8660
8686
  hint?: string | undefined;
8661
8687
  messages?: {
8662
8688
  text: string;
8663
- type: "success" | "error" | "info" | "warning";
8689
+ type: "error" | "success" | "info" | "warning";
8664
8690
  id?: number | undefined;
8665
8691
  }[] | undefined;
8666
8692
  required?: boolean | undefined;
@@ -8684,7 +8710,7 @@ declare function init(config: AuthHeroConfig): {
8684
8710
  hint?: string | undefined;
8685
8711
  messages?: {
8686
8712
  text: string;
8687
- type: "success" | "error" | "info" | "warning";
8713
+ type: "error" | "success" | "info" | "warning";
8688
8714
  id?: number | undefined;
8689
8715
  }[] | undefined;
8690
8716
  required?: boolean | undefined;
@@ -8708,7 +8734,7 @@ declare function init(config: AuthHeroConfig): {
8708
8734
  hint?: string | undefined;
8709
8735
  messages?: {
8710
8736
  text: string;
8711
- type: "success" | "error" | "info" | "warning";
8737
+ type: "error" | "success" | "info" | "warning";
8712
8738
  id?: number | undefined;
8713
8739
  }[] | undefined;
8714
8740
  required?: boolean | undefined;
@@ -8732,7 +8758,7 @@ declare function init(config: AuthHeroConfig): {
8732
8758
  hint?: string | undefined;
8733
8759
  messages?: {
8734
8760
  text: string;
8735
- type: "success" | "error" | "info" | "warning";
8761
+ type: "error" | "success" | "info" | "warning";
8736
8762
  id?: number | undefined;
8737
8763
  }[] | undefined;
8738
8764
  required?: boolean | undefined;
@@ -8757,7 +8783,7 @@ declare function init(config: AuthHeroConfig): {
8757
8783
  hint?: string | undefined;
8758
8784
  messages?: {
8759
8785
  text: string;
8760
- type: "success" | "error" | "info" | "warning";
8786
+ type: "error" | "success" | "info" | "warning";
8761
8787
  id?: number | undefined;
8762
8788
  }[] | undefined;
8763
8789
  required?: boolean | undefined;
@@ -8772,7 +8798,7 @@ declare function init(config: AuthHeroConfig): {
8772
8798
  hint?: string | undefined;
8773
8799
  messages?: {
8774
8800
  text: string;
8775
- type: "success" | "error" | "info" | "warning";
8801
+ type: "error" | "success" | "info" | "warning";
8776
8802
  id?: number | undefined;
8777
8803
  }[] | undefined;
8778
8804
  required?: boolean | undefined;
@@ -8793,7 +8819,7 @@ declare function init(config: AuthHeroConfig): {
8793
8819
  hint?: string | undefined;
8794
8820
  messages?: {
8795
8821
  text: string;
8796
- type: "success" | "error" | "info" | "warning";
8822
+ type: "error" | "success" | "info" | "warning";
8797
8823
  id?: number | undefined;
8798
8824
  }[] | undefined;
8799
8825
  required?: boolean | undefined;
@@ -8818,7 +8844,7 @@ declare function init(config: AuthHeroConfig): {
8818
8844
  hint?: string | undefined;
8819
8845
  messages?: {
8820
8846
  text: string;
8821
- type: "success" | "error" | "info" | "warning";
8847
+ type: "error" | "success" | "info" | "warning";
8822
8848
  id?: number | undefined;
8823
8849
  }[] | undefined;
8824
8850
  required?: boolean | undefined;
@@ -8837,7 +8863,7 @@ declare function init(config: AuthHeroConfig): {
8837
8863
  hint?: string | undefined;
8838
8864
  messages?: {
8839
8865
  text: string;
8840
- type: "success" | "error" | "info" | "warning";
8866
+ type: "error" | "success" | "info" | "warning";
8841
8867
  id?: number | undefined;
8842
8868
  }[] | undefined;
8843
8869
  required?: boolean | undefined;
@@ -8857,7 +8883,7 @@ declare function init(config: AuthHeroConfig): {
8857
8883
  hint?: string | undefined;
8858
8884
  messages?: {
8859
8885
  text: string;
8860
- type: "success" | "error" | "info" | "warning";
8886
+ type: "error" | "success" | "info" | "warning";
8861
8887
  id?: number | undefined;
8862
8888
  }[] | undefined;
8863
8889
  required?: boolean | undefined;
@@ -8876,7 +8902,7 @@ declare function init(config: AuthHeroConfig): {
8876
8902
  hint?: string | undefined;
8877
8903
  messages?: {
8878
8904
  text: string;
8879
- type: "success" | "error" | "info" | "warning";
8905
+ type: "error" | "success" | "info" | "warning";
8880
8906
  id?: number | undefined;
8881
8907
  }[] | undefined;
8882
8908
  required?: boolean | undefined;
@@ -8898,7 +8924,7 @@ declare function init(config: AuthHeroConfig): {
8898
8924
  hint?: string | undefined;
8899
8925
  messages?: {
8900
8926
  text: string;
8901
- type: "success" | "error" | "info" | "warning";
8927
+ type: "error" | "success" | "info" | "warning";
8902
8928
  id?: number | undefined;
8903
8929
  }[] | undefined;
8904
8930
  required?: boolean | undefined;
@@ -8920,7 +8946,7 @@ declare function init(config: AuthHeroConfig): {
8920
8946
  hint?: string | undefined;
8921
8947
  messages?: {
8922
8948
  text: string;
8923
- type: "success" | "error" | "info" | "warning";
8949
+ type: "error" | "success" | "info" | "warning";
8924
8950
  id?: number | undefined;
8925
8951
  }[] | undefined;
8926
8952
  required?: boolean | undefined;
@@ -8939,7 +8965,7 @@ declare function init(config: AuthHeroConfig): {
8939
8965
  hint?: string | undefined;
8940
8966
  messages?: {
8941
8967
  text: string;
8942
- type: "success" | "error" | "info" | "warning";
8968
+ type: "error" | "success" | "info" | "warning";
8943
8969
  id?: number | undefined;
8944
8970
  }[] | undefined;
8945
8971
  required?: boolean | undefined;
@@ -8964,7 +8990,7 @@ declare function init(config: AuthHeroConfig): {
8964
8990
  hint?: string | undefined;
8965
8991
  messages?: {
8966
8992
  text: string;
8967
- type: "success" | "error" | "info" | "warning";
8993
+ type: "error" | "success" | "info" | "warning";
8968
8994
  id?: number | undefined;
8969
8995
  }[] | undefined;
8970
8996
  required?: boolean | undefined;
@@ -8985,7 +9011,7 @@ declare function init(config: AuthHeroConfig): {
8985
9011
  hint?: string | undefined;
8986
9012
  messages?: {
8987
9013
  text: string;
8988
- type: "success" | "error" | "info" | "warning";
9014
+ type: "error" | "success" | "info" | "warning";
8989
9015
  id?: number | undefined;
8990
9016
  }[] | undefined;
8991
9017
  required?: boolean | undefined;
@@ -9006,7 +9032,7 @@ declare function init(config: AuthHeroConfig): {
9006
9032
  hint?: string | undefined;
9007
9033
  messages?: {
9008
9034
  text: string;
9009
- type: "success" | "error" | "info" | "warning";
9035
+ type: "error" | "success" | "info" | "warning";
9010
9036
  id?: number | undefined;
9011
9037
  }[] | undefined;
9012
9038
  required?: boolean | undefined;
@@ -9237,7 +9263,7 @@ declare function init(config: AuthHeroConfig): {
9237
9263
  hint?: string | undefined;
9238
9264
  messages?: {
9239
9265
  text: string;
9240
- type: "success" | "error" | "info" | "warning";
9266
+ type: "error" | "success" | "info" | "warning";
9241
9267
  id?: number | undefined;
9242
9268
  }[] | undefined;
9243
9269
  required?: boolean | undefined;
@@ -9255,7 +9281,7 @@ declare function init(config: AuthHeroConfig): {
9255
9281
  hint?: string | undefined;
9256
9282
  messages?: {
9257
9283
  text: string;
9258
- type: "success" | "error" | "info" | "warning";
9284
+ type: "error" | "success" | "info" | "warning";
9259
9285
  id?: number | undefined;
9260
9286
  }[] | undefined;
9261
9287
  required?: boolean | undefined;
@@ -9279,7 +9305,7 @@ declare function init(config: AuthHeroConfig): {
9279
9305
  hint?: string | undefined;
9280
9306
  messages?: {
9281
9307
  text: string;
9282
- type: "success" | "error" | "info" | "warning";
9308
+ type: "error" | "success" | "info" | "warning";
9283
9309
  id?: number | undefined;
9284
9310
  }[] | undefined;
9285
9311
  required?: boolean | undefined;
@@ -9303,7 +9329,7 @@ declare function init(config: AuthHeroConfig): {
9303
9329
  hint?: string | undefined;
9304
9330
  messages?: {
9305
9331
  text: string;
9306
- type: "success" | "error" | "info" | "warning";
9332
+ type: "error" | "success" | "info" | "warning";
9307
9333
  id?: number | undefined;
9308
9334
  }[] | undefined;
9309
9335
  required?: boolean | undefined;
@@ -9327,7 +9353,7 @@ declare function init(config: AuthHeroConfig): {
9327
9353
  hint?: string | undefined;
9328
9354
  messages?: {
9329
9355
  text: string;
9330
- type: "success" | "error" | "info" | "warning";
9356
+ type: "error" | "success" | "info" | "warning";
9331
9357
  id?: number | undefined;
9332
9358
  }[] | undefined;
9333
9359
  required?: boolean | undefined;
@@ -9356,7 +9382,7 @@ declare function init(config: AuthHeroConfig): {
9356
9382
  hint?: string | undefined;
9357
9383
  messages?: {
9358
9384
  text: string;
9359
- type: "success" | "error" | "info" | "warning";
9385
+ type: "error" | "success" | "info" | "warning";
9360
9386
  id?: number | undefined;
9361
9387
  }[] | undefined;
9362
9388
  required?: boolean | undefined;
@@ -9371,7 +9397,7 @@ declare function init(config: AuthHeroConfig): {
9371
9397
  hint?: string | undefined;
9372
9398
  messages?: {
9373
9399
  text: string;
9374
- type: "success" | "error" | "info" | "warning";
9400
+ type: "error" | "success" | "info" | "warning";
9375
9401
  id?: number | undefined;
9376
9402
  }[] | undefined;
9377
9403
  required?: boolean | undefined;
@@ -9392,7 +9418,7 @@ declare function init(config: AuthHeroConfig): {
9392
9418
  hint?: string | undefined;
9393
9419
  messages?: {
9394
9420
  text: string;
9395
- type: "success" | "error" | "info" | "warning";
9421
+ type: "error" | "success" | "info" | "warning";
9396
9422
  id?: number | undefined;
9397
9423
  }[] | undefined;
9398
9424
  required?: boolean | undefined;
@@ -9417,7 +9443,7 @@ declare function init(config: AuthHeroConfig): {
9417
9443
  hint?: string | undefined;
9418
9444
  messages?: {
9419
9445
  text: string;
9420
- type: "success" | "error" | "info" | "warning";
9446
+ type: "error" | "success" | "info" | "warning";
9421
9447
  id?: number | undefined;
9422
9448
  }[] | undefined;
9423
9449
  required?: boolean | undefined;
@@ -9436,7 +9462,7 @@ declare function init(config: AuthHeroConfig): {
9436
9462
  hint?: string | undefined;
9437
9463
  messages?: {
9438
9464
  text: string;
9439
- type: "success" | "error" | "info" | "warning";
9465
+ type: "error" | "success" | "info" | "warning";
9440
9466
  id?: number | undefined;
9441
9467
  }[] | undefined;
9442
9468
  required?: boolean | undefined;
@@ -9456,7 +9482,7 @@ declare function init(config: AuthHeroConfig): {
9456
9482
  hint?: string | undefined;
9457
9483
  messages?: {
9458
9484
  text: string;
9459
- type: "success" | "error" | "info" | "warning";
9485
+ type: "error" | "success" | "info" | "warning";
9460
9486
  id?: number | undefined;
9461
9487
  }[] | undefined;
9462
9488
  required?: boolean | undefined;
@@ -9475,7 +9501,7 @@ declare function init(config: AuthHeroConfig): {
9475
9501
  hint?: string | undefined;
9476
9502
  messages?: {
9477
9503
  text: string;
9478
- type: "success" | "error" | "info" | "warning";
9504
+ type: "error" | "success" | "info" | "warning";
9479
9505
  id?: number | undefined;
9480
9506
  }[] | undefined;
9481
9507
  required?: boolean | undefined;
@@ -9497,7 +9523,7 @@ declare function init(config: AuthHeroConfig): {
9497
9523
  hint?: string | undefined;
9498
9524
  messages?: {
9499
9525
  text: string;
9500
- type: "success" | "error" | "info" | "warning";
9526
+ type: "error" | "success" | "info" | "warning";
9501
9527
  id?: number | undefined;
9502
9528
  }[] | undefined;
9503
9529
  required?: boolean | undefined;
@@ -9519,7 +9545,7 @@ declare function init(config: AuthHeroConfig): {
9519
9545
  hint?: string | undefined;
9520
9546
  messages?: {
9521
9547
  text: string;
9522
- type: "success" | "error" | "info" | "warning";
9548
+ type: "error" | "success" | "info" | "warning";
9523
9549
  id?: number | undefined;
9524
9550
  }[] | undefined;
9525
9551
  required?: boolean | undefined;
@@ -9538,7 +9564,7 @@ declare function init(config: AuthHeroConfig): {
9538
9564
  hint?: string | undefined;
9539
9565
  messages?: {
9540
9566
  text: string;
9541
- type: "success" | "error" | "info" | "warning";
9567
+ type: "error" | "success" | "info" | "warning";
9542
9568
  id?: number | undefined;
9543
9569
  }[] | undefined;
9544
9570
  required?: boolean | undefined;
@@ -9563,7 +9589,7 @@ declare function init(config: AuthHeroConfig): {
9563
9589
  hint?: string | undefined;
9564
9590
  messages?: {
9565
9591
  text: string;
9566
- type: "success" | "error" | "info" | "warning";
9592
+ type: "error" | "success" | "info" | "warning";
9567
9593
  id?: number | undefined;
9568
9594
  }[] | undefined;
9569
9595
  required?: boolean | undefined;
@@ -9584,7 +9610,7 @@ declare function init(config: AuthHeroConfig): {
9584
9610
  hint?: string | undefined;
9585
9611
  messages?: {
9586
9612
  text: string;
9587
- type: "success" | "error" | "info" | "warning";
9613
+ type: "error" | "success" | "info" | "warning";
9588
9614
  id?: number | undefined;
9589
9615
  }[] | undefined;
9590
9616
  required?: boolean | undefined;
@@ -9605,7 +9631,7 @@ declare function init(config: AuthHeroConfig): {
9605
9631
  hint?: string | undefined;
9606
9632
  messages?: {
9607
9633
  text: string;
9608
- type: "success" | "error" | "info" | "warning";
9634
+ type: "error" | "success" | "info" | "warning";
9609
9635
  id?: number | undefined;
9610
9636
  }[] | undefined;
9611
9637
  required?: boolean | undefined;
@@ -9835,7 +9861,7 @@ declare function init(config: AuthHeroConfig): {
9835
9861
  };
9836
9862
  };
9837
9863
  output: {
9838
- prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9864
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9839
9865
  language: string;
9840
9866
  }[];
9841
9867
  outputFormat: "json";
@@ -9873,7 +9899,7 @@ declare function init(config: AuthHeroConfig): {
9873
9899
  $get: {
9874
9900
  input: {
9875
9901
  param: {
9876
- prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9902
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9877
9903
  language: string;
9878
9904
  };
9879
9905
  } & {
@@ -9895,7 +9921,7 @@ declare function init(config: AuthHeroConfig): {
9895
9921
  $put: {
9896
9922
  input: {
9897
9923
  param: {
9898
- prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9924
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9899
9925
  language: string;
9900
9926
  };
9901
9927
  } & {
@@ -9919,7 +9945,7 @@ declare function init(config: AuthHeroConfig): {
9919
9945
  $delete: {
9920
9946
  input: {
9921
9947
  param: {
9922
- prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9948
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9923
9949
  language: string;
9924
9950
  };
9925
9951
  } & {
@@ -10781,7 +10807,7 @@ declare function init(config: AuthHeroConfig): {
10781
10807
  };
10782
10808
  } | {
10783
10809
  mode: "inline";
10784
- status: "success" | "error";
10810
+ status: "error" | "success";
10785
10811
  connection_id: string;
10786
10812
  connection_name: string;
10787
10813
  strategy: string;
@@ -11420,7 +11446,7 @@ declare function init(config: AuthHeroConfig): {
11420
11446
  log_type: string;
11421
11447
  category: "user_action" | "admin_action" | "system" | "api";
11422
11448
  actor: {
11423
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
11449
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11424
11450
  id?: string | undefined;
11425
11451
  email?: string | undefined;
11426
11452
  org_id?: string | undefined;
@@ -12068,7 +12094,7 @@ declare function init(config: AuthHeroConfig): {
12068
12094
  };
12069
12095
  };
12070
12096
  output: {
12071
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12097
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12072
12098
  date: string;
12073
12099
  isMobile: boolean;
12074
12100
  log_id: string;
@@ -12107,7 +12133,7 @@ declare function init(config: AuthHeroConfig): {
12107
12133
  limit: number;
12108
12134
  length: number;
12109
12135
  logs: {
12110
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12136
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12111
12137
  date: string;
12112
12138
  isMobile: boolean;
12113
12139
  log_id: string;
@@ -12161,7 +12187,7 @@ declare function init(config: AuthHeroConfig): {
12161
12187
  };
12162
12188
  };
12163
12189
  output: {
12164
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12190
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12165
12191
  date: string;
12166
12192
  isMobile: boolean;
12167
12193
  log_id: string;
@@ -12549,7 +12575,7 @@ declare function init(config: AuthHeroConfig): {
12549
12575
  addons?: {
12550
12576
  [x: string]: any;
12551
12577
  } | undefined;
12552
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12578
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12553
12579
  client_metadata?: {
12554
12580
  [x: string]: string;
12555
12581
  } | undefined;
@@ -12645,7 +12671,7 @@ declare function init(config: AuthHeroConfig): {
12645
12671
  addons?: {
12646
12672
  [x: string]: any;
12647
12673
  } | undefined;
12648
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12674
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12649
12675
  client_metadata?: {
12650
12676
  [x: string]: string;
12651
12677
  } | undefined;
@@ -12756,7 +12782,7 @@ declare function init(config: AuthHeroConfig): {
12756
12782
  addons?: {
12757
12783
  [x: string]: any;
12758
12784
  } | undefined;
12759
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12785
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12760
12786
  client_metadata?: {
12761
12787
  [x: string]: string;
12762
12788
  } | undefined;
@@ -12866,7 +12892,7 @@ declare function init(config: AuthHeroConfig): {
12866
12892
  custom_login_page_preview?: string | undefined;
12867
12893
  form_template?: string | undefined;
12868
12894
  addons?: Record<string, any> | undefined;
12869
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12895
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12870
12896
  client_metadata?: Record<string, string> | undefined;
12871
12897
  hide_sign_up_disabled_error?: boolean | undefined;
12872
12898
  mobile?: Record<string, any> | undefined;
@@ -12946,7 +12972,7 @@ declare function init(config: AuthHeroConfig): {
12946
12972
  addons?: {
12947
12973
  [x: string]: any;
12948
12974
  } | undefined;
12949
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12975
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12950
12976
  client_metadata?: {
12951
12977
  [x: string]: string;
12952
12978
  } | undefined;
@@ -13035,7 +13061,7 @@ declare function init(config: AuthHeroConfig): {
13035
13061
  custom_login_page_preview?: string | undefined;
13036
13062
  form_template?: string | undefined;
13037
13063
  addons?: Record<string, any> | undefined;
13038
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13064
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13039
13065
  client_metadata?: Record<string, string> | undefined;
13040
13066
  hide_sign_up_disabled_error?: boolean | undefined;
13041
13067
  mobile?: Record<string, any> | undefined;
@@ -13115,7 +13141,7 @@ declare function init(config: AuthHeroConfig): {
13115
13141
  addons?: {
13116
13142
  [x: string]: any;
13117
13143
  } | undefined;
13118
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13144
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13119
13145
  client_metadata?: {
13120
13146
  [x: string]: string;
13121
13147
  } | undefined;
@@ -14379,7 +14405,7 @@ declare function init(config: AuthHeroConfig): {
14379
14405
  };
14380
14406
  };
14381
14407
  output: {
14382
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14408
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14383
14409
  date: string;
14384
14410
  isMobile: boolean;
14385
14411
  log_id: string;
@@ -14418,7 +14444,7 @@ declare function init(config: AuthHeroConfig): {
14418
14444
  limit: number;
14419
14445
  length: number;
14420
14446
  logs: {
14421
- type: "fn" | "i" | "sv" | "cs" | "fi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14447
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14422
14448
  date: string;
14423
14449
  isMobile: boolean;
14424
14450
  log_id: string;
@@ -15888,7 +15914,7 @@ declare function init(config: AuthHeroConfig): {
15888
15914
  };
15889
15915
  output: {};
15890
15916
  outputFormat: string;
15891
- status: 400;
15917
+ status: 204;
15892
15918
  } | {
15893
15919
  input: {
15894
15920
  header: {
@@ -15901,7 +15927,7 @@ declare function init(config: AuthHeroConfig): {
15901
15927
  };
15902
15928
  output: {};
15903
15929
  outputFormat: string;
15904
- status: 204;
15930
+ status: 400;
15905
15931
  };
15906
15932
  };
15907
15933
  } & {
@@ -15927,7 +15953,7 @@ declare function init(config: AuthHeroConfig): {
15927
15953
  } & {
15928
15954
  json: {
15929
15955
  body?: string | undefined;
15930
- screen?: "password" | "signup" | "identifier" | "login" | undefined;
15956
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
15931
15957
  branding?: {
15932
15958
  colors?: {
15933
15959
  primary: string;
@@ -16218,7 +16244,7 @@ declare function init(config: AuthHeroConfig): {
16218
16244
  logs: {
16219
16245
  action_name: string;
16220
16246
  lines: {
16221
- level: "error" | "log" | "info" | "warn" | "debug";
16247
+ level: "log" | "error" | "info" | "warn" | "debug";
16222
16248
  message: string;
16223
16249
  }[];
16224
16250
  }[];
@@ -16885,7 +16911,7 @@ declare function init(config: AuthHeroConfig): {
16885
16911
  args: hono_utils_types.JSONValue[];
16886
16912
  }[];
16887
16913
  logs: {
16888
- level: "error" | "log" | "info" | "warn" | "debug";
16914
+ level: "log" | "error" | "info" | "warn" | "debug";
16889
16915
  message: string;
16890
16916
  }[];
16891
16917
  error?: string | undefined;
@@ -17196,7 +17222,7 @@ declare function init(config: AuthHeroConfig): {
17196
17222
  scope?: string | undefined;
17197
17223
  grant_types?: string[] | undefined;
17198
17224
  response_types?: string[] | undefined;
17199
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17225
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17200
17226
  jwks_uri?: string | undefined;
17201
17227
  jwks?: Record<string, unknown> | undefined;
17202
17228
  software_id?: string | undefined;
@@ -17285,7 +17311,7 @@ declare function init(config: AuthHeroConfig): {
17285
17311
  scope?: string | undefined;
17286
17312
  grant_types?: string[] | undefined;
17287
17313
  response_types?: string[] | undefined;
17288
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17314
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17289
17315
  jwks_uri?: string | undefined;
17290
17316
  jwks?: Record<string, unknown> | undefined;
17291
17317
  software_id?: string | undefined;
@@ -17342,7 +17368,7 @@ declare function init(config: AuthHeroConfig): {
17342
17368
  client_id: string;
17343
17369
  redirect_url?: string | undefined;
17344
17370
  login_hint?: string | undefined;
17345
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
17371
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
17346
17372
  };
17347
17373
  };
17348
17374
  output: {};
@@ -17354,7 +17380,7 @@ declare function init(config: AuthHeroConfig): {
17354
17380
  client_id: string;
17355
17381
  redirect_url?: string | undefined;
17356
17382
  login_hint?: string | undefined;
17357
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
17383
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
17358
17384
  };
17359
17385
  };
17360
17386
  output: {
@@ -17431,17 +17457,9 @@ declare function init(config: AuthHeroConfig): {
17431
17457
  request_uri?: string | undefined;
17432
17458
  };
17433
17459
  };
17434
- output: string | {
17435
- access_token: string;
17436
- token_type: string;
17437
- expires_in: number;
17438
- id_token?: string | undefined;
17439
- scope?: string | undefined;
17440
- state?: string | undefined;
17441
- refresh_token?: string | undefined;
17442
- };
17443
- outputFormat: "json";
17444
- status: 200;
17460
+ output: {};
17461
+ outputFormat: string;
17462
+ status: 302;
17445
17463
  } | {
17446
17464
  input: {
17447
17465
  query: {
@@ -17473,9 +17491,17 @@ declare function init(config: AuthHeroConfig): {
17473
17491
  request_uri?: string | undefined;
17474
17492
  };
17475
17493
  };
17476
- output: {};
17477
- outputFormat: string;
17478
- status: 302;
17494
+ output: string | {
17495
+ access_token: string;
17496
+ token_type: string;
17497
+ expires_in: number;
17498
+ id_token?: string | undefined;
17499
+ scope?: string | undefined;
17500
+ state?: string | undefined;
17501
+ refresh_token?: string | undefined;
17502
+ };
17503
+ outputFormat: "json";
17504
+ status: 200;
17479
17505
  } | {
17480
17506
  input: {
17481
17507
  query: {
@@ -17631,21 +17657,22 @@ declare function init(config: AuthHeroConfig): {
17631
17657
  email: string;
17632
17658
  send: "code" | "link";
17633
17659
  authParams: {
17634
- vendor_id?: string | undefined;
17635
- redirect_uri?: string | undefined;
17636
- scope?: string | undefined;
17660
+ username?: string | undefined;
17637
17661
  state?: string | undefined;
17638
- prompt?: string | undefined;
17639
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17640
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17641
17662
  audience?: string | undefined;
17663
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17664
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17665
+ scope?: string | undefined;
17666
+ organization?: string | undefined;
17642
17667
  nonce?: string | undefined;
17643
- max_age?: number | undefined;
17644
- acr_values?: string | undefined;
17668
+ redirect_uri?: string | undefined;
17669
+ act_as?: string | undefined;
17670
+ prompt?: string | undefined;
17645
17671
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17646
17672
  code_challenge?: string | undefined;
17647
- organization?: string | undefined;
17648
17673
  ui_locales?: string | undefined;
17674
+ max_age?: number | undefined;
17675
+ acr_values?: string | undefined;
17649
17676
  claims?: {
17650
17677
  userinfo?: Record<string, {
17651
17678
  essential?: boolean | undefined;
@@ -17658,8 +17685,7 @@ declare function init(config: AuthHeroConfig): {
17658
17685
  values?: unknown[] | undefined;
17659
17686
  } | null> | undefined;
17660
17687
  } | undefined;
17661
- act_as?: string | undefined;
17662
- username?: string | undefined;
17688
+ vendor_id?: string | undefined;
17663
17689
  };
17664
17690
  } | {
17665
17691
  client_id: string;
@@ -17667,21 +17693,22 @@ declare function init(config: AuthHeroConfig): {
17667
17693
  phone_number: string;
17668
17694
  send: "code" | "link";
17669
17695
  authParams: {
17670
- vendor_id?: string | undefined;
17671
- redirect_uri?: string | undefined;
17672
- scope?: string | undefined;
17696
+ username?: string | undefined;
17673
17697
  state?: string | undefined;
17674
- prompt?: string | undefined;
17675
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17676
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17677
17698
  audience?: string | undefined;
17699
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17700
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17701
+ scope?: string | undefined;
17702
+ organization?: string | undefined;
17678
17703
  nonce?: string | undefined;
17679
- max_age?: number | undefined;
17680
- acr_values?: string | undefined;
17704
+ redirect_uri?: string | undefined;
17705
+ act_as?: string | undefined;
17706
+ prompt?: string | undefined;
17681
17707
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17682
17708
  code_challenge?: string | undefined;
17683
- organization?: string | undefined;
17684
17709
  ui_locales?: string | undefined;
17710
+ max_age?: number | undefined;
17711
+ acr_values?: string | undefined;
17685
17712
  claims?: {
17686
17713
  userinfo?: Record<string, {
17687
17714
  essential?: boolean | undefined;
@@ -17694,8 +17721,7 @@ declare function init(config: AuthHeroConfig): {
17694
17721
  values?: unknown[] | undefined;
17695
17722
  } | null> | undefined;
17696
17723
  } | undefined;
17697
- act_as?: string | undefined;
17698
- username?: string | undefined;
17724
+ vendor_id?: string | undefined;
17699
17725
  };
17700
17726
  };
17701
17727
  };
@@ -17811,14 +17837,14 @@ declare function init(config: AuthHeroConfig): {
17811
17837
  input: {
17812
17838
  form: {
17813
17839
  token: string;
17814
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17840
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17815
17841
  client_id?: string | undefined;
17816
17842
  client_secret?: string | undefined;
17817
17843
  };
17818
17844
  } & {
17819
17845
  json: {
17820
17846
  token: string;
17821
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17847
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17822
17848
  client_id?: string | undefined;
17823
17849
  client_secret?: string | undefined;
17824
17850
  };
@@ -17830,14 +17856,14 @@ declare function init(config: AuthHeroConfig): {
17830
17856
  input: {
17831
17857
  form: {
17832
17858
  token: string;
17833
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17859
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17834
17860
  client_id?: string | undefined;
17835
17861
  client_secret?: string | undefined;
17836
17862
  };
17837
17863
  } & {
17838
17864
  json: {
17839
17865
  token: string;
17840
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17866
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17841
17867
  client_id?: string | undefined;
17842
17868
  client_secret?: string | undefined;
17843
17869
  };
@@ -17852,14 +17878,14 @@ declare function init(config: AuthHeroConfig): {
17852
17878
  input: {
17853
17879
  form: {
17854
17880
  token: string;
17855
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17881
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17856
17882
  client_id?: string | undefined;
17857
17883
  client_secret?: string | undefined;
17858
17884
  };
17859
17885
  } & {
17860
17886
  json: {
17861
17887
  token: string;
17862
- token_type_hint?: "access_token" | "refresh_token" | undefined;
17888
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
17863
17889
  client_id?: string | undefined;
17864
17890
  client_secret?: string | undefined;
17865
17891
  };
@@ -18283,7 +18309,7 @@ declare function init(config: AuthHeroConfig): {
18283
18309
  error_description?: string | undefined;
18284
18310
  };
18285
18311
  outputFormat: "json";
18286
- status: 403;
18312
+ status: 401;
18287
18313
  } | {
18288
18314
  input: {
18289
18315
  form: {
@@ -18385,7 +18411,7 @@ declare function init(config: AuthHeroConfig): {
18385
18411
  error_description?: string | undefined;
18386
18412
  };
18387
18413
  outputFormat: "json";
18388
- status: 401;
18414
+ status: 403;
18389
18415
  };
18390
18416
  };
18391
18417
  }, "/oauth/token"> & hono_types.MergeSchemaPath<{
@@ -18584,7 +18610,7 @@ declare function init(config: AuthHeroConfig): {
18584
18610
  };
18585
18611
  output: {};
18586
18612
  outputFormat: string;
18587
- status: 302;
18613
+ status: 200;
18588
18614
  } | {
18589
18615
  input: {
18590
18616
  query: {
@@ -18598,7 +18624,7 @@ declare function init(config: AuthHeroConfig): {
18598
18624
  };
18599
18625
  output: {};
18600
18626
  outputFormat: string;
18601
- status: 200;
18627
+ status: 302;
18602
18628
  } | {
18603
18629
  input: {
18604
18630
  query: {
@@ -19207,7 +19233,7 @@ declare function init(config: AuthHeroConfig): {
19207
19233
  } & {
19208
19234
  form: {
19209
19235
  username: string;
19210
- login_selection?: "password" | "code" | undefined;
19236
+ login_selection?: "code" | "password" | undefined;
19211
19237
  };
19212
19238
  };
19213
19239
  output: {};
@@ -19221,7 +19247,7 @@ declare function init(config: AuthHeroConfig): {
19221
19247
  } & {
19222
19248
  form: {
19223
19249
  username: string;
19224
- login_selection?: "password" | "code" | undefined;
19250
+ login_selection?: "code" | "password" | undefined;
19225
19251
  };
19226
19252
  };
19227
19253
  output: {};
@@ -19586,7 +19612,7 @@ declare function init(config: AuthHeroConfig): {
19586
19612
  $get: {
19587
19613
  input: {
19588
19614
  param: {
19589
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19615
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19590
19616
  };
19591
19617
  } & {
19592
19618
  query: {
@@ -19602,7 +19628,7 @@ declare function init(config: AuthHeroConfig): {
19602
19628
  } | {
19603
19629
  input: {
19604
19630
  param: {
19605
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19631
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19606
19632
  };
19607
19633
  } & {
19608
19634
  query: {
@@ -19618,7 +19644,7 @@ declare function init(config: AuthHeroConfig): {
19618
19644
  } | {
19619
19645
  input: {
19620
19646
  param: {
19621
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19647
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19622
19648
  };
19623
19649
  } & {
19624
19650
  query: {
@@ -19638,7 +19664,7 @@ declare function init(config: AuthHeroConfig): {
19638
19664
  $post: {
19639
19665
  input: {
19640
19666
  param: {
19641
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19667
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19642
19668
  };
19643
19669
  } & {
19644
19670
  query: {
@@ -19656,7 +19682,7 @@ declare function init(config: AuthHeroConfig): {
19656
19682
  } | {
19657
19683
  input: {
19658
19684
  param: {
19659
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19685
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19660
19686
  };
19661
19687
  } & {
19662
19688
  query: {
@@ -19755,4 +19781,4 @@ declare function init(config: AuthHeroConfig): {
19755
19781
  };
19756
19782
 
19757
19783
  export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
19758
- export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
19784
+ export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };