@vercel/sdk 1.6.8 → 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 +310 -118
- package/bin/mcp-server.js.map +18 -18
- package/docs/sdks/user/README.md +2 -0
- package/esm/__tests__/environment.test.js +12 -12
- package/esm/__tests__/environment.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +13 -15
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/funcs/userListUserEvents.js +1 -0
- package/esm/funcs/userListUserEvents.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- 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 -3
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +1 -1
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/createprojectop.d.ts +6 -0
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +2 -0
- 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/getbypassipop.d.ts +28 -28
- package/esm/models/getbypassipop.d.ts.map +1 -1
- package/esm/models/getbypassipop.js +28 -28
- package/esm/models/getbypassipop.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/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 +75 -0
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +56 -0
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +361 -114
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +338 -98
- package/esm/models/userevent.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/environment.test.ts +12 -12
- package/src/__tests__/projects.test.ts +13 -15
- package/src/funcs/userListUserEvents.ts +1 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/authuser.ts +1 -1
- package/src/models/createprojectop.ts +2 -0
- package/src/models/createwebhookop.ts +8 -0
- package/src/models/getbypassipop.ts +56 -56
- 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/teamlimited.ts +34 -1
- package/src/models/updateprojectdatacacheop.ts +2 -0
- package/src/models/updateprojectop.ts +148 -0
- package/src/models/userevent.ts +620 -179
- package/vercel-spec.json +282 -87
|
@@ -6,9 +6,6 @@ import { SDKValidationError } from "./sdkvalidationerror.js";
|
|
|
6
6
|
* The type of entity.
|
|
7
7
|
*/
|
|
8
8
|
export declare const UserEventType: {
|
|
9
|
-
readonly Flag: "flag";
|
|
10
|
-
readonly FlagsSegment: "flags-segment";
|
|
11
|
-
readonly FlagsSettings: "flags-settings";
|
|
12
9
|
readonly Author: "author";
|
|
13
10
|
readonly BitbucketLogin: "bitbucket_login";
|
|
14
11
|
readonly Bold: "bold";
|
|
@@ -20,6 +17,9 @@ export declare const UserEventType: {
|
|
|
20
17
|
readonly HookName: "hook_name";
|
|
21
18
|
readonly Integration: "integration";
|
|
22
19
|
readonly EdgeConfig: "edge-config";
|
|
20
|
+
readonly Flag: "flag";
|
|
21
|
+
readonly FlagsSegment: "flags-segment";
|
|
22
|
+
readonly FlagsSettings: "flags-settings";
|
|
23
23
|
readonly Link: "link";
|
|
24
24
|
readonly ProjectName: "project_name";
|
|
25
25
|
readonly ScalingRules: "scaling_rules";
|
|
@@ -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;
|
|
83
|
+
avatar: string;
|
|
84
|
+
email: string;
|
|
85
|
+
slug?: string | undefined;
|
|
86
|
+
uid: string;
|
|
87
|
+
username: string;
|
|
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;
|
|
56
111
|
avatar: string;
|
|
57
112
|
email: string;
|
|
58
113
|
slug?: string | undefined;
|
|
59
114
|
uid: string;
|
|
60
115
|
username: string;
|
|
61
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";
|
|
@@ -755,11 +811,11 @@ export type NinetyNine = {
|
|
|
755
811
|
storeType: StoreType;
|
|
756
812
|
};
|
|
757
813
|
export declare const UserEventPayloadType: {
|
|
758
|
-
readonly Integration: "integration";
|
|
759
|
-
readonly EdgeConfig: "edge-config";
|
|
760
814
|
readonly Redis: "redis";
|
|
761
815
|
readonly Postgres: "postgres";
|
|
816
|
+
readonly EdgeConfig: "edge-config";
|
|
762
817
|
readonly Blob: "blob";
|
|
818
|
+
readonly Integration: "integration";
|
|
763
819
|
};
|
|
764
820
|
export type UserEventPayloadType = ClosedEnum<typeof UserEventPayloadType>;
|
|
765
821
|
/**
|
|
@@ -1311,11 +1367,11 @@ export type UserEventPayload73Role = ClosedEnum<typeof UserEventPayload73Role>;
|
|
|
1311
1367
|
export declare const PayloadOrigin: {
|
|
1312
1368
|
readonly Teams: "teams";
|
|
1313
1369
|
readonly Saml: "saml";
|
|
1314
|
-
readonly Link: "link";
|
|
1315
1370
|
readonly Github: "github";
|
|
1316
1371
|
readonly Gitlab: "gitlab";
|
|
1317
1372
|
readonly Bitbucket: "bitbucket";
|
|
1318
1373
|
readonly Mail: "mail";
|
|
1374
|
+
readonly Link: "link";
|
|
1319
1375
|
readonly Import: "import";
|
|
1320
1376
|
readonly Dsync: "dsync";
|
|
1321
1377
|
readonly Feedback: "feedback";
|
|
@@ -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 = {
|
|
@@ -1753,7 +1810,6 @@ export declare const PayloadReason: {
|
|
|
1753
1810
|
};
|
|
1754
1811
|
export type PayloadReason = ClosedEnum<typeof PayloadReason>;
|
|
1755
1812
|
export declare const PayloadBlockedDueToOverageType: {
|
|
1756
|
-
readonly AiCredits: "aiCredits";
|
|
1757
1813
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
1758
1814
|
readonly Artifacts: "artifacts";
|
|
1759
1815
|
readonly Bandwidth: "bandwidth";
|
|
@@ -1834,11 +1890,11 @@ export type PayloadTeamPermissions = ClosedEnum<typeof PayloadTeamPermissions>;
|
|
|
1834
1890
|
export declare const UserEventPayloadOrigin: {
|
|
1835
1891
|
readonly Teams: "teams";
|
|
1836
1892
|
readonly Saml: "saml";
|
|
1837
|
-
readonly Link: "link";
|
|
1838
1893
|
readonly Github: "github";
|
|
1839
1894
|
readonly Gitlab: "gitlab";
|
|
1840
1895
|
readonly Bitbucket: "bitbucket";
|
|
1841
1896
|
readonly Mail: "mail";
|
|
1897
|
+
readonly Link: "link";
|
|
1842
1898
|
readonly Import: "import";
|
|
1843
1899
|
readonly Dsync: "dsync";
|
|
1844
1900
|
readonly Feedback: "feedback";
|
|
@@ -1882,11 +1938,6 @@ export type UsageAlerts = {
|
|
|
1882
1938
|
warningAt?: number | null | undefined;
|
|
1883
1939
|
blockingAt?: number | null | undefined;
|
|
1884
1940
|
};
|
|
1885
|
-
export type AiCredits = {
|
|
1886
|
-
currentThreshold: number;
|
|
1887
|
-
warningAt?: number | null | undefined;
|
|
1888
|
-
blockedAt?: number | null | undefined;
|
|
1889
|
-
};
|
|
1890
1941
|
export type AnalyticsUsage = {
|
|
1891
1942
|
currentThreshold: number;
|
|
1892
1943
|
warningAt?: number | null | undefined;
|
|
@@ -2098,7 +2149,6 @@ export type WebAnalyticsEvent = {
|
|
|
2098
2149
|
blockedAt?: number | null | undefined;
|
|
2099
2150
|
};
|
|
2100
2151
|
export type OverageUsageAlerts = {
|
|
2101
|
-
aiCredits?: AiCredits | undefined;
|
|
2102
2152
|
analyticsUsage?: AnalyticsUsage | undefined;
|
|
2103
2153
|
artifacts?: Artifacts | undefined;
|
|
2104
2154
|
bandwidth?: Bandwidth | undefined;
|
|
@@ -2258,7 +2308,6 @@ export declare const UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason: {
|
|
|
2258
2308
|
};
|
|
2259
2309
|
export type UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason = ClosedEnum<typeof UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason>;
|
|
2260
2310
|
export declare const OverageReason: {
|
|
2261
|
-
readonly AiCredits: "aiCredits";
|
|
2262
2311
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
2263
2312
|
readonly Artifacts: "artifacts";
|
|
2264
2313
|
readonly Bandwidth: "bandwidth";
|
|
@@ -2316,7 +2365,6 @@ export declare const UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason:
|
|
|
2316
2365
|
};
|
|
2317
2366
|
export type UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason = ClosedEnum<typeof UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason>;
|
|
2318
2367
|
export declare const PayloadOverageReason: {
|
|
2319
|
-
readonly AiCredits: "aiCredits";
|
|
2320
2368
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
2321
2369
|
readonly Artifacts: "artifacts";
|
|
2322
2370
|
readonly Bandwidth: "bandwidth";
|
|
@@ -2374,7 +2422,6 @@ export declare const UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason: {
|
|
|
2374
2422
|
};
|
|
2375
2423
|
export type UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason = ClosedEnum<typeof UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason>;
|
|
2376
2424
|
export declare const UserEventPayloadOverageReason: {
|
|
2377
|
-
readonly AiCredits: "aiCredits";
|
|
2378
2425
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
2379
2426
|
readonly Artifacts: "artifacts";
|
|
2380
2427
|
readonly Bandwidth: "bandwidth";
|
|
@@ -2680,11 +2727,11 @@ export type OldEnvVar = {
|
|
|
2680
2727
|
/**
|
|
2681
2728
|
* The date when the Shared Env Var was created.
|
|
2682
2729
|
*/
|
|
2683
|
-
created
|
|
2730
|
+
created?: Date | undefined;
|
|
2684
2731
|
/**
|
|
2685
2732
|
* The name of the Shared Env Var.
|
|
2686
2733
|
*/
|
|
2687
|
-
key
|
|
2734
|
+
key?: string | undefined;
|
|
2688
2735
|
/**
|
|
2689
2736
|
* The unique identifier of the owner (team) the Shared Env Var was created for.
|
|
2690
2737
|
*/
|
|
@@ -2692,7 +2739,7 @@ export type OldEnvVar = {
|
|
|
2692
2739
|
/**
|
|
2693
2740
|
* The unique identifier of the Shared Env Var.
|
|
2694
2741
|
*/
|
|
2695
|
-
id
|
|
2742
|
+
id?: string | undefined;
|
|
2696
2743
|
/**
|
|
2697
2744
|
* The unique identifier of the user who created the Shared Env Var.
|
|
2698
2745
|
*/
|
|
@@ -2740,7 +2787,7 @@ export type OldEnvVar = {
|
|
|
2740
2787
|
/**
|
|
2741
2788
|
* whether or not this env variable is decrypted
|
|
2742
2789
|
*/
|
|
2743
|
-
decrypted
|
|
2790
|
+
decrypted?: boolean | undefined;
|
|
2744
2791
|
/**
|
|
2745
2792
|
* A user provided comment that describes what this Shared Env Var is for.
|
|
2746
2793
|
*/
|
|
@@ -2779,11 +2826,11 @@ export type NewEnvVar = {
|
|
|
2779
2826
|
/**
|
|
2780
2827
|
* The date when the Shared Env Var was created.
|
|
2781
2828
|
*/
|
|
2782
|
-
created
|
|
2829
|
+
created?: Date | undefined;
|
|
2783
2830
|
/**
|
|
2784
2831
|
* The name of the Shared Env Var.
|
|
2785
2832
|
*/
|
|
2786
|
-
key
|
|
2833
|
+
key?: string | undefined;
|
|
2787
2834
|
/**
|
|
2788
2835
|
* The unique identifier of the owner (team) the Shared Env Var was created for.
|
|
2789
2836
|
*/
|
|
@@ -2791,7 +2838,7 @@ export type NewEnvVar = {
|
|
|
2791
2838
|
/**
|
|
2792
2839
|
* The unique identifier of the Shared Env Var.
|
|
2793
2840
|
*/
|
|
2794
|
-
id
|
|
2841
|
+
id?: string | undefined;
|
|
2795
2842
|
/**
|
|
2796
2843
|
* The unique identifier of the user who created the Shared Env Var.
|
|
2797
2844
|
*/
|
|
@@ -2839,7 +2886,7 @@ export type NewEnvVar = {
|
|
|
2839
2886
|
/**
|
|
2840
2887
|
* whether or not this env variable is decrypted
|
|
2841
2888
|
*/
|
|
2842
|
-
decrypted
|
|
2889
|
+
decrypted?: boolean | undefined;
|
|
2843
2890
|
/**
|
|
2844
2891
|
* A user provided comment that describes what this Shared Env Var is for.
|
|
2845
2892
|
*/
|
|
@@ -3582,7 +3629,7 @@ export type Action = ClosedEnum<typeof Action>;
|
|
|
3582
3629
|
/**
|
|
3583
3630
|
* The payload of the event, if requested.
|
|
3584
3631
|
*/
|
|
3585
|
-
export type
|
|
3632
|
+
export type Payload2 = {
|
|
3586
3633
|
action: Action;
|
|
3587
3634
|
id: string;
|
|
3588
3635
|
slug: string;
|
|
@@ -3591,8 +3638,8 @@ export type Two = {
|
|
|
3591
3638
|
/**
|
|
3592
3639
|
* The payload of the event, if requested.
|
|
3593
3640
|
*/
|
|
3594
|
-
export type
|
|
3595
|
-
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;
|
|
3596
3643
|
/**
|
|
3597
3644
|
* Array of events generated by the User.
|
|
3598
3645
|
*/
|
|
@@ -3614,14 +3661,27 @@ export type UserEvent = {
|
|
|
3614
3661
|
*/
|
|
3615
3662
|
createdAt: number;
|
|
3616
3663
|
/**
|
|
3617
|
-
* Metadata for
|
|
3664
|
+
* Metadata for {@link userId}.
|
|
3618
3665
|
*/
|
|
3619
3666
|
user?: User | undefined;
|
|
3667
|
+
principal?: Two | One | undefined;
|
|
3668
|
+
/**
|
|
3669
|
+
* Metadata for {@link viaIds}.
|
|
3670
|
+
*/
|
|
3671
|
+
via?: Array<Via2 | Via1> | undefined;
|
|
3620
3672
|
/**
|
|
3621
|
-
*
|
|
3673
|
+
* When the principal who generated the event is a user, this is their ID; otherwise, it is empty.
|
|
3622
3674
|
*/
|
|
3623
3675
|
userId: string;
|
|
3624
|
-
|
|
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;
|
|
3625
3685
|
};
|
|
3626
3686
|
/** @internal */
|
|
3627
3687
|
export declare const UserEventType$inboundSchema: z.ZodNativeEnum<typeof UserEventType>;
|
|
@@ -3634,9 +3694,6 @@ export declare const UserEventType$outboundSchema: z.ZodNativeEnum<typeof UserEv
|
|
|
3634
3694
|
export declare namespace UserEventType$ {
|
|
3635
3695
|
/** @deprecated use `UserEventType$inboundSchema` instead. */
|
|
3636
3696
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3637
|
-
readonly Flag: "flag";
|
|
3638
|
-
readonly FlagsSegment: "flags-segment";
|
|
3639
|
-
readonly FlagsSettings: "flags-settings";
|
|
3640
3697
|
readonly Author: "author";
|
|
3641
3698
|
readonly BitbucketLogin: "bitbucket_login";
|
|
3642
3699
|
readonly Bold: "bold";
|
|
@@ -3648,6 +3705,9 @@ export declare namespace UserEventType$ {
|
|
|
3648
3705
|
readonly HookName: "hook_name";
|
|
3649
3706
|
readonly Integration: "integration";
|
|
3650
3707
|
readonly EdgeConfig: "edge-config";
|
|
3708
|
+
readonly Flag: "flag";
|
|
3709
|
+
readonly FlagsSegment: "flags-segment";
|
|
3710
|
+
readonly FlagsSettings: "flags-settings";
|
|
3651
3711
|
readonly Link: "link";
|
|
3652
3712
|
readonly ProjectName: "project_name";
|
|
3653
3713
|
readonly ScalingRules: "scaling_rules";
|
|
@@ -3658,9 +3718,6 @@ export declare namespace UserEventType$ {
|
|
|
3658
3718
|
}>;
|
|
3659
3719
|
/** @deprecated use `UserEventType$outboundSchema` instead. */
|
|
3660
3720
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3661
|
-
readonly Flag: "flag";
|
|
3662
|
-
readonly FlagsSegment: "flags-segment";
|
|
3663
|
-
readonly FlagsSettings: "flags-settings";
|
|
3664
3721
|
readonly Author: "author";
|
|
3665
3722
|
readonly BitbucketLogin: "bitbucket_login";
|
|
3666
3723
|
readonly Bold: "bold";
|
|
@@ -3672,6 +3729,9 @@ export declare namespace UserEventType$ {
|
|
|
3672
3729
|
readonly HookName: "hook_name";
|
|
3673
3730
|
readonly Integration: "integration";
|
|
3674
3731
|
readonly EdgeConfig: "edge-config";
|
|
3732
|
+
readonly Flag: "flag";
|
|
3733
|
+
readonly FlagsSegment: "flags-segment";
|
|
3734
|
+
readonly FlagsSettings: "flags-settings";
|
|
3675
3735
|
readonly Link: "link";
|
|
3676
3736
|
readonly ProjectName: "project_name";
|
|
3677
3737
|
readonly ScalingRules: "scaling_rules";
|
|
@@ -3711,9 +3771,9 @@ export declare const User$inboundSchema: z.ZodType<User, z.ZodTypeDef, unknown>;
|
|
|
3711
3771
|
export type User$Outbound = {
|
|
3712
3772
|
avatar: string;
|
|
3713
3773
|
email: string;
|
|
3774
|
+
username: string;
|
|
3714
3775
|
slug?: string | undefined;
|
|
3715
3776
|
uid: string;
|
|
3716
|
-
username: string;
|
|
3717
3777
|
};
|
|
3718
3778
|
/** @internal */
|
|
3719
3779
|
export declare const User$outboundSchema: z.ZodType<User$Outbound, z.ZodTypeDef, User>;
|
|
@@ -3732,6 +3792,220 @@ export declare namespace User$ {
|
|
|
3732
3792
|
export declare function userToJSON(user: User): string;
|
|
3733
3793
|
export declare function userFromJSON(jsonString: string): SafeParseResult<User, SDKValidationError>;
|
|
3734
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 */
|
|
3735
4009
|
export declare const GrantType$inboundSchema: z.ZodNativeEnum<typeof GrantType>;
|
|
3736
4010
|
/** @internal */
|
|
3737
4011
|
export declare const GrantType$outboundSchema: z.ZodNativeEnum<typeof GrantType>;
|
|
@@ -6116,19 +6390,19 @@ export declare const UserEventPayloadType$outboundSchema: z.ZodNativeEnum<typeof
|
|
|
6116
6390
|
export declare namespace UserEventPayloadType$ {
|
|
6117
6391
|
/** @deprecated use `UserEventPayloadType$inboundSchema` instead. */
|
|
6118
6392
|
const inboundSchema: z.ZodNativeEnum<{
|
|
6119
|
-
readonly Integration: "integration";
|
|
6120
|
-
readonly EdgeConfig: "edge-config";
|
|
6121
6393
|
readonly Redis: "redis";
|
|
6122
6394
|
readonly Postgres: "postgres";
|
|
6395
|
+
readonly EdgeConfig: "edge-config";
|
|
6123
6396
|
readonly Blob: "blob";
|
|
6397
|
+
readonly Integration: "integration";
|
|
6124
6398
|
}>;
|
|
6125
6399
|
/** @deprecated use `UserEventPayloadType$outboundSchema` instead. */
|
|
6126
6400
|
const outboundSchema: z.ZodNativeEnum<{
|
|
6127
|
-
readonly Integration: "integration";
|
|
6128
|
-
readonly EdgeConfig: "edge-config";
|
|
6129
6401
|
readonly Redis: "redis";
|
|
6130
6402
|
readonly Postgres: "postgres";
|
|
6403
|
+
readonly EdgeConfig: "edge-config";
|
|
6131
6404
|
readonly Blob: "blob";
|
|
6405
|
+
readonly Integration: "integration";
|
|
6132
6406
|
}>;
|
|
6133
6407
|
}
|
|
6134
6408
|
/** @internal */
|
|
@@ -7851,11 +8125,11 @@ export declare namespace PayloadOrigin$ {
|
|
|
7851
8125
|
const inboundSchema: z.ZodNativeEnum<{
|
|
7852
8126
|
readonly Teams: "teams";
|
|
7853
8127
|
readonly Saml: "saml";
|
|
7854
|
-
readonly Link: "link";
|
|
7855
8128
|
readonly Github: "github";
|
|
7856
8129
|
readonly Gitlab: "gitlab";
|
|
7857
8130
|
readonly Bitbucket: "bitbucket";
|
|
7858
8131
|
readonly Mail: "mail";
|
|
8132
|
+
readonly Link: "link";
|
|
7859
8133
|
readonly Import: "import";
|
|
7860
8134
|
readonly Dsync: "dsync";
|
|
7861
8135
|
readonly Feedback: "feedback";
|
|
@@ -7865,11 +8139,11 @@ export declare namespace PayloadOrigin$ {
|
|
|
7865
8139
|
const outboundSchema: z.ZodNativeEnum<{
|
|
7866
8140
|
readonly Teams: "teams";
|
|
7867
8141
|
readonly Saml: "saml";
|
|
7868
|
-
readonly Link: "link";
|
|
7869
8142
|
readonly Github: "github";
|
|
7870
8143
|
readonly Gitlab: "gitlab";
|
|
7871
8144
|
readonly Bitbucket: "bitbucket";
|
|
7872
8145
|
readonly Mail: "mail";
|
|
8146
|
+
readonly Link: "link";
|
|
7873
8147
|
readonly Import: "import";
|
|
7874
8148
|
readonly Dsync: "dsync";
|
|
7875
8149
|
readonly Feedback: "feedback";
|
|
@@ -9102,10 +9376,12 @@ export declare namespace PayloadPurchaseType$ {
|
|
|
9102
9376
|
/** @deprecated use `PayloadPurchaseType$inboundSchema` instead. */
|
|
9103
9377
|
const inboundSchema: z.ZodNativeEnum<{
|
|
9104
9378
|
readonly Enhanced: "enhanced";
|
|
9379
|
+
readonly Ultra: "ultra";
|
|
9105
9380
|
}>;
|
|
9106
9381
|
/** @deprecated use `PayloadPurchaseType$outboundSchema` instead. */
|
|
9107
9382
|
const outboundSchema: z.ZodNativeEnum<{
|
|
9108
9383
|
readonly Enhanced: "enhanced";
|
|
9384
|
+
readonly Ultra: "ultra";
|
|
9109
9385
|
}>;
|
|
9110
9386
|
}
|
|
9111
9387
|
/** @internal */
|
|
@@ -9481,7 +9757,6 @@ export declare const PayloadBlockedDueToOverageType$outboundSchema: z.ZodNativeE
|
|
|
9481
9757
|
export declare namespace PayloadBlockedDueToOverageType$ {
|
|
9482
9758
|
/** @deprecated use `PayloadBlockedDueToOverageType$inboundSchema` instead. */
|
|
9483
9759
|
const inboundSchema: z.ZodNativeEnum<{
|
|
9484
|
-
readonly AiCredits: "aiCredits";
|
|
9485
9760
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
9486
9761
|
readonly Artifacts: "artifacts";
|
|
9487
9762
|
readonly Bandwidth: "bandwidth";
|
|
@@ -9527,7 +9802,6 @@ export declare namespace PayloadBlockedDueToOverageType$ {
|
|
|
9527
9802
|
}>;
|
|
9528
9803
|
/** @deprecated use `PayloadBlockedDueToOverageType$outboundSchema` instead. */
|
|
9529
9804
|
const outboundSchema: z.ZodNativeEnum<{
|
|
9530
|
-
readonly AiCredits: "aiCredits";
|
|
9531
9805
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
9532
9806
|
readonly Artifacts: "artifacts";
|
|
9533
9807
|
readonly Bandwidth: "bandwidth";
|
|
@@ -9695,11 +9969,11 @@ export declare namespace UserEventPayloadOrigin$ {
|
|
|
9695
9969
|
const inboundSchema: z.ZodNativeEnum<{
|
|
9696
9970
|
readonly Teams: "teams";
|
|
9697
9971
|
readonly Saml: "saml";
|
|
9698
|
-
readonly Link: "link";
|
|
9699
9972
|
readonly Github: "github";
|
|
9700
9973
|
readonly Gitlab: "gitlab";
|
|
9701
9974
|
readonly Bitbucket: "bitbucket";
|
|
9702
9975
|
readonly Mail: "mail";
|
|
9976
|
+
readonly Link: "link";
|
|
9703
9977
|
readonly Import: "import";
|
|
9704
9978
|
readonly Dsync: "dsync";
|
|
9705
9979
|
readonly Feedback: "feedback";
|
|
@@ -9709,11 +9983,11 @@ export declare namespace UserEventPayloadOrigin$ {
|
|
|
9709
9983
|
const outboundSchema: z.ZodNativeEnum<{
|
|
9710
9984
|
readonly Teams: "teams";
|
|
9711
9985
|
readonly Saml: "saml";
|
|
9712
|
-
readonly Link: "link";
|
|
9713
9986
|
readonly Github: "github";
|
|
9714
9987
|
readonly Gitlab: "gitlab";
|
|
9715
9988
|
readonly Bitbucket: "bitbucket";
|
|
9716
9989
|
readonly Mail: "mail";
|
|
9990
|
+
readonly Link: "link";
|
|
9717
9991
|
readonly Import: "import";
|
|
9718
9992
|
readonly Dsync: "dsync";
|
|
9719
9993
|
readonly Feedback: "feedback";
|
|
@@ -9845,30 +10119,6 @@ export declare namespace UsageAlerts$ {
|
|
|
9845
10119
|
export declare function usageAlertsToJSON(usageAlerts: UsageAlerts): string;
|
|
9846
10120
|
export declare function usageAlertsFromJSON(jsonString: string): SafeParseResult<UsageAlerts, SDKValidationError>;
|
|
9847
10121
|
/** @internal */
|
|
9848
|
-
export declare const AiCredits$inboundSchema: z.ZodType<AiCredits, z.ZodTypeDef, unknown>;
|
|
9849
|
-
/** @internal */
|
|
9850
|
-
export type AiCredits$Outbound = {
|
|
9851
|
-
currentThreshold: number;
|
|
9852
|
-
warningAt?: number | null | undefined;
|
|
9853
|
-
blockedAt?: number | null | undefined;
|
|
9854
|
-
};
|
|
9855
|
-
/** @internal */
|
|
9856
|
-
export declare const AiCredits$outboundSchema: z.ZodType<AiCredits$Outbound, z.ZodTypeDef, AiCredits>;
|
|
9857
|
-
/**
|
|
9858
|
-
* @internal
|
|
9859
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9860
|
-
*/
|
|
9861
|
-
export declare namespace AiCredits$ {
|
|
9862
|
-
/** @deprecated use `AiCredits$inboundSchema` instead. */
|
|
9863
|
-
const inboundSchema: z.ZodType<AiCredits, z.ZodTypeDef, unknown>;
|
|
9864
|
-
/** @deprecated use `AiCredits$outboundSchema` instead. */
|
|
9865
|
-
const outboundSchema: z.ZodType<AiCredits$Outbound, z.ZodTypeDef, AiCredits>;
|
|
9866
|
-
/** @deprecated use `AiCredits$Outbound` instead. */
|
|
9867
|
-
type Outbound = AiCredits$Outbound;
|
|
9868
|
-
}
|
|
9869
|
-
export declare function aiCreditsToJSON(aiCredits: AiCredits): string;
|
|
9870
|
-
export declare function aiCreditsFromJSON(jsonString: string): SafeParseResult<AiCredits, SDKValidationError>;
|
|
9871
|
-
/** @internal */
|
|
9872
10122
|
export declare const AnalyticsUsage$inboundSchema: z.ZodType<AnalyticsUsage, z.ZodTypeDef, unknown>;
|
|
9873
10123
|
/** @internal */
|
|
9874
10124
|
export type AnalyticsUsage$Outbound = {
|
|
@@ -10880,7 +11130,6 @@ export declare function webAnalyticsEventFromJSON(jsonString: string): SafeParse
|
|
|
10880
11130
|
export declare const OverageUsageAlerts$inboundSchema: z.ZodType<OverageUsageAlerts, z.ZodTypeDef, unknown>;
|
|
10881
11131
|
/** @internal */
|
|
10882
11132
|
export type OverageUsageAlerts$Outbound = {
|
|
10883
|
-
aiCredits?: AiCredits$Outbound | undefined;
|
|
10884
11133
|
analyticsUsage?: AnalyticsUsage$Outbound | undefined;
|
|
10885
11134
|
artifacts?: Artifacts$Outbound | undefined;
|
|
10886
11135
|
bandwidth?: Bandwidth$Outbound | undefined;
|
|
@@ -11335,7 +11584,6 @@ export declare const OverageReason$outboundSchema: z.ZodNativeEnum<typeof Overag
|
|
|
11335
11584
|
export declare namespace OverageReason$ {
|
|
11336
11585
|
/** @deprecated use `OverageReason$inboundSchema` instead. */
|
|
11337
11586
|
const inboundSchema: z.ZodNativeEnum<{
|
|
11338
|
-
readonly AiCredits: "aiCredits";
|
|
11339
11587
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
11340
11588
|
readonly Artifacts: "artifacts";
|
|
11341
11589
|
readonly Bandwidth: "bandwidth";
|
|
@@ -11381,7 +11629,6 @@ export declare namespace OverageReason$ {
|
|
|
11381
11629
|
}>;
|
|
11382
11630
|
/** @deprecated use `OverageReason$outboundSchema` instead. */
|
|
11383
11631
|
const outboundSchema: z.ZodNativeEnum<{
|
|
11384
|
-
readonly AiCredits: "aiCredits";
|
|
11385
11632
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
11386
11633
|
readonly Artifacts: "artifacts";
|
|
11387
11634
|
readonly Bandwidth: "bandwidth";
|
|
@@ -11483,7 +11730,6 @@ export declare const PayloadOverageReason$outboundSchema: z.ZodNativeEnum<typeof
|
|
|
11483
11730
|
export declare namespace PayloadOverageReason$ {
|
|
11484
11731
|
/** @deprecated use `PayloadOverageReason$inboundSchema` instead. */
|
|
11485
11732
|
const inboundSchema: z.ZodNativeEnum<{
|
|
11486
|
-
readonly AiCredits: "aiCredits";
|
|
11487
11733
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
11488
11734
|
readonly Artifacts: "artifacts";
|
|
11489
11735
|
readonly Bandwidth: "bandwidth";
|
|
@@ -11529,7 +11775,6 @@ export declare namespace PayloadOverageReason$ {
|
|
|
11529
11775
|
}>;
|
|
11530
11776
|
/** @deprecated use `PayloadOverageReason$outboundSchema` instead. */
|
|
11531
11777
|
const outboundSchema: z.ZodNativeEnum<{
|
|
11532
|
-
readonly AiCredits: "aiCredits";
|
|
11533
11778
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
11534
11779
|
readonly Artifacts: "artifacts";
|
|
11535
11780
|
readonly Bandwidth: "bandwidth";
|
|
@@ -11631,7 +11876,6 @@ export declare const UserEventPayloadOverageReason$outboundSchema: z.ZodNativeEn
|
|
|
11631
11876
|
export declare namespace UserEventPayloadOverageReason$ {
|
|
11632
11877
|
/** @deprecated use `UserEventPayloadOverageReason$inboundSchema` instead. */
|
|
11633
11878
|
const inboundSchema: z.ZodNativeEnum<{
|
|
11634
|
-
readonly AiCredits: "aiCredits";
|
|
11635
11879
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
11636
11880
|
readonly Artifacts: "artifacts";
|
|
11637
11881
|
readonly Bandwidth: "bandwidth";
|
|
@@ -11677,7 +11921,6 @@ export declare namespace UserEventPayloadOverageReason$ {
|
|
|
11677
11921
|
}>;
|
|
11678
11922
|
/** @deprecated use `UserEventPayloadOverageReason$outboundSchema` instead. */
|
|
11679
11923
|
const outboundSchema: z.ZodNativeEnum<{
|
|
11680
|
-
readonly AiCredits: "aiCredits";
|
|
11681
11924
|
readonly AnalyticsUsage: "analyticsUsage";
|
|
11682
11925
|
readonly Artifacts: "artifacts";
|
|
11683
11926
|
readonly Bandwidth: "bandwidth";
|
|
@@ -12140,10 +12383,10 @@ export declare namespace UserEventPayloadTarget$ {
|
|
|
12140
12383
|
export declare const OldEnvVar$inboundSchema: z.ZodType<OldEnvVar, z.ZodTypeDef, unknown>;
|
|
12141
12384
|
/** @internal */
|
|
12142
12385
|
export type OldEnvVar$Outbound = {
|
|
12143
|
-
created
|
|
12144
|
-
key
|
|
12386
|
+
created?: string | undefined;
|
|
12387
|
+
key?: string | undefined;
|
|
12145
12388
|
ownerId?: string | null | undefined;
|
|
12146
|
-
id
|
|
12389
|
+
id?: string | undefined;
|
|
12147
12390
|
createdBy?: string | null | undefined;
|
|
12148
12391
|
deletedBy?: string | null | undefined;
|
|
12149
12392
|
updatedBy?: string | null | undefined;
|
|
@@ -12155,7 +12398,7 @@ export type OldEnvVar$Outbound = {
|
|
|
12155
12398
|
type?: string | undefined;
|
|
12156
12399
|
target?: Array<string> | undefined;
|
|
12157
12400
|
applyToAllCustomEnvironments?: boolean | undefined;
|
|
12158
|
-
decrypted
|
|
12401
|
+
decrypted?: boolean | undefined;
|
|
12159
12402
|
comment?: string | undefined;
|
|
12160
12403
|
lastEditedByDisplayName?: string | undefined;
|
|
12161
12404
|
};
|
|
@@ -12225,10 +12468,10 @@ export declare namespace UserEventPayload58Target$ {
|
|
|
12225
12468
|
export declare const NewEnvVar$inboundSchema: z.ZodType<NewEnvVar, z.ZodTypeDef, unknown>;
|
|
12226
12469
|
/** @internal */
|
|
12227
12470
|
export type NewEnvVar$Outbound = {
|
|
12228
|
-
created
|
|
12229
|
-
key
|
|
12471
|
+
created?: string | undefined;
|
|
12472
|
+
key?: string | undefined;
|
|
12230
12473
|
ownerId?: string | null | undefined;
|
|
12231
|
-
id
|
|
12474
|
+
id?: string | undefined;
|
|
12232
12475
|
createdBy?: string | null | undefined;
|
|
12233
12476
|
deletedBy?: string | null | undefined;
|
|
12234
12477
|
updatedBy?: string | null | undefined;
|
|
@@ -12240,7 +12483,7 @@ export type NewEnvVar$Outbound = {
|
|
|
12240
12483
|
type?: string | undefined;
|
|
12241
12484
|
target?: Array<string> | undefined;
|
|
12242
12485
|
applyToAllCustomEnvironments?: boolean | undefined;
|
|
12243
|
-
decrypted
|
|
12486
|
+
decrypted?: boolean | undefined;
|
|
12244
12487
|
comment?: string | undefined;
|
|
12245
12488
|
lastEditedByDisplayName?: string | undefined;
|
|
12246
12489
|
};
|
|
@@ -14584,54 +14827,54 @@ export declare namespace Action$ {
|
|
|
14584
14827
|
}>;
|
|
14585
14828
|
}
|
|
14586
14829
|
/** @internal */
|
|
14587
|
-
export declare const
|
|
14830
|
+
export declare const Payload2$inboundSchema: z.ZodType<Payload2, z.ZodTypeDef, unknown>;
|
|
14588
14831
|
/** @internal */
|
|
14589
|
-
export type
|
|
14832
|
+
export type Payload2$Outbound = {
|
|
14590
14833
|
action: string;
|
|
14591
14834
|
id: string;
|
|
14592
14835
|
slug: string;
|
|
14593
14836
|
projectId: string;
|
|
14594
14837
|
};
|
|
14595
14838
|
/** @internal */
|
|
14596
|
-
export declare const
|
|
14839
|
+
export declare const Payload2$outboundSchema: z.ZodType<Payload2$Outbound, z.ZodTypeDef, Payload2>;
|
|
14597
14840
|
/**
|
|
14598
14841
|
* @internal
|
|
14599
14842
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
14600
14843
|
*/
|
|
14601
|
-
export declare namespace
|
|
14602
|
-
/** @deprecated use `
|
|
14603
|
-
const inboundSchema: z.ZodType<
|
|
14604
|
-
/** @deprecated use `
|
|
14605
|
-
const outboundSchema: z.ZodType<
|
|
14606
|
-
/** @deprecated use `
|
|
14607
|
-
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;
|
|
14608
14851
|
}
|
|
14609
|
-
export declare function
|
|
14610
|
-
export declare function
|
|
14852
|
+
export declare function payload2ToJSON(payload2: Payload2): string;
|
|
14853
|
+
export declare function payload2FromJSON(jsonString: string): SafeParseResult<Payload2, SDKValidationError>;
|
|
14611
14854
|
/** @internal */
|
|
14612
|
-
export declare const
|
|
14855
|
+
export declare const Payload1$inboundSchema: z.ZodType<Payload1, z.ZodTypeDef, unknown>;
|
|
14613
14856
|
/** @internal */
|
|
14614
|
-
export type
|
|
14857
|
+
export type Payload1$Outbound = {};
|
|
14615
14858
|
/** @internal */
|
|
14616
|
-
export declare const
|
|
14859
|
+
export declare const Payload1$outboundSchema: z.ZodType<Payload1$Outbound, z.ZodTypeDef, Payload1>;
|
|
14617
14860
|
/**
|
|
14618
14861
|
* @internal
|
|
14619
14862
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
14620
14863
|
*/
|
|
14621
|
-
export declare namespace
|
|
14622
|
-
/** @deprecated use `
|
|
14623
|
-
const inboundSchema: z.ZodType<
|
|
14624
|
-
/** @deprecated use `
|
|
14625
|
-
const outboundSchema: z.ZodType<
|
|
14626
|
-
/** @deprecated use `
|
|
14627
|
-
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;
|
|
14628
14871
|
}
|
|
14629
|
-
export declare function
|
|
14630
|
-
export declare function
|
|
14872
|
+
export declare function payload1ToJSON(payload1: Payload1): string;
|
|
14873
|
+
export declare function payload1FromJSON(jsonString: string): SafeParseResult<Payload1, SDKValidationError>;
|
|
14631
14874
|
/** @internal */
|
|
14632
14875
|
export declare const Payload$inboundSchema: z.ZodType<Payload, z.ZodTypeDef, unknown>;
|
|
14633
14876
|
/** @internal */
|
|
14634
|
-
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;
|
|
14635
14878
|
/** @internal */
|
|
14636
14879
|
export declare const Payload$outboundSchema: z.ZodType<Payload$Outbound, z.ZodTypeDef, Payload>;
|
|
14637
14880
|
/**
|
|
@@ -14657,8 +14900,12 @@ export type UserEvent$Outbound = {
|
|
|
14657
14900
|
entities: Array<Entities$Outbound>;
|
|
14658
14901
|
createdAt: number;
|
|
14659
14902
|
user?: User$Outbound | undefined;
|
|
14903
|
+
principal?: Two$Outbound | One$Outbound | undefined;
|
|
14904
|
+
via?: Array<Via2$Outbound | Via1$Outbound> | undefined;
|
|
14660
14905
|
userId: string;
|
|
14661
|
-
|
|
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;
|
|
14662
14909
|
};
|
|
14663
14910
|
/** @internal */
|
|
14664
14911
|
export declare const UserEvent$outboundSchema: z.ZodType<UserEvent$Outbound, z.ZodTypeDef, UserEvent>;
|