@supernova-studio/model 1.4.17 → 1.4.19
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/index.d.mts +4 -1776
- package/dist/index.d.ts +4 -1776
- package/dist/index.js +2 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4681,11 +4681,8 @@ var UserSource = z139.enum(["SignUp", "Invite", "SSO"]);
|
|
|
4681
4681
|
var User = z139.object({
|
|
4682
4682
|
id: z139.string(),
|
|
4683
4683
|
email: z139.string(),
|
|
4684
|
-
emailVerified: z139.boolean(),
|
|
4685
4684
|
createdAt: z139.coerce.date(),
|
|
4686
|
-
trialExpiresAt: z139.coerce.date().optional(),
|
|
4687
4685
|
profile: UserProfile,
|
|
4688
|
-
linkedIntegrations: UserLinkedIntegrations.optional(),
|
|
4689
4686
|
loggedOutAt: z139.coerce.date().optional(),
|
|
4690
4687
|
isProtected: z139.boolean(),
|
|
4691
4688
|
source: UserSource.optional()
|
|
@@ -4921,8 +4918,8 @@ var PublishedDocPageVisitsEntry = z149.object({
|
|
|
4921
4918
|
locale: z149.string().optional(),
|
|
4922
4919
|
timestamp: z149.coerce.date(),
|
|
4923
4920
|
visits: z149.number(),
|
|
4924
|
-
userId: z149.string()
|
|
4925
|
-
anonymousId: z149.string()
|
|
4921
|
+
userId: nullishToOptional(z149.string()),
|
|
4922
|
+
anonymousId: nullishToOptional(z149.string())
|
|
4926
4923
|
});
|
|
4927
4924
|
|
|
4928
4925
|
// src/dsm/published-doc-page.ts
|