@rakun-kit/core 1.3.4 → 1.3.7
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/cjs/api/routes/web/page.js +69 -69
- package/dist/cjs/api/routes/web/page.js.map +1 -1
- package/dist/cjs/lib/ContentType.js +62 -80
- package/dist/cjs/lib/ContentType.js.map +1 -1
- package/dist/cjs/orm/index.js +0 -6
- package/dist/cjs/orm/index.js.map +1 -1
- package/dist/esm/api/operations/index.d.ts +14 -14
- package/dist/esm/api/operations/manager-contract.d.ts +9 -9
- package/dist/esm/api/operations/manager.d.ts +9 -9
- package/dist/esm/api/operations/web-contract.d.ts +5 -5
- package/dist/esm/api/operations/web.d.ts +5 -5
- package/dist/esm/api/proxies/index.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/getSession.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/markTourSeen.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/updateAccount.d.ts +2 -2
- package/dist/esm/api/routes/manager/auth/updateTutorialPreferences.d.ts +2 -2
- package/dist/esm/api/routes/manager/create.d.ts +2 -2
- package/dist/esm/api/routes/manager/duplicate.d.ts +2 -2
- package/dist/esm/api/routes/manager/get.d.ts +2 -2
- package/dist/esm/api/routes/manager/languages.d.ts +2 -2
- package/dist/esm/api/routes/manager/update.d.ts +2 -2
- package/dist/esm/api/routes/web/page.d.ts.map +1 -1
- package/dist/esm/api/routes/web/page.js +69 -69
- package/dist/esm/api/routes/web/page.js.map +1 -1
- package/dist/esm/api/routes/web/previewPage.d.ts +2 -2
- package/dist/esm/api/utils/getLanguages.d.ts +2 -2
- package/dist/esm/api/utils/getUser.d.ts +2 -2
- package/dist/esm/internal-content-types/ManagerUser.d.ts +7 -7
- package/dist/esm/internal-content-types/MfaChallenge.d.ts +28 -28
- package/dist/esm/internal-content-types/Page.d.ts +8 -8
- package/dist/esm/internal-content-types/RouteSettings.d.ts +8 -8
- package/dist/esm/internal-content-types/Session.d.ts +28 -28
- package/dist/esm/internal-content-types/UserMfa.d.ts +28 -28
- package/dist/esm/internal-content-types/WebAuthnCredential.d.ts +28 -28
- package/dist/esm/internal-content-types/WebAuthnRegChallenge.d.ts +28 -28
- package/dist/esm/lib/ContentType.d.ts +58 -82
- package/dist/esm/lib/ContentType.d.ts.map +1 -1
- package/dist/esm/lib/ContentType.js +62 -80
- package/dist/esm/lib/ContentType.js.map +1 -1
- package/dist/esm/manager.d.ts +36 -36
- package/dist/esm/orm/index.d.ts.map +1 -1
- package/dist/esm/orm/index.js +0 -6
- package/dist/esm/orm/index.js.map +1 -1
- package/dist/esm/schemas/web/page.d.ts +12 -12
- package/dist/esm/schemas/web/previewPage.d.ts +8 -8
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -1
|
@@ -211,8 +211,8 @@ export declare const Session: ContentType<{
|
|
|
211
211
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
212
212
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
213
213
|
_trashed?: boolean | undefined;
|
|
214
|
-
trashedAt?: Date | undefined;
|
|
215
214
|
_revision?: number | undefined;
|
|
215
|
+
trashedAt?: Date | undefined;
|
|
216
216
|
createdAt?: Date | undefined;
|
|
217
217
|
updatedAt?: Date | undefined;
|
|
218
218
|
};
|
|
@@ -231,8 +231,8 @@ export declare const Session: ContentType<{
|
|
|
231
231
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
232
232
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
233
233
|
_trashed?: boolean | undefined;
|
|
234
|
-
trashedAt?: Date | undefined;
|
|
235
234
|
_revision?: number | undefined;
|
|
235
|
+
trashedAt?: Date | undefined;
|
|
236
236
|
createdAt?: Date | undefined;
|
|
237
237
|
updatedAt?: Date | undefined;
|
|
238
238
|
};
|
|
@@ -256,8 +256,8 @@ export declare const Session: ContentType<{
|
|
|
256
256
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
257
257
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
258
258
|
_trashed?: boolean | undefined;
|
|
259
|
-
trashedAt?: Date | undefined;
|
|
260
259
|
_revision?: number | undefined;
|
|
260
|
+
trashedAt?: Date | undefined;
|
|
261
261
|
createdAt?: Date | undefined;
|
|
262
262
|
updatedAt?: Date | undefined;
|
|
263
263
|
};
|
|
@@ -276,8 +276,8 @@ export declare const Session: ContentType<{
|
|
|
276
276
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
277
277
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
278
278
|
_trashed?: boolean | undefined;
|
|
279
|
-
trashedAt?: Date | undefined;
|
|
280
279
|
_revision?: number | undefined;
|
|
280
|
+
trashedAt?: Date | undefined;
|
|
281
281
|
createdAt?: Date | undefined;
|
|
282
282
|
updatedAt?: Date | undefined;
|
|
283
283
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -292,8 +292,8 @@ export declare const Session: ContentType<{
|
|
|
292
292
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
293
293
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
294
294
|
_trashed?: boolean | undefined;
|
|
295
|
-
trashedAt?: Date | undefined;
|
|
296
295
|
_revision?: number | undefined;
|
|
296
|
+
trashedAt?: Date | undefined;
|
|
297
297
|
createdAt?: Date | undefined;
|
|
298
298
|
updatedAt?: Date | undefined;
|
|
299
299
|
};
|
|
@@ -312,8 +312,8 @@ export declare const Session: ContentType<{
|
|
|
312
312
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
313
313
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
314
314
|
_trashed?: boolean | undefined;
|
|
315
|
-
trashedAt?: Date | undefined;
|
|
316
315
|
_revision?: number | undefined;
|
|
316
|
+
trashedAt?: Date | undefined;
|
|
317
317
|
createdAt?: Date | undefined;
|
|
318
318
|
updatedAt?: Date | undefined;
|
|
319
319
|
} | undefined, unknown>>;
|
|
@@ -335,9 +335,9 @@ export declare const Session: ContentType<{
|
|
|
335
335
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
336
336
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
337
337
|
_trashed?: boolean | undefined;
|
|
338
|
+
_revision?: number | undefined;
|
|
338
339
|
trashedAt?: Date | undefined;
|
|
339
340
|
trashedBy?: string | undefined;
|
|
340
|
-
_revision?: number | undefined;
|
|
341
341
|
createdAt?: Date | undefined;
|
|
342
342
|
updatedAt?: Date | undefined;
|
|
343
343
|
createdBy?: string | undefined;
|
|
@@ -358,9 +358,9 @@ export declare const Session: ContentType<{
|
|
|
358
358
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
359
359
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
360
360
|
_trashed?: boolean | undefined;
|
|
361
|
+
_revision?: number | undefined;
|
|
361
362
|
trashedAt?: Date | undefined;
|
|
362
363
|
trashedBy?: string | undefined;
|
|
363
|
-
_revision?: number | undefined;
|
|
364
364
|
createdAt?: Date | undefined;
|
|
365
365
|
updatedAt?: Date | undefined;
|
|
366
366
|
createdBy?: string | undefined;
|
|
@@ -960,8 +960,8 @@ export declare const Session: ContentType<{
|
|
|
960
960
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
961
961
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
962
962
|
_trashed?: boolean | undefined;
|
|
963
|
-
trashedAt?: Date | undefined;
|
|
964
963
|
_revision?: number | undefined;
|
|
964
|
+
trashedAt?: Date | undefined;
|
|
965
965
|
createdAt?: Date | undefined;
|
|
966
966
|
updatedAt?: Date | undefined;
|
|
967
967
|
};
|
|
@@ -982,8 +982,8 @@ export declare const Session: ContentType<{
|
|
|
982
982
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
983
983
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
984
984
|
_trashed?: boolean | undefined;
|
|
985
|
-
trashedAt?: Date | undefined;
|
|
986
985
|
_revision?: number | undefined;
|
|
986
|
+
trashedAt?: Date | undefined;
|
|
987
987
|
createdAt?: Date | undefined;
|
|
988
988
|
updatedAt?: Date | undefined;
|
|
989
989
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -995,8 +995,8 @@ export declare const Session: ContentType<{
|
|
|
995
995
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
996
996
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
997
997
|
_trashed?: boolean | undefined;
|
|
998
|
-
trashedAt?: Date | undefined;
|
|
999
998
|
_revision?: number | undefined;
|
|
999
|
+
trashedAt?: Date | undefined;
|
|
1000
1000
|
createdAt?: Date | undefined;
|
|
1001
1001
|
updatedAt?: Date | undefined;
|
|
1002
1002
|
} | undefined, unknown>>;
|
|
@@ -1014,9 +1014,9 @@ export declare const Session: ContentType<{
|
|
|
1014
1014
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1015
1015
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1016
1016
|
_trashed?: boolean | undefined;
|
|
1017
|
+
_revision?: number | undefined;
|
|
1017
1018
|
trashedAt?: Date | undefined;
|
|
1018
1019
|
trashedBy?: string | undefined;
|
|
1019
|
-
_revision?: number | undefined;
|
|
1020
1020
|
createdAt?: Date | undefined;
|
|
1021
1021
|
updatedAt?: Date | undefined;
|
|
1022
1022
|
createdBy?: string | undefined;
|
|
@@ -1233,8 +1233,8 @@ export declare const Session: ContentType<{
|
|
|
1233
1233
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1234
1234
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1235
1235
|
_trashed?: boolean | undefined;
|
|
1236
|
-
trashedAt?: Date | undefined;
|
|
1237
1236
|
_revision?: number | undefined;
|
|
1237
|
+
trashedAt?: Date | undefined;
|
|
1238
1238
|
createdAt?: Date | undefined;
|
|
1239
1239
|
updatedAt?: Date | undefined;
|
|
1240
1240
|
};
|
|
@@ -1255,8 +1255,8 @@ export declare const Session: ContentType<{
|
|
|
1255
1255
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1256
1256
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1257
1257
|
_trashed?: boolean | undefined;
|
|
1258
|
-
trashedAt?: Date | undefined;
|
|
1259
1258
|
_revision?: number | undefined;
|
|
1259
|
+
trashedAt?: Date | undefined;
|
|
1260
1260
|
createdAt?: Date | undefined;
|
|
1261
1261
|
updatedAt?: Date | undefined;
|
|
1262
1262
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -1268,8 +1268,8 @@ export declare const Session: ContentType<{
|
|
|
1268
1268
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1269
1269
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1270
1270
|
_trashed?: boolean | undefined;
|
|
1271
|
-
trashedAt?: Date | undefined;
|
|
1272
1271
|
_revision?: number | undefined;
|
|
1272
|
+
trashedAt?: Date | undefined;
|
|
1273
1273
|
createdAt?: Date | undefined;
|
|
1274
1274
|
updatedAt?: Date | undefined;
|
|
1275
1275
|
} | undefined, unknown>>;
|
|
@@ -1559,8 +1559,8 @@ export declare const Session: ContentType<{
|
|
|
1559
1559
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1560
1560
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1561
1561
|
_trashed?: boolean | undefined;
|
|
1562
|
-
trashedAt?: Date | undefined;
|
|
1563
1562
|
_revision?: number | undefined;
|
|
1563
|
+
trashedAt?: Date | undefined;
|
|
1564
1564
|
createdAt?: Date | undefined;
|
|
1565
1565
|
updatedAt?: Date | undefined;
|
|
1566
1566
|
};
|
|
@@ -1579,8 +1579,8 @@ export declare const Session: ContentType<{
|
|
|
1579
1579
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1580
1580
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1581
1581
|
_trashed?: boolean | undefined;
|
|
1582
|
-
trashedAt?: Date | undefined;
|
|
1583
1582
|
_revision?: number | undefined;
|
|
1583
|
+
trashedAt?: Date | undefined;
|
|
1584
1584
|
createdAt?: Date | undefined;
|
|
1585
1585
|
updatedAt?: Date | undefined;
|
|
1586
1586
|
};
|
|
@@ -1604,8 +1604,8 @@ export declare const Session: ContentType<{
|
|
|
1604
1604
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1605
1605
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1606
1606
|
_trashed?: boolean | undefined;
|
|
1607
|
-
trashedAt?: Date | undefined;
|
|
1608
1607
|
_revision?: number | undefined;
|
|
1608
|
+
trashedAt?: Date | undefined;
|
|
1609
1609
|
createdAt?: Date | undefined;
|
|
1610
1610
|
updatedAt?: Date | undefined;
|
|
1611
1611
|
};
|
|
@@ -1624,8 +1624,8 @@ export declare const Session: ContentType<{
|
|
|
1624
1624
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1625
1625
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1626
1626
|
_trashed?: boolean | undefined;
|
|
1627
|
-
trashedAt?: Date | undefined;
|
|
1628
1627
|
_revision?: number | undefined;
|
|
1628
|
+
trashedAt?: Date | undefined;
|
|
1629
1629
|
createdAt?: Date | undefined;
|
|
1630
1630
|
updatedAt?: Date | undefined;
|
|
1631
1631
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -1640,8 +1640,8 @@ export declare const Session: ContentType<{
|
|
|
1640
1640
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1641
1641
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1642
1642
|
_trashed?: boolean | undefined;
|
|
1643
|
-
trashedAt?: Date | undefined;
|
|
1644
1643
|
_revision?: number | undefined;
|
|
1644
|
+
trashedAt?: Date | undefined;
|
|
1645
1645
|
createdAt?: Date | undefined;
|
|
1646
1646
|
updatedAt?: Date | undefined;
|
|
1647
1647
|
};
|
|
@@ -1660,8 +1660,8 @@ export declare const Session: ContentType<{
|
|
|
1660
1660
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1661
1661
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1662
1662
|
_trashed?: boolean | undefined;
|
|
1663
|
-
trashedAt?: Date | undefined;
|
|
1664
1663
|
_revision?: number | undefined;
|
|
1664
|
+
trashedAt?: Date | undefined;
|
|
1665
1665
|
createdAt?: Date | undefined;
|
|
1666
1666
|
updatedAt?: Date | undefined;
|
|
1667
1667
|
} | undefined, unknown>>;
|
|
@@ -2300,8 +2300,8 @@ export declare const Session: ContentType<{
|
|
|
2300
2300
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2301
2301
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2302
2302
|
_trashed?: boolean | undefined;
|
|
2303
|
-
trashedAt?: Date | undefined;
|
|
2304
2303
|
_revision?: number | undefined;
|
|
2304
|
+
trashedAt?: Date | undefined;
|
|
2305
2305
|
createdAt?: Date | undefined;
|
|
2306
2306
|
updatedAt?: Date | undefined;
|
|
2307
2307
|
};
|
|
@@ -2322,8 +2322,8 @@ export declare const Session: ContentType<{
|
|
|
2322
2322
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2323
2323
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2324
2324
|
_trashed?: boolean | undefined;
|
|
2325
|
-
trashedAt?: Date | undefined;
|
|
2326
2325
|
_revision?: number | undefined;
|
|
2326
|
+
trashedAt?: Date | undefined;
|
|
2327
2327
|
createdAt?: Date | undefined;
|
|
2328
2328
|
updatedAt?: Date | undefined;
|
|
2329
2329
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -2335,8 +2335,8 @@ export declare const Session: ContentType<{
|
|
|
2335
2335
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2336
2336
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2337
2337
|
_trashed?: boolean | undefined;
|
|
2338
|
-
trashedAt?: Date | undefined;
|
|
2339
2338
|
_revision?: number | undefined;
|
|
2339
|
+
trashedAt?: Date | undefined;
|
|
2340
2340
|
createdAt?: Date | undefined;
|
|
2341
2341
|
updatedAt?: Date | undefined;
|
|
2342
2342
|
} | undefined, unknown>>;
|
|
@@ -2354,9 +2354,9 @@ export declare const Session: ContentType<{
|
|
|
2354
2354
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2355
2355
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2356
2356
|
_trashed?: boolean | undefined;
|
|
2357
|
+
_revision?: number | undefined;
|
|
2357
2358
|
trashedAt?: Date | undefined;
|
|
2358
2359
|
trashedBy?: string | undefined;
|
|
2359
|
-
_revision?: number | undefined;
|
|
2360
2360
|
createdAt?: Date | undefined;
|
|
2361
2361
|
updatedAt?: Date | undefined;
|
|
2362
2362
|
createdBy?: string | undefined;
|
|
@@ -2573,8 +2573,8 @@ export declare const Session: ContentType<{
|
|
|
2573
2573
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2574
2574
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2575
2575
|
_trashed?: boolean | undefined;
|
|
2576
|
-
trashedAt?: Date | undefined;
|
|
2577
2576
|
_revision?: number | undefined;
|
|
2577
|
+
trashedAt?: Date | undefined;
|
|
2578
2578
|
createdAt?: Date | undefined;
|
|
2579
2579
|
updatedAt?: Date | undefined;
|
|
2580
2580
|
};
|
|
@@ -2595,8 +2595,8 @@ export declare const Session: ContentType<{
|
|
|
2595
2595
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2596
2596
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2597
2597
|
_trashed?: boolean | undefined;
|
|
2598
|
-
trashedAt?: Date | undefined;
|
|
2599
2598
|
_revision?: number | undefined;
|
|
2599
|
+
trashedAt?: Date | undefined;
|
|
2600
2600
|
createdAt?: Date | undefined;
|
|
2601
2601
|
updatedAt?: Date | undefined;
|
|
2602
2602
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -2608,8 +2608,8 @@ export declare const Session: ContentType<{
|
|
|
2608
2608
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2609
2609
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2610
2610
|
_trashed?: boolean | undefined;
|
|
2611
|
-
trashedAt?: Date | undefined;
|
|
2612
2611
|
_revision?: number | undefined;
|
|
2612
|
+
trashedAt?: Date | undefined;
|
|
2613
2613
|
createdAt?: Date | undefined;
|
|
2614
2614
|
updatedAt?: Date | undefined;
|
|
2615
2615
|
} | undefined, unknown>>;
|
|
@@ -18,8 +18,8 @@ export declare const UserMfa: ContentType<{
|
|
|
18
18
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
19
19
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
20
20
|
_trashed?: boolean | undefined;
|
|
21
|
-
trashedAt?: Date | undefined;
|
|
22
21
|
_revision?: number | undefined;
|
|
22
|
+
trashedAt?: Date | undefined;
|
|
23
23
|
createdAt?: Date | undefined;
|
|
24
24
|
updatedAt?: Date | undefined;
|
|
25
25
|
};
|
|
@@ -38,8 +38,8 @@ export declare const UserMfa: ContentType<{
|
|
|
38
38
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
39
39
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
40
40
|
_trashed?: boolean | undefined;
|
|
41
|
-
trashedAt?: Date | undefined;
|
|
42
41
|
_revision?: number | undefined;
|
|
42
|
+
trashedAt?: Date | undefined;
|
|
43
43
|
createdAt?: Date | undefined;
|
|
44
44
|
updatedAt?: Date | undefined;
|
|
45
45
|
};
|
|
@@ -63,8 +63,8 @@ export declare const UserMfa: ContentType<{
|
|
|
63
63
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
64
64
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
65
65
|
_trashed?: boolean | undefined;
|
|
66
|
-
trashedAt?: Date | undefined;
|
|
67
66
|
_revision?: number | undefined;
|
|
67
|
+
trashedAt?: Date | undefined;
|
|
68
68
|
createdAt?: Date | undefined;
|
|
69
69
|
updatedAt?: Date | undefined;
|
|
70
70
|
};
|
|
@@ -83,8 +83,8 @@ export declare const UserMfa: ContentType<{
|
|
|
83
83
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
84
84
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
85
85
|
_trashed?: boolean | undefined;
|
|
86
|
-
trashedAt?: Date | undefined;
|
|
87
86
|
_revision?: number | undefined;
|
|
87
|
+
trashedAt?: Date | undefined;
|
|
88
88
|
createdAt?: Date | undefined;
|
|
89
89
|
updatedAt?: Date | undefined;
|
|
90
90
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -99,8 +99,8 @@ export declare const UserMfa: ContentType<{
|
|
|
99
99
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
100
100
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
101
101
|
_trashed?: boolean | undefined;
|
|
102
|
-
trashedAt?: Date | undefined;
|
|
103
102
|
_revision?: number | undefined;
|
|
103
|
+
trashedAt?: Date | undefined;
|
|
104
104
|
createdAt?: Date | undefined;
|
|
105
105
|
updatedAt?: Date | undefined;
|
|
106
106
|
};
|
|
@@ -119,8 +119,8 @@ export declare const UserMfa: ContentType<{
|
|
|
119
119
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
120
120
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
121
121
|
_trashed?: boolean | undefined;
|
|
122
|
-
trashedAt?: Date | undefined;
|
|
123
122
|
_revision?: number | undefined;
|
|
123
|
+
trashedAt?: Date | undefined;
|
|
124
124
|
createdAt?: Date | undefined;
|
|
125
125
|
updatedAt?: Date | undefined;
|
|
126
126
|
} | undefined, unknown>>;
|
|
@@ -142,9 +142,9 @@ export declare const UserMfa: ContentType<{
|
|
|
142
142
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
143
143
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
144
144
|
_trashed?: boolean | undefined;
|
|
145
|
+
_revision?: number | undefined;
|
|
145
146
|
trashedAt?: Date | undefined;
|
|
146
147
|
trashedBy?: string | undefined;
|
|
147
|
-
_revision?: number | undefined;
|
|
148
148
|
createdAt?: Date | undefined;
|
|
149
149
|
updatedAt?: Date | undefined;
|
|
150
150
|
createdBy?: string | undefined;
|
|
@@ -165,9 +165,9 @@ export declare const UserMfa: ContentType<{
|
|
|
165
165
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
166
166
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
167
167
|
_trashed?: boolean | undefined;
|
|
168
|
+
_revision?: number | undefined;
|
|
168
169
|
trashedAt?: Date | undefined;
|
|
169
170
|
trashedBy?: string | undefined;
|
|
170
|
-
_revision?: number | undefined;
|
|
171
171
|
createdAt?: Date | undefined;
|
|
172
172
|
updatedAt?: Date | undefined;
|
|
173
173
|
createdBy?: string | undefined;
|
|
@@ -767,8 +767,8 @@ export declare const UserMfa: ContentType<{
|
|
|
767
767
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
768
768
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
769
769
|
_trashed?: boolean | undefined;
|
|
770
|
-
trashedAt?: Date | undefined;
|
|
771
770
|
_revision?: number | undefined;
|
|
771
|
+
trashedAt?: Date | undefined;
|
|
772
772
|
createdAt?: Date | undefined;
|
|
773
773
|
updatedAt?: Date | undefined;
|
|
774
774
|
};
|
|
@@ -789,8 +789,8 @@ export declare const UserMfa: ContentType<{
|
|
|
789
789
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
790
790
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
791
791
|
_trashed?: boolean | undefined;
|
|
792
|
-
trashedAt?: Date | undefined;
|
|
793
792
|
_revision?: number | undefined;
|
|
793
|
+
trashedAt?: Date | undefined;
|
|
794
794
|
createdAt?: Date | undefined;
|
|
795
795
|
updatedAt?: Date | undefined;
|
|
796
796
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -802,8 +802,8 @@ export declare const UserMfa: ContentType<{
|
|
|
802
802
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
803
803
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
804
804
|
_trashed?: boolean | undefined;
|
|
805
|
-
trashedAt?: Date | undefined;
|
|
806
805
|
_revision?: number | undefined;
|
|
806
|
+
trashedAt?: Date | undefined;
|
|
807
807
|
createdAt?: Date | undefined;
|
|
808
808
|
updatedAt?: Date | undefined;
|
|
809
809
|
} | undefined, unknown>>;
|
|
@@ -821,9 +821,9 @@ export declare const UserMfa: ContentType<{
|
|
|
821
821
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
822
822
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
823
823
|
_trashed?: boolean | undefined;
|
|
824
|
+
_revision?: number | undefined;
|
|
824
825
|
trashedAt?: Date | undefined;
|
|
825
826
|
trashedBy?: string | undefined;
|
|
826
|
-
_revision?: number | undefined;
|
|
827
827
|
createdAt?: Date | undefined;
|
|
828
828
|
updatedAt?: Date | undefined;
|
|
829
829
|
createdBy?: string | undefined;
|
|
@@ -1040,8 +1040,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1040
1040
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1041
1041
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1042
1042
|
_trashed?: boolean | undefined;
|
|
1043
|
-
trashedAt?: Date | undefined;
|
|
1044
1043
|
_revision?: number | undefined;
|
|
1044
|
+
trashedAt?: Date | undefined;
|
|
1045
1045
|
createdAt?: Date | undefined;
|
|
1046
1046
|
updatedAt?: Date | undefined;
|
|
1047
1047
|
};
|
|
@@ -1062,8 +1062,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1062
1062
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1063
1063
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1064
1064
|
_trashed?: boolean | undefined;
|
|
1065
|
-
trashedAt?: Date | undefined;
|
|
1066
1065
|
_revision?: number | undefined;
|
|
1066
|
+
trashedAt?: Date | undefined;
|
|
1067
1067
|
createdAt?: Date | undefined;
|
|
1068
1068
|
updatedAt?: Date | undefined;
|
|
1069
1069
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -1075,8 +1075,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1075
1075
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1076
1076
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1077
1077
|
_trashed?: boolean | undefined;
|
|
1078
|
-
trashedAt?: Date | undefined;
|
|
1079
1078
|
_revision?: number | undefined;
|
|
1079
|
+
trashedAt?: Date | undefined;
|
|
1080
1080
|
createdAt?: Date | undefined;
|
|
1081
1081
|
updatedAt?: Date | undefined;
|
|
1082
1082
|
} | undefined, unknown>>;
|
|
@@ -1366,8 +1366,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1366
1366
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1367
1367
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1368
1368
|
_trashed?: boolean | undefined;
|
|
1369
|
-
trashedAt?: Date | undefined;
|
|
1370
1369
|
_revision?: number | undefined;
|
|
1370
|
+
trashedAt?: Date | undefined;
|
|
1371
1371
|
createdAt?: Date | undefined;
|
|
1372
1372
|
updatedAt?: Date | undefined;
|
|
1373
1373
|
};
|
|
@@ -1386,8 +1386,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1386
1386
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1387
1387
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1388
1388
|
_trashed?: boolean | undefined;
|
|
1389
|
-
trashedAt?: Date | undefined;
|
|
1390
1389
|
_revision?: number | undefined;
|
|
1390
|
+
trashedAt?: Date | undefined;
|
|
1391
1391
|
createdAt?: Date | undefined;
|
|
1392
1392
|
updatedAt?: Date | undefined;
|
|
1393
1393
|
};
|
|
@@ -1411,8 +1411,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1411
1411
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1412
1412
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1413
1413
|
_trashed?: boolean | undefined;
|
|
1414
|
-
trashedAt?: Date | undefined;
|
|
1415
1414
|
_revision?: number | undefined;
|
|
1415
|
+
trashedAt?: Date | undefined;
|
|
1416
1416
|
createdAt?: Date | undefined;
|
|
1417
1417
|
updatedAt?: Date | undefined;
|
|
1418
1418
|
};
|
|
@@ -1431,8 +1431,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1431
1431
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1432
1432
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1433
1433
|
_trashed?: boolean | undefined;
|
|
1434
|
-
trashedAt?: Date | undefined;
|
|
1435
1434
|
_revision?: number | undefined;
|
|
1435
|
+
trashedAt?: Date | undefined;
|
|
1436
1436
|
createdAt?: Date | undefined;
|
|
1437
1437
|
updatedAt?: Date | undefined;
|
|
1438
1438
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -1447,8 +1447,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1447
1447
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1448
1448
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1449
1449
|
_trashed?: boolean | undefined;
|
|
1450
|
-
trashedAt?: Date | undefined;
|
|
1451
1450
|
_revision?: number | undefined;
|
|
1451
|
+
trashedAt?: Date | undefined;
|
|
1452
1452
|
createdAt?: Date | undefined;
|
|
1453
1453
|
updatedAt?: Date | undefined;
|
|
1454
1454
|
};
|
|
@@ -1467,8 +1467,8 @@ export declare const UserMfa: ContentType<{
|
|
|
1467
1467
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
1468
1468
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
1469
1469
|
_trashed?: boolean | undefined;
|
|
1470
|
-
trashedAt?: Date | undefined;
|
|
1471
1470
|
_revision?: number | undefined;
|
|
1471
|
+
trashedAt?: Date | undefined;
|
|
1472
1472
|
createdAt?: Date | undefined;
|
|
1473
1473
|
updatedAt?: Date | undefined;
|
|
1474
1474
|
} | undefined, unknown>>;
|
|
@@ -2107,8 +2107,8 @@ export declare const UserMfa: ContentType<{
|
|
|
2107
2107
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2108
2108
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2109
2109
|
_trashed?: boolean | undefined;
|
|
2110
|
-
trashedAt?: Date | undefined;
|
|
2111
2110
|
_revision?: number | undefined;
|
|
2111
|
+
trashedAt?: Date | undefined;
|
|
2112
2112
|
createdAt?: Date | undefined;
|
|
2113
2113
|
updatedAt?: Date | undefined;
|
|
2114
2114
|
};
|
|
@@ -2129,8 +2129,8 @@ export declare const UserMfa: ContentType<{
|
|
|
2129
2129
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2130
2130
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2131
2131
|
_trashed?: boolean | undefined;
|
|
2132
|
-
trashedAt?: Date | undefined;
|
|
2133
2132
|
_revision?: number | undefined;
|
|
2133
|
+
trashedAt?: Date | undefined;
|
|
2134
2134
|
createdAt?: Date | undefined;
|
|
2135
2135
|
updatedAt?: Date | undefined;
|
|
2136
2136
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -2142,8 +2142,8 @@ export declare const UserMfa: ContentType<{
|
|
|
2142
2142
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2143
2143
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2144
2144
|
_trashed?: boolean | undefined;
|
|
2145
|
-
trashedAt?: Date | undefined;
|
|
2146
2145
|
_revision?: number | undefined;
|
|
2146
|
+
trashedAt?: Date | undefined;
|
|
2147
2147
|
createdAt?: Date | undefined;
|
|
2148
2148
|
updatedAt?: Date | undefined;
|
|
2149
2149
|
} | undefined, unknown>>;
|
|
@@ -2161,9 +2161,9 @@ export declare const UserMfa: ContentType<{
|
|
|
2161
2161
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2162
2162
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2163
2163
|
_trashed?: boolean | undefined;
|
|
2164
|
+
_revision?: number | undefined;
|
|
2164
2165
|
trashedAt?: Date | undefined;
|
|
2165
2166
|
trashedBy?: string | undefined;
|
|
2166
|
-
_revision?: number | undefined;
|
|
2167
2167
|
createdAt?: Date | undefined;
|
|
2168
2168
|
updatedAt?: Date | undefined;
|
|
2169
2169
|
createdBy?: string | undefined;
|
|
@@ -2380,8 +2380,8 @@ export declare const UserMfa: ContentType<{
|
|
|
2380
2380
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2381
2381
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2382
2382
|
_trashed?: boolean | undefined;
|
|
2383
|
-
trashedAt?: Date | undefined;
|
|
2384
2383
|
_revision?: number | undefined;
|
|
2384
|
+
trashedAt?: Date | undefined;
|
|
2385
2385
|
createdAt?: Date | undefined;
|
|
2386
2386
|
updatedAt?: Date | undefined;
|
|
2387
2387
|
};
|
|
@@ -2402,8 +2402,8 @@ export declare const UserMfa: ContentType<{
|
|
|
2402
2402
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2403
2403
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2404
2404
|
_trashed?: boolean | undefined;
|
|
2405
|
-
trashedAt?: Date | undefined;
|
|
2406
2405
|
_revision?: number | undefined;
|
|
2406
|
+
trashedAt?: Date | undefined;
|
|
2407
2407
|
createdAt?: Date | undefined;
|
|
2408
2408
|
updatedAt?: Date | undefined;
|
|
2409
2409
|
} | undefined, unknown, import("zod/v4/core").$ZodTypeInternals<{
|
|
@@ -2415,8 +2415,8 @@ export declare const UserMfa: ContentType<{
|
|
|
2415
2415
|
_visibility?: import("..").DocumentVisibility | undefined;
|
|
2416
2416
|
_visibilityBeforeTrash?: Exclude<import("..").DocumentVisibility, "trash"> | undefined;
|
|
2417
2417
|
_trashed?: boolean | undefined;
|
|
2418
|
-
trashedAt?: Date | undefined;
|
|
2419
2418
|
_revision?: number | undefined;
|
|
2419
|
+
trashedAt?: Date | undefined;
|
|
2420
2420
|
createdAt?: Date | undefined;
|
|
2421
2421
|
updatedAt?: Date | undefined;
|
|
2422
2422
|
} | undefined, unknown>>;
|