@supernova-studio/model 1.53.0 → 1.55.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/index.d.mts +72 -46
- package/dist/index.d.ts +72 -46
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -328,12 +328,13 @@ declare const PluginOAuthRequestSchema: z$1.ZodObject<{
|
|
|
328
328
|
type PluginOAuthRequest = z$1.infer<typeof PluginOAuthRequestSchema>;
|
|
329
329
|
|
|
330
330
|
declare const AuthV2Request: z$1.ZodObject<{
|
|
331
|
-
code: z$1.ZodOptional<z$1.ZodString>;
|
|
332
331
|
state: z$1.ZodString;
|
|
333
332
|
codeChallenge: z$1.ZodString;
|
|
334
333
|
codeChallengeMethod: z$1.ZodString;
|
|
335
334
|
redirectUri: z$1.ZodString;
|
|
336
335
|
sessionId: z$1.ZodString;
|
|
336
|
+
code: z$1.ZodOptional<z$1.ZodString>;
|
|
337
|
+
codeVerifier: z$1.ZodOptional<z$1.ZodString>;
|
|
337
338
|
}, "strip", z$1.ZodTypeAny, {
|
|
338
339
|
state: string;
|
|
339
340
|
codeChallenge: string;
|
|
@@ -341,6 +342,7 @@ declare const AuthV2Request: z$1.ZodObject<{
|
|
|
341
342
|
redirectUri: string;
|
|
342
343
|
sessionId: string;
|
|
343
344
|
code?: string | undefined;
|
|
345
|
+
codeVerifier?: string | undefined;
|
|
344
346
|
}, {
|
|
345
347
|
state: string;
|
|
346
348
|
codeChallenge: string;
|
|
@@ -348,6 +350,7 @@ declare const AuthV2Request: z$1.ZodObject<{
|
|
|
348
350
|
redirectUri: string;
|
|
349
351
|
sessionId: string;
|
|
350
352
|
code?: string | undefined;
|
|
353
|
+
codeVerifier?: string | undefined;
|
|
351
354
|
}>;
|
|
352
355
|
type AuthV2Request = z$1.infer<typeof AuthV2Request>;
|
|
353
356
|
|
|
@@ -953,6 +956,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
953
956
|
errorReason: string;
|
|
954
957
|
max?: number | undefined;
|
|
955
958
|
}>;
|
|
959
|
+
documentationPages: z$1.ZodObject<{
|
|
960
|
+
max: z$1.ZodOptional<z$1.ZodNumber>;
|
|
961
|
+
errorMessage: z$1.ZodString;
|
|
962
|
+
errorReason: z$1.ZodString;
|
|
963
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
964
|
+
errorMessage: string;
|
|
965
|
+
errorReason: string;
|
|
966
|
+
max?: number | undefined;
|
|
967
|
+
}, {
|
|
968
|
+
errorMessage: string;
|
|
969
|
+
errorReason: string;
|
|
970
|
+
max?: number | undefined;
|
|
971
|
+
}>;
|
|
956
972
|
sandboxTemplates: z$1.ZodObject<{
|
|
957
973
|
enabled: z$1.ZodBoolean;
|
|
958
974
|
errorMessage: z$1.ZodString;
|
|
@@ -1124,6 +1140,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
1124
1140
|
errorReason: string;
|
|
1125
1141
|
max?: number | undefined;
|
|
1126
1142
|
};
|
|
1143
|
+
documentationPages: {
|
|
1144
|
+
errorMessage: string;
|
|
1145
|
+
errorReason: string;
|
|
1146
|
+
max?: number | undefined;
|
|
1147
|
+
};
|
|
1127
1148
|
sandboxTemplates: {
|
|
1128
1149
|
errorMessage: string;
|
|
1129
1150
|
errorReason: string;
|
|
@@ -1287,6 +1308,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
|
|
|
1287
1308
|
errorReason: string;
|
|
1288
1309
|
max?: number | undefined;
|
|
1289
1310
|
};
|
|
1311
|
+
documentationPages: {
|
|
1312
|
+
errorMessage: string;
|
|
1313
|
+
errorReason: string;
|
|
1314
|
+
max?: number | undefined;
|
|
1315
|
+
};
|
|
1290
1316
|
sandboxTemplates: {
|
|
1291
1317
|
errorMessage: string;
|
|
1292
1318
|
errorReason: string;
|
|
@@ -11926,7 +11952,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
11926
11952
|
}>;
|
|
11927
11953
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
11928
11954
|
isProtected: z$1.ZodBoolean;
|
|
11929
|
-
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
11955
|
+
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>>;
|
|
11930
11956
|
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
11931
11957
|
marketingEmails: z$1.ZodBoolean;
|
|
11932
11958
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -11978,7 +12004,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
11978
12004
|
};
|
|
11979
12005
|
createdAt: Date;
|
|
11980
12006
|
isProtected: boolean;
|
|
11981
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
12007
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
11982
12008
|
loggedOutAt?: Date | undefined;
|
|
11983
12009
|
emailSettings?: {
|
|
11984
12010
|
marketingEmails: boolean;
|
|
@@ -12027,7 +12053,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
12027
12053
|
};
|
|
12028
12054
|
createdAt: Date;
|
|
12029
12055
|
isProtected: boolean;
|
|
12030
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
12056
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
12031
12057
|
loggedOutAt?: Date | undefined;
|
|
12032
12058
|
emailSettings?: {
|
|
12033
12059
|
marketingEmails: boolean;
|
|
@@ -22205,7 +22231,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
22205
22231
|
};
|
|
22206
22232
|
createdAt: Date;
|
|
22207
22233
|
isProtected: boolean;
|
|
22208
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
22234
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
22209
22235
|
loggedOutAt?: Date | undefined;
|
|
22210
22236
|
emailSettings?: {
|
|
22211
22237
|
marketingEmails: boolean;
|
|
@@ -23151,7 +23177,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
23151
23177
|
};
|
|
23152
23178
|
createdAt: Date;
|
|
23153
23179
|
isProtected: boolean;
|
|
23154
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
23180
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
23155
23181
|
loggedOutAt?: Date | undefined;
|
|
23156
23182
|
emailSettings?: {
|
|
23157
23183
|
marketingEmails: boolean;
|
|
@@ -32768,7 +32794,7 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32768
32794
|
}>;
|
|
32769
32795
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
32770
32796
|
isProtected: z$1.ZodBoolean;
|
|
32771
|
-
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
32797
|
+
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>>;
|
|
32772
32798
|
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
32773
32799
|
marketingEmails: z$1.ZodBoolean;
|
|
32774
32800
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -32820,7 +32846,7 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32820
32846
|
};
|
|
32821
32847
|
createdAt: Date;
|
|
32822
32848
|
isProtected: boolean;
|
|
32823
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32849
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
32824
32850
|
loggedOutAt?: Date | undefined;
|
|
32825
32851
|
emailSettings?: {
|
|
32826
32852
|
marketingEmails: boolean;
|
|
@@ -32869,7 +32895,7 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32869
32895
|
};
|
|
32870
32896
|
createdAt: Date;
|
|
32871
32897
|
isProtected: boolean;
|
|
32872
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32898
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
32873
32899
|
loggedOutAt?: Date | undefined;
|
|
32874
32900
|
emailSettings?: {
|
|
32875
32901
|
marketingEmails: boolean;
|
|
@@ -32933,7 +32959,7 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32933
32959
|
};
|
|
32934
32960
|
createdAt: Date;
|
|
32935
32961
|
isProtected: boolean;
|
|
32936
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32962
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
32937
32963
|
loggedOutAt?: Date | undefined;
|
|
32938
32964
|
emailSettings?: {
|
|
32939
32965
|
marketingEmails: boolean;
|
|
@@ -32997,7 +33023,7 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32997
33023
|
};
|
|
32998
33024
|
createdAt: Date;
|
|
32999
33025
|
isProtected: boolean;
|
|
33000
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
33026
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
33001
33027
|
loggedOutAt?: Date | undefined;
|
|
33002
33028
|
emailSettings?: {
|
|
33003
33029
|
marketingEmails: boolean;
|
|
@@ -145254,7 +145280,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145254
145280
|
}>;
|
|
145255
145281
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
145256
145282
|
isProtected: z$1.ZodBoolean;
|
|
145257
|
-
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
145283
|
+
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>>;
|
|
145258
145284
|
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
145259
145285
|
marketingEmails: z$1.ZodBoolean;
|
|
145260
145286
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -145306,7 +145332,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145306
145332
|
};
|
|
145307
145333
|
createdAt: Date;
|
|
145308
145334
|
isProtected: boolean;
|
|
145309
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145335
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
145310
145336
|
loggedOutAt?: Date | undefined;
|
|
145311
145337
|
emailSettings?: {
|
|
145312
145338
|
marketingEmails: boolean;
|
|
@@ -145355,7 +145381,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145355
145381
|
};
|
|
145356
145382
|
createdAt: Date;
|
|
145357
145383
|
isProtected: boolean;
|
|
145358
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145384
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
145359
145385
|
loggedOutAt?: Date | undefined;
|
|
145360
145386
|
emailSettings?: {
|
|
145361
145387
|
marketingEmails: boolean;
|
|
@@ -145514,7 +145540,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145514
145540
|
};
|
|
145515
145541
|
createdAt: Date;
|
|
145516
145542
|
isProtected: boolean;
|
|
145517
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145543
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
145518
145544
|
loggedOutAt?: Date | undefined;
|
|
145519
145545
|
emailSettings?: {
|
|
145520
145546
|
marketingEmails: boolean;
|
|
@@ -145697,7 +145723,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145697
145723
|
};
|
|
145698
145724
|
createdAt: Date;
|
|
145699
145725
|
isProtected: boolean;
|
|
145700
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145726
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
145701
145727
|
loggedOutAt?: Date | undefined;
|
|
145702
145728
|
emailSettings?: {
|
|
145703
145729
|
marketingEmails: boolean;
|
|
@@ -146574,7 +146600,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146574
146600
|
}>;
|
|
146575
146601
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
146576
146602
|
isProtected: z$1.ZodBoolean;
|
|
146577
|
-
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
146603
|
+
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>>;
|
|
146578
146604
|
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
146579
146605
|
marketingEmails: z$1.ZodBoolean;
|
|
146580
146606
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -146626,7 +146652,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146626
146652
|
};
|
|
146627
146653
|
createdAt: Date;
|
|
146628
146654
|
isProtected: boolean;
|
|
146629
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146655
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
146630
146656
|
loggedOutAt?: Date | undefined;
|
|
146631
146657
|
emailSettings?: {
|
|
146632
146658
|
marketingEmails: boolean;
|
|
@@ -146675,7 +146701,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146675
146701
|
};
|
|
146676
146702
|
createdAt: Date;
|
|
146677
146703
|
isProtected: boolean;
|
|
146678
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146704
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
146679
146705
|
loggedOutAt?: Date | undefined;
|
|
146680
146706
|
emailSettings?: {
|
|
146681
146707
|
marketingEmails: boolean;
|
|
@@ -146834,7 +146860,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146834
146860
|
};
|
|
146835
146861
|
createdAt: Date;
|
|
146836
146862
|
isProtected: boolean;
|
|
146837
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146863
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
146838
146864
|
loggedOutAt?: Date | undefined;
|
|
146839
146865
|
emailSettings?: {
|
|
146840
146866
|
marketingEmails: boolean;
|
|
@@ -146993,7 +147019,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146993
147019
|
};
|
|
146994
147020
|
createdAt: Date;
|
|
146995
147021
|
isProtected: boolean;
|
|
146996
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
147022
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
146997
147023
|
loggedOutAt?: Date | undefined;
|
|
146998
147024
|
emailSettings?: {
|
|
146999
147025
|
marketingEmails: boolean;
|
|
@@ -155286,7 +155312,7 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155286
155312
|
}>;
|
|
155287
155313
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
155288
155314
|
isProtected: z$1.ZodBoolean;
|
|
155289
|
-
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
155315
|
+
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>>;
|
|
155290
155316
|
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
155291
155317
|
marketingEmails: z$1.ZodBoolean;
|
|
155292
155318
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -155338,7 +155364,7 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155338
155364
|
};
|
|
155339
155365
|
createdAt: Date;
|
|
155340
155366
|
isProtected: boolean;
|
|
155341
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155367
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
155342
155368
|
loggedOutAt?: Date | undefined;
|
|
155343
155369
|
emailSettings?: {
|
|
155344
155370
|
marketingEmails: boolean;
|
|
@@ -155387,7 +155413,7 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155387
155413
|
};
|
|
155388
155414
|
createdAt: Date;
|
|
155389
155415
|
isProtected: boolean;
|
|
155390
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155416
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
155391
155417
|
loggedOutAt?: Date | undefined;
|
|
155392
155418
|
emailSettings?: {
|
|
155393
155419
|
marketingEmails: boolean;
|
|
@@ -155442,7 +155468,7 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155442
155468
|
};
|
|
155443
155469
|
createdAt: Date;
|
|
155444
155470
|
isProtected: boolean;
|
|
155445
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155471
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
155446
155472
|
loggedOutAt?: Date | undefined;
|
|
155447
155473
|
emailSettings?: {
|
|
155448
155474
|
marketingEmails: boolean;
|
|
@@ -155513,7 +155539,7 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155513
155539
|
};
|
|
155514
155540
|
createdAt: Date;
|
|
155515
155541
|
isProtected: boolean;
|
|
155516
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155542
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
155517
155543
|
loggedOutAt?: Date | undefined;
|
|
155518
155544
|
emailSettings?: {
|
|
155519
155545
|
marketingEmails: boolean;
|
|
@@ -155608,7 +155634,7 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155608
155634
|
};
|
|
155609
155635
|
createdAt: Date;
|
|
155610
155636
|
isProtected: boolean;
|
|
155611
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155637
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
155612
155638
|
loggedOutAt?: Date | undefined;
|
|
155613
155639
|
emailSettings?: {
|
|
155614
155640
|
marketingEmails: boolean;
|
|
@@ -155692,7 +155718,7 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155692
155718
|
};
|
|
155693
155719
|
createdAt: Date;
|
|
155694
155720
|
isProtected: boolean;
|
|
155695
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155721
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
155696
155722
|
loggedOutAt?: Date | undefined;
|
|
155697
155723
|
emailSettings?: {
|
|
155698
155724
|
marketingEmails: boolean;
|
|
@@ -155994,7 +156020,7 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155994
156020
|
}>;
|
|
155995
156021
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
155996
156022
|
isProtected: z$1.ZodBoolean;
|
|
155997
|
-
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
156023
|
+
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>>;
|
|
155998
156024
|
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
155999
156025
|
marketingEmails: z$1.ZodBoolean;
|
|
156000
156026
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -156046,7 +156072,7 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
156046
156072
|
};
|
|
156047
156073
|
createdAt: Date;
|
|
156048
156074
|
isProtected: boolean;
|
|
156049
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
156075
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
156050
156076
|
loggedOutAt?: Date | undefined;
|
|
156051
156077
|
emailSettings?: {
|
|
156052
156078
|
marketingEmails: boolean;
|
|
@@ -156095,7 +156121,7 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
156095
156121
|
};
|
|
156096
156122
|
createdAt: Date;
|
|
156097
156123
|
isProtected: boolean;
|
|
156098
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
156124
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
156099
156125
|
loggedOutAt?: Date | undefined;
|
|
156100
156126
|
emailSettings?: {
|
|
156101
156127
|
marketingEmails: boolean;
|
|
@@ -156150,7 +156176,7 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
156150
156176
|
};
|
|
156151
156177
|
createdAt: Date;
|
|
156152
156178
|
isProtected: boolean;
|
|
156153
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
156179
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
156154
156180
|
loggedOutAt?: Date | undefined;
|
|
156155
156181
|
emailSettings?: {
|
|
156156
156182
|
marketingEmails: boolean;
|
|
@@ -156221,7 +156247,7 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
156221
156247
|
};
|
|
156222
156248
|
createdAt: Date;
|
|
156223
156249
|
isProtected: boolean;
|
|
156224
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
156250
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
156225
156251
|
loggedOutAt?: Date | undefined;
|
|
156226
156252
|
emailSettings?: {
|
|
156227
156253
|
marketingEmails: boolean;
|
|
@@ -158942,7 +158968,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158942
158968
|
}>;
|
|
158943
158969
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
158944
158970
|
isProtected: z$1.ZodBoolean;
|
|
158945
|
-
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
158971
|
+
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>>;
|
|
158946
158972
|
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
158947
158973
|
marketingEmails: z$1.ZodBoolean;
|
|
158948
158974
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -158994,7 +159020,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158994
159020
|
};
|
|
158995
159021
|
createdAt: Date;
|
|
158996
159022
|
isProtected: boolean;
|
|
158997
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159023
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
158998
159024
|
loggedOutAt?: Date | undefined;
|
|
158999
159025
|
emailSettings?: {
|
|
159000
159026
|
marketingEmails: boolean;
|
|
@@ -159043,7 +159069,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
159043
159069
|
};
|
|
159044
159070
|
createdAt: Date;
|
|
159045
159071
|
isProtected: boolean;
|
|
159046
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159072
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
159047
159073
|
loggedOutAt?: Date | undefined;
|
|
159048
159074
|
emailSettings?: {
|
|
159049
159075
|
marketingEmails: boolean;
|
|
@@ -159098,7 +159124,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
159098
159124
|
};
|
|
159099
159125
|
createdAt: Date;
|
|
159100
159126
|
isProtected: boolean;
|
|
159101
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159127
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
159102
159128
|
loggedOutAt?: Date | undefined;
|
|
159103
159129
|
emailSettings?: {
|
|
159104
159130
|
marketingEmails: boolean;
|
|
@@ -159169,7 +159195,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
159169
159195
|
};
|
|
159170
159196
|
createdAt: Date;
|
|
159171
159197
|
isProtected: boolean;
|
|
159172
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159198
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
159173
159199
|
loggedOutAt?: Date | undefined;
|
|
159174
159200
|
emailSettings?: {
|
|
159175
159201
|
marketingEmails: boolean;
|
|
@@ -159264,7 +159290,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
159264
159290
|
};
|
|
159265
159291
|
createdAt: Date;
|
|
159266
159292
|
isProtected: boolean;
|
|
159267
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159293
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
159268
159294
|
loggedOutAt?: Date | undefined;
|
|
159269
159295
|
emailSettings?: {
|
|
159270
159296
|
marketingEmails: boolean;
|
|
@@ -159348,7 +159374,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
159348
159374
|
};
|
|
159349
159375
|
createdAt: Date;
|
|
159350
159376
|
isProtected: boolean;
|
|
159351
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159377
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
159352
159378
|
loggedOutAt?: Date | undefined;
|
|
159353
159379
|
emailSettings?: {
|
|
159354
159380
|
marketingEmails: boolean;
|
|
@@ -159577,7 +159603,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
159577
159603
|
};
|
|
159578
159604
|
createdAt: Date;
|
|
159579
159605
|
isProtected: boolean;
|
|
159580
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159606
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
159581
159607
|
loggedOutAt?: Date | undefined;
|
|
159582
159608
|
emailSettings?: {
|
|
159583
159609
|
marketingEmails: boolean;
|
|
@@ -159713,7 +159739,7 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
159713
159739
|
};
|
|
159714
159740
|
createdAt: Date;
|
|
159715
159741
|
isProtected: boolean;
|
|
159716
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159742
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
159717
159743
|
loggedOutAt?: Date | undefined;
|
|
159718
159744
|
emailSettings?: {
|
|
159719
159745
|
marketingEmails: boolean;
|
|
@@ -191460,7 +191486,7 @@ declare const UserTest: z$1.ZodObject<{
|
|
|
191460
191486
|
}>;
|
|
191461
191487
|
type UserTest = z$1.infer<typeof UserTest>;
|
|
191462
191488
|
|
|
191463
|
-
declare const UserSource: z$1.ZodEnum<["SignUp", "Invite", "SSO"]>;
|
|
191489
|
+
declare const UserSource: z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>;
|
|
191464
191490
|
type UserSource = z$1.infer<typeof UserSource>;
|
|
191465
191491
|
declare const UserEmailSettings: z$1.ZodObject<{
|
|
191466
191492
|
marketingEmails: z$1.ZodBoolean;
|
|
@@ -191684,7 +191710,7 @@ declare const User: z$1.ZodObject<{
|
|
|
191684
191710
|
}>;
|
|
191685
191711
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
191686
191712
|
isProtected: z$1.ZodBoolean;
|
|
191687
|
-
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
191713
|
+
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO", "Google"]>>;
|
|
191688
191714
|
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
191689
191715
|
marketingEmails: z$1.ZodBoolean;
|
|
191690
191716
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -191736,7 +191762,7 @@ declare const User: z$1.ZodObject<{
|
|
|
191736
191762
|
};
|
|
191737
191763
|
createdAt: Date;
|
|
191738
191764
|
isProtected: boolean;
|
|
191739
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
191765
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
191740
191766
|
loggedOutAt?: Date | undefined;
|
|
191741
191767
|
emailSettings?: {
|
|
191742
191768
|
marketingEmails: boolean;
|
|
@@ -191785,7 +191811,7 @@ declare const User: z$1.ZodObject<{
|
|
|
191785
191811
|
};
|
|
191786
191812
|
createdAt: Date;
|
|
191787
191813
|
isProtected: boolean;
|
|
191788
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
191814
|
+
source?: "SignUp" | "Invite" | "SSO" | "Google" | undefined;
|
|
191789
191815
|
loggedOutAt?: Date | undefined;
|
|
191790
191816
|
emailSettings?: {
|
|
191791
191817
|
marketingEmails: boolean;
|
package/dist/index.js
CHANGED
|
@@ -30,12 +30,13 @@ var PluginOAuthRequestSchema = _zod.z.object({
|
|
|
30
30
|
// src/auth/request.ts
|
|
31
31
|
|
|
32
32
|
var AuthV2Request = _zod.z.object({
|
|
33
|
-
code: _zod.z.string().optional(),
|
|
34
33
|
state: _zod.z.string(),
|
|
35
34
|
codeChallenge: _zod.z.string(),
|
|
36
35
|
codeChallengeMethod: _zod.z.string(),
|
|
37
36
|
redirectUri: _zod.z.string(),
|
|
38
|
-
sessionId: _zod.z.string()
|
|
37
|
+
sessionId: _zod.z.string(),
|
|
38
|
+
code: _zod.z.string().optional(),
|
|
39
|
+
codeVerifier: _zod.z.string().optional()
|
|
39
40
|
});
|
|
40
41
|
|
|
41
42
|
// src/auth/session.ts
|
|
@@ -160,6 +161,7 @@ var FeaturesSummary = _zod.z.object({
|
|
|
160
161
|
forgeActiveDocumentsPerProject: featureLimitedSchema,
|
|
161
162
|
forgePrivateProjects: featureToggleSchema,
|
|
162
163
|
forgeActiveProjectContexts: featureLimitedSchema,
|
|
164
|
+
documentationPages: featureLimitedSchema,
|
|
163
165
|
sandboxTemplates: featureToggleSchema
|
|
164
166
|
});
|
|
165
167
|
|
|
@@ -5261,7 +5263,7 @@ var UserTest = _zod.z.object({
|
|
|
5261
5263
|
|
|
5262
5264
|
// src/users/user.ts
|
|
5263
5265
|
|
|
5264
|
-
var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO"]);
|
|
5266
|
+
var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO", "Google"]);
|
|
5265
5267
|
var UserEmailSettings = _zod.z.object({
|
|
5266
5268
|
marketingEmails: _zod.z.boolean()
|
|
5267
5269
|
});
|