@vercel/sdk 1.6.9 → 1.6.10
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/bin/mcp-server.js +250 -61
- package/bin/mcp-server.js.map +20 -20
- package/docs/sdks/user/README.md +2 -0
- package/esm/funcs/userListUserEvents.js +1 -0
- package/esm/funcs/userListUserEvents.js.map +1 -1
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/lib/config.js.map +1 -1
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/mcp-server.js.map +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/models/authuser.d.ts +3 -0
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +1 -0
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +6 -6
- package/esm/models/createprojectenvop.js +2 -2
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +15 -9
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +5 -3
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +24 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +8 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/editprojectenvop.d.ts +3 -3
- package/esm/models/editprojectenvop.js +1 -1
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +6 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +2 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +12 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +4 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +24 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +8 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/listusereventsop.d.ts +6 -1
- package/esm/models/listusereventsop.d.ts.map +1 -1
- package/esm/models/listusereventsop.js +2 -0
- package/esm/models/listusereventsop.js.map +1 -1
- package/esm/models/removeprojectenvop.d.ts +9 -9
- package/esm/models/removeprojectenvop.js +3 -3
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/teamlimited.d.ts +30 -1
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +24 -0
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +6 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +2 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +15 -9
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +5 -3
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +324 -34
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +313 -40
- package/esm/models/userevent.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/funcs/userListUserEvents.ts +1 -0
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/authuser.ts +1 -0
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +5 -3
- package/src/models/createwebhookop.ts +8 -0
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/getprojectsop.ts +2 -0
- package/src/models/getwebhookop.ts +4 -0
- package/src/models/getwebhooksop.ts +8 -0
- package/src/models/listusereventsop.ts +8 -1
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/teamlimited.ts +34 -1
- package/src/models/updateprojectdatacacheop.ts +2 -0
- package/src/models/updateprojectop.ts +5 -3
- package/src/models/userevent.ts +579 -70
- package/vercel-spec.json +256 -45
|
@@ -50,15 +50,71 @@ export type Entities = {
|
|
|
50
50
|
end: number;
|
|
51
51
|
};
|
|
52
52
|
/**
|
|
53
|
-
* Metadata for
|
|
53
|
+
* Metadata for {@link userId}.
|
|
54
54
|
*/
|
|
55
55
|
export type User = {
|
|
56
|
+
avatar: string;
|
|
57
|
+
email: string;
|
|
58
|
+
username: string;
|
|
59
|
+
slug?: string | undefined;
|
|
60
|
+
uid: string;
|
|
61
|
+
};
|
|
62
|
+
export declare const UserEventPrincipalType: {
|
|
63
|
+
readonly App: "app";
|
|
64
|
+
};
|
|
65
|
+
export type UserEventPrincipalType = ClosedEnum<typeof UserEventPrincipalType>;
|
|
66
|
+
/**
|
|
67
|
+
* Metadata for {@link principalId}.
|
|
68
|
+
*/
|
|
69
|
+
export type Two = {
|
|
70
|
+
type: UserEventPrincipalType;
|
|
71
|
+
clientId: string;
|
|
72
|
+
name: string;
|
|
73
|
+
};
|
|
74
|
+
export declare const PrincipalType: {
|
|
75
|
+
readonly User: "user";
|
|
76
|
+
};
|
|
77
|
+
export type PrincipalType = ClosedEnum<typeof PrincipalType>;
|
|
78
|
+
/**
|
|
79
|
+
* Metadata for {@link principalId}.
|
|
80
|
+
*/
|
|
81
|
+
export type One = {
|
|
82
|
+
type?: PrincipalType | undefined;
|
|
56
83
|
avatar: string;
|
|
57
84
|
email: string;
|
|
58
85
|
slug?: string | undefined;
|
|
59
86
|
uid: string;
|
|
60
87
|
username: string;
|
|
61
88
|
};
|
|
89
|
+
export type Principal = Two | One;
|
|
90
|
+
export declare const UserEventViaType: {
|
|
91
|
+
readonly App: "app";
|
|
92
|
+
};
|
|
93
|
+
export type UserEventViaType = ClosedEnum<typeof UserEventViaType>;
|
|
94
|
+
/**
|
|
95
|
+
* Metadata for {@link viaIds}.
|
|
96
|
+
*/
|
|
97
|
+
export type Via2 = {
|
|
98
|
+
type: UserEventViaType;
|
|
99
|
+
clientId: string;
|
|
100
|
+
name: string;
|
|
101
|
+
};
|
|
102
|
+
export declare const ViaType: {
|
|
103
|
+
readonly User: "user";
|
|
104
|
+
};
|
|
105
|
+
export type ViaType = ClosedEnum<typeof ViaType>;
|
|
106
|
+
/**
|
|
107
|
+
* Metadata for {@link viaIds}.
|
|
108
|
+
*/
|
|
109
|
+
export type Via1 = {
|
|
110
|
+
type?: ViaType | undefined;
|
|
111
|
+
avatar: string;
|
|
112
|
+
email: string;
|
|
113
|
+
slug?: string | undefined;
|
|
114
|
+
uid: string;
|
|
115
|
+
username: string;
|
|
116
|
+
};
|
|
117
|
+
export type Via = Via2 | Via1;
|
|
62
118
|
export declare const GrantType: {
|
|
63
119
|
readonly AuthorizationCode: "authorization_code";
|
|
64
120
|
readonly RefreshToken: "refresh_token";
|
|
@@ -1656,6 +1712,7 @@ export type PayloadBuildEntitlements = {
|
|
|
1656
1712
|
};
|
|
1657
1713
|
export declare const PayloadPurchaseType: {
|
|
1658
1714
|
readonly Enhanced: "enhanced";
|
|
1715
|
+
readonly Ultra: "ultra";
|
|
1659
1716
|
};
|
|
1660
1717
|
export type PayloadPurchaseType = ClosedEnum<typeof PayloadPurchaseType>;
|
|
1661
1718
|
export type PayloadBuildMachine = {
|
|
@@ -3572,7 +3629,7 @@ export type Action = ClosedEnum<typeof Action>;
|
|
|
3572
3629
|
/**
|
|
3573
3630
|
* The payload of the event, if requested.
|
|
3574
3631
|
*/
|
|
3575
|
-
export type
|
|
3632
|
+
export type Payload2 = {
|
|
3576
3633
|
action: Action;
|
|
3577
3634
|
id: string;
|
|
3578
3635
|
slug: string;
|
|
@@ -3581,8 +3638,8 @@ export type Two = {
|
|
|
3581
3638
|
/**
|
|
3582
3639
|
* The payload of the event, if requested.
|
|
3583
3640
|
*/
|
|
3584
|
-
export type
|
|
3585
|
-
export type Payload =
|
|
3641
|
+
export type Payload1 = {};
|
|
3642
|
+
export type Payload = Payload1 | Three | Nine | Nineteen | TwentyEight | ThirtyThree | FortyThree | EightyFour | EightyEight | NinetyThree | NinetyFive | NinetySix | NinetySeven | NinetyNine | OneHundredAndOne | OneHundredAndNine | OneHundredAndTen | OneHundredAndEleven | OneHundredAndTwelve | OneHundredAndFifteen | OneHundredAndSeventeen | OneHundredAndThirtyOne | OneHundredAndForty | OneHundredAndFortyFour | Four | Fourteen | Seventeen | Eighteen | TwentyThree | TwentyFive | TwentySix | TwentySeven | ThirtySix | FortyOne | FortyFive | FortyEight | FiftyTwo | FiftyFive | SixtyThree | SixtyNine | Seventy | SeventyOne | SeventySix | EightyOne | EightyTwo | EightyThree | EightySix | EightySeven | Ninety | NinetyOne | OneHundred | OneHundredAndSeven | OneHundredAndThirteen | OneHundredAndFourteen | OneHundredAndSixteen | OneHundredAndNineteen | OneHundredAndTwenty | OneHundredAndTwentyEight | OneHundredAndTwentyNine | OneHundredAndThirty | OneHundredAndThirtySeven | OneHundredAndFortyOne | OneHundredAndFortyTwo | OneHundredAndFortyThree | Five | Eight | Ten | Twelve | Thirteen | TwentyOne | TwentyTwo | TwentyFour | ThirtyOne | ThirtyTwo | ThirtyFour | ThirtyFive | ThirtyEight | ThirtyNine | FortyFour | FortySeven | FortyNine | Fifty | FiftyOne | FiftyThree | FiftyFour | FiftyEight | Sixty | SixtyOne | SeventyTwo | SeventySeven | SeventyEight | Eighty | EightyFive | EightyNine | NinetyTwo | OneHundredAndFive | OneHundredAndEight | OneHundredAndEighteen | OneHundredAndTwentyFive | OneHundredAndThirtyTwo | OneHundredAndThirtyFour | OneHundredAndThirtyFive | OneHundredAndThirtyEight | OneHundredAndFortyFive | OneHundredAndFortySix | Payload2 | Six | Eleven | Fifteen | Sixteen | Twenty | TwentyNine | FortySix | SeventyFour | SeventyFive | NinetyFour | OneHundredAndTwo | OneHundredAndTwentySix | OneHundredAndTwentySeven | OneHundredAndThirtyThree | OneHundredAndThirtySix | OneHundredAndThirtyNine | OneHundredAndFortySeven | Thirty | FortyTwo | FiftyNine | SixtySix | SeventyNine | OneHundredAndSix | Forty | SixtyTwo | SixtyFive | NinetyEight | OneHundredAndFour | OneHundredAndTwentyTwo | OneHundredAndTwentyThree | OneHundredAndTwentyFour | OneHundredAndFortyEight | SixtyFour | SixtySeven | SeventyThree | OneHundredAndThree | OneHundredAndTwentyOne | FiftySix | Seven | ThirtySeven | SixtyEight | FiftySeven;
|
|
3586
3643
|
/**
|
|
3587
3644
|
* Array of events generated by the User.
|
|
3588
3645
|
*/
|
|
@@ -3604,14 +3661,27 @@ export type UserEvent = {
|
|
|
3604
3661
|
*/
|
|
3605
3662
|
createdAt: number;
|
|
3606
3663
|
/**
|
|
3607
|
-
* Metadata for
|
|
3664
|
+
* Metadata for {@link userId}.
|
|
3608
3665
|
*/
|
|
3609
3666
|
user?: User | undefined;
|
|
3667
|
+
principal?: Two | One | undefined;
|
|
3610
3668
|
/**
|
|
3611
|
-
*
|
|
3669
|
+
* Metadata for {@link viaIds}.
|
|
3670
|
+
*/
|
|
3671
|
+
via?: Array<Via2 | Via1> | undefined;
|
|
3672
|
+
/**
|
|
3673
|
+
* When the principal who generated the event is a user, this is their ID; otherwise, it is empty.
|
|
3612
3674
|
*/
|
|
3613
3675
|
userId: string;
|
|
3614
|
-
|
|
3676
|
+
/**
|
|
3677
|
+
* The ID of the principal who generated the event. The principal is typically a user, but it could also be an app, an integration, etc. The principal may have delegated its authority to an acting party, and so {@link viaIds} should be checked as well.
|
|
3678
|
+
*/
|
|
3679
|
+
principalId: string;
|
|
3680
|
+
/**
|
|
3681
|
+
* If the principal delegated its authority (for example, a user delegating to an app), then this array contains the ID of the current actor. For example, if `principalId` is "user123" and `viaIds` is `["app456"]`, we can say the event was triggered by - "app456 on behalf of user123", or - "user123 via app4556". Both are equivalent. Arbitrarily long chains of delegation can be represented. For example, if `principalId` is "user123" and `viaIds` is `["service1", "service2"]`, we can say the event was triggered by "user123 via service1 via service2".
|
|
3682
|
+
*/
|
|
3683
|
+
viaIds?: Array<string> | undefined;
|
|
3684
|
+
payload?: Payload1 | Three | Nine | Nineteen | TwentyEight | ThirtyThree | FortyThree | EightyFour | EightyEight | NinetyThree | NinetyFive | NinetySix | NinetySeven | NinetyNine | OneHundredAndOne | OneHundredAndNine | OneHundredAndTen | OneHundredAndEleven | OneHundredAndTwelve | OneHundredAndFifteen | OneHundredAndSeventeen | OneHundredAndThirtyOne | OneHundredAndForty | OneHundredAndFortyFour | Four | Fourteen | Seventeen | Eighteen | TwentyThree | TwentyFive | TwentySix | TwentySeven | ThirtySix | FortyOne | FortyFive | FortyEight | FiftyTwo | FiftyFive | SixtyThree | SixtyNine | Seventy | SeventyOne | SeventySix | EightyOne | EightyTwo | EightyThree | EightySix | EightySeven | Ninety | NinetyOne | OneHundred | OneHundredAndSeven | OneHundredAndThirteen | OneHundredAndFourteen | OneHundredAndSixteen | OneHundredAndNineteen | OneHundredAndTwenty | OneHundredAndTwentyEight | OneHundredAndTwentyNine | OneHundredAndThirty | OneHundredAndThirtySeven | OneHundredAndFortyOne | OneHundredAndFortyTwo | OneHundredAndFortyThree | Five | Eight | Ten | Twelve | Thirteen | TwentyOne | TwentyTwo | TwentyFour | ThirtyOne | ThirtyTwo | ThirtyFour | ThirtyFive | ThirtyEight | ThirtyNine | FortyFour | FortySeven | FortyNine | Fifty | FiftyOne | FiftyThree | FiftyFour | FiftyEight | Sixty | SixtyOne | SeventyTwo | SeventySeven | SeventyEight | Eighty | EightyFive | EightyNine | NinetyTwo | OneHundredAndFive | OneHundredAndEight | OneHundredAndEighteen | OneHundredAndTwentyFive | OneHundredAndThirtyTwo | OneHundredAndThirtyFour | OneHundredAndThirtyFive | OneHundredAndThirtyEight | OneHundredAndFortyFive | OneHundredAndFortySix | Payload2 | Six | Eleven | Fifteen | Sixteen | Twenty | TwentyNine | FortySix | SeventyFour | SeventyFive | NinetyFour | OneHundredAndTwo | OneHundredAndTwentySix | OneHundredAndTwentySeven | OneHundredAndThirtyThree | OneHundredAndThirtySix | OneHundredAndThirtyNine | OneHundredAndFortySeven | Thirty | FortyTwo | FiftyNine | SixtySix | SeventyNine | OneHundredAndSix | Forty | SixtyTwo | SixtyFive | NinetyEight | OneHundredAndFour | OneHundredAndTwentyTwo | OneHundredAndTwentyThree | OneHundredAndTwentyFour | OneHundredAndFortyEight | SixtyFour | SixtySeven | SeventyThree | OneHundredAndThree | OneHundredAndTwentyOne | FiftySix | Seven | ThirtySeven | SixtyEight | FiftySeven | undefined;
|
|
3615
3685
|
};
|
|
3616
3686
|
/** @internal */
|
|
3617
3687
|
export declare const UserEventType$inboundSchema: z.ZodNativeEnum<typeof UserEventType>;
|
|
@@ -3701,9 +3771,9 @@ export declare const User$inboundSchema: z.ZodType<User, z.ZodTypeDef, unknown>;
|
|
|
3701
3771
|
export type User$Outbound = {
|
|
3702
3772
|
avatar: string;
|
|
3703
3773
|
email: string;
|
|
3774
|
+
username: string;
|
|
3704
3775
|
slug?: string | undefined;
|
|
3705
3776
|
uid: string;
|
|
3706
|
-
username: string;
|
|
3707
3777
|
};
|
|
3708
3778
|
/** @internal */
|
|
3709
3779
|
export declare const User$outboundSchema: z.ZodType<User$Outbound, z.ZodTypeDef, User>;
|
|
@@ -3722,6 +3792,220 @@ export declare namespace User$ {
|
|
|
3722
3792
|
export declare function userToJSON(user: User): string;
|
|
3723
3793
|
export declare function userFromJSON(jsonString: string): SafeParseResult<User, SDKValidationError>;
|
|
3724
3794
|
/** @internal */
|
|
3795
|
+
export declare const UserEventPrincipalType$inboundSchema: z.ZodNativeEnum<typeof UserEventPrincipalType>;
|
|
3796
|
+
/** @internal */
|
|
3797
|
+
export declare const UserEventPrincipalType$outboundSchema: z.ZodNativeEnum<typeof UserEventPrincipalType>;
|
|
3798
|
+
/**
|
|
3799
|
+
* @internal
|
|
3800
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3801
|
+
*/
|
|
3802
|
+
export declare namespace UserEventPrincipalType$ {
|
|
3803
|
+
/** @deprecated use `UserEventPrincipalType$inboundSchema` instead. */
|
|
3804
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
3805
|
+
readonly App: "app";
|
|
3806
|
+
}>;
|
|
3807
|
+
/** @deprecated use `UserEventPrincipalType$outboundSchema` instead. */
|
|
3808
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
3809
|
+
readonly App: "app";
|
|
3810
|
+
}>;
|
|
3811
|
+
}
|
|
3812
|
+
/** @internal */
|
|
3813
|
+
export declare const Two$inboundSchema: z.ZodType<Two, z.ZodTypeDef, unknown>;
|
|
3814
|
+
/** @internal */
|
|
3815
|
+
export type Two$Outbound = {
|
|
3816
|
+
type: string;
|
|
3817
|
+
clientId: string;
|
|
3818
|
+
name: string;
|
|
3819
|
+
};
|
|
3820
|
+
/** @internal */
|
|
3821
|
+
export declare const Two$outboundSchema: z.ZodType<Two$Outbound, z.ZodTypeDef, Two>;
|
|
3822
|
+
/**
|
|
3823
|
+
* @internal
|
|
3824
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3825
|
+
*/
|
|
3826
|
+
export declare namespace Two$ {
|
|
3827
|
+
/** @deprecated use `Two$inboundSchema` instead. */
|
|
3828
|
+
const inboundSchema: z.ZodType<Two, z.ZodTypeDef, unknown>;
|
|
3829
|
+
/** @deprecated use `Two$outboundSchema` instead. */
|
|
3830
|
+
const outboundSchema: z.ZodType<Two$Outbound, z.ZodTypeDef, Two>;
|
|
3831
|
+
/** @deprecated use `Two$Outbound` instead. */
|
|
3832
|
+
type Outbound = Two$Outbound;
|
|
3833
|
+
}
|
|
3834
|
+
export declare function twoToJSON(two: Two): string;
|
|
3835
|
+
export declare function twoFromJSON(jsonString: string): SafeParseResult<Two, SDKValidationError>;
|
|
3836
|
+
/** @internal */
|
|
3837
|
+
export declare const PrincipalType$inboundSchema: z.ZodNativeEnum<typeof PrincipalType>;
|
|
3838
|
+
/** @internal */
|
|
3839
|
+
export declare const PrincipalType$outboundSchema: z.ZodNativeEnum<typeof PrincipalType>;
|
|
3840
|
+
/**
|
|
3841
|
+
* @internal
|
|
3842
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3843
|
+
*/
|
|
3844
|
+
export declare namespace PrincipalType$ {
|
|
3845
|
+
/** @deprecated use `PrincipalType$inboundSchema` instead. */
|
|
3846
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
3847
|
+
readonly User: "user";
|
|
3848
|
+
}>;
|
|
3849
|
+
/** @deprecated use `PrincipalType$outboundSchema` instead. */
|
|
3850
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
3851
|
+
readonly User: "user";
|
|
3852
|
+
}>;
|
|
3853
|
+
}
|
|
3854
|
+
/** @internal */
|
|
3855
|
+
export declare const One$inboundSchema: z.ZodType<One, z.ZodTypeDef, unknown>;
|
|
3856
|
+
/** @internal */
|
|
3857
|
+
export type One$Outbound = {
|
|
3858
|
+
type?: string | undefined;
|
|
3859
|
+
avatar: string;
|
|
3860
|
+
email: string;
|
|
3861
|
+
slug?: string | undefined;
|
|
3862
|
+
uid: string;
|
|
3863
|
+
username: string;
|
|
3864
|
+
};
|
|
3865
|
+
/** @internal */
|
|
3866
|
+
export declare const One$outboundSchema: z.ZodType<One$Outbound, z.ZodTypeDef, One>;
|
|
3867
|
+
/**
|
|
3868
|
+
* @internal
|
|
3869
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3870
|
+
*/
|
|
3871
|
+
export declare namespace One$ {
|
|
3872
|
+
/** @deprecated use `One$inboundSchema` instead. */
|
|
3873
|
+
const inboundSchema: z.ZodType<One, z.ZodTypeDef, unknown>;
|
|
3874
|
+
/** @deprecated use `One$outboundSchema` instead. */
|
|
3875
|
+
const outboundSchema: z.ZodType<One$Outbound, z.ZodTypeDef, One>;
|
|
3876
|
+
/** @deprecated use `One$Outbound` instead. */
|
|
3877
|
+
type Outbound = One$Outbound;
|
|
3878
|
+
}
|
|
3879
|
+
export declare function oneToJSON(one: One): string;
|
|
3880
|
+
export declare function oneFromJSON(jsonString: string): SafeParseResult<One, SDKValidationError>;
|
|
3881
|
+
/** @internal */
|
|
3882
|
+
export declare const Principal$inboundSchema: z.ZodType<Principal, z.ZodTypeDef, unknown>;
|
|
3883
|
+
/** @internal */
|
|
3884
|
+
export type Principal$Outbound = Two$Outbound | One$Outbound;
|
|
3885
|
+
/** @internal */
|
|
3886
|
+
export declare const Principal$outboundSchema: z.ZodType<Principal$Outbound, z.ZodTypeDef, Principal>;
|
|
3887
|
+
/**
|
|
3888
|
+
* @internal
|
|
3889
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3890
|
+
*/
|
|
3891
|
+
export declare namespace Principal$ {
|
|
3892
|
+
/** @deprecated use `Principal$inboundSchema` instead. */
|
|
3893
|
+
const inboundSchema: z.ZodType<Principal, z.ZodTypeDef, unknown>;
|
|
3894
|
+
/** @deprecated use `Principal$outboundSchema` instead. */
|
|
3895
|
+
const outboundSchema: z.ZodType<Principal$Outbound, z.ZodTypeDef, Principal>;
|
|
3896
|
+
/** @deprecated use `Principal$Outbound` instead. */
|
|
3897
|
+
type Outbound = Principal$Outbound;
|
|
3898
|
+
}
|
|
3899
|
+
export declare function principalToJSON(principal: Principal): string;
|
|
3900
|
+
export declare function principalFromJSON(jsonString: string): SafeParseResult<Principal, SDKValidationError>;
|
|
3901
|
+
/** @internal */
|
|
3902
|
+
export declare const UserEventViaType$inboundSchema: z.ZodNativeEnum<typeof UserEventViaType>;
|
|
3903
|
+
/** @internal */
|
|
3904
|
+
export declare const UserEventViaType$outboundSchema: z.ZodNativeEnum<typeof UserEventViaType>;
|
|
3905
|
+
/**
|
|
3906
|
+
* @internal
|
|
3907
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3908
|
+
*/
|
|
3909
|
+
export declare namespace UserEventViaType$ {
|
|
3910
|
+
/** @deprecated use `UserEventViaType$inboundSchema` instead. */
|
|
3911
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
3912
|
+
readonly App: "app";
|
|
3913
|
+
}>;
|
|
3914
|
+
/** @deprecated use `UserEventViaType$outboundSchema` instead. */
|
|
3915
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
3916
|
+
readonly App: "app";
|
|
3917
|
+
}>;
|
|
3918
|
+
}
|
|
3919
|
+
/** @internal */
|
|
3920
|
+
export declare const Via2$inboundSchema: z.ZodType<Via2, z.ZodTypeDef, unknown>;
|
|
3921
|
+
/** @internal */
|
|
3922
|
+
export type Via2$Outbound = {
|
|
3923
|
+
type: string;
|
|
3924
|
+
clientId: string;
|
|
3925
|
+
name: string;
|
|
3926
|
+
};
|
|
3927
|
+
/** @internal */
|
|
3928
|
+
export declare const Via2$outboundSchema: z.ZodType<Via2$Outbound, z.ZodTypeDef, Via2>;
|
|
3929
|
+
/**
|
|
3930
|
+
* @internal
|
|
3931
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3932
|
+
*/
|
|
3933
|
+
export declare namespace Via2$ {
|
|
3934
|
+
/** @deprecated use `Via2$inboundSchema` instead. */
|
|
3935
|
+
const inboundSchema: z.ZodType<Via2, z.ZodTypeDef, unknown>;
|
|
3936
|
+
/** @deprecated use `Via2$outboundSchema` instead. */
|
|
3937
|
+
const outboundSchema: z.ZodType<Via2$Outbound, z.ZodTypeDef, Via2>;
|
|
3938
|
+
/** @deprecated use `Via2$Outbound` instead. */
|
|
3939
|
+
type Outbound = Via2$Outbound;
|
|
3940
|
+
}
|
|
3941
|
+
export declare function via2ToJSON(via2: Via2): string;
|
|
3942
|
+
export declare function via2FromJSON(jsonString: string): SafeParseResult<Via2, SDKValidationError>;
|
|
3943
|
+
/** @internal */
|
|
3944
|
+
export declare const ViaType$inboundSchema: z.ZodNativeEnum<typeof ViaType>;
|
|
3945
|
+
/** @internal */
|
|
3946
|
+
export declare const ViaType$outboundSchema: z.ZodNativeEnum<typeof ViaType>;
|
|
3947
|
+
/**
|
|
3948
|
+
* @internal
|
|
3949
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3950
|
+
*/
|
|
3951
|
+
export declare namespace ViaType$ {
|
|
3952
|
+
/** @deprecated use `ViaType$inboundSchema` instead. */
|
|
3953
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
3954
|
+
readonly User: "user";
|
|
3955
|
+
}>;
|
|
3956
|
+
/** @deprecated use `ViaType$outboundSchema` instead. */
|
|
3957
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
3958
|
+
readonly User: "user";
|
|
3959
|
+
}>;
|
|
3960
|
+
}
|
|
3961
|
+
/** @internal */
|
|
3962
|
+
export declare const Via1$inboundSchema: z.ZodType<Via1, z.ZodTypeDef, unknown>;
|
|
3963
|
+
/** @internal */
|
|
3964
|
+
export type Via1$Outbound = {
|
|
3965
|
+
type?: string | undefined;
|
|
3966
|
+
avatar: string;
|
|
3967
|
+
email: string;
|
|
3968
|
+
slug?: string | undefined;
|
|
3969
|
+
uid: string;
|
|
3970
|
+
username: string;
|
|
3971
|
+
};
|
|
3972
|
+
/** @internal */
|
|
3973
|
+
export declare const Via1$outboundSchema: z.ZodType<Via1$Outbound, z.ZodTypeDef, Via1>;
|
|
3974
|
+
/**
|
|
3975
|
+
* @internal
|
|
3976
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3977
|
+
*/
|
|
3978
|
+
export declare namespace Via1$ {
|
|
3979
|
+
/** @deprecated use `Via1$inboundSchema` instead. */
|
|
3980
|
+
const inboundSchema: z.ZodType<Via1, z.ZodTypeDef, unknown>;
|
|
3981
|
+
/** @deprecated use `Via1$outboundSchema` instead. */
|
|
3982
|
+
const outboundSchema: z.ZodType<Via1$Outbound, z.ZodTypeDef, Via1>;
|
|
3983
|
+
/** @deprecated use `Via1$Outbound` instead. */
|
|
3984
|
+
type Outbound = Via1$Outbound;
|
|
3985
|
+
}
|
|
3986
|
+
export declare function via1ToJSON(via1: Via1): string;
|
|
3987
|
+
export declare function via1FromJSON(jsonString: string): SafeParseResult<Via1, SDKValidationError>;
|
|
3988
|
+
/** @internal */
|
|
3989
|
+
export declare const Via$inboundSchema: z.ZodType<Via, z.ZodTypeDef, unknown>;
|
|
3990
|
+
/** @internal */
|
|
3991
|
+
export type Via$Outbound = Via2$Outbound | Via1$Outbound;
|
|
3992
|
+
/** @internal */
|
|
3993
|
+
export declare const Via$outboundSchema: z.ZodType<Via$Outbound, z.ZodTypeDef, Via>;
|
|
3994
|
+
/**
|
|
3995
|
+
* @internal
|
|
3996
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3997
|
+
*/
|
|
3998
|
+
export declare namespace Via$ {
|
|
3999
|
+
/** @deprecated use `Via$inboundSchema` instead. */
|
|
4000
|
+
const inboundSchema: z.ZodType<Via, z.ZodTypeDef, unknown>;
|
|
4001
|
+
/** @deprecated use `Via$outboundSchema` instead. */
|
|
4002
|
+
const outboundSchema: z.ZodType<Via$Outbound, z.ZodTypeDef, Via>;
|
|
4003
|
+
/** @deprecated use `Via$Outbound` instead. */
|
|
4004
|
+
type Outbound = Via$Outbound;
|
|
4005
|
+
}
|
|
4006
|
+
export declare function viaToJSON(via: Via): string;
|
|
4007
|
+
export declare function viaFromJSON(jsonString: string): SafeParseResult<Via, SDKValidationError>;
|
|
4008
|
+
/** @internal */
|
|
3725
4009
|
export declare const GrantType$inboundSchema: z.ZodNativeEnum<typeof GrantType>;
|
|
3726
4010
|
/** @internal */
|
|
3727
4011
|
export declare const GrantType$outboundSchema: z.ZodNativeEnum<typeof GrantType>;
|
|
@@ -9092,10 +9376,12 @@ export declare namespace PayloadPurchaseType$ {
|
|
|
9092
9376
|
/** @deprecated use `PayloadPurchaseType$inboundSchema` instead. */
|
|
9093
9377
|
const inboundSchema: z.ZodNativeEnum<{
|
|
9094
9378
|
readonly Enhanced: "enhanced";
|
|
9379
|
+
readonly Ultra: "ultra";
|
|
9095
9380
|
}>;
|
|
9096
9381
|
/** @deprecated use `PayloadPurchaseType$outboundSchema` instead. */
|
|
9097
9382
|
const outboundSchema: z.ZodNativeEnum<{
|
|
9098
9383
|
readonly Enhanced: "enhanced";
|
|
9384
|
+
readonly Ultra: "ultra";
|
|
9099
9385
|
}>;
|
|
9100
9386
|
}
|
|
9101
9387
|
/** @internal */
|
|
@@ -14541,54 +14827,54 @@ export declare namespace Action$ {
|
|
|
14541
14827
|
}>;
|
|
14542
14828
|
}
|
|
14543
14829
|
/** @internal */
|
|
14544
|
-
export declare const
|
|
14830
|
+
export declare const Payload2$inboundSchema: z.ZodType<Payload2, z.ZodTypeDef, unknown>;
|
|
14545
14831
|
/** @internal */
|
|
14546
|
-
export type
|
|
14832
|
+
export type Payload2$Outbound = {
|
|
14547
14833
|
action: string;
|
|
14548
14834
|
id: string;
|
|
14549
14835
|
slug: string;
|
|
14550
14836
|
projectId: string;
|
|
14551
14837
|
};
|
|
14552
14838
|
/** @internal */
|
|
14553
|
-
export declare const
|
|
14839
|
+
export declare const Payload2$outboundSchema: z.ZodType<Payload2$Outbound, z.ZodTypeDef, Payload2>;
|
|
14554
14840
|
/**
|
|
14555
14841
|
* @internal
|
|
14556
14842
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
14557
14843
|
*/
|
|
14558
|
-
export declare namespace
|
|
14559
|
-
/** @deprecated use `
|
|
14560
|
-
const inboundSchema: z.ZodType<
|
|
14561
|
-
/** @deprecated use `
|
|
14562
|
-
const outboundSchema: z.ZodType<
|
|
14563
|
-
/** @deprecated use `
|
|
14564
|
-
type Outbound =
|
|
14844
|
+
export declare namespace Payload2$ {
|
|
14845
|
+
/** @deprecated use `Payload2$inboundSchema` instead. */
|
|
14846
|
+
const inboundSchema: z.ZodType<Payload2, z.ZodTypeDef, unknown>;
|
|
14847
|
+
/** @deprecated use `Payload2$outboundSchema` instead. */
|
|
14848
|
+
const outboundSchema: z.ZodType<Payload2$Outbound, z.ZodTypeDef, Payload2>;
|
|
14849
|
+
/** @deprecated use `Payload2$Outbound` instead. */
|
|
14850
|
+
type Outbound = Payload2$Outbound;
|
|
14565
14851
|
}
|
|
14566
|
-
export declare function
|
|
14567
|
-
export declare function
|
|
14852
|
+
export declare function payload2ToJSON(payload2: Payload2): string;
|
|
14853
|
+
export declare function payload2FromJSON(jsonString: string): SafeParseResult<Payload2, SDKValidationError>;
|
|
14568
14854
|
/** @internal */
|
|
14569
|
-
export declare const
|
|
14855
|
+
export declare const Payload1$inboundSchema: z.ZodType<Payload1, z.ZodTypeDef, unknown>;
|
|
14570
14856
|
/** @internal */
|
|
14571
|
-
export type
|
|
14857
|
+
export type Payload1$Outbound = {};
|
|
14572
14858
|
/** @internal */
|
|
14573
|
-
export declare const
|
|
14859
|
+
export declare const Payload1$outboundSchema: z.ZodType<Payload1$Outbound, z.ZodTypeDef, Payload1>;
|
|
14574
14860
|
/**
|
|
14575
14861
|
* @internal
|
|
14576
14862
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
14577
14863
|
*/
|
|
14578
|
-
export declare namespace
|
|
14579
|
-
/** @deprecated use `
|
|
14580
|
-
const inboundSchema: z.ZodType<
|
|
14581
|
-
/** @deprecated use `
|
|
14582
|
-
const outboundSchema: z.ZodType<
|
|
14583
|
-
/** @deprecated use `
|
|
14584
|
-
type Outbound =
|
|
14864
|
+
export declare namespace Payload1$ {
|
|
14865
|
+
/** @deprecated use `Payload1$inboundSchema` instead. */
|
|
14866
|
+
const inboundSchema: z.ZodType<Payload1, z.ZodTypeDef, unknown>;
|
|
14867
|
+
/** @deprecated use `Payload1$outboundSchema` instead. */
|
|
14868
|
+
const outboundSchema: z.ZodType<Payload1$Outbound, z.ZodTypeDef, Payload1>;
|
|
14869
|
+
/** @deprecated use `Payload1$Outbound` instead. */
|
|
14870
|
+
type Outbound = Payload1$Outbound;
|
|
14585
14871
|
}
|
|
14586
|
-
export declare function
|
|
14587
|
-
export declare function
|
|
14872
|
+
export declare function payload1ToJSON(payload1: Payload1): string;
|
|
14873
|
+
export declare function payload1FromJSON(jsonString: string): SafeParseResult<Payload1, SDKValidationError>;
|
|
14588
14874
|
/** @internal */
|
|
14589
14875
|
export declare const Payload$inboundSchema: z.ZodType<Payload, z.ZodTypeDef, unknown>;
|
|
14590
14876
|
/** @internal */
|
|
14591
|
-
export type Payload$Outbound =
|
|
14877
|
+
export type Payload$Outbound = Payload1$Outbound | Three$Outbound | Nine$Outbound | Nineteen$Outbound | TwentyEight$Outbound | ThirtyThree$Outbound | FortyThree$Outbound | EightyFour$Outbound | EightyEight$Outbound | NinetyThree$Outbound | NinetyFive$Outbound | NinetySix$Outbound | NinetySeven$Outbound | NinetyNine$Outbound | OneHundredAndOne$Outbound | OneHundredAndNine$Outbound | OneHundredAndTen$Outbound | OneHundredAndEleven$Outbound | OneHundredAndTwelve$Outbound | OneHundredAndFifteen$Outbound | OneHundredAndSeventeen$Outbound | OneHundredAndThirtyOne$Outbound | OneHundredAndForty$Outbound | OneHundredAndFortyFour$Outbound | Four$Outbound | Fourteen$Outbound | Seventeen$Outbound | Eighteen$Outbound | TwentyThree$Outbound | TwentyFive$Outbound | TwentySix$Outbound | TwentySeven$Outbound | ThirtySix$Outbound | FortyOne$Outbound | FortyFive$Outbound | FortyEight$Outbound | FiftyTwo$Outbound | FiftyFive$Outbound | SixtyThree$Outbound | SixtyNine$Outbound | Seventy$Outbound | SeventyOne$Outbound | SeventySix$Outbound | EightyOne$Outbound | EightyTwo$Outbound | EightyThree$Outbound | EightySix$Outbound | EightySeven$Outbound | Ninety$Outbound | NinetyOne$Outbound | OneHundred$Outbound | OneHundredAndSeven$Outbound | OneHundredAndThirteen$Outbound | OneHundredAndFourteen$Outbound | OneHundredAndSixteen$Outbound | OneHundredAndNineteen$Outbound | OneHundredAndTwenty$Outbound | OneHundredAndTwentyEight$Outbound | OneHundredAndTwentyNine$Outbound | OneHundredAndThirty$Outbound | OneHundredAndThirtySeven$Outbound | OneHundredAndFortyOne$Outbound | OneHundredAndFortyTwo$Outbound | OneHundredAndFortyThree$Outbound | Five$Outbound | Eight$Outbound | Ten$Outbound | Twelve$Outbound | Thirteen$Outbound | TwentyOne$Outbound | TwentyTwo$Outbound | TwentyFour$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound | ThirtyEight$Outbound | ThirtyNine$Outbound | FortyFour$Outbound | FortySeven$Outbound | FortyNine$Outbound | Fifty$Outbound | FiftyOne$Outbound | FiftyThree$Outbound | FiftyFour$Outbound | FiftyEight$Outbound | Sixty$Outbound | SixtyOne$Outbound | SeventyTwo$Outbound | SeventySeven$Outbound | SeventyEight$Outbound | Eighty$Outbound | EightyFive$Outbound | EightyNine$Outbound | NinetyTwo$Outbound | OneHundredAndFive$Outbound | OneHundredAndEight$Outbound | OneHundredAndEighteen$Outbound | OneHundredAndTwentyFive$Outbound | OneHundredAndThirtyTwo$Outbound | OneHundredAndThirtyFour$Outbound | OneHundredAndThirtyFive$Outbound | OneHundredAndThirtyEight$Outbound | OneHundredAndFortyFive$Outbound | OneHundredAndFortySix$Outbound | Payload2$Outbound | Six$Outbound | Eleven$Outbound | Fifteen$Outbound | Sixteen$Outbound | Twenty$Outbound | TwentyNine$Outbound | FortySix$Outbound | SeventyFour$Outbound | SeventyFive$Outbound | NinetyFour$Outbound | OneHundredAndTwo$Outbound | OneHundredAndTwentySix$Outbound | OneHundredAndTwentySeven$Outbound | OneHundredAndThirtyThree$Outbound | OneHundredAndThirtySix$Outbound | OneHundredAndThirtyNine$Outbound | OneHundredAndFortySeven$Outbound | Thirty$Outbound | FortyTwo$Outbound | FiftyNine$Outbound | SixtySix$Outbound | SeventyNine$Outbound | OneHundredAndSix$Outbound | Forty$Outbound | SixtyTwo$Outbound | SixtyFive$Outbound | NinetyEight$Outbound | OneHundredAndFour$Outbound | OneHundredAndTwentyTwo$Outbound | OneHundredAndTwentyThree$Outbound | OneHundredAndTwentyFour$Outbound | OneHundredAndFortyEight$Outbound | SixtyFour$Outbound | SixtySeven$Outbound | SeventyThree$Outbound | OneHundredAndThree$Outbound | OneHundredAndTwentyOne$Outbound | FiftySix$Outbound | Seven$Outbound | ThirtySeven$Outbound | SixtyEight$Outbound | FiftySeven$Outbound;
|
|
14592
14878
|
/** @internal */
|
|
14593
14879
|
export declare const Payload$outboundSchema: z.ZodType<Payload$Outbound, z.ZodTypeDef, Payload>;
|
|
14594
14880
|
/**
|
|
@@ -14614,8 +14900,12 @@ export type UserEvent$Outbound = {
|
|
|
14614
14900
|
entities: Array<Entities$Outbound>;
|
|
14615
14901
|
createdAt: number;
|
|
14616
14902
|
user?: User$Outbound | undefined;
|
|
14903
|
+
principal?: Two$Outbound | One$Outbound | undefined;
|
|
14904
|
+
via?: Array<Via2$Outbound | Via1$Outbound> | undefined;
|
|
14617
14905
|
userId: string;
|
|
14618
|
-
|
|
14906
|
+
principalId: string;
|
|
14907
|
+
viaIds?: Array<string> | undefined;
|
|
14908
|
+
payload?: Payload1$Outbound | Three$Outbound | Nine$Outbound | Nineteen$Outbound | TwentyEight$Outbound | ThirtyThree$Outbound | FortyThree$Outbound | EightyFour$Outbound | EightyEight$Outbound | NinetyThree$Outbound | NinetyFive$Outbound | NinetySix$Outbound | NinetySeven$Outbound | NinetyNine$Outbound | OneHundredAndOne$Outbound | OneHundredAndNine$Outbound | OneHundredAndTen$Outbound | OneHundredAndEleven$Outbound | OneHundredAndTwelve$Outbound | OneHundredAndFifteen$Outbound | OneHundredAndSeventeen$Outbound | OneHundredAndThirtyOne$Outbound | OneHundredAndForty$Outbound | OneHundredAndFortyFour$Outbound | Four$Outbound | Fourteen$Outbound | Seventeen$Outbound | Eighteen$Outbound | TwentyThree$Outbound | TwentyFive$Outbound | TwentySix$Outbound | TwentySeven$Outbound | ThirtySix$Outbound | FortyOne$Outbound | FortyFive$Outbound | FortyEight$Outbound | FiftyTwo$Outbound | FiftyFive$Outbound | SixtyThree$Outbound | SixtyNine$Outbound | Seventy$Outbound | SeventyOne$Outbound | SeventySix$Outbound | EightyOne$Outbound | EightyTwo$Outbound | EightyThree$Outbound | EightySix$Outbound | EightySeven$Outbound | Ninety$Outbound | NinetyOne$Outbound | OneHundred$Outbound | OneHundredAndSeven$Outbound | OneHundredAndThirteen$Outbound | OneHundredAndFourteen$Outbound | OneHundredAndSixteen$Outbound | OneHundredAndNineteen$Outbound | OneHundredAndTwenty$Outbound | OneHundredAndTwentyEight$Outbound | OneHundredAndTwentyNine$Outbound | OneHundredAndThirty$Outbound | OneHundredAndThirtySeven$Outbound | OneHundredAndFortyOne$Outbound | OneHundredAndFortyTwo$Outbound | OneHundredAndFortyThree$Outbound | Five$Outbound | Eight$Outbound | Ten$Outbound | Twelve$Outbound | Thirteen$Outbound | TwentyOne$Outbound | TwentyTwo$Outbound | TwentyFour$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound | ThirtyEight$Outbound | ThirtyNine$Outbound | FortyFour$Outbound | FortySeven$Outbound | FortyNine$Outbound | Fifty$Outbound | FiftyOne$Outbound | FiftyThree$Outbound | FiftyFour$Outbound | FiftyEight$Outbound | Sixty$Outbound | SixtyOne$Outbound | SeventyTwo$Outbound | SeventySeven$Outbound | SeventyEight$Outbound | Eighty$Outbound | EightyFive$Outbound | EightyNine$Outbound | NinetyTwo$Outbound | OneHundredAndFive$Outbound | OneHundredAndEight$Outbound | OneHundredAndEighteen$Outbound | OneHundredAndTwentyFive$Outbound | OneHundredAndThirtyTwo$Outbound | OneHundredAndThirtyFour$Outbound | OneHundredAndThirtyFive$Outbound | OneHundredAndThirtyEight$Outbound | OneHundredAndFortyFive$Outbound | OneHundredAndFortySix$Outbound | Payload2$Outbound | Six$Outbound | Eleven$Outbound | Fifteen$Outbound | Sixteen$Outbound | Twenty$Outbound | TwentyNine$Outbound | FortySix$Outbound | SeventyFour$Outbound | SeventyFive$Outbound | NinetyFour$Outbound | OneHundredAndTwo$Outbound | OneHundredAndTwentySix$Outbound | OneHundredAndTwentySeven$Outbound | OneHundredAndThirtyThree$Outbound | OneHundredAndThirtySix$Outbound | OneHundredAndThirtyNine$Outbound | OneHundredAndFortySeven$Outbound | Thirty$Outbound | FortyTwo$Outbound | FiftyNine$Outbound | SixtySix$Outbound | SeventyNine$Outbound | OneHundredAndSix$Outbound | Forty$Outbound | SixtyTwo$Outbound | SixtyFive$Outbound | NinetyEight$Outbound | OneHundredAndFour$Outbound | OneHundredAndTwentyTwo$Outbound | OneHundredAndTwentyThree$Outbound | OneHundredAndTwentyFour$Outbound | OneHundredAndFortyEight$Outbound | SixtyFour$Outbound | SixtySeven$Outbound | SeventyThree$Outbound | OneHundredAndThree$Outbound | OneHundredAndTwentyOne$Outbound | FiftySix$Outbound | Seven$Outbound | ThirtySeven$Outbound | SixtyEight$Outbound | FiftySeven$Outbound | undefined;
|
|
14619
14909
|
};
|
|
14620
14910
|
/** @internal */
|
|
14621
14911
|
export declare const UserEvent$outboundSchema: z.ZodType<UserEvent$Outbound, z.ZodTypeDef, UserEvent>;
|