@authhero/adapter-interfaces 0.61.0 → 0.63.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.
- package/dist/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +1809 -944
- package/dist/adapter-interfaces.mjs +297 -290
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { z as t } from "@hono/zod-openapi";
|
|
2
|
-
const
|
|
2
|
+
const ut = t.object({
|
|
3
3
|
start: t.number(),
|
|
4
4
|
limit: t.number(),
|
|
5
5
|
length: t.number()
|
|
6
6
|
}), r = t.object({
|
|
7
7
|
created_at: t.string(),
|
|
8
8
|
updated_at: t.string()
|
|
9
|
-
}),
|
|
9
|
+
}), m = t.object({
|
|
10
10
|
email: t.string().optional(),
|
|
11
11
|
email_verified: t.boolean().optional(),
|
|
12
12
|
name: t.string().optional(),
|
|
@@ -15,7 +15,7 @@ const ft = t.object({
|
|
|
15
15
|
phone_number: t.string().optional(),
|
|
16
16
|
phone_verified: t.boolean().optional(),
|
|
17
17
|
family_name: t.string().optional()
|
|
18
|
-
}).catchall(t.any()),
|
|
18
|
+
}).catchall(t.any()), h = t.object({
|
|
19
19
|
connection: t.string(),
|
|
20
20
|
user_id: t.string(),
|
|
21
21
|
provider: t.string(),
|
|
@@ -23,9 +23,9 @@ const ft = t.object({
|
|
|
23
23
|
access_token: t.string().optional(),
|
|
24
24
|
access_token_secret: t.string().optional(),
|
|
25
25
|
refresh_token: t.string().optional(),
|
|
26
|
-
profileData:
|
|
26
|
+
profileData: m.optional()
|
|
27
27
|
}), l = t.object({
|
|
28
|
-
email: t.string().optional().transform((
|
|
28
|
+
email: t.string().optional().transform((n) => n && n.toLowerCase()),
|
|
29
29
|
username: t.string().optional(),
|
|
30
30
|
phone_number: t.string().optional(),
|
|
31
31
|
given_name: t.string().optional(),
|
|
@@ -39,7 +39,7 @@ const ft = t.object({
|
|
|
39
39
|
user_id: t.string().optional(),
|
|
40
40
|
app_metadata: t.any().default({}).optional(),
|
|
41
41
|
user_metadata: t.any().default({}).optional()
|
|
42
|
-
}),
|
|
42
|
+
}), b = l.extend({
|
|
43
43
|
email_verified: t.boolean().default(!1),
|
|
44
44
|
verify_email: t.boolean().optional(),
|
|
45
45
|
last_ip: t.string().optional(),
|
|
@@ -48,25 +48,25 @@ const ft = t.object({
|
|
|
48
48
|
provider: t.string().default("email"),
|
|
49
49
|
connection: t.string().default("email"),
|
|
50
50
|
is_social: t.boolean().optional()
|
|
51
|
-
}),
|
|
52
|
-
...
|
|
51
|
+
}), f = t.object({
|
|
52
|
+
...b.shape,
|
|
53
53
|
...r.shape,
|
|
54
54
|
user_id: t.string(),
|
|
55
55
|
is_social: t.boolean(),
|
|
56
56
|
email: t.string().optional(),
|
|
57
57
|
login_count: t.number().default(0),
|
|
58
|
-
identities: t.array(
|
|
59
|
-
}),
|
|
58
|
+
identities: t.array(h).optional()
|
|
59
|
+
}), _t = f, mt = l.extend({
|
|
60
60
|
login_count: t.number(),
|
|
61
61
|
multifactor: t.array(t.string()).optional(),
|
|
62
62
|
last_ip: t.string().optional(),
|
|
63
63
|
last_login: t.string().optional(),
|
|
64
64
|
user_id: t.string()
|
|
65
|
-
}).catchall(t.any()),
|
|
66
|
-
let
|
|
67
|
-
let i = "",
|
|
68
|
-
for (;
|
|
69
|
-
i +=
|
|
65
|
+
}).catchall(t.any()), S = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
66
|
+
let E = (n = 21) => {
|
|
67
|
+
let i = "", a = crypto.getRandomValues(new Uint8Array(n));
|
|
68
|
+
for (; n--; )
|
|
69
|
+
i += S[a[n] & 63];
|
|
70
70
|
return i;
|
|
71
71
|
};
|
|
72
72
|
const j = t.object({
|
|
@@ -86,7 +86,7 @@ const j = t.object({
|
|
|
86
86
|
nameIdentifierProbes: t.array(t.string()).optional(),
|
|
87
87
|
authnContextClassRef: t.string().optional(),
|
|
88
88
|
mappings: t.record(t.string()).optional()
|
|
89
|
-
}),
|
|
89
|
+
}), y = t.object({
|
|
90
90
|
id: t.string(),
|
|
91
91
|
name: t.string(),
|
|
92
92
|
callbacks: t.array(t.string()).default([]).optional().openapi({
|
|
@@ -112,24 +112,24 @@ const j = t.object({
|
|
|
112
112
|
email_validation: t.enum(["enabled", "disabled", "enforced"]).default("enforced").optional().openapi({
|
|
113
113
|
description: "Defines if it possible to sign in with an unverified email and if verification emails will be sent. This is not available in auth0"
|
|
114
114
|
}),
|
|
115
|
-
client_secret: t.string().default(() =>
|
|
115
|
+
client_secret: t.string().default(() => E()).optional(),
|
|
116
116
|
disable_sign_ups: t.boolean().optional().default(!1).openapi({
|
|
117
117
|
description: "Prevents users from signing up using the hosted login page. This is not available in auth0"
|
|
118
118
|
})
|
|
119
|
-
}),
|
|
120
|
-
created_at: t.string().transform((
|
|
121
|
-
updated_at: t.string().transform((
|
|
122
|
-
...
|
|
123
|
-
}),
|
|
119
|
+
}), I = t.object({
|
|
120
|
+
created_at: t.string().transform((n) => n === null ? "" : n),
|
|
121
|
+
updated_at: t.string().transform((n) => n === null ? "" : n),
|
|
122
|
+
...y.shape
|
|
123
|
+
}), o = t.object({
|
|
124
124
|
x: t.number(),
|
|
125
125
|
y: t.number()
|
|
126
126
|
});
|
|
127
|
-
var c = /* @__PURE__ */ ((
|
|
127
|
+
var c = /* @__PURE__ */ ((n) => (n.RICH_TEXT = "RICH_TEXT", n.NEXT_BUTTON = "NEXT_BUTTON", n.BACK_BUTTON = "BACK_BUTTON", n.SUBMIT_BUTTON = "SUBMIT_BUTTON", n.DIVIDER = "DIVIDER", n.TEXT = "TEXT", n.EMAIL = "EMAIL", n.PASSWORD = "PASSWORD", n.NUMBER = "NUMBER", n.PHONE = "PHONE", n.DATE = "DATE", n.CHECKBOX = "CHECKBOX", n.RADIO = "RADIO", n.SELECT = "SELECT", n.HIDDEN = "HIDDEN", n.LEGAL = "LEGAL", n))(c || {}), p = /* @__PURE__ */ ((n) => (n.BLOCK = "BLOCK", n.FIELD = "FIELD", n))(p || {});
|
|
128
128
|
const s = t.object({
|
|
129
129
|
id: t.string(),
|
|
130
130
|
category: t.nativeEnum(p),
|
|
131
131
|
type: t.nativeEnum(c)
|
|
132
|
-
}),
|
|
132
|
+
}), w = s.extend({
|
|
133
133
|
category: t.literal(
|
|
134
134
|
"BLOCK"
|
|
135
135
|
/* BLOCK */
|
|
@@ -141,7 +141,7 @@ const s = t.object({
|
|
|
141
141
|
config: t.object({
|
|
142
142
|
content: t.string()
|
|
143
143
|
}).passthrough()
|
|
144
|
-
}),
|
|
144
|
+
}), C = s.extend({
|
|
145
145
|
category: t.literal(
|
|
146
146
|
"BLOCK"
|
|
147
147
|
/* BLOCK */
|
|
@@ -163,7 +163,7 @@ const s = t.object({
|
|
|
163
163
|
config: t.object({
|
|
164
164
|
text: t.string()
|
|
165
165
|
}).passthrough()
|
|
166
|
-
}),
|
|
166
|
+
}), k = s.extend({
|
|
167
167
|
category: t.literal(
|
|
168
168
|
"FIELD"
|
|
169
169
|
/* FIELD */
|
|
@@ -177,7 +177,7 @@ const s = t.object({
|
|
|
177
177
|
config: t.object({
|
|
178
178
|
text: t.string()
|
|
179
179
|
}).passthrough()
|
|
180
|
-
}),
|
|
180
|
+
}), O = s.extend({
|
|
181
181
|
category: t.literal(
|
|
182
182
|
"FIELD"
|
|
183
183
|
/* FIELD */
|
|
@@ -230,23 +230,28 @@ const s = t.object({
|
|
|
230
230
|
label: t.string().optional(),
|
|
231
231
|
placeholder: t.string().optional()
|
|
232
232
|
}).passthrough()
|
|
233
|
-
}),
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
233
|
+
}), A = t.object({
|
|
234
|
+
id: t.string(),
|
|
235
|
+
category: t.string(),
|
|
236
|
+
type: t.string()
|
|
237
|
+
}).passthrough(), v = t.union([
|
|
238
|
+
w,
|
|
239
|
+
C,
|
|
240
|
+
k,
|
|
241
|
+
O,
|
|
242
|
+
A
|
|
238
243
|
]);
|
|
239
|
-
var
|
|
240
|
-
const
|
|
244
|
+
var N = /* @__PURE__ */ ((n) => (n.STEP = "STEP", n.FLOW = "FLOW", n.CONDITION = "CONDITION", n.ACTION = "ACTION", n))(N || {});
|
|
245
|
+
const T = t.object({
|
|
241
246
|
id: t.string(),
|
|
242
247
|
type: t.literal(
|
|
243
248
|
"STEP"
|
|
244
249
|
/* STEP */
|
|
245
250
|
),
|
|
246
|
-
coordinates:
|
|
251
|
+
coordinates: o,
|
|
247
252
|
alias: t.string().optional(),
|
|
248
253
|
config: t.object({
|
|
249
|
-
components: t.array(
|
|
254
|
+
components: t.array(v),
|
|
250
255
|
next_node: t.string()
|
|
251
256
|
}).passthrough()
|
|
252
257
|
}), U = t.object({
|
|
@@ -255,25 +260,34 @@ const R = t.object({
|
|
|
255
260
|
"FLOW"
|
|
256
261
|
/* FLOW */
|
|
257
262
|
),
|
|
258
|
-
coordinates:
|
|
263
|
+
coordinates: o,
|
|
264
|
+
alias: t.string().optional(),
|
|
259
265
|
config: t.object({
|
|
260
266
|
flow_id: t.string(),
|
|
261
267
|
next_node: t.string()
|
|
262
268
|
})
|
|
263
|
-
}),
|
|
269
|
+
}), D = t.object({
|
|
270
|
+
id: t.string(),
|
|
271
|
+
type: t.string(),
|
|
272
|
+
coordinates: o
|
|
273
|
+
}).passthrough(), x = t.union([
|
|
274
|
+
T,
|
|
275
|
+
U,
|
|
276
|
+
D
|
|
277
|
+
]), R = t.object({
|
|
264
278
|
next_node: t.string(),
|
|
265
|
-
coordinates:
|
|
279
|
+
coordinates: o
|
|
266
280
|
}).passthrough(), P = t.object({
|
|
267
281
|
resume_flow: t.boolean().optional(),
|
|
268
|
-
coordinates:
|
|
269
|
-
}).passthrough(),
|
|
282
|
+
coordinates: o
|
|
283
|
+
}).passthrough(), L = t.object({
|
|
270
284
|
id: t.string(),
|
|
271
285
|
name: t.string(),
|
|
272
286
|
languages: t.object({
|
|
273
287
|
primary: t.string()
|
|
274
288
|
}).passthrough(),
|
|
275
289
|
nodes: t.array(x),
|
|
276
|
-
start:
|
|
290
|
+
start: R,
|
|
277
291
|
ending: P,
|
|
278
292
|
created_at: t.string(),
|
|
279
293
|
updated_at: t.string(),
|
|
@@ -281,17 +295,17 @@ const R = t.object({
|
|
|
281
295
|
sdkSrc: t.string().optional(),
|
|
282
296
|
sdk_src: t.string().optional()
|
|
283
297
|
}).passthrough()
|
|
284
|
-
}).passthrough(),
|
|
298
|
+
}).passthrough(), ht = L.omit({
|
|
285
299
|
id: !0,
|
|
286
300
|
created_at: !0,
|
|
287
301
|
updated_at: !0
|
|
288
302
|
});
|
|
289
|
-
var
|
|
290
|
-
const
|
|
303
|
+
var g = /* @__PURE__ */ ((n) => (n.TOKEN = "token", n.TOKEN_ID_TOKEN = "token id_token", n.CODE = "code", n))(g || {}), d = /* @__PURE__ */ ((n) => (n.QUERY = "query", n.FRAGMENT = "fragment", n.FORM_POST = "form_post", n.WEB_MESSAGE = "web_message", n.SAML_POST = "saml_post", n))(d || {}), u = /* @__PURE__ */ ((n) => (n.S256 = "S256", n.Plain = "plain", n))(u || {});
|
|
304
|
+
const B = t.object({
|
|
291
305
|
client_id: t.string(),
|
|
292
306
|
act_as: t.string().optional(),
|
|
293
|
-
response_type: t.nativeEnum(
|
|
294
|
-
response_mode: t.nativeEnum(
|
|
307
|
+
response_type: t.nativeEnum(g).optional(),
|
|
308
|
+
response_mode: t.nativeEnum(d).optional(),
|
|
295
309
|
redirect_uri: t.string().optional(),
|
|
296
310
|
audience: t.string().optional(),
|
|
297
311
|
organization: t.string().optional(),
|
|
@@ -305,7 +319,7 @@ const H = t.object({
|
|
|
305
319
|
ui_locales: t.string().optional(),
|
|
306
320
|
// The following fields are not available in Auth0
|
|
307
321
|
vendor_id: t.string().optional()
|
|
308
|
-
}),
|
|
322
|
+
}), bt = t.object({
|
|
309
323
|
colors: t.object({
|
|
310
324
|
primary: t.string(),
|
|
311
325
|
page_background: t.object({
|
|
@@ -320,7 +334,7 @@ const H = t.object({
|
|
|
320
334
|
font: t.object({
|
|
321
335
|
url: t.string()
|
|
322
336
|
}).optional()
|
|
323
|
-
}),
|
|
337
|
+
}), F = t.object({
|
|
324
338
|
kid: t.string().optional(),
|
|
325
339
|
team_id: t.string().optional(),
|
|
326
340
|
realms: t.string().optional(),
|
|
@@ -338,19 +352,19 @@ const H = t.object({
|
|
|
338
352
|
from: t.string().optional(),
|
|
339
353
|
twilio_sid: t.string().optional(),
|
|
340
354
|
twilio_token: t.string().optional()
|
|
341
|
-
}),
|
|
355
|
+
}), H = t.object({
|
|
342
356
|
id: t.string().optional(),
|
|
343
357
|
name: t.string(),
|
|
344
358
|
strategy: t.string(),
|
|
345
|
-
options:
|
|
359
|
+
options: F.default({}),
|
|
346
360
|
enabled_clients: t.array(t.string()).default([]).optional(),
|
|
347
361
|
response_type: t.custom().optional(),
|
|
348
362
|
response_mode: t.custom().optional()
|
|
349
|
-
}),
|
|
363
|
+
}), K = t.object({
|
|
350
364
|
id: t.string(),
|
|
351
|
-
created_at: t.string().transform((
|
|
352
|
-
updated_at: t.string().transform((
|
|
353
|
-
}).extend(
|
|
365
|
+
created_at: t.string().transform((n) => n === null ? "" : n),
|
|
366
|
+
updated_at: t.string().transform((n) => n === null ? "" : n)
|
|
367
|
+
}).extend(H.shape), M = t.object({
|
|
354
368
|
name: t.string(),
|
|
355
369
|
audience: t.string(),
|
|
356
370
|
sender_email: t.string().email(),
|
|
@@ -361,12 +375,12 @@ const H = t.object({
|
|
|
361
375
|
secondary_color: t.string().optional(),
|
|
362
376
|
language: t.string().optional(),
|
|
363
377
|
id: t.string().optional()
|
|
364
|
-
}),
|
|
365
|
-
created_at: t.string().transform((
|
|
366
|
-
updated_at: t.string().transform((
|
|
367
|
-
...
|
|
378
|
+
}), G = t.object({
|
|
379
|
+
created_at: t.string().transform((n) => n === null ? "" : n),
|
|
380
|
+
updated_at: t.string().transform((n) => n === null ? "" : n),
|
|
381
|
+
...M.shape,
|
|
368
382
|
id: t.string()
|
|
369
|
-
}),
|
|
383
|
+
}), ft = t.object({
|
|
370
384
|
logoUrl: t.string(),
|
|
371
385
|
loginBackgroundImage: t.string().nullish(),
|
|
372
386
|
style: t.object({
|
|
@@ -385,18 +399,18 @@ const H = t.object({
|
|
|
385
399
|
manageSubscriptionsUrl: t.string().optional()
|
|
386
400
|
});
|
|
387
401
|
t.object({
|
|
388
|
-
...
|
|
389
|
-
tenant:
|
|
390
|
-
connections: t.array(
|
|
402
|
+
...I.shape,
|
|
403
|
+
tenant: G,
|
|
404
|
+
connections: t.array(K)
|
|
391
405
|
});
|
|
392
|
-
const
|
|
406
|
+
const W = t.enum([
|
|
393
407
|
"password_reset",
|
|
394
408
|
"email_verification",
|
|
395
409
|
"otp",
|
|
396
410
|
"authorization_code",
|
|
397
411
|
"oauth2_state",
|
|
398
412
|
"ticket"
|
|
399
|
-
]),
|
|
413
|
+
]), X = t.object({
|
|
400
414
|
code_id: t.string().openapi({
|
|
401
415
|
description: "The code that will be used in for instance an email verification flow"
|
|
402
416
|
}),
|
|
@@ -406,17 +420,17 @@ const F = t.enum([
|
|
|
406
420
|
connection_id: t.string().optional().openapi({
|
|
407
421
|
description: "The connection that the code is connected to"
|
|
408
422
|
}),
|
|
409
|
-
code_type:
|
|
423
|
+
code_type: W,
|
|
410
424
|
code_verifier: t.string().optional().openapi({
|
|
411
425
|
description: "The code verifier used in PKCE in outbound flows"
|
|
412
426
|
}),
|
|
413
427
|
expires_at: t.string(),
|
|
414
428
|
used_at: t.string().optional(),
|
|
415
429
|
user_id: t.string().optional()
|
|
416
|
-
}),
|
|
417
|
-
...
|
|
430
|
+
}), St = t.object({
|
|
431
|
+
...X.shape,
|
|
418
432
|
created_at: t.string()
|
|
419
|
-
}),
|
|
433
|
+
}), q = t.object({
|
|
420
434
|
domain: t.string(),
|
|
421
435
|
custom_domain_id: t.string().optional(),
|
|
422
436
|
type: t.enum(["auth0_managed_certs", "self_managed_certs"]),
|
|
@@ -430,55 +444,23 @@ const F = t.enum([
|
|
|
430
444
|
"null"
|
|
431
445
|
]).optional(),
|
|
432
446
|
domain_metadata: t.record(t.string().max(255)).optional()
|
|
433
|
-
}),
|
|
447
|
+
}), V = t.object({
|
|
434
448
|
name: t.literal("txt"),
|
|
435
449
|
record: t.string(),
|
|
436
450
|
domain: t.string()
|
|
437
|
-
}),
|
|
438
|
-
...
|
|
451
|
+
}), z = t.object({
|
|
452
|
+
...q.shape,
|
|
439
453
|
custom_domain_id: t.string(),
|
|
440
454
|
primary: t.boolean(),
|
|
441
455
|
status: t.enum(["disabled", "pending", "pending_verification", "ready"]),
|
|
442
456
|
origin_domain_name: t.string().optional(),
|
|
443
457
|
verification: t.object({
|
|
444
|
-
methods: t.array(
|
|
458
|
+
methods: t.array(V)
|
|
445
459
|
}).optional(),
|
|
446
460
|
tls_policy: t.string().optional()
|
|
447
|
-
}),
|
|
461
|
+
}), Et = z.extend({
|
|
448
462
|
tenant_id: t.string()
|
|
449
|
-
})
|
|
450
|
-
var _ = /* @__PURE__ */ ((e) => (e.TEXT = "text", e.EMAIL = "email", e.PASSWORD = "password", e.NUMBER = "number", e.PHONE = "phone", e.DATE = "date", e.CHECKBOX = "checkbox", e.RADIO = "radio", e.SELECT = "select", e.HIDDEN = "hidden", e))(_ || {}), m = /* @__PURE__ */ ((e) => (e.REQUIRED = "required", e.FORMAT = "format", e.MIN_LENGTH = "min_length", e.MAX_LENGTH = "max_length", e.MIN = "min", e.MAX = "max", e.MATCHING_PATTERN = "matching_pattern", e))(m || {});
|
|
451
|
-
const Y = t.object({
|
|
452
|
-
type: t.nativeEnum(m),
|
|
453
|
-
message: t.string(),
|
|
454
|
-
// Additional validation properties
|
|
455
|
-
min_length: t.number().optional(),
|
|
456
|
-
max_length: t.number().optional(),
|
|
457
|
-
min: t.number().optional(),
|
|
458
|
-
max: t.number().optional(),
|
|
459
|
-
pattern: t.string().optional(),
|
|
460
|
-
format: t.string().optional()
|
|
461
|
-
}), J = t.object({
|
|
462
|
-
label: t.string(),
|
|
463
|
-
value: t.string(),
|
|
464
|
-
checked: t.boolean().optional()
|
|
465
|
-
}), Z = t.object({
|
|
466
|
-
id: t.string(),
|
|
467
|
-
name: t.string(),
|
|
468
|
-
type: t.nativeEnum(_),
|
|
469
|
-
label: t.string(),
|
|
470
|
-
placeholder: t.string().optional(),
|
|
471
|
-
required: t.boolean().optional().default(!1),
|
|
472
|
-
disabled: t.boolean().optional().default(!1),
|
|
473
|
-
readOnly: t.boolean().optional().default(!1),
|
|
474
|
-
defaultValue: t.union([t.string(), t.number(), t.boolean()]).optional(),
|
|
475
|
-
validations: t.array(Y).optional(),
|
|
476
|
-
options: t.array(J).optional(),
|
|
477
|
-
description: t.string().optional(),
|
|
478
|
-
order: t.number().optional(),
|
|
479
|
-
visible: t.boolean().optional().default(!0),
|
|
480
|
-
customizations: t.record(t.string(), t.any()).optional()
|
|
481
|
-
}), $ = t.object({
|
|
463
|
+
}), jt = t.object({
|
|
482
464
|
id: t.string(),
|
|
483
465
|
type: t.literal("submit"),
|
|
484
466
|
label: t.string(),
|
|
@@ -487,58 +469,87 @@ const Y = t.object({
|
|
|
487
469
|
order: t.number().optional(),
|
|
488
470
|
visible: t.boolean().optional().default(!0),
|
|
489
471
|
customizations: t.record(t.string(), t.any()).optional()
|
|
490
|
-
})
|
|
491
|
-
var h = /* @__PURE__ */ ((e) => (e.LOGIN = "login", e.SIGNUP = "signup", e.RESET_PASSWORD = "reset-password", e.MFA = "mfa", e.MFA_ENROLLMENT = "mfa-enrollment", e.VERIFICATION_CODE = "verification-code", e.INVITATION = "invitation", e.CUSTOM = "custom", e))(h || {});
|
|
492
|
-
const tt = t.object({
|
|
472
|
+
}), Q = t.object({
|
|
493
473
|
name: t.string().openapi({
|
|
494
474
|
description: "The name of the form"
|
|
495
475
|
}),
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
476
|
+
messages: t.object({
|
|
477
|
+
errors: t.record(t.string(), t.any()).optional(),
|
|
478
|
+
custom: t.record(t.string(), t.any()).optional()
|
|
479
|
+
}).optional(),
|
|
480
|
+
languages: t.object({
|
|
481
|
+
primary: t.string().optional(),
|
|
482
|
+
default: t.string().optional()
|
|
483
|
+
}).optional(),
|
|
484
|
+
translations: t.record(t.string(), t.any()).optional(),
|
|
485
|
+
nodes: t.array(
|
|
486
|
+
t.discriminatedUnion("type", [
|
|
487
|
+
// FLOW node
|
|
488
|
+
t.object({
|
|
489
|
+
id: t.string(),
|
|
490
|
+
type: t.literal("FLOW"),
|
|
491
|
+
coordinates: t.object({ x: t.number(), y: t.number() }),
|
|
492
|
+
alias: t.string().min(1).max(150).optional(),
|
|
493
|
+
config: t.object({
|
|
494
|
+
flow_id: t.string().max(30),
|
|
495
|
+
next_node: t.string()
|
|
496
|
+
})
|
|
497
|
+
}),
|
|
498
|
+
// ROUTER node
|
|
499
|
+
t.object({
|
|
500
|
+
id: t.string(),
|
|
501
|
+
type: t.literal("ROUTER"),
|
|
502
|
+
coordinates: t.object({ x: t.number(), y: t.number() }),
|
|
503
|
+
alias: t.string().min(1).max(150),
|
|
504
|
+
config: t.object({
|
|
505
|
+
rules: t.array(
|
|
506
|
+
t.object({
|
|
507
|
+
id: t.string(),
|
|
508
|
+
alias: t.string().min(1).max(150).optional(),
|
|
509
|
+
condition: t.any(),
|
|
510
|
+
// condition is required but type is not specified
|
|
511
|
+
next_node: t.string()
|
|
512
|
+
})
|
|
513
|
+
),
|
|
514
|
+
fallback: t.array(t.string())
|
|
515
|
+
})
|
|
516
|
+
}),
|
|
517
|
+
// STEP node
|
|
518
|
+
t.object({
|
|
519
|
+
id: t.string(),
|
|
520
|
+
type: t.literal("STEP"),
|
|
521
|
+
coordinates: t.object({ x: t.number(), y: t.number() }),
|
|
522
|
+
alias: t.string().min(1).max(150).optional(),
|
|
523
|
+
config: t.object({
|
|
524
|
+
components: t.array(t.any()),
|
|
525
|
+
// components is an array of objects, structure not specified
|
|
526
|
+
next_node: t.string()
|
|
527
|
+
})
|
|
528
|
+
})
|
|
529
|
+
])
|
|
530
|
+
).optional(),
|
|
531
|
+
start: t.object({
|
|
532
|
+
hidden_fields: t.array(t.object({ key: t.string(), value: t.string() })).optional(),
|
|
533
|
+
next_node: t.string().optional(),
|
|
534
|
+
coordinates: t.object({ x: t.number(), y: t.number() }).optional()
|
|
535
|
+
}).optional(),
|
|
536
|
+
ending: t.object({
|
|
537
|
+
redirection: t.object({
|
|
538
|
+
delay: t.number().optional(),
|
|
539
|
+
target: t.string().optional()
|
|
540
|
+
}).optional(),
|
|
541
|
+
after_submit: t.object({ flow_id: t.string().optional() }).optional(),
|
|
542
|
+
coordinates: t.object({ x: t.number(), y: t.number() }).optional(),
|
|
543
|
+
resume_flow: t.boolean().optional()
|
|
544
|
+
}).optional(),
|
|
545
|
+
style: t.object({ css: t.string().optional() }).optional()
|
|
546
|
+
}).openapi({
|
|
547
|
+
description: "Schema for flow-based forms (matches new JSON structure)"
|
|
548
|
+
}), yt = t.object({
|
|
538
549
|
...r.shape,
|
|
539
|
-
...
|
|
550
|
+
...Q.shape,
|
|
540
551
|
id: t.string()
|
|
541
|
-
}),
|
|
552
|
+
}), Y = t.object({
|
|
542
553
|
trigger_id: t.enum([
|
|
543
554
|
"pre-user-signup",
|
|
544
555
|
"post-user-registration",
|
|
@@ -549,10 +560,10 @@ const tt = t.object({
|
|
|
549
560
|
hook_id: t.string().optional(),
|
|
550
561
|
synchronous: t.boolean().default(!1),
|
|
551
562
|
priority: t.number().optional()
|
|
552
|
-
}),
|
|
563
|
+
}), It = Y.extend({
|
|
553
564
|
...r.shape,
|
|
554
565
|
hook_id: t.string()
|
|
555
|
-
}),
|
|
566
|
+
}), J = t.object({
|
|
556
567
|
alg: t.enum([
|
|
557
568
|
"RS256",
|
|
558
569
|
"RS384",
|
|
@@ -571,9 +582,9 @@ const tt = t.object({
|
|
|
571
582
|
x5t: t.string().optional(),
|
|
572
583
|
x5c: t.array(t.string()).optional(),
|
|
573
584
|
use: t.enum(["sig", "enc"]).optional()
|
|
574
|
-
}),
|
|
575
|
-
keys: t.array(
|
|
576
|
-
}),
|
|
585
|
+
}), wt = t.object({
|
|
586
|
+
keys: t.array(J)
|
|
587
|
+
}), Ct = t.object({
|
|
577
588
|
issuer: t.string(),
|
|
578
589
|
authorization_endpoint: t.string(),
|
|
579
590
|
token_endpoint: t.string(),
|
|
@@ -594,10 +605,10 @@ const tt = t.object({
|
|
|
594
605
|
request_uri_parameter_supported: t.boolean(),
|
|
595
606
|
request_parameter_supported: t.boolean(),
|
|
596
607
|
token_endpoint_auth_signing_alg_values_supported: t.array(t.string())
|
|
597
|
-
}),
|
|
608
|
+
}), Z = t.object({
|
|
598
609
|
csrf_token: t.string(),
|
|
599
610
|
auth0Client: t.string().optional(),
|
|
600
|
-
authParams:
|
|
611
|
+
authParams: B,
|
|
601
612
|
expires_at: t.string(),
|
|
602
613
|
deleted_at: t.string().optional(),
|
|
603
614
|
ip: t.string().optional(),
|
|
@@ -606,16 +617,16 @@ const tt = t.object({
|
|
|
606
617
|
authorization_url: t.string().optional()
|
|
607
618
|
}).openapi({
|
|
608
619
|
description: "This represents a login sesion"
|
|
609
|
-
}),
|
|
610
|
-
...
|
|
620
|
+
}), kt = t.object({
|
|
621
|
+
...Z.shape,
|
|
611
622
|
id: t.string().openapi({
|
|
612
623
|
description: "This is is used as the state in the universal login"
|
|
613
624
|
}),
|
|
614
625
|
created_at: t.string(),
|
|
615
626
|
updated_at: t.string()
|
|
616
627
|
});
|
|
617
|
-
var
|
|
618
|
-
const
|
|
628
|
+
var $ = /* @__PURE__ */ ((n) => (n.FAILED_SILENT_AUTH = "fsa", n.FAILED_SIGNUP = "fs", n.FAILED_LOGIN = "f", n.FAILED_LOGIN_INCORRECT_PASSWORD = "fp", n.FAILED_CHANGE_PASSWORD = "fcp", n.FAILED_BY_CONNECTOR = "fc", n.FAILED_LOGIN_INVALID_EMAIL_USERNAME = "fu", n.FAILED_HOOK = "fh", n.FAILED_CROSS_ORIGIN_AUTHENTICATION = "fcoa", n.SUCCESS_API_OPERATION = "sapi", n.SUCCESS_CHANGE_PASSWORD = "scp", n.SUCCESS_CHANGE_PASSWORD_REQUEST = "scpr", n.SUCCESS_CHANGE_USERNAME = "scu", n.SUCCESS_CROSS_ORIGIN_AUTHENTICATION = "scoa", n.SUCCESS_EXCHANGE_AUTHORIZATION_CODE_FOR_ACCESS_TOKEN = "seacft", n.SUCCESS_EXCHANGE_REFRESH_TOKEN_FOR_ACCESS_TOKEN = "serft", n.SUCCESS_LOGIN = "s", n.SUCCESS_LOGOUT = "slo", n.SUCCESS_SIGNUP = "ss", n.SUCCESS_SILENT_AUTH = "ssa", n.SUCCESS_VERIFICATION_EMAIL = "sv", n.SUCCESS_VERIFICATION_EMAIL_REQUEST = "svr", n.CODE_LINK_SENT = "cls", n.BLOCKED_ACCOUNT_EMAIL = "limit_wc", n.BLOCKED_ACCOUNT_IP = "limit_sul", n.BLOCKED_IP_ADDRESS = "limit_mu", n))($ || {});
|
|
629
|
+
const tt = t.enum([
|
|
619
630
|
"cls",
|
|
620
631
|
// CODE_LINK_SENT
|
|
621
632
|
"fsa",
|
|
@@ -664,14 +675,14 @@ const at = t.enum([
|
|
|
664
675
|
// SUCCESS_VERIFICATION_EMAIL
|
|
665
676
|
"svr"
|
|
666
677
|
// SUCCESS_VERIFICATION_EMAIL_REQUEST
|
|
667
|
-
]),
|
|
678
|
+
]), nt = t.object({
|
|
668
679
|
name: t.string(),
|
|
669
680
|
version: t.string(),
|
|
670
681
|
env: t.object({
|
|
671
682
|
node: t.string().optional()
|
|
672
683
|
}).optional()
|
|
673
|
-
}),
|
|
674
|
-
type:
|
|
684
|
+
}), Ot = t.object({
|
|
685
|
+
type: tt,
|
|
675
686
|
date: t.string(),
|
|
676
687
|
description: t.string().optional(),
|
|
677
688
|
log_id: t.string().optional(),
|
|
@@ -692,40 +703,40 @@ const at = t.enum([
|
|
|
692
703
|
strategy: t.string().optional(),
|
|
693
704
|
strategy_type: t.string().optional(),
|
|
694
705
|
hostname: t.string().optional(),
|
|
695
|
-
auth0_client:
|
|
696
|
-
}),
|
|
706
|
+
auth0_client: nt.optional()
|
|
707
|
+
}), et = t.object({
|
|
697
708
|
user_id: t.string(),
|
|
698
709
|
password: t.string(),
|
|
699
710
|
algorithm: t.enum(["bcrypt", "argon2id"]).default("argon2id")
|
|
700
|
-
}),
|
|
701
|
-
...
|
|
711
|
+
}), At = t.object({
|
|
712
|
+
...et.shape,
|
|
702
713
|
created_at: t.string(),
|
|
703
714
|
updated_at: t.string()
|
|
704
|
-
}),
|
|
715
|
+
}), _ = t.object({
|
|
705
716
|
initial_user_agent: t.string().describe("First user agent of the device from which this user logged in"),
|
|
706
717
|
initial_ip: t.string().describe("First IP address associated with this session"),
|
|
707
718
|
initial_asn: t.string().describe("First autonomous system number associated with this session"),
|
|
708
719
|
last_user_agent: t.string().describe("Last user agent of the device from which this user logged in"),
|
|
709
720
|
last_ip: t.string().describe("Last IP address from which this user logged in"),
|
|
710
721
|
last_asn: t.string().describe("Last autonomous system number from which this user logged in")
|
|
711
|
-
}),
|
|
722
|
+
}), it = t.object({
|
|
712
723
|
id: t.string(),
|
|
713
724
|
revoked_at: t.string().optional(),
|
|
714
725
|
used_at: t.string().optional(),
|
|
715
726
|
user_id: t.string().describe("The user ID associated with the session"),
|
|
716
727
|
expires_at: t.string().optional(),
|
|
717
728
|
idle_expires_at: t.string().optional(),
|
|
718
|
-
device:
|
|
729
|
+
device: _.describe(
|
|
719
730
|
"Metadata related to the device used in the session"
|
|
720
731
|
),
|
|
721
732
|
clients: t.array(t.string()).describe("List of client details for the session")
|
|
722
|
-
}),
|
|
733
|
+
}), vt = t.object({
|
|
723
734
|
created_at: t.string(),
|
|
724
735
|
updated_at: t.string(),
|
|
725
736
|
authenticated_at: t.string(),
|
|
726
737
|
last_interaction_at: t.string(),
|
|
727
|
-
...
|
|
728
|
-
}),
|
|
738
|
+
...it.shape
|
|
739
|
+
}), Nt = t.object({
|
|
729
740
|
kid: t.string().openapi({ description: "The key id of the signing key" }),
|
|
730
741
|
cert: t.string().openapi({ description: "The public certificate of the signing key" }),
|
|
731
742
|
fingerprint: t.string().openapi({ description: "The cert fingerprint" }),
|
|
@@ -745,8 +756,8 @@ const at = t.enum([
|
|
|
745
756
|
revoked: t.boolean().optional().openapi({ description: "True if the key is revoked" }),
|
|
746
757
|
revoked_at: t.string().optional().openapi({ description: "The date and time when the key was revoked" })
|
|
747
758
|
});
|
|
748
|
-
var
|
|
749
|
-
const
|
|
759
|
+
var ot = /* @__PURE__ */ ((n) => (n.RefreshToken = "refresh_token", n.AuthorizationCode = "authorization_code", n.ClientCredential = "client_credentials", n.Passwordless = "passwordless", n.Password = "password", n.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", n))(ot || {});
|
|
760
|
+
const Tt = t.object({
|
|
750
761
|
access_token: t.string(),
|
|
751
762
|
id_token: t.string().optional(),
|
|
752
763
|
scope: t.string().optional(),
|
|
@@ -759,7 +770,7 @@ t.object({
|
|
|
759
770
|
code: t.string(),
|
|
760
771
|
state: t.string().optional()
|
|
761
772
|
});
|
|
762
|
-
const
|
|
773
|
+
const at = t.object({
|
|
763
774
|
button_border_radius: t.number(),
|
|
764
775
|
button_border_weight: t.number(),
|
|
765
776
|
buttons_style: t.enum(["pill"]),
|
|
@@ -769,7 +780,7 @@ const pt = t.object({
|
|
|
769
780
|
show_widget_shadow: t.boolean(),
|
|
770
781
|
widget_border_weight: t.number(),
|
|
771
782
|
widget_corner_radius: t.number()
|
|
772
|
-
}),
|
|
783
|
+
}), st = t.object({
|
|
773
784
|
base_focus_color: t.string(),
|
|
774
785
|
base_hover_color: t.string(),
|
|
775
786
|
body_text: t.string(),
|
|
@@ -789,44 +800,44 @@ const pt = t.object({
|
|
|
789
800
|
success: t.string(),
|
|
790
801
|
widget_background: t.string(),
|
|
791
802
|
widget_border: t.string()
|
|
792
|
-
}),
|
|
803
|
+
}), e = t.object({
|
|
793
804
|
bold: t.boolean(),
|
|
794
805
|
size: t.number()
|
|
795
|
-
}),
|
|
796
|
-
body_text:
|
|
797
|
-
buttons_text:
|
|
806
|
+
}), rt = t.object({
|
|
807
|
+
body_text: e,
|
|
808
|
+
buttons_text: e,
|
|
798
809
|
font_url: t.string(),
|
|
799
|
-
input_labels:
|
|
800
|
-
links:
|
|
810
|
+
input_labels: e,
|
|
811
|
+
links: e,
|
|
801
812
|
links_style: t.enum(["normal"]),
|
|
802
813
|
reference_text_size: t.number(),
|
|
803
|
-
subtitle:
|
|
804
|
-
title:
|
|
805
|
-
}),
|
|
814
|
+
subtitle: e,
|
|
815
|
+
title: e
|
|
816
|
+
}), lt = t.object({
|
|
806
817
|
background_color: t.string(),
|
|
807
818
|
background_image_url: t.string(),
|
|
808
819
|
page_layout: t.enum(["center"])
|
|
809
|
-
}),
|
|
820
|
+
}), ct = t.object({
|
|
810
821
|
header_text_alignment: t.enum(["center"]),
|
|
811
822
|
logo_height: t.number(),
|
|
812
823
|
logo_position: t.enum(["center"]),
|
|
813
824
|
logo_url: t.string(),
|
|
814
825
|
social_buttons_layout: t.enum(["bottom"])
|
|
815
|
-
}),
|
|
816
|
-
borders:
|
|
817
|
-
colors:
|
|
826
|
+
}), pt = t.object({
|
|
827
|
+
borders: at,
|
|
828
|
+
colors: st,
|
|
818
829
|
displayName: t.string(),
|
|
819
|
-
fonts:
|
|
820
|
-
page_background:
|
|
821
|
-
widget:
|
|
822
|
-
}),
|
|
830
|
+
fonts: rt,
|
|
831
|
+
page_background: lt,
|
|
832
|
+
widget: ct
|
|
833
|
+
}), Ut = pt.extend({
|
|
823
834
|
themeId: t.string()
|
|
824
|
-
}),
|
|
835
|
+
}), Dt = t.object({
|
|
825
836
|
universal_login_experience: t.enum(["new", "classic"]).default("new"),
|
|
826
837
|
identifier_first: t.boolean().default(!0),
|
|
827
838
|
password_first: t.boolean().default(!1),
|
|
828
839
|
webauthn_platform_first_factor: t.boolean()
|
|
829
|
-
}),
|
|
840
|
+
}), xt = t.object({
|
|
830
841
|
name: t.string(),
|
|
831
842
|
enabled: t.boolean().optional().default(!0),
|
|
832
843
|
default_from_address: t.string().optional(),
|
|
@@ -856,7 +867,7 @@ const pt = t.object({
|
|
|
856
867
|
})
|
|
857
868
|
]),
|
|
858
869
|
settings: t.object({}).optional()
|
|
859
|
-
}),
|
|
870
|
+
}), gt = t.object({
|
|
860
871
|
// The actual refresh token value (primary key).
|
|
861
872
|
id: t.string(),
|
|
862
873
|
// Link to the session record
|
|
@@ -869,7 +880,7 @@ const pt = t.object({
|
|
|
869
880
|
idle_expires_at: t.string().optional(),
|
|
870
881
|
// When the token was last used.
|
|
871
882
|
last_exchanged_at: t.string().optional(),
|
|
872
|
-
device:
|
|
883
|
+
device: _,
|
|
873
884
|
resource_servers: t.array(
|
|
874
885
|
t.object({
|
|
875
886
|
audience: t.string(),
|
|
@@ -877,109 +888,105 @@ const pt = t.object({
|
|
|
877
888
|
})
|
|
878
889
|
),
|
|
879
890
|
rotating: t.boolean()
|
|
880
|
-
}),
|
|
891
|
+
}), Rt = t.object({
|
|
881
892
|
// When the refresh token record was created.
|
|
882
893
|
created_at: t.string(),
|
|
883
894
|
// Spread in the rest of the refresh token properties.
|
|
884
|
-
...
|
|
885
|
-
}),
|
|
895
|
+
...gt.shape
|
|
896
|
+
}), Pt = t.object({
|
|
886
897
|
to: t.string(),
|
|
887
898
|
message: t.string()
|
|
888
|
-
}),
|
|
899
|
+
}), Lt = t.object({
|
|
889
900
|
name: t.string(),
|
|
890
901
|
options: t.object({})
|
|
891
902
|
});
|
|
892
|
-
function
|
|
893
|
-
const [i,
|
|
894
|
-
if (!i || !
|
|
895
|
-
throw new Error(`Invalid user_id: ${
|
|
896
|
-
return { connection: i, id:
|
|
903
|
+
function Bt(n) {
|
|
904
|
+
const [i, a] = n.split("|");
|
|
905
|
+
if (!i || !a)
|
|
906
|
+
throw new Error(`Invalid user_id: ${n}`);
|
|
907
|
+
return { connection: i, id: a };
|
|
897
908
|
}
|
|
898
909
|
export {
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
910
|
+
nt as Auth0Client,
|
|
911
|
+
d as AuthorizationResponseMode,
|
|
912
|
+
g as AuthorizationResponseType,
|
|
902
913
|
u as CodeChallengeMethod,
|
|
903
914
|
p as ComponentCategory,
|
|
904
915
|
c as ComponentType,
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
B as auth0FlowSchema,
|
|
915
|
-
St as auth0UserResponseSchema,
|
|
916
|
-
H as authParamsSchema,
|
|
916
|
+
ot as GrantType,
|
|
917
|
+
$ as LogTypes,
|
|
918
|
+
N as NodeType,
|
|
919
|
+
y as applicationInsertSchema,
|
|
920
|
+
I as applicationSchema,
|
|
921
|
+
ht as auth0FlowInsertSchema,
|
|
922
|
+
L as auth0FlowSchema,
|
|
923
|
+
_t as auth0UserResponseSchema,
|
|
924
|
+
B as authParamsSchema,
|
|
917
925
|
l as baseUserSchema,
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
926
|
+
at as bordersSchema,
|
|
927
|
+
bt as brandingSchema,
|
|
928
|
+
C as buttonComponentSchema,
|
|
929
|
+
X as codeInsertSchema,
|
|
930
|
+
St as codeSchema,
|
|
931
|
+
W as codeTypeSchema,
|
|
932
|
+
st as colorsSchema,
|
|
933
|
+
v as componentSchema,
|
|
934
|
+
H as connectionInsertSchema,
|
|
935
|
+
F as connectionOptionsSchema,
|
|
936
|
+
K as connectionSchema,
|
|
937
|
+
o as coordinatesSchema,
|
|
938
|
+
q as customDomainInsertSchema,
|
|
939
|
+
z as customDomainSchema,
|
|
940
|
+
Et as customDomainWithTenantIdSchema,
|
|
941
|
+
xt as emailProviderSchema,
|
|
934
942
|
P as endingSchema,
|
|
935
|
-
|
|
943
|
+
O as fieldComponentSchema,
|
|
936
944
|
U as flowNodeSchema,
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
yt as loginSessionSchema,
|
|
945
|
+
e as fontDetailsSchema,
|
|
946
|
+
rt as fontsSchema,
|
|
947
|
+
jt as formControlSchema,
|
|
948
|
+
Q as formInsertSchema,
|
|
949
|
+
yt as formSchema,
|
|
950
|
+
A as genericComponentSchema,
|
|
951
|
+
D as genericNodeSchema,
|
|
952
|
+
Y as hookInsertSchema,
|
|
953
|
+
It as hookSchema,
|
|
954
|
+
h as identitySchema,
|
|
955
|
+
wt as jwksKeySchema,
|
|
956
|
+
J as jwksSchema,
|
|
957
|
+
k as legalComponentSchema,
|
|
958
|
+
Ot as logSchema,
|
|
959
|
+
Z as loginSessionInsertSchema,
|
|
960
|
+
kt as loginSessionSchema,
|
|
954
961
|
x as nodeSchema,
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
962
|
+
Ct as openIDConfigurationSchema,
|
|
963
|
+
lt as pageBackgroundSchema,
|
|
964
|
+
Bt as parseUserId,
|
|
965
|
+
et as passwordInsertSchema,
|
|
966
|
+
At as passwordSchema,
|
|
967
|
+
m as profileDataSchema,
|
|
968
|
+
Dt as promptSettingSchema,
|
|
969
|
+
gt as refreshTokenInsertSchema,
|
|
970
|
+
Rt as refreshTokenSchema,
|
|
971
|
+
w as richTextComponentSchema,
|
|
965
972
|
j as samlpAddon,
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
973
|
+
it as sessionInsertSchema,
|
|
974
|
+
vt as sessionSchema,
|
|
975
|
+
Nt as signingKeySchema,
|
|
976
|
+
Lt as smsProviderSchema,
|
|
977
|
+
Pt as smsSendParamsSchema,
|
|
978
|
+
R as startSchema,
|
|
979
|
+
T as stepNodeSchema,
|
|
980
|
+
M as tenantInsertSchema,
|
|
981
|
+
G as tenantSchema,
|
|
982
|
+
pt as themeInsertSchema,
|
|
983
|
+
Ut as themeSchema,
|
|
984
|
+
Tt as tokenResponseSchema,
|
|
985
|
+
ut as totalsSchema,
|
|
986
|
+
b as userInsertSchema,
|
|
987
|
+
mt as userResponseSchema,
|
|
988
|
+
f as userSchema,
|
|
989
|
+
ft as vendorSettingsSchema,
|
|
990
|
+
V as verificationMethodsSchema,
|
|
991
|
+
ct as widgetSchema
|
|
985
992
|
};
|