@supernova-studio/model 1.4.12 → 1.4.13
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 +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -34807,6 +34807,7 @@ declare const Session: z.ZodObject<{
|
|
|
34807
34807
|
id: z.ZodString;
|
|
34808
34808
|
expiresAt: z.ZodDate;
|
|
34809
34809
|
userId: z.ZodNullable<z.ZodString>;
|
|
34810
|
+
anonymousId: z.ZodNullable<z.ZodString>;
|
|
34810
34811
|
data: z.ZodObject<{
|
|
34811
34812
|
returnToUrl: z.ZodOptional<z.ZodString>;
|
|
34812
34813
|
npmProxyToken: z.ZodOptional<z.ZodObject<{
|
|
@@ -34843,6 +34844,7 @@ declare const Session: z.ZodObject<{
|
|
|
34843
34844
|
id: string;
|
|
34844
34845
|
expiresAt: Date;
|
|
34845
34846
|
userId: string | null;
|
|
34847
|
+
anonymousId: string | null;
|
|
34846
34848
|
}, {
|
|
34847
34849
|
data: {
|
|
34848
34850
|
returnToUrl?: string | undefined;
|
|
@@ -34854,6 +34856,7 @@ declare const Session: z.ZodObject<{
|
|
|
34854
34856
|
id: string;
|
|
34855
34857
|
expiresAt: Date;
|
|
34856
34858
|
userId: string | null;
|
|
34859
|
+
anonymousId: string | null;
|
|
34857
34860
|
}>;
|
|
34858
34861
|
type Session = z.infer<typeof Session>;
|
|
34859
34862
|
declare const AuthTokens: z.ZodObject<{
|
|
@@ -34872,6 +34875,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34872
34875
|
id: z.ZodString;
|
|
34873
34876
|
expiresAt: z.ZodDate;
|
|
34874
34877
|
userId: z.ZodNullable<z.ZodString>;
|
|
34878
|
+
anonymousId: z.ZodNullable<z.ZodString>;
|
|
34875
34879
|
data: z.ZodObject<{
|
|
34876
34880
|
returnToUrl: z.ZodOptional<z.ZodString>;
|
|
34877
34881
|
npmProxyToken: z.ZodOptional<z.ZodObject<{
|
|
@@ -34908,6 +34912,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34908
34912
|
id: string;
|
|
34909
34913
|
expiresAt: Date;
|
|
34910
34914
|
userId: string | null;
|
|
34915
|
+
anonymousId: string | null;
|
|
34911
34916
|
}, {
|
|
34912
34917
|
data: {
|
|
34913
34918
|
returnToUrl?: string | undefined;
|
|
@@ -34919,6 +34924,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34919
34924
|
id: string;
|
|
34920
34925
|
expiresAt: Date;
|
|
34921
34926
|
userId: string | null;
|
|
34927
|
+
anonymousId: string | null;
|
|
34922
34928
|
}>;
|
|
34923
34929
|
user: z.ZodNullable<z.ZodObject<{
|
|
34924
34930
|
id: z.ZodString;
|
|
@@ -35425,6 +35431,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
35425
35431
|
id: string;
|
|
35426
35432
|
expiresAt: Date;
|
|
35427
35433
|
userId: string | null;
|
|
35434
|
+
anonymousId: string | null;
|
|
35428
35435
|
};
|
|
35429
35436
|
user: {
|
|
35430
35437
|
email: string;
|
|
@@ -35519,6 +35526,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
35519
35526
|
id: string;
|
|
35520
35527
|
expiresAt: Date;
|
|
35521
35528
|
userId: string | null;
|
|
35529
|
+
anonymousId: string | null;
|
|
35522
35530
|
};
|
|
35523
35531
|
user: {
|
|
35524
35532
|
email: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -34807,6 +34807,7 @@ declare const Session: z.ZodObject<{
|
|
|
34807
34807
|
id: z.ZodString;
|
|
34808
34808
|
expiresAt: z.ZodDate;
|
|
34809
34809
|
userId: z.ZodNullable<z.ZodString>;
|
|
34810
|
+
anonymousId: z.ZodNullable<z.ZodString>;
|
|
34810
34811
|
data: z.ZodObject<{
|
|
34811
34812
|
returnToUrl: z.ZodOptional<z.ZodString>;
|
|
34812
34813
|
npmProxyToken: z.ZodOptional<z.ZodObject<{
|
|
@@ -34843,6 +34844,7 @@ declare const Session: z.ZodObject<{
|
|
|
34843
34844
|
id: string;
|
|
34844
34845
|
expiresAt: Date;
|
|
34845
34846
|
userId: string | null;
|
|
34847
|
+
anonymousId: string | null;
|
|
34846
34848
|
}, {
|
|
34847
34849
|
data: {
|
|
34848
34850
|
returnToUrl?: string | undefined;
|
|
@@ -34854,6 +34856,7 @@ declare const Session: z.ZodObject<{
|
|
|
34854
34856
|
id: string;
|
|
34855
34857
|
expiresAt: Date;
|
|
34856
34858
|
userId: string | null;
|
|
34859
|
+
anonymousId: string | null;
|
|
34857
34860
|
}>;
|
|
34858
34861
|
type Session = z.infer<typeof Session>;
|
|
34859
34862
|
declare const AuthTokens: z.ZodObject<{
|
|
@@ -34872,6 +34875,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34872
34875
|
id: z.ZodString;
|
|
34873
34876
|
expiresAt: z.ZodDate;
|
|
34874
34877
|
userId: z.ZodNullable<z.ZodString>;
|
|
34878
|
+
anonymousId: z.ZodNullable<z.ZodString>;
|
|
34875
34879
|
data: z.ZodObject<{
|
|
34876
34880
|
returnToUrl: z.ZodOptional<z.ZodString>;
|
|
34877
34881
|
npmProxyToken: z.ZodOptional<z.ZodObject<{
|
|
@@ -34908,6 +34912,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34908
34912
|
id: string;
|
|
34909
34913
|
expiresAt: Date;
|
|
34910
34914
|
userId: string | null;
|
|
34915
|
+
anonymousId: string | null;
|
|
34911
34916
|
}, {
|
|
34912
34917
|
data: {
|
|
34913
34918
|
returnToUrl?: string | undefined;
|
|
@@ -34919,6 +34924,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
34919
34924
|
id: string;
|
|
34920
34925
|
expiresAt: Date;
|
|
34921
34926
|
userId: string | null;
|
|
34927
|
+
anonymousId: string | null;
|
|
34922
34928
|
}>;
|
|
34923
34929
|
user: z.ZodNullable<z.ZodObject<{
|
|
34924
34930
|
id: z.ZodString;
|
|
@@ -35425,6 +35431,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
35425
35431
|
id: string;
|
|
35426
35432
|
expiresAt: Date;
|
|
35427
35433
|
userId: string | null;
|
|
35434
|
+
anonymousId: string | null;
|
|
35428
35435
|
};
|
|
35429
35436
|
user: {
|
|
35430
35437
|
email: string;
|
|
@@ -35519,6 +35526,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
35519
35526
|
id: string;
|
|
35520
35527
|
expiresAt: Date;
|
|
35521
35528
|
userId: string | null;
|
|
35529
|
+
anonymousId: string | null;
|
|
35522
35530
|
};
|
|
35523
35531
|
user: {
|
|
35524
35532
|
email: string;
|
package/dist/index.js
CHANGED
|
@@ -5383,6 +5383,7 @@ var Session = _zod.z.object({
|
|
|
5383
5383
|
id: _zod.z.string(),
|
|
5384
5384
|
expiresAt: _zod.z.coerce.date(),
|
|
5385
5385
|
userId: _zod.z.string().nullable(),
|
|
5386
|
+
anonymousId: _zod.z.string().nullable(),
|
|
5386
5387
|
data: SessionData
|
|
5387
5388
|
});
|
|
5388
5389
|
var AuthTokens = _zod.z.object({
|