authhero 4.92.0 → 4.94.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.
@@ -5,6 +5,194 @@ import { Context, Handler, MiddlewareHandler, Next } from 'hono';
5
5
  import { FC, JSXNode, PropsWithChildren } from 'hono/jsx';
6
6
  import { CountryCode } from 'libphonenumber-js';
7
7
 
8
+ export declare const actionTriggerSchema: z.ZodObject<{
9
+ id: z.ZodString;
10
+ version: z.ZodOptional<z.ZodString>;
11
+ }, "strip", z.ZodTypeAny, {
12
+ id: string;
13
+ version?: string | undefined;
14
+ }, {
15
+ id: string;
16
+ version?: string | undefined;
17
+ }>;
18
+ export declare const actionDependencySchema: z.ZodObject<{
19
+ name: z.ZodString;
20
+ version: z.ZodString;
21
+ }, "strip", z.ZodTypeAny, {
22
+ version: string;
23
+ name: string;
24
+ }, {
25
+ version: string;
26
+ name: string;
27
+ }>;
28
+ export declare const actionSecretSchema: z.ZodObject<{
29
+ name: z.ZodString;
30
+ value: z.ZodString;
31
+ }, "strip", z.ZodTypeAny, {
32
+ value: string;
33
+ name: string;
34
+ }, {
35
+ value: string;
36
+ name: string;
37
+ }>;
38
+ export declare const actionInsertSchema: z.ZodObject<{
39
+ name: z.ZodString;
40
+ code: z.ZodString;
41
+ supported_triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
42
+ id: z.ZodString;
43
+ version: z.ZodOptional<z.ZodString>;
44
+ }, "strip", z.ZodTypeAny, {
45
+ id: string;
46
+ version?: string | undefined;
47
+ }, {
48
+ id: string;
49
+ version?: string | undefined;
50
+ }>, "many">>;
51
+ runtime: z.ZodOptional<z.ZodString>;
52
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodObject<{
53
+ name: z.ZodString;
54
+ version: z.ZodString;
55
+ }, "strip", z.ZodTypeAny, {
56
+ version: string;
57
+ name: string;
58
+ }, {
59
+ version: string;
60
+ name: string;
61
+ }>, "many">>;
62
+ secrets: z.ZodOptional<z.ZodArray<z.ZodObject<{
63
+ name: z.ZodString;
64
+ value: z.ZodString;
65
+ }, "strip", z.ZodTypeAny, {
66
+ value: string;
67
+ name: string;
68
+ }, {
69
+ value: string;
70
+ name: string;
71
+ }>, "many">>;
72
+ }, "strip", z.ZodTypeAny, {
73
+ code: string;
74
+ name: string;
75
+ supported_triggers?: {
76
+ id: string;
77
+ version?: string | undefined;
78
+ }[] | undefined;
79
+ runtime?: string | undefined;
80
+ dependencies?: {
81
+ version: string;
82
+ name: string;
83
+ }[] | undefined;
84
+ secrets?: {
85
+ value: string;
86
+ name: string;
87
+ }[] | undefined;
88
+ }, {
89
+ code: string;
90
+ name: string;
91
+ supported_triggers?: {
92
+ id: string;
93
+ version?: string | undefined;
94
+ }[] | undefined;
95
+ runtime?: string | undefined;
96
+ dependencies?: {
97
+ version: string;
98
+ name: string;
99
+ }[] | undefined;
100
+ secrets?: {
101
+ value: string;
102
+ name: string;
103
+ }[] | undefined;
104
+ }>;
105
+ export type ActionInsert = z.infer<typeof actionInsertSchema>;
106
+ export declare const actionSchema: z.ZodObject<{
107
+ name: z.ZodString;
108
+ code: z.ZodString;
109
+ supported_triggers: z.ZodOptional<z.ZodArray<z.ZodObject<{
110
+ id: z.ZodString;
111
+ version: z.ZodOptional<z.ZodString>;
112
+ }, "strip", z.ZodTypeAny, {
113
+ id: string;
114
+ version?: string | undefined;
115
+ }, {
116
+ id: string;
117
+ version?: string | undefined;
118
+ }>, "many">>;
119
+ runtime: z.ZodOptional<z.ZodString>;
120
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodObject<{
121
+ name: z.ZodString;
122
+ version: z.ZodString;
123
+ }, "strip", z.ZodTypeAny, {
124
+ version: string;
125
+ name: string;
126
+ }, {
127
+ version: string;
128
+ name: string;
129
+ }>, "many">>;
130
+ } & {
131
+ created_at: z.ZodString;
132
+ updated_at: z.ZodString;
133
+ id: z.ZodString;
134
+ tenant_id: z.ZodString;
135
+ status: z.ZodDefault<z.ZodEnum<[
136
+ "draft",
137
+ "built"
138
+ ]>>;
139
+ deployed_at: z.ZodOptional<z.ZodString>;
140
+ secrets: z.ZodOptional<z.ZodArray<z.ZodObject<{
141
+ name: z.ZodString;
142
+ value: z.ZodOptional<z.ZodString>;
143
+ }, "strip", z.ZodTypeAny, {
144
+ name: string;
145
+ value?: string | undefined;
146
+ }, {
147
+ name: string;
148
+ value?: string | undefined;
149
+ }>, "many">>;
150
+ }, "strip", z.ZodTypeAny, {
151
+ created_at: string;
152
+ updated_at: string;
153
+ code: string;
154
+ status: "draft" | "built";
155
+ id: string;
156
+ name: string;
157
+ tenant_id: string;
158
+ supported_triggers?: {
159
+ id: string;
160
+ version?: string | undefined;
161
+ }[] | undefined;
162
+ runtime?: string | undefined;
163
+ dependencies?: {
164
+ version: string;
165
+ name: string;
166
+ }[] | undefined;
167
+ secrets?: {
168
+ name: string;
169
+ value?: string | undefined;
170
+ }[] | undefined;
171
+ deployed_at?: string | undefined;
172
+ }, {
173
+ created_at: string;
174
+ updated_at: string;
175
+ code: string;
176
+ id: string;
177
+ name: string;
178
+ tenant_id: string;
179
+ status?: "draft" | "built" | undefined;
180
+ supported_triggers?: {
181
+ id: string;
182
+ version?: string | undefined;
183
+ }[] | undefined;
184
+ runtime?: string | undefined;
185
+ dependencies?: {
186
+ version: string;
187
+ name: string;
188
+ }[] | undefined;
189
+ secrets?: {
190
+ name: string;
191
+ value?: string | undefined;
192
+ }[] | undefined;
193
+ deployed_at?: string | undefined;
194
+ }>;
195
+ export type Action = z.infer<typeof actionSchema>;
8
196
  export declare const auditCategorySchema: z.ZodEnum<[
9
197
  "user_action",
10
198
  "admin_action",
@@ -143,12 +331,12 @@ export declare const auth0ClientSchema: z.ZodObject<{
143
331
  version: z.ZodString;
144
332
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
145
333
  }, "strip", z.ZodTypeAny, {
146
- name: string;
147
334
  version: string;
335
+ name: string;
148
336
  env?: Record<string, string> | undefined;
149
337
  }, {
150
- name: string;
151
338
  version: string;
339
+ name: string;
152
340
  env?: Record<string, string> | undefined;
153
341
  }>;
154
342
  export declare const auditEventInsertSchema: z.ZodObject<{
@@ -292,12 +480,12 @@ export declare const auditEventInsertSchema: z.ZodObject<{
292
480
  version: z.ZodString;
293
481
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
294
482
  }, "strip", z.ZodTypeAny, {
295
- name: string;
296
483
  version: string;
484
+ name: string;
297
485
  env?: Record<string, string> | undefined;
298
486
  }, {
299
- name: string;
300
487
  version: string;
488
+ name: string;
301
489
  env?: Record<string, string> | undefined;
302
490
  }>>;
303
491
  hostname: z.ZodString;
@@ -355,8 +543,8 @@ export declare const auditEventInsertSchema: z.ZodObject<{
355
543
  continent_code: string;
356
544
  } | undefined;
357
545
  auth0_client?: {
358
- name: string;
359
546
  version: string;
547
+ name: string;
360
548
  env?: Record<string, string> | undefined;
361
549
  } | undefined;
362
550
  is_mobile?: boolean | undefined;
@@ -412,8 +600,8 @@ export declare const auditEventInsertSchema: z.ZodObject<{
412
600
  continent_code: string;
413
601
  } | undefined;
414
602
  auth0_client?: {
415
- name: string;
416
603
  version: string;
604
+ name: string;
417
605
  env?: Record<string, string> | undefined;
418
606
  } | undefined;
419
607
  is_mobile?: boolean | undefined;
@@ -560,12 +748,12 @@ export declare const auditEventSchema: z.ZodObject<{
560
748
  version: z.ZodString;
561
749
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
562
750
  }, "strip", z.ZodTypeAny, {
563
- name: string;
564
751
  version: string;
752
+ name: string;
565
753
  env?: Record<string, string> | undefined;
566
754
  }, {
567
- name: string;
568
755
  version: string;
756
+ name: string;
569
757
  env?: Record<string, string> | undefined;
570
758
  }>>;
571
759
  hostname: z.ZodString;
@@ -626,8 +814,8 @@ export declare const auditEventSchema: z.ZodObject<{
626
814
  continent_code: string;
627
815
  } | undefined;
628
816
  auth0_client?: {
629
- name: string;
630
817
  version: string;
818
+ name: string;
631
819
  env?: Record<string, string> | undefined;
632
820
  } | undefined;
633
821
  is_mobile?: boolean | undefined;
@@ -684,8 +872,8 @@ export declare const auditEventSchema: z.ZodObject<{
684
872
  continent_code: string;
685
873
  } | undefined;
686
874
  auth0_client?: {
687
- name: string;
688
875
  version: string;
876
+ name: string;
689
877
  env?: Record<string, string> | undefined;
690
878
  } | undefined;
691
879
  is_mobile?: boolean | undefined;
@@ -1591,10 +1779,10 @@ export declare const flowSchema: z.ZodObject<{
1591
1779
  created_at: z.ZodString;
1592
1780
  updated_at: z.ZodString;
1593
1781
  }, "strip", z.ZodTypeAny, {
1594
- name: string;
1595
- id: string;
1596
1782
  created_at: string;
1597
1783
  updated_at: string;
1784
+ id: string;
1785
+ name: string;
1598
1786
  actions: ({
1599
1787
  params: {
1600
1788
  user_id: string;
@@ -1638,10 +1826,10 @@ export declare const flowSchema: z.ZodObject<{
1638
1826
  mask_output?: boolean | undefined;
1639
1827
  })[];
1640
1828
  }, {
1641
- name: string;
1642
- id: string;
1643
1829
  created_at: string;
1644
1830
  updated_at: string;
1831
+ id: string;
1832
+ name: string;
1645
1833
  actions?: ({
1646
1834
  params: {
1647
1835
  user_id: string;
@@ -1912,6 +2100,7 @@ export declare const userInsertSchema: z.ZodObject<{
1912
2100
  provider: z.ZodOptional<z.ZodString>;
1913
2101
  connection: z.ZodString;
1914
2102
  is_social: z.ZodOptional<z.ZodBoolean>;
2103
+ registration_completed_at: z.ZodOptional<z.ZodString>;
1915
2104
  password: z.ZodOptional<z.ZodObject<{
1916
2105
  hash: z.ZodString;
1917
2106
  algorithm: z.ZodString;
@@ -1964,6 +2153,7 @@ export declare const userInsertSchema: z.ZodObject<{
1964
2153
  last_ip?: string | undefined;
1965
2154
  last_login?: string | undefined;
1966
2155
  is_social?: boolean | undefined;
2156
+ registration_completed_at?: string | undefined;
1967
2157
  }, {
1968
2158
  connection: string;
1969
2159
  password?: {
@@ -2006,6 +2196,7 @@ export declare const userInsertSchema: z.ZodObject<{
2006
2196
  last_ip?: string | undefined;
2007
2197
  last_login?: string | undefined;
2008
2198
  is_social?: boolean | undefined;
2199
+ registration_completed_at?: string | undefined;
2009
2200
  }>;
2010
2201
  export type UserInsert = z.infer<typeof userInsertSchema>;
2011
2202
  export declare const userSchema: z.ZodObject<{
@@ -2151,10 +2342,11 @@ export declare const userSchema: z.ZodObject<{
2151
2342
  verify_email: z.ZodOptional<z.ZodBoolean>;
2152
2343
  last_ip: z.ZodOptional<z.ZodString>;
2153
2344
  last_login: z.ZodOptional<z.ZodString>;
2345
+ registration_completed_at: z.ZodOptional<z.ZodString>;
2154
2346
  }, "strip", z.ZodTypeAny, {
2155
- connection: string;
2156
2347
  created_at: string;
2157
2348
  updated_at: string;
2349
+ connection: string;
2158
2350
  user_id: string;
2159
2351
  email_verified: boolean;
2160
2352
  provider: string;
@@ -2192,6 +2384,7 @@ export declare const userSchema: z.ZodObject<{
2192
2384
  verify_email?: boolean | undefined;
2193
2385
  last_ip?: string | undefined;
2194
2386
  last_login?: string | undefined;
2387
+ registration_completed_at?: string | undefined;
2195
2388
  identities?: {
2196
2389
  connection: string;
2197
2390
  user_id: string;
@@ -2217,9 +2410,9 @@ export declare const userSchema: z.ZodObject<{
2217
2410
  }, z.ZodAny, "strip"> | undefined;
2218
2411
  }[] | undefined;
2219
2412
  }, {
2220
- connection: string;
2221
2413
  created_at: string;
2222
2414
  updated_at: string;
2415
+ connection: string;
2223
2416
  user_id: string;
2224
2417
  provider: string;
2225
2418
  is_social: boolean;
@@ -2256,6 +2449,7 @@ export declare const userSchema: z.ZodObject<{
2256
2449
  verify_email?: boolean | undefined;
2257
2450
  last_ip?: string | undefined;
2258
2451
  last_login?: string | undefined;
2452
+ registration_completed_at?: string | undefined;
2259
2453
  login_count?: number | undefined;
2260
2454
  identities?: {
2261
2455
  connection: string;
@@ -2426,10 +2620,11 @@ export declare const auth0UserResponseSchema: z.ZodObject<{
2426
2620
  verify_email: z.ZodOptional<z.ZodBoolean>;
2427
2621
  last_ip: z.ZodOptional<z.ZodString>;
2428
2622
  last_login: z.ZodOptional<z.ZodString>;
2623
+ registration_completed_at: z.ZodOptional<z.ZodString>;
2429
2624
  }, "strip", z.ZodTypeAny, {
2430
- connection: string;
2431
2625
  created_at: string;
2432
2626
  updated_at: string;
2627
+ connection: string;
2433
2628
  user_id: string;
2434
2629
  email_verified: boolean;
2435
2630
  provider: string;
@@ -2467,6 +2662,7 @@ export declare const auth0UserResponseSchema: z.ZodObject<{
2467
2662
  verify_email?: boolean | undefined;
2468
2663
  last_ip?: string | undefined;
2469
2664
  last_login?: string | undefined;
2665
+ registration_completed_at?: string | undefined;
2470
2666
  identities?: {
2471
2667
  connection: string;
2472
2668
  user_id: string;
@@ -2492,9 +2688,9 @@ export declare const auth0UserResponseSchema: z.ZodObject<{
2492
2688
  }, z.ZodAny, "strip"> | undefined;
2493
2689
  }[] | undefined;
2494
2690
  }, {
2495
- connection: string;
2496
2691
  created_at: string;
2497
2692
  updated_at: string;
2693
+ connection: string;
2498
2694
  user_id: string;
2499
2695
  provider: string;
2500
2696
  is_social: boolean;
@@ -2531,6 +2727,7 @@ export declare const auth0UserResponseSchema: z.ZodObject<{
2531
2727
  verify_email?: boolean | undefined;
2532
2728
  last_ip?: string | undefined;
2533
2729
  last_login?: string | undefined;
2730
+ registration_completed_at?: string | undefined;
2534
2731
  login_count?: number | undefined;
2535
2732
  identities?: {
2536
2733
  connection: string;
@@ -3005,10 +3202,10 @@ export declare const clientSchema: z.ZodObject<{
3005
3202
  created_at: z.ZodString;
3006
3203
  updated_at: z.ZodString;
3007
3204
  }, "strip", z.ZodTypeAny, {
3008
- name: string;
3009
- client_id: string;
3010
3205
  created_at: string;
3011
3206
  updated_at: string;
3207
+ name: string;
3208
+ client_id: string;
3012
3209
  global: boolean;
3013
3210
  is_first_party: boolean;
3014
3211
  oidc_conformant: boolean;
@@ -3056,10 +3253,10 @@ export declare const clientSchema: z.ZodObject<{
3056
3253
  par_request_expiry?: number | undefined;
3057
3254
  token_quota?: Record<string, any> | undefined;
3058
3255
  }, {
3059
- name: string;
3060
- client_id: string;
3061
3256
  created_at: string;
3062
3257
  updated_at: string;
3258
+ name: string;
3259
+ client_id: string;
3063
3260
  description?: string | undefined;
3064
3261
  refresh_token?: Record<string, any> | undefined;
3065
3262
  global?: boolean | undefined;
@@ -9038,7 +9235,7 @@ export declare const auth0FlowInsertSchema: z.ZodObject<Omit<{
9038
9235
  sdkSrc: z.ZodOptional<z.ZodString>;
9039
9236
  sdk_src: z.ZodOptional<z.ZodString>;
9040
9237
  }, z.ZodTypeAny, "passthrough">>;
9041
- }, "id" | "created_at" | "updated_at">, "passthrough", z.ZodTypeAny, z.objectOutputType<Omit<{
9238
+ }, "created_at" | "updated_at" | "id">, "passthrough", z.ZodTypeAny, z.objectOutputType<Omit<{
9042
9239
  id: z.ZodString;
9043
9240
  name: z.ZodString;
9044
9241
  languages: z.ZodObject<{
@@ -9959,7 +10156,7 @@ export declare const auth0FlowInsertSchema: z.ZodObject<Omit<{
9959
10156
  sdkSrc: z.ZodOptional<z.ZodString>;
9960
10157
  sdk_src: z.ZodOptional<z.ZodString>;
9961
10158
  }, z.ZodTypeAny, "passthrough">>;
9962
- }, "id" | "created_at" | "updated_at">, z.ZodTypeAny, "passthrough">, z.objectInputType<Omit<{
10159
+ }, "created_at" | "updated_at" | "id">, z.ZodTypeAny, "passthrough">, z.objectInputType<Omit<{
9963
10160
  id: z.ZodString;
9964
10161
  name: z.ZodString;
9965
10162
  languages: z.ZodObject<{
@@ -10880,7 +11077,7 @@ export declare const auth0FlowInsertSchema: z.ZodObject<Omit<{
10880
11077
  sdkSrc: z.ZodOptional<z.ZodString>;
10881
11078
  sdk_src: z.ZodOptional<z.ZodString>;
10882
11079
  }, z.ZodTypeAny, "passthrough">>;
10883
- }, "id" | "created_at" | "updated_at">, z.ZodTypeAny, "passthrough">>;
11080
+ }, "created_at" | "updated_at" | "id">, z.ZodTypeAny, "passthrough">>;
10884
11081
  export interface Auth0FlowInsert {
10885
11082
  name: string;
10886
11083
  languages: {
@@ -13325,6 +13522,8 @@ export declare const connectionSchema: z.ZodObject<{
13325
13522
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
13326
13523
  is_system: z.ZodOptional<z.ZodBoolean>;
13327
13524
  }, "strip", z.ZodTypeAny, {
13525
+ created_at: string;
13526
+ updated_at: string;
13328
13527
  options: {
13329
13528
  validation?: {
13330
13529
  username?: {
@@ -13431,8 +13630,6 @@ export declare const connectionSchema: z.ZodObject<{
13431
13630
  };
13432
13631
  name: string;
13433
13632
  strategy: string;
13434
- created_at: string;
13435
- updated_at: string;
13436
13633
  id?: string | undefined;
13437
13634
  is_system?: boolean | undefined;
13438
13635
  response_type?: AuthorizationResponseType | undefined;
@@ -13443,10 +13640,10 @@ export declare const connectionSchema: z.ZodObject<{
13443
13640
  show_as_button?: boolean | undefined;
13444
13641
  metadata?: Record<string, any> | undefined;
13445
13642
  }, {
13446
- name: string;
13447
- strategy: string;
13448
13643
  created_at: string;
13449
13644
  updated_at: string;
13645
+ name: string;
13646
+ strategy: string;
13450
13647
  options?: {
13451
13648
  validation?: {
13452
13649
  username?: {
@@ -37725,10 +37922,10 @@ export declare const formSchema: z.ZodObject<{
37725
37922
  created_at: z.ZodString;
37726
37923
  updated_at: z.ZodString;
37727
37924
  }, "strip", z.ZodTypeAny, {
37728
- name: string;
37729
- id: string;
37730
37925
  created_at: string;
37731
37926
  updated_at: string;
37927
+ id: string;
37928
+ name: string;
37732
37929
  style?: {
37733
37930
  css?: string | undefined;
37734
37931
  } | undefined;
@@ -38288,10 +38485,10 @@ export declare const formSchema: z.ZodObject<{
38288
38485
  } | undefined;
38289
38486
  translations?: Record<string, any> | undefined;
38290
38487
  }, {
38291
- name: string;
38292
- id: string;
38293
38488
  created_at: string;
38294
38489
  updated_at: string;
38490
+ id: string;
38491
+ name: string;
38295
38492
  style?: {
38296
38493
  css?: string | undefined;
38297
38494
  } | undefined;
@@ -42243,18 +42440,18 @@ export declare const hookCodeSchema: z.ZodObject<{
42243
42440
  id: z.ZodString;
42244
42441
  tenant_id: z.ZodString;
42245
42442
  }, "strip", z.ZodTypeAny, {
42443
+ created_at: string;
42444
+ updated_at: string;
42246
42445
  code: string;
42247
42446
  id: string;
42248
42447
  tenant_id: string;
42249
- created_at: string;
42250
- updated_at: string;
42251
42448
  secrets?: Record<string, string> | undefined;
42252
42449
  }, {
42450
+ created_at: string;
42451
+ updated_at: string;
42253
42452
  code: string;
42254
42453
  id: string;
42255
42454
  tenant_id: string;
42256
- created_at: string;
42257
- updated_at: string;
42258
42455
  secrets?: Record<string, string> | undefined;
42259
42456
  }>;
42260
42457
  export type HookCode = z.infer<typeof hookCodeSchema>;
@@ -42479,9 +42676,9 @@ export declare const inviteSchema: z.ZodObject<{
42479
42676
  roles: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
42480
42677
  send_invitation_email: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
42481
42678
  }, "strip", z.ZodTypeAny, {
42679
+ created_at: string;
42482
42680
  id: string;
42483
42681
  client_id: string;
42484
- created_at: string;
42485
42682
  expires_at: string;
42486
42683
  organization_id: string;
42487
42684
  inviter: {
@@ -42499,9 +42696,9 @@ export declare const inviteSchema: z.ZodObject<{
42499
42696
  send_invitation_email?: boolean | undefined;
42500
42697
  ticket_id?: string | undefined;
42501
42698
  }, {
42699
+ created_at: string;
42502
42700
  id: string;
42503
42701
  client_id: string;
42504
- created_at: string;
42505
42702
  expires_at: string;
42506
42703
  organization_id: string;
42507
42704
  inviter: {
@@ -42951,9 +43148,9 @@ export declare const loginSessionSchema: z.ZodObject<{
42951
43148
  user_id: z.ZodOptional<z.ZodString>;
42952
43149
  auth_connection: z.ZodOptional<z.ZodString>;
42953
43150
  }, "strip", z.ZodTypeAny, {
42954
- id: string;
42955
43151
  created_at: string;
42956
43152
  updated_at: string;
43153
+ id: string;
42957
43154
  state: LoginSessionState;
42958
43155
  expires_at: string;
42959
43156
  csrf_token: string;
@@ -42988,9 +43185,9 @@ export declare const loginSessionSchema: z.ZodObject<{
42988
43185
  failure_reason?: string | undefined;
42989
43186
  auth_connection?: string | undefined;
42990
43187
  }, {
42991
- id: string;
42992
43188
  created_at: string;
42993
43189
  updated_at: string;
43190
+ id: string;
42994
43191
  expires_at: string;
42995
43192
  csrf_token: string;
42996
43193
  authParams: {
@@ -43136,6 +43333,7 @@ export declare const LogTypes: {
43136
43333
  readonly RICH_CONSENTS_ACCESS_ERROR: "rich_consents_access_error";
43137
43334
  readonly SUCCESS_LOGIN: "s";
43138
43335
  readonly SUCCESS_API_OPERATION: "sapi";
43336
+ readonly FAILED_API_OPERATION: "fapi";
43139
43337
  readonly SUCCESS_CHANGE_EMAIL: "sce";
43140
43338
  readonly SUCCESS_CROSS_ORIGIN_AUTHENTICATION: "scoa";
43141
43339
  readonly SUCCESS_CHANGE_PASSWORD: "scp";
@@ -43192,14 +43390,14 @@ export declare const Auth0Client: z.ZodObject<{
43192
43390
  node?: string | undefined;
43193
43391
  }>>;
43194
43392
  }, "strip", z.ZodTypeAny, {
43195
- name: string;
43196
43393
  version: string;
43394
+ name: string;
43197
43395
  env?: {
43198
43396
  node?: string | undefined;
43199
43397
  } | undefined;
43200
43398
  }, {
43201
- name: string;
43202
43399
  version: string;
43400
+ name: string;
43203
43401
  env?: {
43204
43402
  node?: string | undefined;
43205
43403
  } | undefined;
@@ -43227,7 +43425,7 @@ export declare const LocationInfo: z.ZodObject<{
43227
43425
  continent_code: string;
43228
43426
  }>;
43229
43427
  export declare const logInsertSchema: z.ZodObject<{
43230
- type: z.ZodEffects<z.ZodString, "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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", string>;
43428
+ type: z.ZodEffects<z.ZodString, "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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", string>;
43231
43429
  date: z.ZodString;
43232
43430
  description: z.ZodOptional<z.ZodString>;
43233
43431
  ip: z.ZodOptional<z.ZodString>;
@@ -43256,14 +43454,14 @@ export declare const logInsertSchema: z.ZodObject<{
43256
43454
  node?: string | undefined;
43257
43455
  }>>;
43258
43456
  }, "strip", z.ZodTypeAny, {
43259
- name: string;
43260
43457
  version: string;
43458
+ name: string;
43261
43459
  env?: {
43262
43460
  node?: string | undefined;
43263
43461
  } | undefined;
43264
43462
  }, {
43265
- name: string;
43266
43463
  version: string;
43464
+ name: string;
43267
43465
  env?: {
43268
43466
  node?: string | undefined;
43269
43467
  } | undefined;
@@ -43292,7 +43490,7 @@ export declare const logInsertSchema: z.ZodObject<{
43292
43490
  continent_code: string;
43293
43491
  }>>;
43294
43492
  }, "strip", z.ZodTypeAny, {
43295
- type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
43493
+ type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
43296
43494
  date: string;
43297
43495
  isMobile: boolean;
43298
43496
  description?: string | undefined;
@@ -43303,8 +43501,8 @@ export declare const logInsertSchema: z.ZodObject<{
43303
43501
  strategy?: string | undefined;
43304
43502
  strategy_type?: string | undefined;
43305
43503
  auth0_client?: {
43306
- name: string;
43307
43504
  version: string;
43505
+ name: string;
43308
43506
  env?: {
43309
43507
  node?: string | undefined;
43310
43508
  } | undefined;
@@ -43338,8 +43536,8 @@ export declare const logInsertSchema: z.ZodObject<{
43338
43536
  strategy?: string | undefined;
43339
43537
  strategy_type?: string | undefined;
43340
43538
  auth0_client?: {
43341
- name: string;
43342
43539
  version: string;
43540
+ name: string;
43343
43541
  env?: {
43344
43542
  node?: string | undefined;
43345
43543
  } | undefined;
@@ -43365,7 +43563,7 @@ export declare const logInsertSchema: z.ZodObject<{
43365
43563
  export type LogInsert = z.infer<typeof logInsertSchema>;
43366
43564
  export declare const logSchema: z.ZodObject<{
43367
43565
  log_id: z.ZodString;
43368
- type: z.ZodEffects<z.ZodString, "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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", string>;
43566
+ type: z.ZodEffects<z.ZodString, "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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", string>;
43369
43567
  date: z.ZodString;
43370
43568
  description: z.ZodOptional<z.ZodString>;
43371
43569
  ip: z.ZodOptional<z.ZodString>;
@@ -43394,14 +43592,14 @@ export declare const logSchema: z.ZodObject<{
43394
43592
  node?: string | undefined;
43395
43593
  }>>;
43396
43594
  }, "strip", z.ZodTypeAny, {
43397
- name: string;
43398
43595
  version: string;
43596
+ name: string;
43399
43597
  env?: {
43400
43598
  node?: string | undefined;
43401
43599
  } | undefined;
43402
43600
  }, {
43403
- name: string;
43404
43601
  version: string;
43602
+ name: string;
43405
43603
  env?: {
43406
43604
  node?: string | undefined;
43407
43605
  } | undefined;
@@ -43429,7 +43627,7 @@ export declare const logSchema: z.ZodObject<{
43429
43627
  continent_code: string;
43430
43628
  }>>;
43431
43629
  }, "strip", z.ZodTypeAny, {
43432
- type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
43630
+ type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
43433
43631
  date: string;
43434
43632
  isMobile: boolean;
43435
43633
  log_id: string;
@@ -43441,8 +43639,8 @@ export declare const logSchema: z.ZodObject<{
43441
43639
  strategy?: string | undefined;
43442
43640
  strategy_type?: string | undefined;
43443
43641
  auth0_client?: {
43444
- name: string;
43445
43642
  version: string;
43643
+ name: string;
43446
43644
  env?: {
43447
43645
  node?: string | undefined;
43448
43646
  } | undefined;
@@ -43476,8 +43674,8 @@ export declare const logSchema: z.ZodObject<{
43476
43674
  strategy?: string | undefined;
43477
43675
  strategy_type?: string | undefined;
43478
43676
  auth0_client?: {
43479
- name: string;
43480
43677
  version: string;
43678
+ name: string;
43481
43679
  env?: {
43482
43680
  node?: string | undefined;
43483
43681
  } | undefined;
@@ -43536,18 +43734,18 @@ export declare const passwordSchema: z.ZodObject<{
43536
43734
  created_at: z.ZodString;
43537
43735
  updated_at: z.ZodString;
43538
43736
  }, "strip", z.ZodTypeAny, {
43539
- password: string;
43540
- id: string;
43541
43737
  created_at: string;
43542
43738
  updated_at: string;
43739
+ password: string;
43740
+ id: string;
43543
43741
  user_id: string;
43544
43742
  algorithm: "bcrypt" | "argon2id";
43545
43743
  is_current: boolean;
43546
43744
  }, {
43547
- password: string;
43548
- id: string;
43549
43745
  created_at: string;
43550
43746
  updated_at: string;
43747
+ password: string;
43748
+ id: string;
43551
43749
  user_id: string;
43552
43750
  algorithm?: "bcrypt" | "argon2id" | undefined;
43553
43751
  is_current?: boolean | undefined;
@@ -43656,9 +43854,9 @@ export declare const sessionSchema: z.ZodObject<{
43656
43854
  authenticated_at: z.ZodString;
43657
43855
  last_interaction_at: z.ZodString;
43658
43856
  }, "strip", z.ZodTypeAny, {
43659
- id: string;
43660
43857
  created_at: string;
43661
43858
  updated_at: string;
43859
+ id: string;
43662
43860
  user_id: string;
43663
43861
  login_session_id: string;
43664
43862
  device: {
@@ -43677,9 +43875,9 @@ export declare const sessionSchema: z.ZodObject<{
43677
43875
  revoked_at?: string | undefined;
43678
43876
  idle_expires_at?: string | undefined;
43679
43877
  }, {
43680
- id: string;
43681
43878
  created_at: string;
43682
43879
  updated_at: string;
43880
+ id: string;
43683
43881
  user_id: string;
43684
43882
  login_session_id: string;
43685
43883
  device: {
@@ -44709,9 +44907,9 @@ export declare const tenantSchema: z.ZodObject<{
44709
44907
  created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
44710
44908
  updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
44711
44909
  }, "strip", z.ZodTypeAny, {
44712
- id: string;
44713
44910
  created_at: string;
44714
44911
  updated_at: string;
44912
+ id: string;
44715
44913
  audience: string;
44716
44914
  friendly_name: string;
44717
44915
  sender_email: string;
@@ -44835,9 +45033,9 @@ export declare const tenantSchema: z.ZodObject<{
44835
45033
  } | undefined;
44836
45034
  } | undefined;
44837
45035
  }, {
44838
- id: string;
44839
45036
  created_at: string | null;
44840
45037
  updated_at: string | null;
45038
+ id: string;
44841
45039
  audience: string;
44842
45040
  friendly_name: string;
44843
45041
  sender_email: string;
@@ -46421,9 +46619,9 @@ export declare const refreshTokenSchema: z.ZodObject<{
46421
46619
  rotating: z.ZodBoolean;
46422
46620
  created_at: z.ZodString;
46423
46621
  }, "strip", z.ZodTypeAny, {
46622
+ created_at: string;
46424
46623
  id: string;
46425
46624
  client_id: string;
46426
- created_at: string;
46427
46625
  user_id: string;
46428
46626
  login_id: string;
46429
46627
  device: {
@@ -46443,9 +46641,9 @@ export declare const refreshTokenSchema: z.ZodObject<{
46443
46641
  idle_expires_at?: string | undefined;
46444
46642
  last_exchanged_at?: string | undefined;
46445
46643
  }, {
46644
+ created_at: string;
46446
46645
  id: string;
46447
46646
  client_id: string;
46448
- created_at: string;
46449
46647
  user_id: string;
46450
46648
  login_id: string;
46451
46649
  device: {
@@ -46723,6 +46921,8 @@ export declare const resourceServerSchema: z.ZodObject<{
46723
46921
  }, "strip", z.ZodTypeAny, {
46724
46922
  name: string;
46725
46923
  identifier: string;
46924
+ created_at?: string | undefined;
46925
+ updated_at?: string | undefined;
46726
46926
  options?: {
46727
46927
  mtls?: {
46728
46928
  bound_access_tokens?: boolean | undefined;
@@ -46739,8 +46939,6 @@ export declare const resourceServerSchema: z.ZodObject<{
46739
46939
  value: string;
46740
46940
  description?: string | undefined;
46741
46941
  }[] | undefined;
46742
- created_at?: string | undefined;
46743
- updated_at?: string | undefined;
46744
46942
  is_system?: boolean | undefined;
46745
46943
  metadata?: Record<string, any> | undefined;
46746
46944
  signing_alg?: string | undefined;
@@ -46753,6 +46951,8 @@ export declare const resourceServerSchema: z.ZodObject<{
46753
46951
  }, {
46754
46952
  name: string;
46755
46953
  identifier: string;
46954
+ created_at?: string | undefined;
46955
+ updated_at?: string | undefined;
46756
46956
  options?: {
46757
46957
  mtls?: {
46758
46958
  bound_access_tokens?: boolean | undefined;
@@ -46769,8 +46969,6 @@ export declare const resourceServerSchema: z.ZodObject<{
46769
46969
  value: string;
46770
46970
  description?: string | undefined;
46771
46971
  }[] | undefined;
46772
- created_at?: string | undefined;
46773
- updated_at?: string | undefined;
46774
46972
  is_system?: boolean | undefined;
46775
46973
  metadata?: Record<string, any> | undefined;
46776
46974
  signing_alg?: string | undefined;
@@ -46848,6 +47046,8 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
46848
47046
  }, "strip", z.ZodTypeAny, {
46849
47047
  name: string;
46850
47048
  identifier: string;
47049
+ created_at?: string | undefined;
47050
+ updated_at?: string | undefined;
46851
47051
  options?: {
46852
47052
  mtls?: {
46853
47053
  bound_access_tokens?: boolean | undefined;
@@ -46864,8 +47064,6 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
46864
47064
  value: string;
46865
47065
  description?: string | undefined;
46866
47066
  }[] | undefined;
46867
- created_at?: string | undefined;
46868
- updated_at?: string | undefined;
46869
47067
  is_system?: boolean | undefined;
46870
47068
  metadata?: Record<string, any> | undefined;
46871
47069
  signing_alg?: string | undefined;
@@ -46878,6 +47076,8 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
46878
47076
  }, {
46879
47077
  name: string;
46880
47078
  identifier: string;
47079
+ created_at?: string | undefined;
47080
+ updated_at?: string | undefined;
46881
47081
  options?: {
46882
47082
  mtls?: {
46883
47083
  bound_access_tokens?: boolean | undefined;
@@ -46894,8 +47094,6 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
46894
47094
  value: string;
46895
47095
  description?: string | undefined;
46896
47096
  }[] | undefined;
46897
- created_at?: string | undefined;
46898
- updated_at?: string | undefined;
46899
47097
  is_system?: boolean | undefined;
46900
47098
  metadata?: Record<string, any> | undefined;
46901
47099
  signing_alg?: string | undefined;
@@ -47031,16 +47229,16 @@ export declare const userPermissionWithDetailsSchema: z.ZodObject<{
47031
47229
  resource_server_identifier: string;
47032
47230
  permission_name: string;
47033
47231
  resource_server_name: string;
47034
- description?: string | null | undefined;
47035
47232
  created_at?: string | undefined;
47233
+ description?: string | null | undefined;
47036
47234
  organization_id?: string | undefined;
47037
47235
  }, {
47038
47236
  user_id: string;
47039
47237
  resource_server_identifier: string;
47040
47238
  permission_name: string;
47041
47239
  resource_server_name: string;
47042
- description?: string | null | undefined;
47043
47240
  created_at?: string | undefined;
47241
+ description?: string | null | undefined;
47044
47242
  organization_id?: string | undefined;
47045
47243
  }>;
47046
47244
  export type UserPermissionWithDetails = z.infer<typeof userPermissionWithDetailsSchema>;
@@ -47057,16 +47255,16 @@ export declare const userPermissionWithDetailsListSchema: z.ZodArray<z.ZodObject
47057
47255
  resource_server_identifier: string;
47058
47256
  permission_name: string;
47059
47257
  resource_server_name: string;
47060
- description?: string | null | undefined;
47061
47258
  created_at?: string | undefined;
47259
+ description?: string | null | undefined;
47062
47260
  organization_id?: string | undefined;
47063
47261
  }, {
47064
47262
  user_id: string;
47065
47263
  resource_server_identifier: string;
47066
47264
  permission_name: string;
47067
47265
  resource_server_name: string;
47068
- description?: string | null | undefined;
47069
47266
  created_at?: string | undefined;
47267
+ description?: string | null | undefined;
47070
47268
  organization_id?: string | undefined;
47071
47269
  }>, "many">;
47072
47270
  export type UserPermissionWithDetailsList = z.infer<typeof userPermissionWithDetailsListSchema>;
@@ -47153,19 +47351,19 @@ export declare const roleSchema: z.ZodObject<{
47153
47351
  created_at: z.ZodOptional<z.ZodString>;
47154
47352
  updated_at: z.ZodOptional<z.ZodString>;
47155
47353
  }, "strip", z.ZodTypeAny, {
47156
- name: string;
47157
47354
  id: string;
47158
- description?: string | undefined;
47355
+ name: string;
47159
47356
  created_at?: string | undefined;
47160
47357
  updated_at?: string | undefined;
47358
+ description?: string | undefined;
47161
47359
  is_system?: boolean | undefined;
47162
47360
  metadata?: Record<string, any> | undefined;
47163
47361
  }, {
47164
- name: string;
47165
47362
  id: string;
47166
- description?: string | undefined;
47363
+ name: string;
47167
47364
  created_at?: string | undefined;
47168
47365
  updated_at?: string | undefined;
47366
+ description?: string | undefined;
47169
47367
  is_system?: boolean | undefined;
47170
47368
  metadata?: Record<string, any> | undefined;
47171
47369
  }>;
@@ -47181,19 +47379,19 @@ export declare const roleListSchema: z.ZodArray<z.ZodObject<{
47181
47379
  created_at: z.ZodOptional<z.ZodString>;
47182
47380
  updated_at: z.ZodOptional<z.ZodString>;
47183
47381
  }, "strip", z.ZodTypeAny, {
47184
- name: string;
47185
47382
  id: string;
47186
- description?: string | undefined;
47383
+ name: string;
47187
47384
  created_at?: string | undefined;
47188
47385
  updated_at?: string | undefined;
47386
+ description?: string | undefined;
47189
47387
  is_system?: boolean | undefined;
47190
47388
  metadata?: Record<string, any> | undefined;
47191
47389
  }, {
47192
- name: string;
47193
47390
  id: string;
47194
- description?: string | undefined;
47391
+ name: string;
47195
47392
  created_at?: string | undefined;
47196
47393
  updated_at?: string | undefined;
47394
+ description?: string | undefined;
47197
47395
  is_system?: boolean | undefined;
47198
47396
  metadata?: Record<string, any> | undefined;
47199
47397
  }>, "many">;
@@ -47467,10 +47665,10 @@ export declare const organizationSchema: z.ZodObject<{
47467
47665
  } | undefined;
47468
47666
  }>>;
47469
47667
  }, "strip", z.ZodTypeAny, {
47470
- name: string;
47471
- id: string;
47472
47668
  created_at: string;
47473
47669
  updated_at: string;
47670
+ id: string;
47671
+ name: string;
47474
47672
  token_quota?: {
47475
47673
  client_credentials?: {
47476
47674
  enforce: boolean;
@@ -47494,10 +47692,10 @@ export declare const organizationSchema: z.ZodObject<{
47494
47692
  is_signup_enabled: boolean;
47495
47693
  }[] | undefined;
47496
47694
  }, {
47497
- name: string;
47498
- id: string;
47499
47695
  created_at: string;
47500
47696
  updated_at: string;
47697
+ id: string;
47698
+ name: string;
47501
47699
  token_quota?: {
47502
47700
  client_credentials?: {
47503
47701
  enforce?: boolean | undefined;
@@ -47540,15 +47738,15 @@ export declare const userOrganizationSchema: z.ZodObject<{
47540
47738
  user_id: z.ZodString;
47541
47739
  organization_id: z.ZodString;
47542
47740
  }, "strip", z.ZodTypeAny, {
47543
- id: string;
47544
47741
  created_at: string;
47545
47742
  updated_at: string;
47743
+ id: string;
47546
47744
  user_id: string;
47547
47745
  organization_id: string;
47548
47746
  }, {
47549
- id: string;
47550
47747
  created_at: string;
47551
47748
  updated_at: string;
47749
+ id: string;
47552
47750
  user_id: string;
47553
47751
  organization_id: string;
47554
47752
  }>;
@@ -47976,16 +48174,16 @@ export declare const dailyStatsSchema: z.ZodObject<{
47976
48174
  updated_at: z.ZodString;
47977
48175
  created_at: z.ZodString;
47978
48176
  }, "strip", z.ZodTypeAny, {
47979
- date: string;
47980
48177
  created_at: string;
47981
48178
  updated_at: string;
48179
+ date: string;
47982
48180
  logins: number;
47983
48181
  signups: number;
47984
48182
  leaked_passwords: number;
47985
48183
  }, {
47986
- date: string;
47987
48184
  created_at: string;
47988
48185
  updated_at: string;
48186
+ date: string;
47989
48187
  logins: number;
47990
48188
  signups: number;
47991
48189
  leaked_passwords: number;
@@ -48207,10 +48405,10 @@ export declare const authenticationMethodSchema: z.ZodEffects<z.ZodObject<{
48207
48405
  friendly_name: z.ZodOptional<z.ZodString>;
48208
48406
  confirmed: z.ZodDefault<z.ZodBoolean>;
48209
48407
  }, "strip", z.ZodTypeAny, {
48210
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
48211
- id: string;
48212
48408
  created_at: string;
48213
48409
  updated_at: string;
48410
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
48411
+ id: string;
48214
48412
  user_id: string;
48215
48413
  confirmed: boolean;
48216
48414
  phone_number?: string | undefined;
@@ -48222,10 +48420,10 @@ export declare const authenticationMethodSchema: z.ZodEffects<z.ZodObject<{
48222
48420
  credential_backed_up?: boolean | undefined;
48223
48421
  transports?: string[] | undefined;
48224
48422
  }, {
48225
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
48226
- id: string;
48227
48423
  created_at: string;
48228
48424
  updated_at: string;
48425
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
48426
+ id: string;
48229
48427
  user_id: string;
48230
48428
  phone_number?: string | undefined;
48231
48429
  friendly_name?: string | undefined;
@@ -48237,10 +48435,10 @@ export declare const authenticationMethodSchema: z.ZodEffects<z.ZodObject<{
48237
48435
  transports?: string[] | undefined;
48238
48436
  confirmed?: boolean | undefined;
48239
48437
  }>, {
48240
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
48241
- id: string;
48242
48438
  created_at: string;
48243
48439
  updated_at: string;
48440
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
48441
+ id: string;
48244
48442
  user_id: string;
48245
48443
  confirmed: boolean;
48246
48444
  phone_number?: string | undefined;
@@ -48252,10 +48450,10 @@ export declare const authenticationMethodSchema: z.ZodEffects<z.ZodObject<{
48252
48450
  credential_backed_up?: boolean | undefined;
48253
48451
  transports?: string[] | undefined;
48254
48452
  }, {
48255
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
48256
- id: string;
48257
48453
  created_at: string;
48258
48454
  updated_at: string;
48455
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
48456
+ id: string;
48259
48457
  user_id: string;
48260
48458
  phone_number?: string | undefined;
48261
48459
  friendly_name?: string | undefined;
@@ -48310,7 +48508,7 @@ export interface PassthroughConfig<T> {
48310
48508
  secondaries: SecondaryAdapterConfig<T>[];
48311
48509
  /**
48312
48510
  * Methods that should be synced to secondaries.
48313
- * Default: ["create", "update", "remove", "delete", "set"]
48511
+ * Default: ["create", "rawCreate", "update", "remove", "delete", "set"]
48314
48512
  */
48315
48513
  syncMethods?: string[];
48316
48514
  }
@@ -48406,6 +48604,16 @@ export interface IdentifierConfig {
48406
48604
  * options.attributes.username.validation.{min_length,max_length}
48407
48605
  */
48408
48606
  export declare function getConnectionIdentifierConfig(connection: ConnectionLike | null | undefined): IdentifierConfig;
48607
+ export interface ListActionsResponse extends Totals {
48608
+ actions: Action[];
48609
+ }
48610
+ export interface ActionsAdapter {
48611
+ create: (tenant_id: string, action: ActionInsert) => Promise<Action>;
48612
+ get: (tenant_id: string, action_id: string) => Promise<Action | null>;
48613
+ update: (tenant_id: string, action_id: string, action: Partial<ActionInsert>) => Promise<boolean>;
48614
+ remove: (tenant_id: string, action_id: string) => Promise<boolean>;
48615
+ list: (tenant_id: string, params?: ListParams) => Promise<ListActionsResponse>;
48616
+ }
48409
48617
  export interface ListFlowsResponse extends Totals {
48410
48618
  flows: Flow[];
48411
48619
  }
@@ -48563,6 +48771,13 @@ export interface ListUsersResponse extends Totals {
48563
48771
  export interface UserDataAdapter {
48564
48772
  get(tenant_id: string, id: string): Promise<User | null>;
48565
48773
  create(tenantId: string, user: UserInsert): Promise<User>;
48774
+ /**
48775
+ * Create a user without invoking any decorator-level hooks (pre/post
48776
+ * registration hooks, linking, webhooks, etc.). Intended to be called from
48777
+ * inside a registration pipeline that owns hook orchestration and transaction
48778
+ * boundaries itself. The DB-level behavior is identical to `create`.
48779
+ */
48780
+ rawCreate(tenantId: string, user: UserInsert): Promise<User>;
48566
48781
  remove(tenantId: string, id: string): Promise<boolean>;
48567
48782
  list(tenantId: string, params?: ListParams): Promise<ListUsersResponse>;
48568
48783
  update(tenantId: string, id: string, user: Partial<User>): Promise<boolean>;
@@ -48850,6 +49065,16 @@ export interface OutboxEvent extends AuditEvent {
48850
49065
  next_retry_at: string | null;
48851
49066
  /** Last error message from a failed delivery attempt */
48852
49067
  error: string | null;
49068
+ /** When the event was moved to dead-letter state (null if still active) */
49069
+ dead_lettered_at?: string | null;
49070
+ /** Final error captured when the event was dead-lettered */
49071
+ final_error?: string | null;
49072
+ }
49073
+ export interface ListFailedEventsResponse {
49074
+ events: OutboxEvent[];
49075
+ start: number;
49076
+ limit: number;
49077
+ length: number;
48853
49078
  }
48854
49079
  export interface OutboxAdapter {
48855
49080
  /** Write an audit event to the outbox. Returns the event ID. */
@@ -48864,6 +49089,25 @@ export interface OutboxAdapter {
48864
49089
  markProcessed(ids: string[]): Promise<void>;
48865
49090
  /** Mark an event for retry with a backoff delay */
48866
49091
  markRetry(id: string, error: string, nextRetryAt: string): Promise<void>;
49092
+ /**
49093
+ * Move an event to dead-letter state. The event is marked processed so the
49094
+ * relay stops retrying it, and the final error is preserved for admin review
49095
+ * via `listFailed`.
49096
+ */
49097
+ deadLetter(id: string, finalError: string): Promise<void>;
49098
+ /**
49099
+ * List dead-lettered events for a tenant, newest first. Used by the
49100
+ * management API's failed-events endpoints.
49101
+ */
49102
+ listFailed(tenantId: string, params?: ListParams): Promise<ListFailedEventsResponse>;
49103
+ /**
49104
+ * Reset a dead-lettered event so the relay retries it. Clears
49105
+ * `dead_lettered_at`, `final_error`, `processed_at`, `retry_count`, and
49106
+ * `next_retry_at`. Scoped to `tenantId` so operators cannot replay events
49107
+ * from other tenants — returns false when no row matches both the id and
49108
+ * the tenant.
49109
+ */
49110
+ replay(id: string, tenantId: string): Promise<boolean>;
48867
49111
  /** Delete processed events older than the given ISO date. Returns count deleted. */
48868
49112
  cleanup(olderThan: string): Promise<number>;
48869
49113
  }
@@ -48914,6 +49158,7 @@ export interface SessionCleanupParams {
48914
49158
  user_id?: string;
48915
49159
  }
48916
49160
  export interface DataAdapters {
49161
+ actions: ActionsAdapter;
48917
49162
  branding: BrandingAdapter;
48918
49163
  cache?: CacheAdapter;
48919
49164
  clients: ClientsAdapter;
@@ -49024,6 +49269,7 @@ export type Variables = {
49024
49269
  useragent?: string;
49025
49270
  countryCode?: CountryCode;
49026
49271
  outboxEventPromises?: Promise<string>[];
49272
+ backgroundPromises?: Promise<void>[];
49027
49273
  };
49028
49274
  /**
49029
49275
  * Interface for SAML signing implementations.
@@ -49406,9 +49652,9 @@ declare const enrichedClientSchema: z.ZodObject<{
49406
49652
  created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
49407
49653
  updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
49408
49654
  }, "strip", z.ZodTypeAny, {
49409
- id: string;
49410
49655
  created_at: string;
49411
49656
  updated_at: string;
49657
+ id: string;
49412
49658
  audience: string;
49413
49659
  friendly_name: string;
49414
49660
  sender_email: string;
@@ -49532,9 +49778,9 @@ declare const enrichedClientSchema: z.ZodObject<{
49532
49778
  } | undefined;
49533
49779
  } | undefined;
49534
49780
  }, {
49535
- id: string;
49536
49781
  created_at: string | null;
49537
49782
  updated_at: string | null;
49783
+ id: string;
49538
49784
  audience: string;
49539
49785
  friendly_name: string;
49540
49786
  sender_email: string;
@@ -50301,6 +50547,8 @@ declare const enrichedClientSchema: z.ZodObject<{
50301
50547
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
50302
50548
  is_system: z.ZodOptional<z.ZodBoolean>;
50303
50549
  }, "strip", z.ZodTypeAny, {
50550
+ created_at: string;
50551
+ updated_at: string;
50304
50552
  options: {
50305
50553
  validation?: {
50306
50554
  username?: {
@@ -50407,8 +50655,6 @@ declare const enrichedClientSchema: z.ZodObject<{
50407
50655
  };
50408
50656
  name: string;
50409
50657
  strategy: string;
50410
- created_at: string;
50411
- updated_at: string;
50412
50658
  id?: string | undefined;
50413
50659
  is_system?: boolean | undefined;
50414
50660
  response_type?: AuthorizationResponseType | undefined;
@@ -50419,10 +50665,10 @@ declare const enrichedClientSchema: z.ZodObject<{
50419
50665
  show_as_button?: boolean | undefined;
50420
50666
  metadata?: Record<string, any> | undefined;
50421
50667
  }, {
50422
- name: string;
50423
- strategy: string;
50424
50668
  created_at: string;
50425
50669
  updated_at: string;
50670
+ name: string;
50671
+ strategy: string;
50426
50672
  options?: {
50427
50673
  validation?: {
50428
50674
  username?: {
@@ -50633,9 +50879,9 @@ declare const enrichedClientSchema: z.ZodObject<{
50633
50879
  }, "strip", z.ZodTypeAny, {
50634
50880
  name: string;
50635
50881
  tenant: {
50636
- id: string;
50637
50882
  created_at: string;
50638
50883
  updated_at: string;
50884
+ id: string;
50639
50885
  audience: string;
50640
50886
  friendly_name: string;
50641
50887
  sender_email: string;
@@ -50760,6 +51006,8 @@ declare const enrichedClientSchema: z.ZodObject<{
50760
51006
  } | undefined;
50761
51007
  };
50762
51008
  connections: {
51009
+ created_at: string;
51010
+ updated_at: string;
50763
51011
  options: {
50764
51012
  validation?: {
50765
51013
  username?: {
@@ -50866,8 +51114,6 @@ declare const enrichedClientSchema: z.ZodObject<{
50866
51114
  };
50867
51115
  name: string;
50868
51116
  strategy: string;
50869
- created_at: string;
50870
- updated_at: string;
50871
51117
  id?: string | undefined;
50872
51118
  is_system?: boolean | undefined;
50873
51119
  response_type?: AuthorizationResponseType | undefined;
@@ -50929,9 +51175,9 @@ declare const enrichedClientSchema: z.ZodObject<{
50929
51175
  }, {
50930
51176
  name: string;
50931
51177
  tenant: {
50932
- id: string;
50933
51178
  created_at: string | null;
50934
51179
  updated_at: string | null;
51180
+ id: string;
50935
51181
  audience: string;
50936
51182
  friendly_name: string;
50937
51183
  sender_email: string;
@@ -51056,10 +51302,10 @@ declare const enrichedClientSchema: z.ZodObject<{
51056
51302
  } | undefined;
51057
51303
  };
51058
51304
  connections: {
51059
- name: string;
51060
- strategy: string;
51061
51305
  created_at: string;
51062
51306
  updated_at: string;
51307
+ name: string;
51308
+ strategy: string;
51063
51309
  options?: {
51064
51310
  validation?: {
51065
51311
  username?: {
@@ -52108,6 +52354,19 @@ export interface InMemoryCacheConfig {
52108
52354
  * Create an in-memory cache adapter
52109
52355
  */
52110
52356
  export declare function createInMemoryCache(config?: InMemoryCacheConfig): CacheAdapter;
52357
+ /**
52358
+ * Register a background promise tied to the current request.
52359
+ *
52360
+ * On Cloudflare Workers (`workerd`), this uses `executionCtx.waitUntil`, which
52361
+ * holds the worker alive until the promise settles but does not block the
52362
+ * response.
52363
+ *
52364
+ * On Node/Bun and in tests we instead collect the promise on the context so a
52365
+ * surrounding middleware can await it before the response leaves. Without this
52366
+ * the response can return before background work (audit log writes, outbox
52367
+ * webhook dispatches) completes, producing flaky test behavior and requests
52368
+ * that occasionally lose tail work if the process exits.
52369
+ */
52111
52370
  export declare function waitUntil(ctx: Context, promise: Promise<unknown>): void;
52112
52371
  /**
52113
52372
  * Parameters for cleaning up expired sessions for a specific user
@@ -52376,6 +52635,17 @@ export interface EnsureUsernameOptions {
52376
52635
  }
52377
52636
  declare function ensureUsername(options?: EnsureUsernameOptions): OnExecutePostLogin;
52378
52637
  declare function setPreferredUsername(): OnExecuteCredentialsExchange;
52638
+ export interface AccountLinkingOptions {
52639
+ /**
52640
+ * Require `email_verified` on the logged-in user before attempting to link.
52641
+ * Disabling this is almost never what you want — unverified email linking
52642
+ * lets an attacker claim existing accounts by signing up with a matching
52643
+ * email on an unverifying provider.
52644
+ * @default true
52645
+ */
52646
+ requireVerifiedEmail?: boolean;
52647
+ }
52648
+ declare function accountLinking(options?: AccountLinkingOptions): OnExecutePostLogin;
52379
52649
  /**
52380
52650
  * Local code executor using `new Function()`.
52381
52651
  * Suitable for local development only — no isolation or sandboxing.
@@ -52724,9 +52994,9 @@ export declare function init(config: AuthHeroConfig): {
52724
52994
  };
52725
52995
  };
52726
52996
  output: {
52727
- date: string;
52728
52997
  created_at: string;
52729
52998
  updated_at: string;
52999
+ date: string;
52730
53000
  logins: number;
52731
53001
  signups: number;
52732
53002
  leaked_passwords: number;
@@ -52767,10 +53037,10 @@ export declare function init(config: AuthHeroConfig): {
52767
53037
  };
52768
53038
  };
52769
53039
  output: {
52770
- name: string;
52771
- id: string;
52772
53040
  created_at: string;
52773
53041
  updated_at: string;
53042
+ id: string;
53043
+ name: string;
52774
53044
  token_quota?: {
52775
53045
  client_credentials?: {
52776
53046
  enforce: boolean;
@@ -52800,10 +53070,10 @@ export declare function init(config: AuthHeroConfig): {
52800
53070
  start: number;
52801
53071
  limit: number;
52802
53072
  organizations: {
52803
- name: string;
52804
- id: string;
52805
53073
  created_at: string;
52806
53074
  updated_at: string;
53075
+ id: string;
53076
+ name: string;
52807
53077
  token_quota?: {
52808
53078
  client_credentials?: {
52809
53079
  enforce: boolean;
@@ -52848,10 +53118,10 @@ export declare function init(config: AuthHeroConfig): {
52848
53118
  };
52849
53119
  };
52850
53120
  output: {
52851
- name: string;
52852
- id: string;
52853
53121
  created_at: string;
52854
53122
  updated_at: string;
53123
+ id: string;
53124
+ name: string;
52855
53125
  token_quota?: {
52856
53126
  client_credentials?: {
52857
53127
  enforce: boolean;
@@ -52919,6 +53189,8 @@ export declare function init(config: AuthHeroConfig): {
52919
53189
  per_hour?: number | undefined;
52920
53190
  } | undefined;
52921
53191
  } | undefined;
53192
+ id?: string | undefined;
53193
+ display_name?: string | undefined;
52922
53194
  branding?: {
52923
53195
  colors?: {
52924
53196
  primary?: string | undefined;
@@ -52926,9 +53198,7 @@ export declare function init(config: AuthHeroConfig): {
52926
53198
  } | undefined;
52927
53199
  logo_url?: string | undefined;
52928
53200
  } | undefined;
52929
- id?: string | undefined;
52930
53201
  metadata?: Record<string, any> | undefined;
52931
- display_name?: string | undefined;
52932
53202
  enabled_connections?: {
52933
53203
  connection_id: string;
52934
53204
  show_as_button?: boolean | undefined;
@@ -52938,10 +53208,10 @@ export declare function init(config: AuthHeroConfig): {
52938
53208
  };
52939
53209
  };
52940
53210
  output: {
52941
- name: string;
52942
- id: string;
52943
53211
  created_at: string;
52944
53212
  updated_at: string;
53213
+ id: string;
53214
+ name: string;
52945
53215
  token_quota?: {
52946
53216
  client_credentials?: {
52947
53217
  enforce: boolean;
@@ -53007,10 +53277,10 @@ export declare function init(config: AuthHeroConfig): {
53007
53277
  };
53008
53278
  };
53009
53279
  output: {
53010
- name: string;
53011
- id: string;
53012
53280
  created_at: string;
53013
53281
  updated_at: string;
53282
+ id: string;
53283
+ name: string;
53014
53284
  token_quota?: {
53015
53285
  client_credentials?: {
53016
53286
  enforce: boolean;
@@ -53153,11 +53423,11 @@ export declare function init(config: AuthHeroConfig): {
53153
53423
  };
53154
53424
  };
53155
53425
  output: {
53156
- name: string;
53157
53426
  id: string;
53158
- description?: string | undefined | undefined;
53427
+ name: string;
53159
53428
  created_at?: string | undefined | undefined;
53160
53429
  updated_at?: string | undefined | undefined;
53430
+ description?: string | undefined | undefined;
53161
53431
  is_system?: boolean | undefined | undefined;
53162
53432
  metadata?: {
53163
53433
  [x: string]: any;
@@ -53234,11 +53504,11 @@ export declare function init(config: AuthHeroConfig): {
53234
53504
  };
53235
53505
  };
53236
53506
  output: {
53237
- name: string;
53238
53507
  id: string;
53239
- description?: string | undefined | undefined;
53508
+ name: string;
53240
53509
  created_at?: string | undefined | undefined;
53241
53510
  updated_at?: string | undefined | undefined;
53511
+ description?: string | undefined | undefined;
53242
53512
  is_system?: boolean | undefined | undefined;
53243
53513
  metadata?: {
53244
53514
  [x: string]: any;
@@ -53270,9 +53540,9 @@ export declare function init(config: AuthHeroConfig): {
53270
53540
  };
53271
53541
  };
53272
53542
  output: {
53543
+ created_at: string;
53273
53544
  id: string;
53274
53545
  client_id: string;
53275
- created_at: string;
53276
53546
  expires_at: string;
53277
53547
  organization_id: string;
53278
53548
  inviter: {
@@ -53298,9 +53568,9 @@ export declare function init(config: AuthHeroConfig): {
53298
53568
  start: number;
53299
53569
  limit: number;
53300
53570
  invitations: {
53571
+ created_at: string;
53301
53572
  id: string;
53302
53573
  client_id: string;
53303
- created_at: string;
53304
53574
  expires_at: string;
53305
53575
  organization_id: string;
53306
53576
  inviter: {
@@ -53355,9 +53625,9 @@ export declare function init(config: AuthHeroConfig): {
53355
53625
  };
53356
53626
  };
53357
53627
  output: {
53628
+ created_at: string;
53358
53629
  id: string;
53359
53630
  client_id: string;
53360
- created_at: string;
53361
53631
  expires_at: string;
53362
53632
  organization_id: string;
53363
53633
  inviter: {
@@ -53412,9 +53682,9 @@ export declare function init(config: AuthHeroConfig): {
53412
53682
  };
53413
53683
  };
53414
53684
  output: {
53685
+ created_at: string;
53415
53686
  id: string;
53416
53687
  client_id: string;
53417
- created_at: string;
53418
53688
  expires_at: string;
53419
53689
  organization_id: string;
53420
53690
  inviter: {
@@ -53493,6 +53763,8 @@ export declare function init(config: AuthHeroConfig): {
53493
53763
  output: {
53494
53764
  name: string;
53495
53765
  identifier: string;
53766
+ created_at?: string | undefined | undefined;
53767
+ updated_at?: string | undefined | undefined;
53496
53768
  options?: {
53497
53769
  mtls?: {
53498
53770
  bound_access_tokens?: boolean | undefined | undefined;
@@ -53509,8 +53781,6 @@ export declare function init(config: AuthHeroConfig): {
53509
53781
  value: string;
53510
53782
  description?: string | undefined | undefined;
53511
53783
  }[] | undefined;
53512
- created_at?: string | undefined | undefined;
53513
- updated_at?: string | undefined | undefined;
53514
53784
  is_system?: boolean | undefined | undefined;
53515
53785
  metadata?: {
53516
53786
  [x: string]: any;
@@ -53529,6 +53799,8 @@ export declare function init(config: AuthHeroConfig): {
53529
53799
  resource_servers: {
53530
53800
  name: string;
53531
53801
  identifier: string;
53802
+ created_at?: string | undefined | undefined;
53803
+ updated_at?: string | undefined | undefined;
53532
53804
  options?: {
53533
53805
  mtls?: {
53534
53806
  bound_access_tokens?: boolean | undefined | undefined;
@@ -53545,8 +53817,6 @@ export declare function init(config: AuthHeroConfig): {
53545
53817
  value: string;
53546
53818
  description?: string | undefined | undefined;
53547
53819
  }[] | undefined;
53548
- created_at?: string | undefined | undefined;
53549
- updated_at?: string | undefined | undefined;
53550
53820
  is_system?: boolean | undefined | undefined;
53551
53821
  metadata?: {
53552
53822
  [x: string]: any;
@@ -53580,6 +53850,8 @@ export declare function init(config: AuthHeroConfig): {
53580
53850
  output: {
53581
53851
  name: string;
53582
53852
  identifier: string;
53853
+ created_at?: string | undefined | undefined;
53854
+ updated_at?: string | undefined | undefined;
53583
53855
  options?: {
53584
53856
  mtls?: {
53585
53857
  bound_access_tokens?: boolean | undefined | undefined;
@@ -53596,8 +53868,6 @@ export declare function init(config: AuthHeroConfig): {
53596
53868
  value: string;
53597
53869
  description?: string | undefined | undefined;
53598
53870
  }[] | undefined;
53599
- created_at?: string | undefined | undefined;
53600
- updated_at?: string | undefined | undefined;
53601
53871
  is_system?: boolean | undefined | undefined;
53602
53872
  metadata?: {
53603
53873
  [x: string]: any;
@@ -53676,6 +53946,8 @@ export declare function init(config: AuthHeroConfig): {
53676
53946
  output: {
53677
53947
  name: string;
53678
53948
  identifier: string;
53949
+ created_at?: string | undefined | undefined;
53950
+ updated_at?: string | undefined | undefined;
53679
53951
  options?: {
53680
53952
  mtls?: {
53681
53953
  bound_access_tokens?: boolean | undefined | undefined;
@@ -53692,8 +53964,6 @@ export declare function init(config: AuthHeroConfig): {
53692
53964
  value: string;
53693
53965
  description?: string | undefined | undefined;
53694
53966
  }[] | undefined;
53695
- created_at?: string | undefined | undefined;
53696
- updated_at?: string | undefined | undefined;
53697
53967
  is_system?: boolean | undefined | undefined;
53698
53968
  metadata?: {
53699
53969
  [x: string]: any;
@@ -53751,6 +54021,8 @@ export declare function init(config: AuthHeroConfig): {
53751
54021
  output: {
53752
54022
  name: string;
53753
54023
  identifier: string;
54024
+ created_at?: string | undefined | undefined;
54025
+ updated_at?: string | undefined | undefined;
53754
54026
  options?: {
53755
54027
  mtls?: {
53756
54028
  bound_access_tokens?: boolean | undefined | undefined;
@@ -53767,8 +54039,6 @@ export declare function init(config: AuthHeroConfig): {
53767
54039
  value: string;
53768
54040
  description?: string | undefined | undefined;
53769
54041
  }[] | undefined;
53770
- created_at?: string | undefined | undefined;
53771
- updated_at?: string | undefined | undefined;
53772
54042
  is_system?: boolean | undefined | undefined;
53773
54043
  metadata?: {
53774
54044
  [x: string]: any;
@@ -53804,11 +54074,11 @@ export declare function init(config: AuthHeroConfig): {
53804
54074
  };
53805
54075
  };
53806
54076
  output: {
53807
- name: string;
53808
54077
  id: string;
53809
- description?: string | undefined | undefined;
54078
+ name: string;
53810
54079
  created_at?: string | undefined | undefined;
53811
54080
  updated_at?: string | undefined | undefined;
54081
+ description?: string | undefined | undefined;
53812
54082
  is_system?: boolean | undefined | undefined;
53813
54083
  metadata?: {
53814
54084
  [x: string]: any;
@@ -53818,11 +54088,11 @@ export declare function init(config: AuthHeroConfig): {
53818
54088
  start: number;
53819
54089
  limit: number;
53820
54090
  roles: {
53821
- name: string;
53822
54091
  id: string;
53823
- description?: string | undefined | undefined;
54092
+ name: string;
53824
54093
  created_at?: string | undefined | undefined;
53825
54094
  updated_at?: string | undefined | undefined;
54095
+ description?: string | undefined | undefined;
53826
54096
  is_system?: boolean | undefined | undefined;
53827
54097
  metadata?: {
53828
54098
  [x: string]: any;
@@ -53847,11 +54117,11 @@ export declare function init(config: AuthHeroConfig): {
53847
54117
  };
53848
54118
  };
53849
54119
  output: {
53850
- name: string;
53851
54120
  id: string;
53852
- description?: string | undefined | undefined;
54121
+ name: string;
53853
54122
  created_at?: string | undefined | undefined;
53854
54123
  updated_at?: string | undefined | undefined;
54124
+ description?: string | undefined | undefined;
53855
54125
  is_system?: boolean | undefined | undefined;
53856
54126
  metadata?: {
53857
54127
  [x: string]: any;
@@ -53878,11 +54148,11 @@ export declare function init(config: AuthHeroConfig): {
53878
54148
  };
53879
54149
  };
53880
54150
  output: {
53881
- name: string;
53882
54151
  id: string;
53883
- description?: string | undefined | undefined;
54152
+ name: string;
53884
54153
  created_at?: string | undefined | undefined;
53885
54154
  updated_at?: string | undefined | undefined;
54155
+ description?: string | undefined | undefined;
53886
54156
  is_system?: boolean | undefined | undefined;
53887
54157
  metadata?: {
53888
54158
  [x: string]: any;
@@ -53913,11 +54183,11 @@ export declare function init(config: AuthHeroConfig): {
53913
54183
  };
53914
54184
  };
53915
54185
  output: {
53916
- name: string;
53917
54186
  id: string;
53918
- description?: string | undefined | undefined;
54187
+ name: string;
53919
54188
  created_at?: string | undefined | undefined;
53920
54189
  updated_at?: string | undefined | undefined;
54190
+ description?: string | undefined | undefined;
53921
54191
  is_system?: boolean | undefined | undefined;
53922
54192
  metadata?: {
53923
54193
  [x: string]: any;
@@ -54043,10 +54313,10 @@ export declare function init(config: AuthHeroConfig): {
54043
54313
  };
54044
54314
  };
54045
54315
  output: {
54046
- name: string;
54047
- id: string;
54048
54316
  created_at: string;
54049
54317
  updated_at: string;
54318
+ id: string;
54319
+ name: string;
54050
54320
  actions: ({
54051
54321
  params: {
54052
54322
  user_id: string;
@@ -54096,10 +54366,10 @@ export declare function init(config: AuthHeroConfig): {
54096
54366
  start: number;
54097
54367
  limit: number;
54098
54368
  flows: {
54099
- name: string;
54100
- id: string;
54101
54369
  created_at: string;
54102
54370
  updated_at: string;
54371
+ id: string;
54372
+ name: string;
54103
54373
  actions: ({
54104
54374
  params: {
54105
54375
  user_id: string;
@@ -54164,10 +54434,10 @@ export declare function init(config: AuthHeroConfig): {
54164
54434
  };
54165
54435
  };
54166
54436
  output: {
54167
- name: string;
54168
- id: string;
54169
54437
  created_at: string;
54170
54438
  updated_at: string;
54439
+ id: string;
54440
+ name: string;
54171
54441
  actions: ({
54172
54442
  params: {
54173
54443
  user_id: string;
@@ -54293,10 +54563,10 @@ export declare function init(config: AuthHeroConfig): {
54293
54563
  };
54294
54564
  };
54295
54565
  output: {
54296
- name: string;
54297
- id: string;
54298
54566
  created_at: string;
54299
54567
  updated_at: string;
54568
+ id: string;
54569
+ name: string;
54300
54570
  actions: ({
54301
54571
  params: {
54302
54572
  user_id: string;
@@ -54401,10 +54671,10 @@ export declare function init(config: AuthHeroConfig): {
54401
54671
  };
54402
54672
  };
54403
54673
  output: {
54404
- name: string;
54405
- id: string;
54406
54674
  created_at: string;
54407
54675
  updated_at: string;
54676
+ id: string;
54677
+ name: string;
54408
54678
  actions: ({
54409
54679
  params: {
54410
54680
  user_id: string;
@@ -54473,10 +54743,10 @@ export declare function init(config: AuthHeroConfig): {
54473
54743
  };
54474
54744
  };
54475
54745
  output: {
54476
- name: string;
54477
- id: string;
54478
54746
  created_at: string;
54479
54747
  updated_at: string;
54748
+ id: string;
54749
+ name: string;
54480
54750
  style?: {
54481
54751
  css?: string | undefined | undefined;
54482
54752
  } | undefined;
@@ -55050,10 +55320,10 @@ export declare function init(config: AuthHeroConfig): {
55050
55320
  start: number;
55051
55321
  limit: number;
55052
55322
  forms: {
55053
- name: string;
55054
- id: string;
55055
55323
  created_at: string;
55056
55324
  updated_at: string;
55325
+ id: string;
55326
+ name: string;
55057
55327
  style?: {
55058
55328
  css?: string | undefined | undefined;
55059
55329
  } | undefined;
@@ -55642,10 +55912,10 @@ export declare function init(config: AuthHeroConfig): {
55642
55912
  };
55643
55913
  };
55644
55914
  output: {
55645
- name: string;
55646
- id: string;
55647
55915
  created_at: string;
55648
55916
  updated_at: string;
55917
+ id: string;
55918
+ name: string;
55649
55919
  style?: {
55650
55920
  css?: string | undefined | undefined;
55651
55921
  } | undefined;
@@ -56811,10 +57081,10 @@ export declare function init(config: AuthHeroConfig): {
56811
57081
  };
56812
57082
  };
56813
57083
  output: {
56814
- name: string;
56815
- id: string;
56816
57084
  created_at: string;
56817
57085
  updated_at: string;
57086
+ id: string;
57087
+ name: string;
56818
57088
  style?: {
56819
57089
  css?: string | undefined | undefined;
56820
57090
  } | undefined;
@@ -57959,10 +58229,10 @@ export declare function init(config: AuthHeroConfig): {
57959
58229
  };
57960
58230
  };
57961
58231
  output: {
57962
- name: string;
57963
- id: string;
57964
58232
  created_at: string;
57965
58233
  updated_at: string;
58234
+ id: string;
58235
+ name: string;
57966
58236
  style?: {
57967
58237
  css?: string | undefined | undefined;
57968
58238
  } | undefined;
@@ -58604,9 +58874,9 @@ export declare function init(config: AuthHeroConfig): {
58604
58874
  };
58605
58875
  };
58606
58876
  output: {
58607
- id: string;
58608
58877
  created_at: string;
58609
58878
  updated_at: string;
58879
+ id: string;
58610
58880
  user_id: string;
58611
58881
  login_session_id: string;
58612
58882
  device: {
@@ -58800,6 +59070,8 @@ export declare function init(config: AuthHeroConfig): {
58800
59070
  };
58801
59071
  };
58802
59072
  output: {
59073
+ created_at: string;
59074
+ updated_at: string;
58803
59075
  options: {
58804
59076
  validation?: {
58805
59077
  username?: {
@@ -58906,8 +59178,6 @@ export declare function init(config: AuthHeroConfig): {
58906
59178
  };
58907
59179
  name: string;
58908
59180
  strategy: string;
58909
- created_at: string;
58910
- updated_at: string;
58911
59181
  id?: string | undefined | undefined;
58912
59182
  is_system?: boolean | undefined | undefined;
58913
59183
  response_type?: AuthorizationResponseType | undefined;
@@ -58922,6 +59192,8 @@ export declare function init(config: AuthHeroConfig): {
58922
59192
  }[] | {
58923
59193
  length: number;
58924
59194
  connections: {
59195
+ created_at: string;
59196
+ updated_at: string;
58925
59197
  options: {
58926
59198
  validation?: {
58927
59199
  username?: {
@@ -59028,8 +59300,6 @@ export declare function init(config: AuthHeroConfig): {
59028
59300
  };
59029
59301
  name: string;
59030
59302
  strategy: string;
59031
- created_at: string;
59032
- updated_at: string;
59033
59303
  id?: string | undefined | undefined;
59034
59304
  is_system?: boolean | undefined | undefined;
59035
59305
  response_type?: AuthorizationResponseType | undefined;
@@ -59063,6 +59333,8 @@ export declare function init(config: AuthHeroConfig): {
59063
59333
  };
59064
59334
  };
59065
59335
  output: {
59336
+ created_at: string;
59337
+ updated_at: string;
59066
59338
  options: {
59067
59339
  validation?: {
59068
59340
  username?: {
@@ -59169,8 +59441,6 @@ export declare function init(config: AuthHeroConfig): {
59169
59441
  };
59170
59442
  name: string;
59171
59443
  strategy: string;
59172
- created_at: string;
59173
- updated_at: string;
59174
59444
  id?: string | undefined | undefined;
59175
59445
  is_system?: boolean | undefined | undefined;
59176
59446
  response_type?: AuthorizationResponseType | undefined;
@@ -59325,9 +59595,9 @@ export declare function init(config: AuthHeroConfig): {
59325
59595
  response_mode?: AuthorizationResponseMode | undefined;
59326
59596
  response_type?: AuthorizationResponseType | undefined;
59327
59597
  id?: string | undefined;
59598
+ display_name?: string | undefined;
59328
59599
  is_system?: boolean | undefined;
59329
59600
  metadata?: Record<string, any> | undefined;
59330
- display_name?: string | undefined;
59331
59601
  strategy?: string | undefined;
59332
59602
  enabled_clients?: string[] | undefined;
59333
59603
  is_domain_connection?: boolean | undefined;
@@ -59335,6 +59605,8 @@ export declare function init(config: AuthHeroConfig): {
59335
59605
  };
59336
59606
  };
59337
59607
  output: {
59608
+ created_at: string;
59609
+ updated_at: string;
59338
59610
  options: {
59339
59611
  validation?: {
59340
59612
  username?: {
@@ -59441,8 +59713,6 @@ export declare function init(config: AuthHeroConfig): {
59441
59713
  };
59442
59714
  name: string;
59443
59715
  strategy: string;
59444
- created_at: string;
59445
- updated_at: string;
59446
59716
  id?: string | undefined | undefined;
59447
59717
  is_system?: boolean | undefined | undefined;
59448
59718
  response_type?: AuthorizationResponseType | undefined;
@@ -59577,15 +59847,17 @@ export declare function init(config: AuthHeroConfig): {
59577
59847
  response_mode?: AuthorizationResponseMode | undefined;
59578
59848
  response_type?: AuthorizationResponseType | undefined;
59579
59849
  id?: string | undefined;
59850
+ display_name?: string | undefined;
59580
59851
  is_system?: boolean | undefined;
59581
59852
  metadata?: Record<string, any> | undefined;
59582
- display_name?: string | undefined;
59583
59853
  enabled_clients?: string[] | undefined;
59584
59854
  is_domain_connection?: boolean | undefined;
59585
59855
  show_as_button?: boolean | undefined;
59586
59856
  };
59587
59857
  };
59588
59858
  output: {
59859
+ created_at: string;
59860
+ updated_at: string;
59589
59861
  options: {
59590
59862
  validation?: {
59591
59863
  username?: {
@@ -59692,8 +59964,6 @@ export declare function init(config: AuthHeroConfig): {
59692
59964
  };
59693
59965
  name: string;
59694
59966
  strategy: string;
59695
- created_at: string;
59696
- updated_at: string;
59697
59967
  id?: string | undefined | undefined;
59698
59968
  is_system?: boolean | undefined | undefined;
59699
59969
  response_type?: AuthorizationResponseType | undefined;
@@ -59774,10 +60044,10 @@ export declare function init(config: AuthHeroConfig): {
59774
60044
  tenant_id: string;
59775
60045
  id: string;
59776
60046
  deploymentStatus: "deployed" | "failed" | "not_required";
59777
- deploymentError?: string | undefined;
59778
60047
  secrets?: {
59779
60048
  [x: string]: string;
59780
60049
  } | undefined;
60050
+ deploymentError?: string | undefined;
59781
60051
  };
59782
60052
  outputFormat: "json";
59783
60053
  status: 201;
@@ -59809,11 +60079,11 @@ export declare function init(config: AuthHeroConfig): {
59809
60079
  };
59810
60080
  };
59811
60081
  output: {
60082
+ created_at: string;
60083
+ updated_at: string;
59812
60084
  code: string;
59813
60085
  id: string;
59814
60086
  tenant_id: string;
59815
- created_at: string;
59816
- updated_at: string;
59817
60087
  secrets?: {
59818
60088
  [x: string]: string;
59819
60089
  } | undefined;
@@ -59864,10 +60134,10 @@ export declare function init(config: AuthHeroConfig): {
59864
60134
  tenant_id: string;
59865
60135
  id: string;
59866
60136
  deploymentStatus: "deployed" | "failed" | "not_required";
59867
- deploymentError?: string | undefined;
59868
60137
  secrets?: {
59869
60138
  [x: string]: string;
59870
60139
  } | undefined;
60140
+ deploymentError?: string | undefined;
59871
60141
  };
59872
60142
  outputFormat: "json";
59873
60143
  status: 200;
@@ -60242,7 +60512,143 @@ export declare function init(config: AuthHeroConfig): {
60242
60512
  };
60243
60513
  };
60244
60514
  output: {
60245
- type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
60515
+ length: number;
60516
+ start: number;
60517
+ limit: number;
60518
+ events: {
60519
+ created_at: string;
60520
+ tenant_id: string;
60521
+ request: {
60522
+ path: string;
60523
+ method: string;
60524
+ ip: string;
60525
+ query?: {
60526
+ [x: string]: string;
60527
+ } | undefined;
60528
+ body?: import("hono/utils/types").JSONValue | undefined;
60529
+ user_agent?: string | undefined | undefined;
60530
+ correlation_id?: string | undefined | undefined;
60531
+ };
60532
+ id: string;
60533
+ error: string | null;
60534
+ hostname: string;
60535
+ processed_at: string | null;
60536
+ retry_count: number;
60537
+ next_retry_at: string | null;
60538
+ event_type: string;
60539
+ log_type: string;
60540
+ category: "user_action" | "admin_action" | "system" | "api";
60541
+ actor: {
60542
+ type: "system" | "user" | "admin" | "api_key" | "client_credentials";
60543
+ id?: string | undefined | undefined;
60544
+ email?: string | undefined | undefined;
60545
+ org_id?: string | undefined | undefined;
60546
+ org_name?: string | undefined | undefined;
60547
+ scopes?: string[] | undefined | undefined;
60548
+ client_id?: string | undefined | undefined;
60549
+ };
60550
+ target: {
60551
+ type: string;
60552
+ id: string;
60553
+ before?: {
60554
+ [x: string]: import("hono/utils/types").JSONValue;
60555
+ } | undefined;
60556
+ after?: {
60557
+ [x: string]: import("hono/utils/types").JSONValue;
60558
+ } | undefined;
60559
+ diff?: {
60560
+ [x: string]: {
60561
+ old?: import("hono/utils/types").JSONValue | undefined;
60562
+ new?: import("hono/utils/types").JSONValue | undefined;
60563
+ };
60564
+ } | undefined;
60565
+ };
60566
+ timestamp: string;
60567
+ description?: string | undefined;
60568
+ connection?: string | undefined;
60569
+ auth0_client?: {
60570
+ version: string;
60571
+ name: string;
60572
+ env?: {
60573
+ [x: string]: string;
60574
+ } | undefined;
60575
+ } | undefined;
60576
+ response?: {
60577
+ status_code: number;
60578
+ body?: import("hono/utils/types").JSONValue | undefined;
60579
+ } | undefined;
60580
+ strategy?: string | undefined;
60581
+ strategy_type?: string | undefined;
60582
+ dead_lettered_at?: string | null | undefined;
60583
+ final_error?: string | null | undefined;
60584
+ location?: {
60585
+ country_code: string;
60586
+ city_name: string;
60587
+ latitude: string;
60588
+ longitude: string;
60589
+ time_zone: string;
60590
+ continent_code: string;
60591
+ } | undefined;
60592
+ is_mobile?: boolean | undefined;
60593
+ }[];
60594
+ };
60595
+ outputFormat: "json";
60596
+ status: 200;
60597
+ };
60598
+ };
60599
+ } & {
60600
+ "/:id/retry": {
60601
+ $post: {
60602
+ input: {
60603
+ param: {
60604
+ id: string;
60605
+ };
60606
+ } & {
60607
+ header: {
60608
+ "tenant-id"?: string | undefined;
60609
+ };
60610
+ };
60611
+ output: {};
60612
+ outputFormat: string;
60613
+ status: 404;
60614
+ } | {
60615
+ input: {
60616
+ param: {
60617
+ id: string;
60618
+ };
60619
+ } & {
60620
+ header: {
60621
+ "tenant-id"?: string | undefined;
60622
+ };
60623
+ };
60624
+ output: {
60625
+ id: string;
60626
+ replayed: boolean;
60627
+ };
60628
+ outputFormat: "json";
60629
+ status: 200;
60630
+ };
60631
+ };
60632
+ }, "/failed-events"> & import("hono/types").MergeSchemaPath<{
60633
+ "/": {
60634
+ $get: {
60635
+ input: {
60636
+ query: {
60637
+ sort?: string | undefined;
60638
+ page?: string | undefined;
60639
+ per_page?: string | undefined;
60640
+ include_totals?: string | undefined;
60641
+ from?: string | undefined;
60642
+ take?: string | undefined;
60643
+ q?: string | undefined;
60644
+ };
60645
+ } & {
60646
+ header: {
60647
+ "tenant-id"?: string | undefined;
60648
+ };
60649
+ };
60650
+ output: {
60651
+ type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
60246
60652
  date: string;
60247
60653
  isMobile: boolean;
60248
60654
  log_id: string;
@@ -60254,8 +60660,8 @@ export declare function init(config: AuthHeroConfig): {
60254
60660
  strategy?: string | undefined | undefined;
60255
60661
  strategy_type?: string | undefined | undefined;
60256
60662
  auth0_client?: {
60257
- name: string;
60258
60663
  version: string;
60664
+ name: string;
60259
60665
  env?: {
60260
60666
  node?: string | undefined | undefined;
60261
60667
  } | undefined;
@@ -60281,7 +60687,7 @@ export declare function init(config: AuthHeroConfig): {
60281
60687
  start: number;
60282
60688
  limit: number;
60283
60689
  logs: {
60284
- type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
60690
+ type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
60285
60691
  date: string;
60286
60692
  isMobile: boolean;
60287
60693
  log_id: string;
@@ -60293,8 +60699,8 @@ export declare function init(config: AuthHeroConfig): {
60293
60699
  strategy?: string | undefined | undefined;
60294
60700
  strategy_type?: string | undefined | undefined;
60295
60701
  auth0_client?: {
60296
- name: string;
60297
60702
  version: string;
60703
+ name: string;
60298
60704
  env?: {
60299
60705
  node?: string | undefined | undefined;
60300
60706
  } | undefined;
@@ -60335,7 +60741,7 @@ export declare function init(config: AuthHeroConfig): {
60335
60741
  };
60336
60742
  };
60337
60743
  output: {
60338
- type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
60744
+ type: "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" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "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";
60339
60745
  date: string;
60340
60746
  isMobile: boolean;
60341
60747
  log_id: string;
@@ -60347,8 +60753,8 @@ export declare function init(config: AuthHeroConfig): {
60347
60753
  strategy?: string | undefined | undefined;
60348
60754
  strategy_type?: string | undefined | undefined;
60349
60755
  auth0_client?: {
60350
- name: string;
60351
60756
  version: string;
60757
+ name: string;
60352
60758
  env?: {
60353
60759
  node?: string | undefined | undefined;
60354
60760
  } | undefined;
@@ -60570,10 +60976,10 @@ export declare function init(config: AuthHeroConfig): {
60570
60976
  };
60571
60977
  };
60572
60978
  output: {
60573
- name: string;
60574
- client_id: string;
60575
60979
  created_at: string;
60576
60980
  updated_at: string;
60981
+ name: string;
60982
+ client_id: string;
60577
60983
  global: boolean;
60578
60984
  is_first_party: boolean;
60579
60985
  oidc_conformant: boolean;
@@ -60653,10 +61059,10 @@ export declare function init(config: AuthHeroConfig): {
60653
61059
  start: number;
60654
61060
  limit: number;
60655
61061
  clients: {
60656
- name: string;
60657
- client_id: string;
60658
61062
  created_at: string;
60659
61063
  updated_at: string;
61064
+ name: string;
61065
+ client_id: string;
60660
61066
  global: boolean;
60661
61067
  is_first_party: boolean;
60662
61068
  oidc_conformant: boolean;
@@ -60751,10 +61157,10 @@ export declare function init(config: AuthHeroConfig): {
60751
61157
  };
60752
61158
  };
60753
61159
  output: {
60754
- name: string;
60755
- client_id: string;
60756
61160
  created_at: string;
60757
61161
  updated_at: string;
61162
+ name: string;
61163
+ client_id: string;
60758
61164
  global: boolean;
60759
61165
  is_first_party: boolean;
60760
61166
  oidc_conformant: boolean;
@@ -60915,10 +61321,10 @@ export declare function init(config: AuthHeroConfig): {
60915
61321
  };
60916
61322
  };
60917
61323
  output: {
60918
- name: string;
60919
- client_id: string;
60920
61324
  created_at: string;
60921
61325
  updated_at: string;
61326
+ name: string;
61327
+ client_id: string;
60922
61328
  global: boolean;
60923
61329
  is_first_party: boolean;
60924
61330
  oidc_conformant: boolean;
@@ -61157,6 +61563,8 @@ export declare function init(config: AuthHeroConfig): {
61157
61563
  enabled_connections: {
61158
61564
  connection_id: string;
61159
61565
  connection?: {
61566
+ created_at: string;
61567
+ updated_at: string;
61160
61568
  options: {
61161
61569
  validation?: {
61162
61570
  username?: {
@@ -61263,8 +61671,6 @@ export declare function init(config: AuthHeroConfig): {
61263
61671
  };
61264
61672
  name: string;
61265
61673
  strategy: string;
61266
- created_at: string;
61267
- updated_at: string;
61268
61674
  id?: string | undefined | undefined;
61269
61675
  is_system?: boolean | undefined | undefined;
61270
61676
  response_type?: AuthorizationResponseType | undefined;
@@ -61301,6 +61707,8 @@ export declare function init(config: AuthHeroConfig): {
61301
61707
  enabled_connections: {
61302
61708
  connection_id: string;
61303
61709
  connection?: {
61710
+ created_at: string;
61711
+ updated_at: string;
61304
61712
  options: {
61305
61713
  validation?: {
61306
61714
  username?: {
@@ -61407,8 +61815,6 @@ export declare function init(config: AuthHeroConfig): {
61407
61815
  };
61408
61816
  name: string;
61409
61817
  strategy: string;
61410
- created_at: string;
61411
- updated_at: string;
61412
61818
  id?: string | undefined | undefined;
61413
61819
  is_system?: boolean | undefined | undefined;
61414
61820
  response_type?: AuthorizationResponseType | undefined;
@@ -61553,9 +61959,9 @@ export declare function init(config: AuthHeroConfig): {
61553
61959
  };
61554
61960
  };
61555
61961
  output: {
61556
- connection: string;
61557
61962
  created_at: string;
61558
61963
  updated_at: string;
61964
+ connection: string;
61559
61965
  user_id: string;
61560
61966
  email_verified: boolean;
61561
61967
  provider: string;
@@ -61593,6 +61999,7 @@ export declare function init(config: AuthHeroConfig): {
61593
61999
  verify_email?: boolean | undefined | undefined;
61594
62000
  last_ip?: string | undefined | undefined;
61595
62001
  last_login?: string | undefined | undefined;
62002
+ registration_completed_at?: string | undefined | undefined;
61596
62003
  identities?: {
61597
62004
  connection: string;
61598
62005
  user_id: string;
@@ -61623,9 +62030,9 @@ export declare function init(config: AuthHeroConfig): {
61623
62030
  start: number;
61624
62031
  limit: number;
61625
62032
  users: {
61626
- connection: string;
61627
62033
  created_at: string;
61628
62034
  updated_at: string;
62035
+ connection: string;
61629
62036
  user_id: string;
61630
62037
  email_verified: boolean;
61631
62038
  provider: string;
@@ -61663,6 +62070,7 @@ export declare function init(config: AuthHeroConfig): {
61663
62070
  verify_email?: boolean | undefined | undefined;
61664
62071
  last_ip?: string | undefined | undefined;
61665
62072
  last_login?: string | undefined | undefined;
62073
+ registration_completed_at?: string | undefined | undefined;
61666
62074
  identities?: {
61667
62075
  connection: string;
61668
62076
  user_id: string;
@@ -61708,9 +62116,9 @@ export declare function init(config: AuthHeroConfig): {
61708
62116
  };
61709
62117
  };
61710
62118
  output: {
61711
- connection: string;
61712
62119
  created_at: string;
61713
62120
  updated_at: string;
62121
+ connection: string;
61714
62122
  user_id: string;
61715
62123
  email_verified: boolean;
61716
62124
  provider: string;
@@ -61748,6 +62156,7 @@ export declare function init(config: AuthHeroConfig): {
61748
62156
  verify_email?: boolean | undefined | undefined;
61749
62157
  last_ip?: string | undefined | undefined;
61750
62158
  last_login?: string | undefined | undefined;
62159
+ registration_completed_at?: string | undefined | undefined;
61751
62160
  identities?: {
61752
62161
  connection: string;
61753
62162
  user_id: string;
@@ -61842,12 +62251,13 @@ export declare function init(config: AuthHeroConfig): {
61842
62251
  provider?: string | undefined;
61843
62252
  email_verified?: boolean | undefined;
61844
62253
  is_social?: boolean | undefined;
62254
+ registration_completed_at?: string | undefined;
61845
62255
  };
61846
62256
  };
61847
62257
  output: {
61848
- connection: string;
61849
62258
  created_at: string;
61850
62259
  updated_at: string;
62260
+ connection: string;
61851
62261
  user_id: string;
61852
62262
  email_verified: boolean;
61853
62263
  provider: string;
@@ -61885,6 +62295,7 @@ export declare function init(config: AuthHeroConfig): {
61885
62295
  verify_email?: boolean | undefined | undefined;
61886
62296
  last_ip?: string | undefined | undefined;
61887
62297
  last_login?: string | undefined | undefined;
62298
+ registration_completed_at?: string | undefined | undefined;
61888
62299
  identities?: {
61889
62300
  connection: string;
61890
62301
  user_id: string;
@@ -61966,6 +62377,7 @@ export declare function init(config: AuthHeroConfig): {
61966
62377
  provider?: string | undefined;
61967
62378
  email_verified?: boolean | undefined;
61968
62379
  is_social?: boolean | undefined;
62380
+ registration_completed_at?: string | undefined;
61969
62381
  };
61970
62382
  };
61971
62383
  output: {};
@@ -62037,9 +62449,9 @@ export declare function init(config: AuthHeroConfig): {
62037
62449
  };
62038
62450
  };
62039
62451
  output: {
62040
- connection: string;
62041
62452
  created_at: string;
62042
62453
  updated_at: string;
62454
+ connection: string;
62043
62455
  user_id: string;
62044
62456
  email_verified: boolean;
62045
62457
  provider: string;
@@ -62077,6 +62489,7 @@ export declare function init(config: AuthHeroConfig): {
62077
62489
  verify_email?: boolean | undefined | undefined;
62078
62490
  last_ip?: string | undefined | undefined;
62079
62491
  last_login?: string | undefined | undefined;
62492
+ registration_completed_at?: string | undefined | undefined;
62080
62493
  identities?: {
62081
62494
  connection: string;
62082
62495
  user_id: string;
@@ -62130,9 +62543,9 @@ export declare function init(config: AuthHeroConfig): {
62130
62543
  };
62131
62544
  };
62132
62545
  output: {
62133
- id: string;
62134
62546
  created_at: string;
62135
62547
  updated_at: string;
62548
+ id: string;
62136
62549
  user_id: string;
62137
62550
  login_session_id: string;
62138
62551
  device: {
@@ -62155,9 +62568,9 @@ export declare function init(config: AuthHeroConfig): {
62155
62568
  start: number;
62156
62569
  limit: number;
62157
62570
  sessions: {
62158
- id: string;
62159
62571
  created_at: string;
62160
62572
  updated_at: string;
62573
+ id: string;
62161
62574
  user_id: string;
62162
62575
  login_session_id: string;
62163
62576
  device: {
@@ -62209,8 +62622,8 @@ export declare function init(config: AuthHeroConfig): {
62209
62622
  resource_server_identifier: string;
62210
62623
  permission_name: string;
62211
62624
  resource_server_name: string;
62212
- description?: string | null | undefined | undefined;
62213
62625
  created_at?: string | undefined | undefined;
62626
+ description?: string | null | undefined | undefined;
62214
62627
  organization_id?: string | undefined | undefined;
62215
62628
  }[];
62216
62629
  outputFormat: "json";
@@ -62278,11 +62691,11 @@ export declare function init(config: AuthHeroConfig): {
62278
62691
  };
62279
62692
  };
62280
62693
  output: {
62281
- name: string;
62282
62694
  id: string;
62283
- description?: string | undefined | undefined;
62695
+ name: string;
62284
62696
  created_at?: string | undefined | undefined;
62285
62697
  updated_at?: string | undefined | undefined;
62698
+ description?: string | undefined | undefined;
62286
62699
  is_system?: boolean | undefined | undefined;
62287
62700
  metadata?: {
62288
62701
  [x: string]: any;
@@ -62357,10 +62770,10 @@ export declare function init(config: AuthHeroConfig): {
62357
62770
  };
62358
62771
  };
62359
62772
  output: {
62360
- name: string;
62361
- id: string;
62362
62773
  created_at: string;
62363
62774
  updated_at: string;
62775
+ id: string;
62776
+ name: string;
62364
62777
  token_quota?: {
62365
62778
  client_credentials?: {
62366
62779
  enforce: boolean;
@@ -62390,10 +62803,10 @@ export declare function init(config: AuthHeroConfig): {
62390
62803
  start: number;
62391
62804
  limit: number;
62392
62805
  organizations: {
62393
- name: string;
62394
- id: string;
62395
62806
  created_at: string;
62396
62807
  updated_at: string;
62808
+ id: string;
62809
+ name: string;
62397
62810
  token_quota?: {
62398
62811
  client_credentials?: {
62399
62812
  enforce: boolean;
@@ -62921,11 +63334,11 @@ export declare function init(config: AuthHeroConfig): {
62921
63334
  } | undefined;
62922
63335
  colors?: {
62923
63336
  header?: string | undefined;
63337
+ error?: string | undefined;
62924
63338
  base_focus_color?: string | undefined;
62925
63339
  base_hover_color?: string | undefined;
62926
63340
  body_text?: string | undefined;
62927
63341
  captcha_widget_theme?: "auto" | "dark" | "light" | undefined;
62928
- error?: string | undefined;
62929
63342
  icons?: string | undefined;
62930
63343
  input_background?: string | undefined;
62931
63344
  input_border?: string | undefined;
@@ -63215,7 +63628,474 @@ export declare function init(config: AuthHeroConfig): {
63215
63628
  status: 204;
63216
63629
  };
63217
63630
  };
63218
- }, "/branding">, "/">;
63631
+ }, "/branding"> & import("hono/types").MergeSchemaPath<{
63632
+ "/:triggerId/bindings": {
63633
+ $get: {
63634
+ input: {
63635
+ param: {
63636
+ triggerId: string;
63637
+ };
63638
+ } & {
63639
+ header: {
63640
+ "tenant-id"?: string | undefined;
63641
+ };
63642
+ };
63643
+ output: {
63644
+ bindings: {
63645
+ created_at: string;
63646
+ updated_at: string;
63647
+ id: string;
63648
+ action: {
63649
+ created_at: string;
63650
+ updated_at: string;
63651
+ code: string;
63652
+ status: "draft" | "built";
63653
+ id: string;
63654
+ name: string;
63655
+ tenant_id: string;
63656
+ supported_triggers?: {
63657
+ id: string;
63658
+ version?: string | undefined | undefined;
63659
+ }[] | undefined;
63660
+ runtime?: string | undefined | undefined;
63661
+ dependencies?: {
63662
+ version: string;
63663
+ name: string;
63664
+ }[] | undefined;
63665
+ secrets?: {
63666
+ name: string;
63667
+ value?: string | undefined | undefined;
63668
+ }[] | undefined;
63669
+ deployed_at?: string | undefined | undefined;
63670
+ };
63671
+ display_name: string;
63672
+ trigger_id: string;
63673
+ }[];
63674
+ };
63675
+ outputFormat: "json";
63676
+ status: 200;
63677
+ };
63678
+ };
63679
+ } & {
63680
+ "/:triggerId/bindings": {
63681
+ $patch: {
63682
+ input: {
63683
+ param: {
63684
+ triggerId: string;
63685
+ };
63686
+ } & {
63687
+ header: {
63688
+ "tenant-id"?: string | undefined;
63689
+ };
63690
+ } & {
63691
+ json: {
63692
+ bindings: {
63693
+ ref: {
63694
+ name?: string | undefined;
63695
+ id?: string | undefined;
63696
+ };
63697
+ display_name?: string | undefined;
63698
+ }[];
63699
+ };
63700
+ };
63701
+ output: {
63702
+ bindings: {
63703
+ created_at: string;
63704
+ updated_at: string;
63705
+ id: string;
63706
+ action: {
63707
+ created_at: string;
63708
+ updated_at: string;
63709
+ code: string;
63710
+ status: "draft" | "built";
63711
+ id: string;
63712
+ name: string;
63713
+ tenant_id: string;
63714
+ supported_triggers?: {
63715
+ id: string;
63716
+ version?: string | undefined | undefined;
63717
+ }[] | undefined;
63718
+ runtime?: string | undefined | undefined;
63719
+ dependencies?: {
63720
+ version: string;
63721
+ name: string;
63722
+ }[] | undefined;
63723
+ secrets?: {
63724
+ name: string;
63725
+ value?: string | undefined | undefined;
63726
+ }[] | undefined;
63727
+ deployed_at?: string | undefined | undefined;
63728
+ };
63729
+ display_name: string;
63730
+ trigger_id: string;
63731
+ }[];
63732
+ };
63733
+ outputFormat: "json";
63734
+ status: 200;
63735
+ };
63736
+ };
63737
+ }, "/actions/triggers"> & import("hono/types").MergeSchemaPath<{
63738
+ "/": {
63739
+ $get: {
63740
+ input: {
63741
+ query: {
63742
+ sort?: string | undefined;
63743
+ page?: string | undefined;
63744
+ per_page?: string | undefined;
63745
+ include_totals?: string | undefined;
63746
+ from?: string | undefined;
63747
+ take?: string | undefined;
63748
+ q?: string | undefined;
63749
+ };
63750
+ } & {
63751
+ header: {
63752
+ "tenant-id"?: string | undefined;
63753
+ };
63754
+ };
63755
+ output: {
63756
+ created_at: string;
63757
+ updated_at: string;
63758
+ code: string;
63759
+ status: "draft" | "built";
63760
+ id: string;
63761
+ name: string;
63762
+ tenant_id: string;
63763
+ supported_triggers?: {
63764
+ id: string;
63765
+ version?: string | undefined | undefined;
63766
+ }[] | undefined;
63767
+ runtime?: string | undefined | undefined;
63768
+ dependencies?: {
63769
+ version: string;
63770
+ name: string;
63771
+ }[] | undefined;
63772
+ secrets?: {
63773
+ name: string;
63774
+ value?: string | undefined | undefined;
63775
+ }[] | undefined;
63776
+ deployed_at?: string | undefined | undefined;
63777
+ }[] | {
63778
+ length: number;
63779
+ start: number;
63780
+ limit: number;
63781
+ actions: {
63782
+ created_at: string;
63783
+ updated_at: string;
63784
+ code: string;
63785
+ status: "draft" | "built";
63786
+ id: string;
63787
+ name: string;
63788
+ tenant_id: string;
63789
+ supported_triggers?: {
63790
+ id: string;
63791
+ version?: string | undefined | undefined;
63792
+ }[] | undefined;
63793
+ runtime?: string | undefined | undefined;
63794
+ dependencies?: {
63795
+ version: string;
63796
+ name: string;
63797
+ }[] | undefined;
63798
+ secrets?: {
63799
+ name: string;
63800
+ value?: string | undefined | undefined;
63801
+ }[] | undefined;
63802
+ deployed_at?: string | undefined | undefined;
63803
+ }[];
63804
+ total?: number | undefined;
63805
+ };
63806
+ outputFormat: "json";
63807
+ status: 200;
63808
+ };
63809
+ };
63810
+ } & {
63811
+ "/": {
63812
+ $post: {
63813
+ input: {
63814
+ header: {
63815
+ "tenant-id"?: string | undefined;
63816
+ };
63817
+ } & {
63818
+ json: {
63819
+ code: string;
63820
+ name: string;
63821
+ supported_triggers?: {
63822
+ id: string;
63823
+ version?: string | undefined;
63824
+ }[] | undefined;
63825
+ runtime?: string | undefined;
63826
+ dependencies?: {
63827
+ version: string;
63828
+ name: string;
63829
+ }[] | undefined;
63830
+ secrets?: {
63831
+ value: string;
63832
+ name: string;
63833
+ }[] | undefined;
63834
+ };
63835
+ };
63836
+ output: {
63837
+ created_at: string;
63838
+ updated_at: string;
63839
+ code: string;
63840
+ status: "draft" | "built";
63841
+ id: string;
63842
+ name: string;
63843
+ tenant_id: string;
63844
+ supported_triggers?: {
63845
+ id: string;
63846
+ version?: string | undefined | undefined;
63847
+ }[] | undefined;
63848
+ runtime?: string | undefined | undefined;
63849
+ dependencies?: {
63850
+ version: string;
63851
+ name: string;
63852
+ }[] | undefined;
63853
+ secrets?: {
63854
+ name: string;
63855
+ value?: string | undefined | undefined;
63856
+ }[] | undefined;
63857
+ deployed_at?: string | undefined | undefined;
63858
+ };
63859
+ outputFormat: "json";
63860
+ status: 201;
63861
+ };
63862
+ };
63863
+ } & {
63864
+ "/:id": {
63865
+ $get: {
63866
+ input: {
63867
+ param: {
63868
+ id: string;
63869
+ };
63870
+ } & {
63871
+ header: {
63872
+ "tenant-id"?: string | undefined;
63873
+ };
63874
+ };
63875
+ output: {};
63876
+ outputFormat: string;
63877
+ status: 404;
63878
+ } | {
63879
+ input: {
63880
+ param: {
63881
+ id: string;
63882
+ };
63883
+ } & {
63884
+ header: {
63885
+ "tenant-id"?: string | undefined;
63886
+ };
63887
+ };
63888
+ output: {
63889
+ created_at: string;
63890
+ updated_at: string;
63891
+ code: string;
63892
+ status: "draft" | "built";
63893
+ id: string;
63894
+ name: string;
63895
+ tenant_id: string;
63896
+ supported_triggers?: {
63897
+ id: string;
63898
+ version?: string | undefined | undefined;
63899
+ }[] | undefined;
63900
+ runtime?: string | undefined | undefined;
63901
+ dependencies?: {
63902
+ version: string;
63903
+ name: string;
63904
+ }[] | undefined;
63905
+ secrets?: {
63906
+ name: string;
63907
+ value?: string | undefined | undefined;
63908
+ }[] | undefined;
63909
+ deployed_at?: string | undefined | undefined;
63910
+ };
63911
+ outputFormat: "json";
63912
+ status: 200;
63913
+ };
63914
+ };
63915
+ } & {
63916
+ "/:id": {
63917
+ $patch: {
63918
+ input: {
63919
+ param: {
63920
+ id: string;
63921
+ };
63922
+ } & {
63923
+ header: {
63924
+ "tenant-id"?: string | undefined;
63925
+ };
63926
+ } & {
63927
+ json: {
63928
+ name?: string | undefined;
63929
+ code?: string | undefined;
63930
+ supported_triggers?: {
63931
+ id: string;
63932
+ version?: string | undefined;
63933
+ }[] | undefined;
63934
+ runtime?: string | undefined;
63935
+ dependencies?: {
63936
+ version: string;
63937
+ name: string;
63938
+ }[] | undefined;
63939
+ secrets?: {
63940
+ value: string;
63941
+ name: string;
63942
+ }[] | undefined;
63943
+ };
63944
+ };
63945
+ output: {};
63946
+ outputFormat: string;
63947
+ status: 404;
63948
+ } | {
63949
+ input: {
63950
+ param: {
63951
+ id: string;
63952
+ };
63953
+ } & {
63954
+ header: {
63955
+ "tenant-id"?: string | undefined;
63956
+ };
63957
+ } & {
63958
+ json: {
63959
+ name?: string | undefined;
63960
+ code?: string | undefined;
63961
+ supported_triggers?: {
63962
+ id: string;
63963
+ version?: string | undefined;
63964
+ }[] | undefined;
63965
+ runtime?: string | undefined;
63966
+ dependencies?: {
63967
+ version: string;
63968
+ name: string;
63969
+ }[] | undefined;
63970
+ secrets?: {
63971
+ value: string;
63972
+ name: string;
63973
+ }[] | undefined;
63974
+ };
63975
+ };
63976
+ output: {
63977
+ created_at: string;
63978
+ updated_at: string;
63979
+ code: string;
63980
+ status: "draft" | "built";
63981
+ id: string;
63982
+ name: string;
63983
+ tenant_id: string;
63984
+ supported_triggers?: {
63985
+ id: string;
63986
+ version?: string | undefined | undefined;
63987
+ }[] | undefined;
63988
+ runtime?: string | undefined | undefined;
63989
+ dependencies?: {
63990
+ version: string;
63991
+ name: string;
63992
+ }[] | undefined;
63993
+ secrets?: {
63994
+ name: string;
63995
+ value?: string | undefined | undefined;
63996
+ }[] | undefined;
63997
+ deployed_at?: string | undefined | undefined;
63998
+ };
63999
+ outputFormat: "json";
64000
+ status: 200;
64001
+ };
64002
+ };
64003
+ } & {
64004
+ "/:id": {
64005
+ $delete: {
64006
+ input: {
64007
+ param: {
64008
+ id: string;
64009
+ };
64010
+ } & {
64011
+ header: {
64012
+ "tenant-id"?: string | undefined;
64013
+ };
64014
+ };
64015
+ output: {};
64016
+ outputFormat: string;
64017
+ status: 200;
64018
+ } | {
64019
+ input: {
64020
+ param: {
64021
+ id: string;
64022
+ };
64023
+ } & {
64024
+ header: {
64025
+ "tenant-id"?: string | undefined;
64026
+ };
64027
+ };
64028
+ output: {};
64029
+ outputFormat: string;
64030
+ status: 404;
64031
+ } | {
64032
+ input: {
64033
+ param: {
64034
+ id: string;
64035
+ };
64036
+ } & {
64037
+ header: {
64038
+ "tenant-id"?: string | undefined;
64039
+ };
64040
+ };
64041
+ output: {};
64042
+ outputFormat: string;
64043
+ status: 409;
64044
+ };
64045
+ };
64046
+ } & {
64047
+ "/:id/deploy": {
64048
+ $post: {
64049
+ input: {
64050
+ param: {
64051
+ id: string;
64052
+ };
64053
+ } & {
64054
+ header: {
64055
+ "tenant-id"?: string | undefined;
64056
+ };
64057
+ };
64058
+ output: {};
64059
+ outputFormat: string;
64060
+ status: 404;
64061
+ } | {
64062
+ input: {
64063
+ param: {
64064
+ id: string;
64065
+ };
64066
+ } & {
64067
+ header: {
64068
+ "tenant-id"?: string | undefined;
64069
+ };
64070
+ };
64071
+ output: {
64072
+ created_at: string;
64073
+ updated_at: string;
64074
+ code: string;
64075
+ status: "draft" | "built";
64076
+ id: string;
64077
+ name: string;
64078
+ tenant_id: string;
64079
+ supported_triggers?: {
64080
+ id: string;
64081
+ version?: string | undefined | undefined;
64082
+ }[] | undefined;
64083
+ runtime?: string | undefined | undefined;
64084
+ dependencies?: {
64085
+ version: string;
64086
+ name: string;
64087
+ }[] | undefined;
64088
+ secrets?: {
64089
+ name: string;
64090
+ value?: string | undefined | undefined;
64091
+ }[] | undefined;
64092
+ deployed_at?: string | undefined | undefined;
64093
+ };
64094
+ outputFormat: "json";
64095
+ status: 200;
64096
+ };
64097
+ };
64098
+ }, "/actions/actions">, "/">;
63219
64099
  oauthApp: OpenAPIHono<{
63220
64100
  Bindings: Bindings;
63221
64101
  Variables: Variables;
@@ -65292,7 +66172,7 @@ export declare function init(config: AuthHeroConfig): {
65292
66172
  };
65293
66173
 
65294
66174
  declare namespace preDefinedHooks {
65295
- export { EnsureUsernameOptions, ensureUsername, setPreferredUsername };
66175
+ export { AccountLinkingOptions, EnsureUsernameOptions, accountLinking, ensureUsername, setPreferredUsername };
65296
66176
  }
65297
66177
 
65298
66178
  export {