@vercel/sdk 1.7.6 → 1.7.7
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 +2208 -1993
- package/bin/mcp-server.js.map +32 -23
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/createdeploymentop.d.ts +43 -43
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +27 -27
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +9 -0
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +6 -0
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +6 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +2 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/getaliasop.d.ts +108 -0
- package/esm/models/getaliasop.d.ts.map +1 -1
- package/esm/models/getaliasop.js +84 -0
- package/esm/models/getaliasop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +9 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +6 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +3 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +1 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +6 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +2 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +43 -6
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +31 -2
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/listaliasesop.d.ts +108 -0
- package/esm/models/listaliasesop.d.ts.map +1 -1
- package/esm/models/listaliasesop.js +85 -0
- package/esm/models/listaliasesop.js.map +1 -1
- package/esm/models/listauthtokensop.d.ts +0 -5
- package/esm/models/listauthtokensop.d.ts.map +1 -1
- package/esm/models/listauthtokensop.js +0 -2
- package/esm/models/listauthtokensop.js.map +1 -1
- package/esm/models/teamlimited.d.ts +29 -2
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +31 -2
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +9 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +6 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +18 -9
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +9 -3
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.d.ts +43 -6
- package/esm/models/updateresourcesecretsbyidop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.js +31 -2
- package/esm/models/updateresourcesecretsbyidop.js.map +1 -1
- package/esm/models/updateresourcesecretsop.d.ts +43 -6
- package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsop.js +33 -2
- package/esm/models/updateresourcesecretsop.js.map +1 -1
- package/esm/models/userevent.d.ts +1096 -1068
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +1384 -1355
- package/esm/models/userevent.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +2 -2
- 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/createdeploymentop.ts +75 -53
- package/src/models/createprojectop.ts +15 -0
- package/src/models/createwebhookop.ts +2 -0
- package/src/models/getaliasop.ts +204 -0
- package/src/models/getprojectsop.ts +15 -0
- package/src/models/getwebhookop.ts +1 -0
- package/src/models/getwebhooksop.ts +2 -0
- package/src/models/importresourceop.ts +92 -4
- package/src/models/listaliasesop.ts +213 -0
- package/src/models/listauthtokensop.ts +0 -7
- package/src/models/teamlimited.ts +56 -4
- package/src/models/updateprojectdatacacheop.ts +15 -0
- package/src/models/updateprojectop.ts +18 -3
- package/src/models/updateresourcesecretsbyidop.ts +103 -4
- package/src/models/updateresourcesecretsop.ts +84 -4
- package/src/models/userevent.ts +2506 -2435
- package/vercel-spec.json +270 -34
package/esm/models/userevent.js
CHANGED
|
@@ -65,16 +65,16 @@ export const Tier = {
|
|
|
65
65
|
Pro: "pro",
|
|
66
66
|
Plus: "plus",
|
|
67
67
|
};
|
|
68
|
-
export const
|
|
68
|
+
export const UserEventPayload138Action = {
|
|
69
69
|
Enable: "enable",
|
|
70
70
|
Disable: "disable",
|
|
71
71
|
};
|
|
72
|
-
export const
|
|
72
|
+
export const UserEventPayload134Role = {
|
|
73
73
|
Admin: "ADMIN",
|
|
74
74
|
ProjectDeveloper: "PROJECT_DEVELOPER",
|
|
75
75
|
ProjectViewer: "PROJECT_VIEWER",
|
|
76
76
|
};
|
|
77
|
-
export const
|
|
77
|
+
export const UserEventPayload133Role = {
|
|
78
78
|
Admin: "ADMIN",
|
|
79
79
|
ProjectDeveloper: "PROJECT_DEVELOPER",
|
|
80
80
|
ProjectViewer: "PROJECT_VIEWER",
|
|
@@ -108,7 +108,7 @@ export const UserEventPayloadType = {
|
|
|
108
108
|
/**
|
|
109
109
|
* The budget type
|
|
110
110
|
*/
|
|
111
|
-
export const
|
|
111
|
+
export const UserEventPayload100Type = {
|
|
112
112
|
Fixed: "fixed",
|
|
113
113
|
};
|
|
114
114
|
/**
|
|
@@ -121,7 +121,7 @@ export const PayloadPricingPlan = {
|
|
|
121
121
|
/**
|
|
122
122
|
* The budget type
|
|
123
123
|
*/
|
|
124
|
-
export const
|
|
124
|
+
export const UserEventPayload99Type = {
|
|
125
125
|
Fixed: "fixed",
|
|
126
126
|
};
|
|
127
127
|
/**
|
|
@@ -196,7 +196,7 @@ export const OldSsoProtectionDeploymentType = {
|
|
|
196
196
|
Preview: "preview",
|
|
197
197
|
ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
|
|
198
198
|
};
|
|
199
|
-
export const
|
|
199
|
+
export const UserEventPayload74Role = {
|
|
200
200
|
Owner: "OWNER",
|
|
201
201
|
Member: "MEMBER",
|
|
202
202
|
Developer: "DEVELOPER",
|
|
@@ -1008,7 +1008,7 @@ export var AuthMethod$;
|
|
|
1008
1008
|
AuthMethod$.outboundSchema = AuthMethod$outboundSchema;
|
|
1009
1009
|
})(AuthMethod$ || (AuthMethod$ = {}));
|
|
1010
1010
|
/** @internal */
|
|
1011
|
-
export const
|
|
1011
|
+
export const OneHundredAndFiftyTwo$inboundSchema = z.object({
|
|
1012
1012
|
grantType: GrantType$inboundSchema,
|
|
1013
1013
|
appName: z.string(),
|
|
1014
1014
|
atTTL: z.number(),
|
|
@@ -1017,7 +1017,7 @@ export const OneHundredAndFiftyOne$inboundSchema = z.object({
|
|
|
1017
1017
|
authMethod: AuthMethod$inboundSchema,
|
|
1018
1018
|
});
|
|
1019
1019
|
/** @internal */
|
|
1020
|
-
export const
|
|
1020
|
+
export const OneHundredAndFiftyTwo$outboundSchema = z.object({
|
|
1021
1021
|
grantType: GrantType$outboundSchema,
|
|
1022
1022
|
appName: z.string(),
|
|
1023
1023
|
atTTL: z.number(),
|
|
@@ -1025,6 +1025,118 @@ export const OneHundredAndFiftyOne$outboundSchema = z.object({
|
|
|
1025
1025
|
scope: z.string(),
|
|
1026
1026
|
authMethod: AuthMethod$outboundSchema,
|
|
1027
1027
|
});
|
|
1028
|
+
/**
|
|
1029
|
+
* @internal
|
|
1030
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1031
|
+
*/
|
|
1032
|
+
export var OneHundredAndFiftyTwo$;
|
|
1033
|
+
(function (OneHundredAndFiftyTwo$) {
|
|
1034
|
+
/** @deprecated use `OneHundredAndFiftyTwo$inboundSchema` instead. */
|
|
1035
|
+
OneHundredAndFiftyTwo$.inboundSchema = OneHundredAndFiftyTwo$inboundSchema;
|
|
1036
|
+
/** @deprecated use `OneHundredAndFiftyTwo$outboundSchema` instead. */
|
|
1037
|
+
OneHundredAndFiftyTwo$.outboundSchema = OneHundredAndFiftyTwo$outboundSchema;
|
|
1038
|
+
})(OneHundredAndFiftyTwo$ || (OneHundredAndFiftyTwo$ = {}));
|
|
1039
|
+
export function oneHundredAndFiftyTwoToJSON(oneHundredAndFiftyTwo) {
|
|
1040
|
+
return JSON.stringify(OneHundredAndFiftyTwo$outboundSchema.parse(oneHundredAndFiftyTwo));
|
|
1041
|
+
}
|
|
1042
|
+
export function oneHundredAndFiftyTwoFromJSON(jsonString) {
|
|
1043
|
+
return safeParse(jsonString, (x) => OneHundredAndFiftyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFiftyTwo' from JSON`);
|
|
1044
|
+
}
|
|
1045
|
+
/** @internal */
|
|
1046
|
+
export const UserEventPayload151Team$inboundSchema = z.object({
|
|
1047
|
+
id: z.string(),
|
|
1048
|
+
name: z.string(),
|
|
1049
|
+
});
|
|
1050
|
+
/** @internal */
|
|
1051
|
+
export const UserEventPayload151Team$outboundSchema = z.object({
|
|
1052
|
+
id: z.string(),
|
|
1053
|
+
name: z.string(),
|
|
1054
|
+
});
|
|
1055
|
+
/**
|
|
1056
|
+
* @internal
|
|
1057
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1058
|
+
*/
|
|
1059
|
+
export var UserEventPayload151Team$;
|
|
1060
|
+
(function (UserEventPayload151Team$) {
|
|
1061
|
+
/** @deprecated use `UserEventPayload151Team$inboundSchema` instead. */
|
|
1062
|
+
UserEventPayload151Team$.inboundSchema = UserEventPayload151Team$inboundSchema;
|
|
1063
|
+
/** @deprecated use `UserEventPayload151Team$outboundSchema` instead. */
|
|
1064
|
+
UserEventPayload151Team$.outboundSchema = UserEventPayload151Team$outboundSchema;
|
|
1065
|
+
})(UserEventPayload151Team$ || (UserEventPayload151Team$ = {}));
|
|
1066
|
+
export function userEventPayload151TeamToJSON(userEventPayload151Team) {
|
|
1067
|
+
return JSON.stringify(UserEventPayload151Team$outboundSchema.parse(userEventPayload151Team));
|
|
1068
|
+
}
|
|
1069
|
+
export function userEventPayload151TeamFromJSON(jsonString) {
|
|
1070
|
+
return safeParse(jsonString, (x) => UserEventPayload151Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload151Team' from JSON`);
|
|
1071
|
+
}
|
|
1072
|
+
/** @internal */
|
|
1073
|
+
export const UserEventPayload151Configuration$inboundSchema = z.object({
|
|
1074
|
+
id: z.string(),
|
|
1075
|
+
name: z.string().optional(),
|
|
1076
|
+
});
|
|
1077
|
+
/** @internal */
|
|
1078
|
+
export const UserEventPayload151Configuration$outboundSchema = z.object({
|
|
1079
|
+
id: z.string(),
|
|
1080
|
+
name: z.string().optional(),
|
|
1081
|
+
});
|
|
1082
|
+
/**
|
|
1083
|
+
* @internal
|
|
1084
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1085
|
+
*/
|
|
1086
|
+
export var UserEventPayload151Configuration$;
|
|
1087
|
+
(function (UserEventPayload151Configuration$) {
|
|
1088
|
+
/** @deprecated use `UserEventPayload151Configuration$inboundSchema` instead. */
|
|
1089
|
+
UserEventPayload151Configuration$.inboundSchema = UserEventPayload151Configuration$inboundSchema;
|
|
1090
|
+
/** @deprecated use `UserEventPayload151Configuration$outboundSchema` instead. */
|
|
1091
|
+
UserEventPayload151Configuration$.outboundSchema = UserEventPayload151Configuration$outboundSchema;
|
|
1092
|
+
})(UserEventPayload151Configuration$ || (UserEventPayload151Configuration$ = {}));
|
|
1093
|
+
export function userEventPayload151ConfigurationToJSON(userEventPayload151Configuration) {
|
|
1094
|
+
return JSON.stringify(UserEventPayload151Configuration$outboundSchema.parse(userEventPayload151Configuration));
|
|
1095
|
+
}
|
|
1096
|
+
export function userEventPayload151ConfigurationFromJSON(jsonString) {
|
|
1097
|
+
return safeParse(jsonString, (x) => UserEventPayload151Configuration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload151Configuration' from JSON`);
|
|
1098
|
+
}
|
|
1099
|
+
/** @internal */
|
|
1100
|
+
export const UserEventPayloadPeering$inboundSchema = z.object({
|
|
1101
|
+
id: z.string(),
|
|
1102
|
+
name: z.string().optional(),
|
|
1103
|
+
});
|
|
1104
|
+
/** @internal */
|
|
1105
|
+
export const UserEventPayloadPeering$outboundSchema = z.object({
|
|
1106
|
+
id: z.string(),
|
|
1107
|
+
name: z.string().optional(),
|
|
1108
|
+
});
|
|
1109
|
+
/**
|
|
1110
|
+
* @internal
|
|
1111
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1112
|
+
*/
|
|
1113
|
+
export var UserEventPayloadPeering$;
|
|
1114
|
+
(function (UserEventPayloadPeering$) {
|
|
1115
|
+
/** @deprecated use `UserEventPayloadPeering$inboundSchema` instead. */
|
|
1116
|
+
UserEventPayloadPeering$.inboundSchema = UserEventPayloadPeering$inboundSchema;
|
|
1117
|
+
/** @deprecated use `UserEventPayloadPeering$outboundSchema` instead. */
|
|
1118
|
+
UserEventPayloadPeering$.outboundSchema = UserEventPayloadPeering$outboundSchema;
|
|
1119
|
+
})(UserEventPayloadPeering$ || (UserEventPayloadPeering$ = {}));
|
|
1120
|
+
export function userEventPayloadPeeringToJSON(userEventPayloadPeering) {
|
|
1121
|
+
return JSON.stringify(UserEventPayloadPeering$outboundSchema.parse(userEventPayloadPeering));
|
|
1122
|
+
}
|
|
1123
|
+
export function userEventPayloadPeeringFromJSON(jsonString) {
|
|
1124
|
+
return safeParse(jsonString, (x) => UserEventPayloadPeering$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayloadPeering' from JSON`);
|
|
1125
|
+
}
|
|
1126
|
+
/** @internal */
|
|
1127
|
+
export const OneHundredAndFiftyOne$inboundSchema = z.object({
|
|
1128
|
+
team: z.lazy(() => UserEventPayload151Team$inboundSchema),
|
|
1129
|
+
configuration: z.lazy(() => UserEventPayload151Configuration$inboundSchema),
|
|
1130
|
+
peering: z.lazy(() => UserEventPayloadPeering$inboundSchema),
|
|
1131
|
+
newName: z.string().optional(),
|
|
1132
|
+
});
|
|
1133
|
+
/** @internal */
|
|
1134
|
+
export const OneHundredAndFiftyOne$outboundSchema = z.object({
|
|
1135
|
+
team: z.lazy(() => UserEventPayload151Team$outboundSchema),
|
|
1136
|
+
configuration: z.lazy(() => UserEventPayload151Configuration$outboundSchema),
|
|
1137
|
+
peering: z.lazy(() => UserEventPayloadPeering$outboundSchema),
|
|
1138
|
+
newName: z.string().optional(),
|
|
1139
|
+
});
|
|
1028
1140
|
/**
|
|
1029
1141
|
* @internal
|
|
1030
1142
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -1097,12 +1209,12 @@ export function userEventPayload150ConfigurationFromJSON(jsonString) {
|
|
|
1097
1209
|
return safeParse(jsonString, (x) => UserEventPayload150Configuration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload150Configuration' from JSON`);
|
|
1098
1210
|
}
|
|
1099
1211
|
/** @internal */
|
|
1100
|
-
export const
|
|
1212
|
+
export const PayloadPeering$inboundSchema = z.object({
|
|
1101
1213
|
id: z.string(),
|
|
1102
1214
|
name: z.string().optional(),
|
|
1103
1215
|
});
|
|
1104
1216
|
/** @internal */
|
|
1105
|
-
export const
|
|
1217
|
+
export const PayloadPeering$outboundSchema = z.object({
|
|
1106
1218
|
id: z.string(),
|
|
1107
1219
|
name: z.string().optional(),
|
|
1108
1220
|
});
|
|
@@ -1110,32 +1222,30 @@ export const UserEventPayloadPeering$outboundSchema = z.object({
|
|
|
1110
1222
|
* @internal
|
|
1111
1223
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1112
1224
|
*/
|
|
1113
|
-
export var
|
|
1114
|
-
(function (
|
|
1115
|
-
/** @deprecated use `
|
|
1116
|
-
|
|
1117
|
-
/** @deprecated use `
|
|
1118
|
-
|
|
1119
|
-
})(
|
|
1120
|
-
export function
|
|
1121
|
-
return JSON.stringify(
|
|
1225
|
+
export var PayloadPeering$;
|
|
1226
|
+
(function (PayloadPeering$) {
|
|
1227
|
+
/** @deprecated use `PayloadPeering$inboundSchema` instead. */
|
|
1228
|
+
PayloadPeering$.inboundSchema = PayloadPeering$inboundSchema;
|
|
1229
|
+
/** @deprecated use `PayloadPeering$outboundSchema` instead. */
|
|
1230
|
+
PayloadPeering$.outboundSchema = PayloadPeering$outboundSchema;
|
|
1231
|
+
})(PayloadPeering$ || (PayloadPeering$ = {}));
|
|
1232
|
+
export function payloadPeeringToJSON(payloadPeering) {
|
|
1233
|
+
return JSON.stringify(PayloadPeering$outboundSchema.parse(payloadPeering));
|
|
1122
1234
|
}
|
|
1123
|
-
export function
|
|
1124
|
-
return safeParse(jsonString, (x) =>
|
|
1235
|
+
export function payloadPeeringFromJSON(jsonString) {
|
|
1236
|
+
return safeParse(jsonString, (x) => PayloadPeering$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadPeering' from JSON`);
|
|
1125
1237
|
}
|
|
1126
1238
|
/** @internal */
|
|
1127
1239
|
export const OneHundredAndFifty$inboundSchema = z.object({
|
|
1128
1240
|
team: z.lazy(() => UserEventPayload150Team$inboundSchema),
|
|
1129
1241
|
configuration: z.lazy(() => UserEventPayload150Configuration$inboundSchema),
|
|
1130
|
-
peering: z.lazy(() =>
|
|
1131
|
-
newName: z.string().optional(),
|
|
1242
|
+
peering: z.lazy(() => PayloadPeering$inboundSchema),
|
|
1132
1243
|
});
|
|
1133
1244
|
/** @internal */
|
|
1134
1245
|
export const OneHundredAndFifty$outboundSchema = z.object({
|
|
1135
1246
|
team: z.lazy(() => UserEventPayload150Team$outboundSchema),
|
|
1136
1247
|
configuration: z.lazy(() => UserEventPayload150Configuration$outboundSchema),
|
|
1137
|
-
peering: z.lazy(() =>
|
|
1138
|
-
newName: z.string().optional(),
|
|
1248
|
+
peering: z.lazy(() => PayloadPeering$outboundSchema),
|
|
1139
1249
|
});
|
|
1140
1250
|
/**
|
|
1141
1251
|
* @internal
|
|
@@ -1209,43 +1319,47 @@ export function userEventPayload149ConfigurationFromJSON(jsonString) {
|
|
|
1209
1319
|
return safeParse(jsonString, (x) => UserEventPayload149Configuration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload149Configuration' from JSON`);
|
|
1210
1320
|
}
|
|
1211
1321
|
/** @internal */
|
|
1212
|
-
export const
|
|
1322
|
+
export const Peering$inboundSchema = z.object({
|
|
1213
1323
|
id: z.string(),
|
|
1214
|
-
|
|
1324
|
+
accountId: z.string(),
|
|
1325
|
+
region: z.string(),
|
|
1326
|
+
vpcId: z.string(),
|
|
1215
1327
|
});
|
|
1216
1328
|
/** @internal */
|
|
1217
|
-
export const
|
|
1329
|
+
export const Peering$outboundSchema = z.object({
|
|
1218
1330
|
id: z.string(),
|
|
1219
|
-
|
|
1331
|
+
accountId: z.string(),
|
|
1332
|
+
region: z.string(),
|
|
1333
|
+
vpcId: z.string(),
|
|
1220
1334
|
});
|
|
1221
1335
|
/**
|
|
1222
1336
|
* @internal
|
|
1223
1337
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1224
1338
|
*/
|
|
1225
|
-
export var
|
|
1226
|
-
(function (
|
|
1227
|
-
/** @deprecated use `
|
|
1228
|
-
|
|
1229
|
-
/** @deprecated use `
|
|
1230
|
-
|
|
1231
|
-
})(
|
|
1232
|
-
export function
|
|
1233
|
-
return JSON.stringify(
|
|
1339
|
+
export var Peering$;
|
|
1340
|
+
(function (Peering$) {
|
|
1341
|
+
/** @deprecated use `Peering$inboundSchema` instead. */
|
|
1342
|
+
Peering$.inboundSchema = Peering$inboundSchema;
|
|
1343
|
+
/** @deprecated use `Peering$outboundSchema` instead. */
|
|
1344
|
+
Peering$.outboundSchema = Peering$outboundSchema;
|
|
1345
|
+
})(Peering$ || (Peering$ = {}));
|
|
1346
|
+
export function peeringToJSON(peering) {
|
|
1347
|
+
return JSON.stringify(Peering$outboundSchema.parse(peering));
|
|
1234
1348
|
}
|
|
1235
|
-
export function
|
|
1236
|
-
return safeParse(jsonString, (x) =>
|
|
1349
|
+
export function peeringFromJSON(jsonString) {
|
|
1350
|
+
return safeParse(jsonString, (x) => Peering$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Peering' from JSON`);
|
|
1237
1351
|
}
|
|
1238
1352
|
/** @internal */
|
|
1239
1353
|
export const OneHundredAndFortyNine$inboundSchema = z.object({
|
|
1240
1354
|
team: z.lazy(() => UserEventPayload149Team$inboundSchema),
|
|
1241
1355
|
configuration: z.lazy(() => UserEventPayload149Configuration$inboundSchema),
|
|
1242
|
-
peering: z.lazy(() =>
|
|
1356
|
+
peering: z.lazy(() => Peering$inboundSchema),
|
|
1243
1357
|
});
|
|
1244
1358
|
/** @internal */
|
|
1245
1359
|
export const OneHundredAndFortyNine$outboundSchema = z.object({
|
|
1246
1360
|
team: z.lazy(() => UserEventPayload149Team$outboundSchema),
|
|
1247
1361
|
configuration: z.lazy(() => UserEventPayload149Configuration$outboundSchema),
|
|
1248
|
-
peering: z.lazy(() =>
|
|
1362
|
+
peering: z.lazy(() => Peering$outboundSchema),
|
|
1249
1363
|
});
|
|
1250
1364
|
/**
|
|
1251
1365
|
* @internal
|
|
@@ -1265,101 +1379,12 @@ export function oneHundredAndFortyNineFromJSON(jsonString) {
|
|
|
1265
1379
|
return safeParse(jsonString, (x) => OneHundredAndFortyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyNine' from JSON`);
|
|
1266
1380
|
}
|
|
1267
1381
|
/** @internal */
|
|
1268
|
-
export const UserEventPayload148Team$inboundSchema = z.object({
|
|
1269
|
-
id: z.string(),
|
|
1270
|
-
name: z.string(),
|
|
1271
|
-
});
|
|
1272
|
-
/** @internal */
|
|
1273
|
-
export const UserEventPayload148Team$outboundSchema = z.object({
|
|
1274
|
-
id: z.string(),
|
|
1275
|
-
name: z.string(),
|
|
1276
|
-
});
|
|
1277
|
-
/**
|
|
1278
|
-
* @internal
|
|
1279
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1280
|
-
*/
|
|
1281
|
-
export var UserEventPayload148Team$;
|
|
1282
|
-
(function (UserEventPayload148Team$) {
|
|
1283
|
-
/** @deprecated use `UserEventPayload148Team$inboundSchema` instead. */
|
|
1284
|
-
UserEventPayload148Team$.inboundSchema = UserEventPayload148Team$inboundSchema;
|
|
1285
|
-
/** @deprecated use `UserEventPayload148Team$outboundSchema` instead. */
|
|
1286
|
-
UserEventPayload148Team$.outboundSchema = UserEventPayload148Team$outboundSchema;
|
|
1287
|
-
})(UserEventPayload148Team$ || (UserEventPayload148Team$ = {}));
|
|
1288
|
-
export function userEventPayload148TeamToJSON(userEventPayload148Team) {
|
|
1289
|
-
return JSON.stringify(UserEventPayload148Team$outboundSchema.parse(userEventPayload148Team));
|
|
1290
|
-
}
|
|
1291
|
-
export function userEventPayload148TeamFromJSON(jsonString) {
|
|
1292
|
-
return safeParse(jsonString, (x) => UserEventPayload148Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload148Team' from JSON`);
|
|
1293
|
-
}
|
|
1294
|
-
/** @internal */
|
|
1295
|
-
export const UserEventPayload148Configuration$inboundSchema = z.object({
|
|
1296
|
-
id: z.string(),
|
|
1297
|
-
name: z.string().optional(),
|
|
1298
|
-
});
|
|
1299
|
-
/** @internal */
|
|
1300
|
-
export const UserEventPayload148Configuration$outboundSchema = z.object({
|
|
1301
|
-
id: z.string(),
|
|
1302
|
-
name: z.string().optional(),
|
|
1303
|
-
});
|
|
1304
|
-
/**
|
|
1305
|
-
* @internal
|
|
1306
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1307
|
-
*/
|
|
1308
|
-
export var UserEventPayload148Configuration$;
|
|
1309
|
-
(function (UserEventPayload148Configuration$) {
|
|
1310
|
-
/** @deprecated use `UserEventPayload148Configuration$inboundSchema` instead. */
|
|
1311
|
-
UserEventPayload148Configuration$.inboundSchema = UserEventPayload148Configuration$inboundSchema;
|
|
1312
|
-
/** @deprecated use `UserEventPayload148Configuration$outboundSchema` instead. */
|
|
1313
|
-
UserEventPayload148Configuration$.outboundSchema = UserEventPayload148Configuration$outboundSchema;
|
|
1314
|
-
})(UserEventPayload148Configuration$ || (UserEventPayload148Configuration$ = {}));
|
|
1315
|
-
export function userEventPayload148ConfigurationToJSON(userEventPayload148Configuration) {
|
|
1316
|
-
return JSON.stringify(UserEventPayload148Configuration$outboundSchema.parse(userEventPayload148Configuration));
|
|
1317
|
-
}
|
|
1318
|
-
export function userEventPayload148ConfigurationFromJSON(jsonString) {
|
|
1319
|
-
return safeParse(jsonString, (x) => UserEventPayload148Configuration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload148Configuration' from JSON`);
|
|
1320
|
-
}
|
|
1321
|
-
/** @internal */
|
|
1322
|
-
export const Peering$inboundSchema = z.object({
|
|
1323
|
-
id: z.string(),
|
|
1324
|
-
accountId: z.string(),
|
|
1325
|
-
region: z.string(),
|
|
1326
|
-
vpcId: z.string(),
|
|
1327
|
-
});
|
|
1328
|
-
/** @internal */
|
|
1329
|
-
export const Peering$outboundSchema = z.object({
|
|
1330
|
-
id: z.string(),
|
|
1331
|
-
accountId: z.string(),
|
|
1332
|
-
region: z.string(),
|
|
1333
|
-
vpcId: z.string(),
|
|
1334
|
-
});
|
|
1335
|
-
/**
|
|
1336
|
-
* @internal
|
|
1337
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1338
|
-
*/
|
|
1339
|
-
export var Peering$;
|
|
1340
|
-
(function (Peering$) {
|
|
1341
|
-
/** @deprecated use `Peering$inboundSchema` instead. */
|
|
1342
|
-
Peering$.inboundSchema = Peering$inboundSchema;
|
|
1343
|
-
/** @deprecated use `Peering$outboundSchema` instead. */
|
|
1344
|
-
Peering$.outboundSchema = Peering$outboundSchema;
|
|
1345
|
-
})(Peering$ || (Peering$ = {}));
|
|
1346
|
-
export function peeringToJSON(peering) {
|
|
1347
|
-
return JSON.stringify(Peering$outboundSchema.parse(peering));
|
|
1348
|
-
}
|
|
1349
|
-
export function peeringFromJSON(jsonString) {
|
|
1350
|
-
return safeParse(jsonString, (x) => Peering$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Peering' from JSON`);
|
|
1351
|
-
}
|
|
1352
|
-
/** @internal */
|
|
1353
1382
|
export const OneHundredAndFortyEight$inboundSchema = z.object({
|
|
1354
|
-
|
|
1355
|
-
configuration: z.lazy(() => UserEventPayload148Configuration$inboundSchema),
|
|
1356
|
-
peering: z.lazy(() => Peering$inboundSchema),
|
|
1383
|
+
appName: z.string(),
|
|
1357
1384
|
});
|
|
1358
1385
|
/** @internal */
|
|
1359
1386
|
export const OneHundredAndFortyEight$outboundSchema = z.object({
|
|
1360
|
-
|
|
1361
|
-
configuration: z.lazy(() => UserEventPayload148Configuration$outboundSchema),
|
|
1362
|
-
peering: z.lazy(() => Peering$outboundSchema),
|
|
1387
|
+
appName: z.string(),
|
|
1363
1388
|
});
|
|
1364
1389
|
/**
|
|
1365
1390
|
* @internal
|
|
@@ -1381,10 +1406,12 @@ export function oneHundredAndFortyEightFromJSON(jsonString) {
|
|
|
1381
1406
|
/** @internal */
|
|
1382
1407
|
export const OneHundredAndFortySeven$inboundSchema = z.object({
|
|
1383
1408
|
appName: z.string(),
|
|
1409
|
+
nextScopes: z.array(z.string()),
|
|
1384
1410
|
});
|
|
1385
1411
|
/** @internal */
|
|
1386
1412
|
export const OneHundredAndFortySeven$outboundSchema = z.object({
|
|
1387
1413
|
appName: z.string(),
|
|
1414
|
+
nextScopes: z.array(z.string()),
|
|
1388
1415
|
});
|
|
1389
1416
|
/**
|
|
1390
1417
|
* @internal
|
|
@@ -1406,12 +1433,12 @@ export function oneHundredAndFortySevenFromJSON(jsonString) {
|
|
|
1406
1433
|
/** @internal */
|
|
1407
1434
|
export const OneHundredAndFortySix$inboundSchema = z.object({
|
|
1408
1435
|
appName: z.string(),
|
|
1409
|
-
|
|
1436
|
+
scopes: z.array(z.string()),
|
|
1410
1437
|
});
|
|
1411
1438
|
/** @internal */
|
|
1412
1439
|
export const OneHundredAndFortySix$outboundSchema = z.object({
|
|
1413
1440
|
appName: z.string(),
|
|
1414
|
-
|
|
1441
|
+
scopes: z.array(z.string()),
|
|
1415
1442
|
});
|
|
1416
1443
|
/**
|
|
1417
1444
|
* @internal
|
|
@@ -1432,13 +1459,13 @@ export function oneHundredAndFortySixFromJSON(jsonString) {
|
|
|
1432
1459
|
}
|
|
1433
1460
|
/** @internal */
|
|
1434
1461
|
export const OneHundredAndFortyFive$inboundSchema = z.object({
|
|
1435
|
-
|
|
1436
|
-
|
|
1462
|
+
oldName: z.string(),
|
|
1463
|
+
newName: z.string(),
|
|
1437
1464
|
});
|
|
1438
1465
|
/** @internal */
|
|
1439
1466
|
export const OneHundredAndFortyFive$outboundSchema = z.object({
|
|
1440
|
-
|
|
1441
|
-
|
|
1467
|
+
oldName: z.string(),
|
|
1468
|
+
newName: z.string(),
|
|
1442
1469
|
});
|
|
1443
1470
|
/**
|
|
1444
1471
|
* @internal
|
|
@@ -1458,33 +1485,6 @@ export function oneHundredAndFortyFiveFromJSON(jsonString) {
|
|
|
1458
1485
|
return safeParse(jsonString, (x) => OneHundredAndFortyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyFive' from JSON`);
|
|
1459
1486
|
}
|
|
1460
1487
|
/** @internal */
|
|
1461
|
-
export const OneHundredAndFortyFour$inboundSchema = z.object({
|
|
1462
|
-
oldName: z.string(),
|
|
1463
|
-
newName: z.string(),
|
|
1464
|
-
});
|
|
1465
|
-
/** @internal */
|
|
1466
|
-
export const OneHundredAndFortyFour$outboundSchema = z.object({
|
|
1467
|
-
oldName: z.string(),
|
|
1468
|
-
newName: z.string(),
|
|
1469
|
-
});
|
|
1470
|
-
/**
|
|
1471
|
-
* @internal
|
|
1472
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1473
|
-
*/
|
|
1474
|
-
export var OneHundredAndFortyFour$;
|
|
1475
|
-
(function (OneHundredAndFortyFour$) {
|
|
1476
|
-
/** @deprecated use `OneHundredAndFortyFour$inboundSchema` instead. */
|
|
1477
|
-
OneHundredAndFortyFour$.inboundSchema = OneHundredAndFortyFour$inboundSchema;
|
|
1478
|
-
/** @deprecated use `OneHundredAndFortyFour$outboundSchema` instead. */
|
|
1479
|
-
OneHundredAndFortyFour$.outboundSchema = OneHundredAndFortyFour$outboundSchema;
|
|
1480
|
-
})(OneHundredAndFortyFour$ || (OneHundredAndFortyFour$ = {}));
|
|
1481
|
-
export function oneHundredAndFortyFourToJSON(oneHundredAndFortyFour) {
|
|
1482
|
-
return JSON.stringify(OneHundredAndFortyFour$outboundSchema.parse(oneHundredAndFortyFour));
|
|
1483
|
-
}
|
|
1484
|
-
export function oneHundredAndFortyFourFromJSON(jsonString) {
|
|
1485
|
-
return safeParse(jsonString, (x) => OneHundredAndFortyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyFour' from JSON`);
|
|
1486
|
-
}
|
|
1487
|
-
/** @internal */
|
|
1488
1488
|
export const Tier$inboundSchema = z.nativeEnum(Tier);
|
|
1489
1489
|
/** @internal */
|
|
1490
1490
|
export const Tier$outboundSchema = Tier$inboundSchema;
|
|
@@ -1500,29 +1500,29 @@ export var Tier$;
|
|
|
1500
1500
|
Tier$.outboundSchema = Tier$outboundSchema;
|
|
1501
1501
|
})(Tier$ || (Tier$ = {}));
|
|
1502
1502
|
/** @internal */
|
|
1503
|
-
export const
|
|
1503
|
+
export const OneHundredAndFortyFour$inboundSchema = z.object({
|
|
1504
1504
|
tier: Tier$inboundSchema,
|
|
1505
1505
|
});
|
|
1506
1506
|
/** @internal */
|
|
1507
|
-
export const
|
|
1507
|
+
export const OneHundredAndFortyFour$outboundSchema = z.object({
|
|
1508
1508
|
tier: Tier$outboundSchema,
|
|
1509
1509
|
});
|
|
1510
1510
|
/**
|
|
1511
1511
|
* @internal
|
|
1512
1512
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1513
1513
|
*/
|
|
1514
|
-
export var
|
|
1515
|
-
(function (
|
|
1516
|
-
/** @deprecated use `
|
|
1517
|
-
|
|
1518
|
-
/** @deprecated use `
|
|
1519
|
-
|
|
1520
|
-
})(
|
|
1521
|
-
export function
|
|
1522
|
-
return JSON.stringify(
|
|
1514
|
+
export var OneHundredAndFortyFour$;
|
|
1515
|
+
(function (OneHundredAndFortyFour$) {
|
|
1516
|
+
/** @deprecated use `OneHundredAndFortyFour$inboundSchema` instead. */
|
|
1517
|
+
OneHundredAndFortyFour$.inboundSchema = OneHundredAndFortyFour$inboundSchema;
|
|
1518
|
+
/** @deprecated use `OneHundredAndFortyFour$outboundSchema` instead. */
|
|
1519
|
+
OneHundredAndFortyFour$.outboundSchema = OneHundredAndFortyFour$outboundSchema;
|
|
1520
|
+
})(OneHundredAndFortyFour$ || (OneHundredAndFortyFour$ = {}));
|
|
1521
|
+
export function oneHundredAndFortyFourToJSON(oneHundredAndFortyFour) {
|
|
1522
|
+
return JSON.stringify(OneHundredAndFortyFour$outboundSchema.parse(oneHundredAndFortyFour));
|
|
1523
1523
|
}
|
|
1524
|
-
export function
|
|
1525
|
-
return safeParse(jsonString, (x) =>
|
|
1524
|
+
export function oneHundredAndFortyFourFromJSON(jsonString) {
|
|
1525
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyFour' from JSON`);
|
|
1526
1526
|
}
|
|
1527
1527
|
/** @internal */
|
|
1528
1528
|
export const ProjectWebAnalytics$inboundSchema = z.object({
|
|
@@ -1591,7 +1591,7 @@ export function prevProjectWebAnalyticsFromJSON(jsonString) {
|
|
|
1591
1591
|
return safeParse(jsonString, (x) => PrevProjectWebAnalytics$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PrevProjectWebAnalytics' from JSON`);
|
|
1592
1592
|
}
|
|
1593
1593
|
/** @internal */
|
|
1594
|
-
export const
|
|
1594
|
+
export const OneHundredAndFortyThree$inboundSchema = z.object({
|
|
1595
1595
|
projectId: z.string(),
|
|
1596
1596
|
projectName: z.string(),
|
|
1597
1597
|
projectWebAnalytics: z.lazy(() => ProjectWebAnalytics$inboundSchema)
|
|
@@ -1599,7 +1599,7 @@ export const OneHundredAndFortyTwo$inboundSchema = z.object({
|
|
|
1599
1599
|
prevProjectWebAnalytics: z.nullable(z.lazy(() => PrevProjectWebAnalytics$inboundSchema)).optional(),
|
|
1600
1600
|
});
|
|
1601
1601
|
/** @internal */
|
|
1602
|
-
export const
|
|
1602
|
+
export const OneHundredAndFortyThree$outboundSchema = z.object({
|
|
1603
1603
|
projectId: z.string(),
|
|
1604
1604
|
projectName: z.string(),
|
|
1605
1605
|
projectWebAnalytics: z.lazy(() => ProjectWebAnalytics$outboundSchema)
|
|
@@ -1610,18 +1610,18 @@ export const OneHundredAndFortyTwo$outboundSchema = z.object({
|
|
|
1610
1610
|
* @internal
|
|
1611
1611
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1612
1612
|
*/
|
|
1613
|
-
export var
|
|
1614
|
-
(function (
|
|
1615
|
-
/** @deprecated use `
|
|
1616
|
-
|
|
1617
|
-
/** @deprecated use `
|
|
1618
|
-
|
|
1619
|
-
})(
|
|
1620
|
-
export function
|
|
1621
|
-
return JSON.stringify(
|
|
1613
|
+
export var OneHundredAndFortyThree$;
|
|
1614
|
+
(function (OneHundredAndFortyThree$) {
|
|
1615
|
+
/** @deprecated use `OneHundredAndFortyThree$inboundSchema` instead. */
|
|
1616
|
+
OneHundredAndFortyThree$.inboundSchema = OneHundredAndFortyThree$inboundSchema;
|
|
1617
|
+
/** @deprecated use `OneHundredAndFortyThree$outboundSchema` instead. */
|
|
1618
|
+
OneHundredAndFortyThree$.outboundSchema = OneHundredAndFortyThree$outboundSchema;
|
|
1619
|
+
})(OneHundredAndFortyThree$ || (OneHundredAndFortyThree$ = {}));
|
|
1620
|
+
export function oneHundredAndFortyThreeToJSON(oneHundredAndFortyThree) {
|
|
1621
|
+
return JSON.stringify(OneHundredAndFortyThree$outboundSchema.parse(oneHundredAndFortyThree));
|
|
1622
1622
|
}
|
|
1623
|
-
export function
|
|
1624
|
-
return safeParse(jsonString, (x) =>
|
|
1623
|
+
export function oneHundredAndFortyThreeFromJSON(jsonString) {
|
|
1624
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyThree' from JSON`);
|
|
1625
1625
|
}
|
|
1626
1626
|
/** @internal */
|
|
1627
1627
|
export const Microfrontends2$inboundSchema = z.object({
|
|
@@ -1715,7 +1715,7 @@ export function microfrontendsFromJSON(jsonString) {
|
|
|
1715
1715
|
return safeParse(jsonString, (x) => Microfrontends$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Microfrontends' from JSON`);
|
|
1716
1716
|
}
|
|
1717
1717
|
/** @internal */
|
|
1718
|
-
export const
|
|
1718
|
+
export const UserEventPayload142Project$inboundSchema = z.object({
|
|
1719
1719
|
id: z.string(),
|
|
1720
1720
|
name: z.string(),
|
|
1721
1721
|
microfrontends: z.union([
|
|
@@ -1724,7 +1724,7 @@ export const UserEventPayload141Project$inboundSchema = z.object({
|
|
|
1724
1724
|
]).optional(),
|
|
1725
1725
|
});
|
|
1726
1726
|
/** @internal */
|
|
1727
|
-
export const
|
|
1727
|
+
export const UserEventPayload142Project$outboundSchema = z.object({
|
|
1728
1728
|
id: z.string(),
|
|
1729
1729
|
name: z.string(),
|
|
1730
1730
|
microfrontends: z.union([
|
|
@@ -1736,18 +1736,18 @@ export const UserEventPayload141Project$outboundSchema = z.object({
|
|
|
1736
1736
|
* @internal
|
|
1737
1737
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1738
1738
|
*/
|
|
1739
|
-
export var
|
|
1740
|
-
(function (
|
|
1741
|
-
/** @deprecated use `
|
|
1742
|
-
|
|
1743
|
-
/** @deprecated use `
|
|
1744
|
-
|
|
1745
|
-
})(
|
|
1746
|
-
export function
|
|
1747
|
-
return JSON.stringify(
|
|
1739
|
+
export var UserEventPayload142Project$;
|
|
1740
|
+
(function (UserEventPayload142Project$) {
|
|
1741
|
+
/** @deprecated use `UserEventPayload142Project$inboundSchema` instead. */
|
|
1742
|
+
UserEventPayload142Project$.inboundSchema = UserEventPayload142Project$inboundSchema;
|
|
1743
|
+
/** @deprecated use `UserEventPayload142Project$outboundSchema` instead. */
|
|
1744
|
+
UserEventPayload142Project$.outboundSchema = UserEventPayload142Project$outboundSchema;
|
|
1745
|
+
})(UserEventPayload142Project$ || (UserEventPayload142Project$ = {}));
|
|
1746
|
+
export function userEventPayload142ProjectToJSON(userEventPayload142Project) {
|
|
1747
|
+
return JSON.stringify(UserEventPayload142Project$outboundSchema.parse(userEventPayload142Project));
|
|
1748
1748
|
}
|
|
1749
|
-
export function
|
|
1750
|
-
return safeParse(jsonString, (x) =>
|
|
1749
|
+
export function userEventPayload142ProjectFromJSON(jsonString) {
|
|
1750
|
+
return safeParse(jsonString, (x) => UserEventPayload142Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload142Project' from JSON`);
|
|
1751
1751
|
}
|
|
1752
1752
|
/** @internal */
|
|
1753
1753
|
export const UserEventMicrofrontends2$inboundSchema = z.object({
|
|
@@ -1841,14 +1841,14 @@ export function payloadMicrofrontendsFromJSON(jsonString) {
|
|
|
1841
1841
|
return safeParse(jsonString, (x) => PayloadMicrofrontends$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadMicrofrontends' from JSON`);
|
|
1842
1842
|
}
|
|
1843
1843
|
/** @internal */
|
|
1844
|
-
export const
|
|
1844
|
+
export const UserEventPayload142PrevProject$inboundSchema = z.object({
|
|
1845
1845
|
microfrontends: z.union([
|
|
1846
1846
|
z.lazy(() => UserEventMicrofrontends2$inboundSchema),
|
|
1847
1847
|
z.lazy(() => UserEventMicrofrontends1$inboundSchema),
|
|
1848
1848
|
]).optional(),
|
|
1849
1849
|
});
|
|
1850
1850
|
/** @internal */
|
|
1851
|
-
export const
|
|
1851
|
+
export const UserEventPayload142PrevProject$outboundSchema = z.object({
|
|
1852
1852
|
microfrontends: z.union([
|
|
1853
1853
|
z.lazy(() => UserEventMicrofrontends2$outboundSchema),
|
|
1854
1854
|
z.lazy(() => UserEventMicrofrontends1$outboundSchema),
|
|
@@ -1858,26 +1858,26 @@ export const UserEventPayload141PrevProject$outboundSchema = z.object({
|
|
|
1858
1858
|
* @internal
|
|
1859
1859
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1860
1860
|
*/
|
|
1861
|
-
export var
|
|
1862
|
-
(function (
|
|
1863
|
-
/** @deprecated use `
|
|
1864
|
-
|
|
1865
|
-
/** @deprecated use `
|
|
1866
|
-
|
|
1867
|
-
})(
|
|
1868
|
-
export function
|
|
1869
|
-
return JSON.stringify(
|
|
1861
|
+
export var UserEventPayload142PrevProject$;
|
|
1862
|
+
(function (UserEventPayload142PrevProject$) {
|
|
1863
|
+
/** @deprecated use `UserEventPayload142PrevProject$inboundSchema` instead. */
|
|
1864
|
+
UserEventPayload142PrevProject$.inboundSchema = UserEventPayload142PrevProject$inboundSchema;
|
|
1865
|
+
/** @deprecated use `UserEventPayload142PrevProject$outboundSchema` instead. */
|
|
1866
|
+
UserEventPayload142PrevProject$.outboundSchema = UserEventPayload142PrevProject$outboundSchema;
|
|
1867
|
+
})(UserEventPayload142PrevProject$ || (UserEventPayload142PrevProject$ = {}));
|
|
1868
|
+
export function userEventPayload142PrevProjectToJSON(userEventPayload142PrevProject) {
|
|
1869
|
+
return JSON.stringify(UserEventPayload142PrevProject$outboundSchema.parse(userEventPayload142PrevProject));
|
|
1870
1870
|
}
|
|
1871
|
-
export function
|
|
1872
|
-
return safeParse(jsonString, (x) =>
|
|
1871
|
+
export function userEventPayload142PrevProjectFromJSON(jsonString) {
|
|
1872
|
+
return safeParse(jsonString, (x) => UserEventPayload142PrevProject$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload142PrevProject' from JSON`);
|
|
1873
1873
|
}
|
|
1874
1874
|
/** @internal */
|
|
1875
1875
|
export const PayloadPrev$inboundSchema = z.object({
|
|
1876
|
-
project: z.lazy(() =>
|
|
1876
|
+
project: z.lazy(() => UserEventPayload142PrevProject$inboundSchema),
|
|
1877
1877
|
});
|
|
1878
1878
|
/** @internal */
|
|
1879
1879
|
export const PayloadPrev$outboundSchema = z.object({
|
|
1880
|
-
project: z.lazy(() =>
|
|
1880
|
+
project: z.lazy(() => UserEventPayload142PrevProject$outboundSchema),
|
|
1881
1881
|
});
|
|
1882
1882
|
/**
|
|
1883
1883
|
* @internal
|
|
@@ -1926,14 +1926,14 @@ export function payloadGroupFromJSON(jsonString) {
|
|
|
1926
1926
|
return safeParse(jsonString, (x) => PayloadGroup$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadGroup' from JSON`);
|
|
1927
1927
|
}
|
|
1928
1928
|
/** @internal */
|
|
1929
|
-
export const
|
|
1930
|
-
project: z.lazy(() =>
|
|
1929
|
+
export const OneHundredAndFortyTwo$inboundSchema = z.object({
|
|
1930
|
+
project: z.lazy(() => UserEventPayload142Project$inboundSchema),
|
|
1931
1931
|
prev: z.lazy(() => PayloadPrev$inboundSchema),
|
|
1932
1932
|
group: z.lazy(() => PayloadGroup$inboundSchema),
|
|
1933
1933
|
});
|
|
1934
1934
|
/** @internal */
|
|
1935
|
-
export const
|
|
1936
|
-
project: z.lazy(() =>
|
|
1935
|
+
export const OneHundredAndFortyTwo$outboundSchema = z.object({
|
|
1936
|
+
project: z.lazy(() => UserEventPayload142Project$outboundSchema),
|
|
1937
1937
|
prev: z.lazy(() => PayloadPrev$outboundSchema),
|
|
1938
1938
|
group: z.lazy(() => PayloadGroup$outboundSchema),
|
|
1939
1939
|
});
|
|
@@ -1941,26 +1941,26 @@ export const OneHundredAndFortyOne$outboundSchema = z.object({
|
|
|
1941
1941
|
* @internal
|
|
1942
1942
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1943
1943
|
*/
|
|
1944
|
-
export var
|
|
1945
|
-
(function (
|
|
1946
|
-
/** @deprecated use `
|
|
1947
|
-
|
|
1948
|
-
/** @deprecated use `
|
|
1949
|
-
|
|
1950
|
-
})(
|
|
1951
|
-
export function
|
|
1952
|
-
return JSON.stringify(
|
|
1944
|
+
export var OneHundredAndFortyTwo$;
|
|
1945
|
+
(function (OneHundredAndFortyTwo$) {
|
|
1946
|
+
/** @deprecated use `OneHundredAndFortyTwo$inboundSchema` instead. */
|
|
1947
|
+
OneHundredAndFortyTwo$.inboundSchema = OneHundredAndFortyTwo$inboundSchema;
|
|
1948
|
+
/** @deprecated use `OneHundredAndFortyTwo$outboundSchema` instead. */
|
|
1949
|
+
OneHundredAndFortyTwo$.outboundSchema = OneHundredAndFortyTwo$outboundSchema;
|
|
1950
|
+
})(OneHundredAndFortyTwo$ || (OneHundredAndFortyTwo$ = {}));
|
|
1951
|
+
export function oneHundredAndFortyTwoToJSON(oneHundredAndFortyTwo) {
|
|
1952
|
+
return JSON.stringify(OneHundredAndFortyTwo$outboundSchema.parse(oneHundredAndFortyTwo));
|
|
1953
1953
|
}
|
|
1954
|
-
export function
|
|
1955
|
-
return safeParse(jsonString, (x) =>
|
|
1954
|
+
export function oneHundredAndFortyTwoFromJSON(jsonString) {
|
|
1955
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyTwo' from JSON`);
|
|
1956
1956
|
}
|
|
1957
1957
|
/** @internal */
|
|
1958
|
-
export const
|
|
1958
|
+
export const UserEventPayload141Project$inboundSchema = z.object({
|
|
1959
1959
|
id: z.string(),
|
|
1960
1960
|
name: z.string(),
|
|
1961
1961
|
});
|
|
1962
1962
|
/** @internal */
|
|
1963
|
-
export const
|
|
1963
|
+
export const UserEventPayload141Project$outboundSchema = z.object({
|
|
1964
1964
|
id: z.string(),
|
|
1965
1965
|
name: z.string(),
|
|
1966
1966
|
});
|
|
@@ -1968,18 +1968,18 @@ export const UserEventPayload140Project$outboundSchema = z.object({
|
|
|
1968
1968
|
* @internal
|
|
1969
1969
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1970
1970
|
*/
|
|
1971
|
-
export var
|
|
1972
|
-
(function (
|
|
1973
|
-
/** @deprecated use `
|
|
1974
|
-
|
|
1975
|
-
/** @deprecated use `
|
|
1976
|
-
|
|
1977
|
-
})(
|
|
1978
|
-
export function
|
|
1979
|
-
return JSON.stringify(
|
|
1971
|
+
export var UserEventPayload141Project$;
|
|
1972
|
+
(function (UserEventPayload141Project$) {
|
|
1973
|
+
/** @deprecated use `UserEventPayload141Project$inboundSchema` instead. */
|
|
1974
|
+
UserEventPayload141Project$.inboundSchema = UserEventPayload141Project$inboundSchema;
|
|
1975
|
+
/** @deprecated use `UserEventPayload141Project$outboundSchema` instead. */
|
|
1976
|
+
UserEventPayload141Project$.outboundSchema = UserEventPayload141Project$outboundSchema;
|
|
1977
|
+
})(UserEventPayload141Project$ || (UserEventPayload141Project$ = {}));
|
|
1978
|
+
export function userEventPayload141ProjectToJSON(userEventPayload141Project) {
|
|
1979
|
+
return JSON.stringify(UserEventPayload141Project$outboundSchema.parse(userEventPayload141Project));
|
|
1980
1980
|
}
|
|
1981
|
-
export function
|
|
1982
|
-
return safeParse(jsonString, (x) =>
|
|
1981
|
+
export function userEventPayload141ProjectFromJSON(jsonString) {
|
|
1982
|
+
return safeParse(jsonString, (x) => UserEventPayload141Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload141Project' from JSON`);
|
|
1983
1983
|
}
|
|
1984
1984
|
/** @internal */
|
|
1985
1985
|
export const Group$inboundSchema = z
|
|
@@ -2012,31 +2012,31 @@ export function groupFromJSON(jsonString) {
|
|
|
2012
2012
|
return safeParse(jsonString, (x) => Group$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Group' from JSON`);
|
|
2013
2013
|
}
|
|
2014
2014
|
/** @internal */
|
|
2015
|
-
export const
|
|
2016
|
-
project: z.lazy(() =>
|
|
2015
|
+
export const OneHundredAndFortyOne$inboundSchema = z.object({
|
|
2016
|
+
project: z.lazy(() => UserEventPayload141Project$inboundSchema),
|
|
2017
2017
|
group: z.lazy(() => Group$inboundSchema),
|
|
2018
2018
|
});
|
|
2019
2019
|
/** @internal */
|
|
2020
|
-
export const
|
|
2021
|
-
project: z.lazy(() =>
|
|
2020
|
+
export const OneHundredAndFortyOne$outboundSchema = z.object({
|
|
2021
|
+
project: z.lazy(() => UserEventPayload141Project$outboundSchema),
|
|
2022
2022
|
group: z.lazy(() => Group$outboundSchema),
|
|
2023
2023
|
});
|
|
2024
2024
|
/**
|
|
2025
2025
|
* @internal
|
|
2026
2026
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2027
2027
|
*/
|
|
2028
|
-
export var
|
|
2029
|
-
(function (
|
|
2030
|
-
/** @deprecated use `
|
|
2031
|
-
|
|
2032
|
-
/** @deprecated use `
|
|
2033
|
-
|
|
2034
|
-
})(
|
|
2035
|
-
export function
|
|
2036
|
-
return JSON.stringify(
|
|
2028
|
+
export var OneHundredAndFortyOne$;
|
|
2029
|
+
(function (OneHundredAndFortyOne$) {
|
|
2030
|
+
/** @deprecated use `OneHundredAndFortyOne$inboundSchema` instead. */
|
|
2031
|
+
OneHundredAndFortyOne$.inboundSchema = OneHundredAndFortyOne$inboundSchema;
|
|
2032
|
+
/** @deprecated use `OneHundredAndFortyOne$outboundSchema` instead. */
|
|
2033
|
+
OneHundredAndFortyOne$.outboundSchema = OneHundredAndFortyOne$outboundSchema;
|
|
2034
|
+
})(OneHundredAndFortyOne$ || (OneHundredAndFortyOne$ = {}));
|
|
2035
|
+
export function oneHundredAndFortyOneToJSON(oneHundredAndFortyOne) {
|
|
2036
|
+
return JSON.stringify(OneHundredAndFortyOne$outboundSchema.parse(oneHundredAndFortyOne));
|
|
2037
2037
|
}
|
|
2038
|
-
export function
|
|
2039
|
-
return safeParse(jsonString, (x) =>
|
|
2038
|
+
export function oneHundredAndFortyOneFromJSON(jsonString) {
|
|
2039
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyOne' from JSON`);
|
|
2040
2040
|
}
|
|
2041
2041
|
/** @internal */
|
|
2042
2042
|
export const Prev$inboundSchema = z
|
|
@@ -2067,19 +2067,48 @@ export function prevFromJSON(jsonString) {
|
|
|
2067
2067
|
return safeParse(jsonString, (x) => Prev$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Prev' from JSON`);
|
|
2068
2068
|
}
|
|
2069
2069
|
/** @internal */
|
|
2070
|
-
export const
|
|
2070
|
+
export const OneHundredAndForty$inboundSchema = z.object({
|
|
2071
2071
|
id: z.string(),
|
|
2072
2072
|
slug: z.string(),
|
|
2073
2073
|
name: z.string(),
|
|
2074
2074
|
prev: z.lazy(() => Prev$inboundSchema),
|
|
2075
2075
|
});
|
|
2076
2076
|
/** @internal */
|
|
2077
|
-
export const
|
|
2077
|
+
export const OneHundredAndForty$outboundSchema = z.object({
|
|
2078
2078
|
id: z.string(),
|
|
2079
2079
|
slug: z.string(),
|
|
2080
2080
|
name: z.string(),
|
|
2081
2081
|
prev: z.lazy(() => Prev$outboundSchema),
|
|
2082
2082
|
});
|
|
2083
|
+
/**
|
|
2084
|
+
* @internal
|
|
2085
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2086
|
+
*/
|
|
2087
|
+
export var OneHundredAndForty$;
|
|
2088
|
+
(function (OneHundredAndForty$) {
|
|
2089
|
+
/** @deprecated use `OneHundredAndForty$inboundSchema` instead. */
|
|
2090
|
+
OneHundredAndForty$.inboundSchema = OneHundredAndForty$inboundSchema;
|
|
2091
|
+
/** @deprecated use `OneHundredAndForty$outboundSchema` instead. */
|
|
2092
|
+
OneHundredAndForty$.outboundSchema = OneHundredAndForty$outboundSchema;
|
|
2093
|
+
})(OneHundredAndForty$ || (OneHundredAndForty$ = {}));
|
|
2094
|
+
export function oneHundredAndFortyToJSON(oneHundredAndForty) {
|
|
2095
|
+
return JSON.stringify(OneHundredAndForty$outboundSchema.parse(oneHundredAndForty));
|
|
2096
|
+
}
|
|
2097
|
+
export function oneHundredAndFortyFromJSON(jsonString) {
|
|
2098
|
+
return safeParse(jsonString, (x) => OneHundredAndForty$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndForty' from JSON`);
|
|
2099
|
+
}
|
|
2100
|
+
/** @internal */
|
|
2101
|
+
export const OneHundredAndThirtyNine$inboundSchema = z.object({
|
|
2102
|
+
id: z.string(),
|
|
2103
|
+
slug: z.string(),
|
|
2104
|
+
name: z.string(),
|
|
2105
|
+
});
|
|
2106
|
+
/** @internal */
|
|
2107
|
+
export const OneHundredAndThirtyNine$outboundSchema = z.object({
|
|
2108
|
+
id: z.string(),
|
|
2109
|
+
slug: z.string(),
|
|
2110
|
+
name: z.string(),
|
|
2111
|
+
});
|
|
2083
2112
|
/**
|
|
2084
2113
|
* @internal
|
|
2085
2114
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -2098,16 +2127,27 @@ export function oneHundredAndThirtyNineFromJSON(jsonString) {
|
|
|
2098
2127
|
return safeParse(jsonString, (x) => OneHundredAndThirtyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyNine' from JSON`);
|
|
2099
2128
|
}
|
|
2100
2129
|
/** @internal */
|
|
2130
|
+
export const UserEventPayload138Action$inboundSchema = z.nativeEnum(UserEventPayload138Action);
|
|
2131
|
+
/** @internal */
|
|
2132
|
+
export const UserEventPayload138Action$outboundSchema = UserEventPayload138Action$inboundSchema;
|
|
2133
|
+
/**
|
|
2134
|
+
* @internal
|
|
2135
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2136
|
+
*/
|
|
2137
|
+
export var UserEventPayload138Action$;
|
|
2138
|
+
(function (UserEventPayload138Action$) {
|
|
2139
|
+
/** @deprecated use `UserEventPayload138Action$inboundSchema` instead. */
|
|
2140
|
+
UserEventPayload138Action$.inboundSchema = UserEventPayload138Action$inboundSchema;
|
|
2141
|
+
/** @deprecated use `UserEventPayload138Action$outboundSchema` instead. */
|
|
2142
|
+
UserEventPayload138Action$.outboundSchema = UserEventPayload138Action$outboundSchema;
|
|
2143
|
+
})(UserEventPayload138Action$ || (UserEventPayload138Action$ = {}));
|
|
2144
|
+
/** @internal */
|
|
2101
2145
|
export const OneHundredAndThirtyEight$inboundSchema = z.object({
|
|
2102
|
-
|
|
2103
|
-
slug: z.string(),
|
|
2104
|
-
name: z.string(),
|
|
2146
|
+
action: UserEventPayload138Action$inboundSchema,
|
|
2105
2147
|
});
|
|
2106
2148
|
/** @internal */
|
|
2107
2149
|
export const OneHundredAndThirtyEight$outboundSchema = z.object({
|
|
2108
|
-
|
|
2109
|
-
slug: z.string(),
|
|
2110
|
-
name: z.string(),
|
|
2150
|
+
action: UserEventPayload138Action$outboundSchema,
|
|
2111
2151
|
});
|
|
2112
2152
|
/**
|
|
2113
2153
|
* @internal
|
|
@@ -2127,27 +2167,16 @@ export function oneHundredAndThirtyEightFromJSON(jsonString) {
|
|
|
2127
2167
|
return safeParse(jsonString, (x) => OneHundredAndThirtyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyEight' from JSON`);
|
|
2128
2168
|
}
|
|
2129
2169
|
/** @internal */
|
|
2130
|
-
export const UserEventPayload137Action$inboundSchema = z.nativeEnum(UserEventPayload137Action);
|
|
2131
|
-
/** @internal */
|
|
2132
|
-
export const UserEventPayload137Action$outboundSchema = UserEventPayload137Action$inboundSchema;
|
|
2133
|
-
/**
|
|
2134
|
-
* @internal
|
|
2135
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2136
|
-
*/
|
|
2137
|
-
export var UserEventPayload137Action$;
|
|
2138
|
-
(function (UserEventPayload137Action$) {
|
|
2139
|
-
/** @deprecated use `UserEventPayload137Action$inboundSchema` instead. */
|
|
2140
|
-
UserEventPayload137Action$.inboundSchema = UserEventPayload137Action$inboundSchema;
|
|
2141
|
-
/** @deprecated use `UserEventPayload137Action$outboundSchema` instead. */
|
|
2142
|
-
UserEventPayload137Action$.outboundSchema = UserEventPayload137Action$outboundSchema;
|
|
2143
|
-
})(UserEventPayload137Action$ || (UserEventPayload137Action$ = {}));
|
|
2144
|
-
/** @internal */
|
|
2145
2170
|
export const OneHundredAndThirtySeven$inboundSchema = z.object({
|
|
2146
|
-
|
|
2171
|
+
edgeConfigId: z.string(),
|
|
2172
|
+
edgeConfigSlug: z.string(),
|
|
2173
|
+
edgeConfigTokenIds: z.array(z.string()),
|
|
2147
2174
|
});
|
|
2148
2175
|
/** @internal */
|
|
2149
2176
|
export const OneHundredAndThirtySeven$outboundSchema = z.object({
|
|
2150
|
-
|
|
2177
|
+
edgeConfigId: z.string(),
|
|
2178
|
+
edgeConfigSlug: z.string(),
|
|
2179
|
+
edgeConfigTokenIds: z.array(z.string()),
|
|
2151
2180
|
});
|
|
2152
2181
|
/**
|
|
2153
2182
|
* @internal
|
|
@@ -2170,13 +2199,15 @@ export function oneHundredAndThirtySevenFromJSON(jsonString) {
|
|
|
2170
2199
|
export const OneHundredAndThirtySix$inboundSchema = z.object({
|
|
2171
2200
|
edgeConfigId: z.string(),
|
|
2172
2201
|
edgeConfigSlug: z.string(),
|
|
2173
|
-
|
|
2202
|
+
edgeConfigTokenId: z.string(),
|
|
2203
|
+
label: z.string(),
|
|
2174
2204
|
});
|
|
2175
2205
|
/** @internal */
|
|
2176
2206
|
export const OneHundredAndThirtySix$outboundSchema = z.object({
|
|
2177
2207
|
edgeConfigId: z.string(),
|
|
2178
2208
|
edgeConfigSlug: z.string(),
|
|
2179
|
-
|
|
2209
|
+
edgeConfigTokenId: z.string(),
|
|
2210
|
+
label: z.string(),
|
|
2180
2211
|
});
|
|
2181
2212
|
/**
|
|
2182
2213
|
* @internal
|
|
@@ -2199,15 +2230,13 @@ export function oneHundredAndThirtySixFromJSON(jsonString) {
|
|
|
2199
2230
|
export const OneHundredAndThirtyFive$inboundSchema = z.object({
|
|
2200
2231
|
edgeConfigId: z.string(),
|
|
2201
2232
|
edgeConfigSlug: z.string(),
|
|
2202
|
-
|
|
2203
|
-
label: z.string(),
|
|
2233
|
+
edgeConfigDigest: z.string(),
|
|
2204
2234
|
});
|
|
2205
2235
|
/** @internal */
|
|
2206
2236
|
export const OneHundredAndThirtyFive$outboundSchema = z.object({
|
|
2207
2237
|
edgeConfigId: z.string(),
|
|
2208
2238
|
edgeConfigSlug: z.string(),
|
|
2209
|
-
|
|
2210
|
-
label: z.string(),
|
|
2239
|
+
edgeConfigDigest: z.string(),
|
|
2211
2240
|
});
|
|
2212
2241
|
/**
|
|
2213
2242
|
* @internal
|
|
@@ -2227,16 +2256,60 @@ export function oneHundredAndThirtyFiveFromJSON(jsonString) {
|
|
|
2227
2256
|
return safeParse(jsonString, (x) => OneHundredAndThirtyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyFive' from JSON`);
|
|
2228
2257
|
}
|
|
2229
2258
|
/** @internal */
|
|
2259
|
+
export const UserEventPayload134Role$inboundSchema = z.nativeEnum(UserEventPayload134Role);
|
|
2260
|
+
/** @internal */
|
|
2261
|
+
export const UserEventPayload134Role$outboundSchema = UserEventPayload134Role$inboundSchema;
|
|
2262
|
+
/**
|
|
2263
|
+
* @internal
|
|
2264
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2265
|
+
*/
|
|
2266
|
+
export var UserEventPayload134Role$;
|
|
2267
|
+
(function (UserEventPayload134Role$) {
|
|
2268
|
+
/** @deprecated use `UserEventPayload134Role$inboundSchema` instead. */
|
|
2269
|
+
UserEventPayload134Role$.inboundSchema = UserEventPayload134Role$inboundSchema;
|
|
2270
|
+
/** @deprecated use `UserEventPayload134Role$outboundSchema` instead. */
|
|
2271
|
+
UserEventPayload134Role$.outboundSchema = UserEventPayload134Role$outboundSchema;
|
|
2272
|
+
})(UserEventPayload134Role$ || (UserEventPayload134Role$ = {}));
|
|
2273
|
+
/** @internal */
|
|
2274
|
+
export const UserEventPayload134Project$inboundSchema = z.object({
|
|
2275
|
+
name: z.string(),
|
|
2276
|
+
role: UserEventPayload134Role$inboundSchema,
|
|
2277
|
+
invitedUserName: z.string(),
|
|
2278
|
+
id: z.string().optional(),
|
|
2279
|
+
invitedUserId: z.string().optional(),
|
|
2280
|
+
});
|
|
2281
|
+
/** @internal */
|
|
2282
|
+
export const UserEventPayload134Project$outboundSchema = z.object({
|
|
2283
|
+
name: z.string(),
|
|
2284
|
+
role: UserEventPayload134Role$outboundSchema,
|
|
2285
|
+
invitedUserName: z.string(),
|
|
2286
|
+
id: z.string().optional(),
|
|
2287
|
+
invitedUserId: z.string().optional(),
|
|
2288
|
+
});
|
|
2289
|
+
/**
|
|
2290
|
+
* @internal
|
|
2291
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2292
|
+
*/
|
|
2293
|
+
export var UserEventPayload134Project$;
|
|
2294
|
+
(function (UserEventPayload134Project$) {
|
|
2295
|
+
/** @deprecated use `UserEventPayload134Project$inboundSchema` instead. */
|
|
2296
|
+
UserEventPayload134Project$.inboundSchema = UserEventPayload134Project$inboundSchema;
|
|
2297
|
+
/** @deprecated use `UserEventPayload134Project$outboundSchema` instead. */
|
|
2298
|
+
UserEventPayload134Project$.outboundSchema = UserEventPayload134Project$outboundSchema;
|
|
2299
|
+
})(UserEventPayload134Project$ || (UserEventPayload134Project$ = {}));
|
|
2300
|
+
export function userEventPayload134ProjectToJSON(userEventPayload134Project) {
|
|
2301
|
+
return JSON.stringify(UserEventPayload134Project$outboundSchema.parse(userEventPayload134Project));
|
|
2302
|
+
}
|
|
2303
|
+
export function userEventPayload134ProjectFromJSON(jsonString) {
|
|
2304
|
+
return safeParse(jsonString, (x) => UserEventPayload134Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload134Project' from JSON`);
|
|
2305
|
+
}
|
|
2306
|
+
/** @internal */
|
|
2230
2307
|
export const OneHundredAndThirtyFour$inboundSchema = z.object({
|
|
2231
|
-
|
|
2232
|
-
edgeConfigSlug: z.string(),
|
|
2233
|
-
edgeConfigDigest: z.string(),
|
|
2308
|
+
project: z.lazy(() => UserEventPayload134Project$inboundSchema),
|
|
2234
2309
|
});
|
|
2235
2310
|
/** @internal */
|
|
2236
2311
|
export const OneHundredAndThirtyFour$outboundSchema = z.object({
|
|
2237
|
-
|
|
2238
|
-
edgeConfigSlug: z.string(),
|
|
2239
|
-
edgeConfigDigest: z.string(),
|
|
2312
|
+
project: z.lazy(() => UserEventPayload134Project$outboundSchema),
|
|
2240
2313
|
});
|
|
2241
2314
|
/**
|
|
2242
2315
|
* @internal
|
|
@@ -2256,35 +2329,14 @@ export function oneHundredAndThirtyFourFromJSON(jsonString) {
|
|
|
2256
2329
|
return safeParse(jsonString, (x) => OneHundredAndThirtyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyFour' from JSON`);
|
|
2257
2330
|
}
|
|
2258
2331
|
/** @internal */
|
|
2259
|
-
export const UserEventPayload133Role$inboundSchema = z.nativeEnum(UserEventPayload133Role);
|
|
2260
|
-
/** @internal */
|
|
2261
|
-
export const UserEventPayload133Role$outboundSchema = UserEventPayload133Role$inboundSchema;
|
|
2262
|
-
/**
|
|
2263
|
-
* @internal
|
|
2264
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2265
|
-
*/
|
|
2266
|
-
export var UserEventPayload133Role$;
|
|
2267
|
-
(function (UserEventPayload133Role$) {
|
|
2268
|
-
/** @deprecated use `UserEventPayload133Role$inboundSchema` instead. */
|
|
2269
|
-
UserEventPayload133Role$.inboundSchema = UserEventPayload133Role$inboundSchema;
|
|
2270
|
-
/** @deprecated use `UserEventPayload133Role$outboundSchema` instead. */
|
|
2271
|
-
UserEventPayload133Role$.outboundSchema = UserEventPayload133Role$outboundSchema;
|
|
2272
|
-
})(UserEventPayload133Role$ || (UserEventPayload133Role$ = {}));
|
|
2273
|
-
/** @internal */
|
|
2274
2332
|
export const UserEventPayload133Project$inboundSchema = z.object({
|
|
2333
|
+
id: z.string(),
|
|
2275
2334
|
name: z.string(),
|
|
2276
|
-
role: UserEventPayload133Role$inboundSchema,
|
|
2277
|
-
invitedUserName: z.string(),
|
|
2278
|
-
id: z.string().optional(),
|
|
2279
|
-
invitedUserId: z.string().optional(),
|
|
2280
2335
|
});
|
|
2281
2336
|
/** @internal */
|
|
2282
2337
|
export const UserEventPayload133Project$outboundSchema = z.object({
|
|
2338
|
+
id: z.string(),
|
|
2283
2339
|
name: z.string(),
|
|
2284
|
-
role: UserEventPayload133Role$outboundSchema,
|
|
2285
|
-
invitedUserName: z.string(),
|
|
2286
|
-
id: z.string().optional(),
|
|
2287
|
-
invitedUserId: z.string().optional(),
|
|
2288
2340
|
});
|
|
2289
2341
|
/**
|
|
2290
2342
|
* @internal
|
|
@@ -2304,72 +2356,20 @@ export function userEventPayload133ProjectFromJSON(jsonString) {
|
|
|
2304
2356
|
return safeParse(jsonString, (x) => UserEventPayload133Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload133Project' from JSON`);
|
|
2305
2357
|
}
|
|
2306
2358
|
/** @internal */
|
|
2307
|
-
export const
|
|
2308
|
-
project: z.lazy(() => UserEventPayload133Project$inboundSchema),
|
|
2309
|
-
});
|
|
2359
|
+
export const UserEventPayload133Role$inboundSchema = z.nativeEnum(UserEventPayload133Role);
|
|
2310
2360
|
/** @internal */
|
|
2311
|
-
export const
|
|
2312
|
-
project: z.lazy(() => UserEventPayload133Project$outboundSchema),
|
|
2313
|
-
});
|
|
2314
|
-
/**
|
|
2315
|
-
* @internal
|
|
2316
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2317
|
-
*/
|
|
2318
|
-
export var OneHundredAndThirtyThree$;
|
|
2319
|
-
(function (OneHundredAndThirtyThree$) {
|
|
2320
|
-
/** @deprecated use `OneHundredAndThirtyThree$inboundSchema` instead. */
|
|
2321
|
-
OneHundredAndThirtyThree$.inboundSchema = OneHundredAndThirtyThree$inboundSchema;
|
|
2322
|
-
/** @deprecated use `OneHundredAndThirtyThree$outboundSchema` instead. */
|
|
2323
|
-
OneHundredAndThirtyThree$.outboundSchema = OneHundredAndThirtyThree$outboundSchema;
|
|
2324
|
-
})(OneHundredAndThirtyThree$ || (OneHundredAndThirtyThree$ = {}));
|
|
2325
|
-
export function oneHundredAndThirtyThreeToJSON(oneHundredAndThirtyThree) {
|
|
2326
|
-
return JSON.stringify(OneHundredAndThirtyThree$outboundSchema.parse(oneHundredAndThirtyThree));
|
|
2327
|
-
}
|
|
2328
|
-
export function oneHundredAndThirtyThreeFromJSON(jsonString) {
|
|
2329
|
-
return safeParse(jsonString, (x) => OneHundredAndThirtyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyThree' from JSON`);
|
|
2330
|
-
}
|
|
2331
|
-
/** @internal */
|
|
2332
|
-
export const UserEventPayload132Project$inboundSchema = z.object({
|
|
2333
|
-
id: z.string(),
|
|
2334
|
-
name: z.string(),
|
|
2335
|
-
});
|
|
2336
|
-
/** @internal */
|
|
2337
|
-
export const UserEventPayload132Project$outboundSchema = z.object({
|
|
2338
|
-
id: z.string(),
|
|
2339
|
-
name: z.string(),
|
|
2340
|
-
});
|
|
2341
|
-
/**
|
|
2342
|
-
* @internal
|
|
2343
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2344
|
-
*/
|
|
2345
|
-
export var UserEventPayload132Project$;
|
|
2346
|
-
(function (UserEventPayload132Project$) {
|
|
2347
|
-
/** @deprecated use `UserEventPayload132Project$inboundSchema` instead. */
|
|
2348
|
-
UserEventPayload132Project$.inboundSchema = UserEventPayload132Project$inboundSchema;
|
|
2349
|
-
/** @deprecated use `UserEventPayload132Project$outboundSchema` instead. */
|
|
2350
|
-
UserEventPayload132Project$.outboundSchema = UserEventPayload132Project$outboundSchema;
|
|
2351
|
-
})(UserEventPayload132Project$ || (UserEventPayload132Project$ = {}));
|
|
2352
|
-
export function userEventPayload132ProjectToJSON(userEventPayload132Project) {
|
|
2353
|
-
return JSON.stringify(UserEventPayload132Project$outboundSchema.parse(userEventPayload132Project));
|
|
2354
|
-
}
|
|
2355
|
-
export function userEventPayload132ProjectFromJSON(jsonString) {
|
|
2356
|
-
return safeParse(jsonString, (x) => UserEventPayload132Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload132Project' from JSON`);
|
|
2357
|
-
}
|
|
2358
|
-
/** @internal */
|
|
2359
|
-
export const UserEventPayload132Role$inboundSchema = z.nativeEnum(UserEventPayload132Role);
|
|
2360
|
-
/** @internal */
|
|
2361
|
-
export const UserEventPayload132Role$outboundSchema = UserEventPayload132Role$inboundSchema;
|
|
2361
|
+
export const UserEventPayload133Role$outboundSchema = UserEventPayload133Role$inboundSchema;
|
|
2362
2362
|
/**
|
|
2363
2363
|
* @internal
|
|
2364
2364
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2365
2365
|
*/
|
|
2366
|
-
export var
|
|
2367
|
-
(function (
|
|
2368
|
-
/** @deprecated use `
|
|
2369
|
-
|
|
2370
|
-
/** @deprecated use `
|
|
2371
|
-
|
|
2372
|
-
})(
|
|
2366
|
+
export var UserEventPayload133Role$;
|
|
2367
|
+
(function (UserEventPayload133Role$) {
|
|
2368
|
+
/** @deprecated use `UserEventPayload133Role$inboundSchema` instead. */
|
|
2369
|
+
UserEventPayload133Role$.inboundSchema = UserEventPayload133Role$inboundSchema;
|
|
2370
|
+
/** @deprecated use `UserEventPayload133Role$outboundSchema` instead. */
|
|
2371
|
+
UserEventPayload133Role$.outboundSchema = UserEventPayload133Role$outboundSchema;
|
|
2372
|
+
})(UserEventPayload133Role$ || (UserEventPayload133Role$ = {}));
|
|
2373
2373
|
/** @internal */
|
|
2374
2374
|
export const PayloadPreviousRole$inboundSchema = z.nativeEnum(PayloadPreviousRole);
|
|
2375
2375
|
/** @internal */
|
|
@@ -2387,7 +2387,7 @@ export var PayloadPreviousRole$;
|
|
|
2387
2387
|
})(PayloadPreviousRole$ || (PayloadPreviousRole$ = {}));
|
|
2388
2388
|
/** @internal */
|
|
2389
2389
|
export const PayloadProjectMembership$inboundSchema = z.object({
|
|
2390
|
-
role:
|
|
2390
|
+
role: UserEventPayload133Role$inboundSchema.optional(),
|
|
2391
2391
|
uid: z.string().optional(),
|
|
2392
2392
|
createdAt: z.number().optional(),
|
|
2393
2393
|
username: z.string().optional(),
|
|
@@ -2395,7 +2395,7 @@ export const PayloadProjectMembership$inboundSchema = z.object({
|
|
|
2395
2395
|
});
|
|
2396
2396
|
/** @internal */
|
|
2397
2397
|
export const PayloadProjectMembership$outboundSchema = z.object({
|
|
2398
|
-
role:
|
|
2398
|
+
role: UserEventPayload133Role$outboundSchema.optional(),
|
|
2399
2399
|
uid: z.string().optional(),
|
|
2400
2400
|
createdAt: z.number().optional(),
|
|
2401
2401
|
username: z.string().optional(),
|
|
@@ -2419,39 +2419,39 @@ export function payloadProjectMembershipFromJSON(jsonString) {
|
|
|
2419
2419
|
return safeParse(jsonString, (x) => PayloadProjectMembership$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadProjectMembership' from JSON`);
|
|
2420
2420
|
}
|
|
2421
2421
|
/** @internal */
|
|
2422
|
-
export const
|
|
2423
|
-
project: z.lazy(() =>
|
|
2422
|
+
export const OneHundredAndThirtyThree$inboundSchema = z.object({
|
|
2423
|
+
project: z.lazy(() => UserEventPayload133Project$inboundSchema),
|
|
2424
2424
|
projectMembership: z.lazy(() => PayloadProjectMembership$inboundSchema),
|
|
2425
2425
|
});
|
|
2426
2426
|
/** @internal */
|
|
2427
|
-
export const
|
|
2428
|
-
project: z.lazy(() =>
|
|
2427
|
+
export const OneHundredAndThirtyThree$outboundSchema = z.object({
|
|
2428
|
+
project: z.lazy(() => UserEventPayload133Project$outboundSchema),
|
|
2429
2429
|
projectMembership: z.lazy(() => PayloadProjectMembership$outboundSchema),
|
|
2430
2430
|
});
|
|
2431
2431
|
/**
|
|
2432
2432
|
* @internal
|
|
2433
2433
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2434
2434
|
*/
|
|
2435
|
-
export var
|
|
2436
|
-
(function (
|
|
2437
|
-
/** @deprecated use `
|
|
2438
|
-
|
|
2439
|
-
/** @deprecated use `
|
|
2440
|
-
|
|
2441
|
-
})(
|
|
2442
|
-
export function
|
|
2443
|
-
return JSON.stringify(
|
|
2435
|
+
export var OneHundredAndThirtyThree$;
|
|
2436
|
+
(function (OneHundredAndThirtyThree$) {
|
|
2437
|
+
/** @deprecated use `OneHundredAndThirtyThree$inboundSchema` instead. */
|
|
2438
|
+
OneHundredAndThirtyThree$.inboundSchema = OneHundredAndThirtyThree$inboundSchema;
|
|
2439
|
+
/** @deprecated use `OneHundredAndThirtyThree$outboundSchema` instead. */
|
|
2440
|
+
OneHundredAndThirtyThree$.outboundSchema = OneHundredAndThirtyThree$outboundSchema;
|
|
2441
|
+
})(OneHundredAndThirtyThree$ || (OneHundredAndThirtyThree$ = {}));
|
|
2442
|
+
export function oneHundredAndThirtyThreeToJSON(oneHundredAndThirtyThree) {
|
|
2443
|
+
return JSON.stringify(OneHundredAndThirtyThree$outboundSchema.parse(oneHundredAndThirtyThree));
|
|
2444
2444
|
}
|
|
2445
|
-
export function
|
|
2446
|
-
return safeParse(jsonString, (x) =>
|
|
2445
|
+
export function oneHundredAndThirtyThreeFromJSON(jsonString) {
|
|
2446
|
+
return safeParse(jsonString, (x) => OneHundredAndThirtyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyThree' from JSON`);
|
|
2447
2447
|
}
|
|
2448
2448
|
/** @internal */
|
|
2449
|
-
export const
|
|
2449
|
+
export const UserEventPayload132Project$inboundSchema = z.object({
|
|
2450
2450
|
name: z.string(),
|
|
2451
2451
|
id: z.string().optional(),
|
|
2452
2452
|
});
|
|
2453
2453
|
/** @internal */
|
|
2454
|
-
export const
|
|
2454
|
+
export const UserEventPayload132Project$outboundSchema = z.object({
|
|
2455
2455
|
name: z.string(),
|
|
2456
2456
|
id: z.string().optional(),
|
|
2457
2457
|
});
|
|
@@ -2459,18 +2459,18 @@ export const UserEventPayload131Project$outboundSchema = z.object({
|
|
|
2459
2459
|
* @internal
|
|
2460
2460
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2461
2461
|
*/
|
|
2462
|
-
export var
|
|
2463
|
-
(function (
|
|
2464
|
-
/** @deprecated use `
|
|
2465
|
-
|
|
2466
|
-
/** @deprecated use `
|
|
2467
|
-
|
|
2468
|
-
})(
|
|
2469
|
-
export function
|
|
2470
|
-
return JSON.stringify(
|
|
2462
|
+
export var UserEventPayload132Project$;
|
|
2463
|
+
(function (UserEventPayload132Project$) {
|
|
2464
|
+
/** @deprecated use `UserEventPayload132Project$inboundSchema` instead. */
|
|
2465
|
+
UserEventPayload132Project$.inboundSchema = UserEventPayload132Project$inboundSchema;
|
|
2466
|
+
/** @deprecated use `UserEventPayload132Project$outboundSchema` instead. */
|
|
2467
|
+
UserEventPayload132Project$.outboundSchema = UserEventPayload132Project$outboundSchema;
|
|
2468
|
+
})(UserEventPayload132Project$ || (UserEventPayload132Project$ = {}));
|
|
2469
|
+
export function userEventPayload132ProjectToJSON(userEventPayload132Project) {
|
|
2470
|
+
return JSON.stringify(UserEventPayload132Project$outboundSchema.parse(userEventPayload132Project));
|
|
2471
2471
|
}
|
|
2472
|
-
export function
|
|
2473
|
-
return safeParse(jsonString, (x) =>
|
|
2472
|
+
export function userEventPayload132ProjectFromJSON(jsonString) {
|
|
2473
|
+
return safeParse(jsonString, (x) => UserEventPayload132Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload132Project' from JSON`);
|
|
2474
2474
|
}
|
|
2475
2475
|
/** @internal */
|
|
2476
2476
|
export const UserEventPayloadRole$inboundSchema = z.nativeEnum(UserEventPayloadRole);
|
|
@@ -2519,39 +2519,39 @@ export function removedMembershipFromJSON(jsonString) {
|
|
|
2519
2519
|
return safeParse(jsonString, (x) => RemovedMembership$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'RemovedMembership' from JSON`);
|
|
2520
2520
|
}
|
|
2521
2521
|
/** @internal */
|
|
2522
|
-
export const
|
|
2523
|
-
project: z.lazy(() =>
|
|
2522
|
+
export const OneHundredAndThirtyTwo$inboundSchema = z.object({
|
|
2523
|
+
project: z.lazy(() => UserEventPayload132Project$inboundSchema),
|
|
2524
2524
|
removedMembership: z.lazy(() => RemovedMembership$inboundSchema),
|
|
2525
2525
|
});
|
|
2526
2526
|
/** @internal */
|
|
2527
|
-
export const
|
|
2528
|
-
project: z.lazy(() =>
|
|
2527
|
+
export const OneHundredAndThirtyTwo$outboundSchema = z.object({
|
|
2528
|
+
project: z.lazy(() => UserEventPayload132Project$outboundSchema),
|
|
2529
2529
|
removedMembership: z.lazy(() => RemovedMembership$outboundSchema),
|
|
2530
2530
|
});
|
|
2531
2531
|
/**
|
|
2532
2532
|
* @internal
|
|
2533
2533
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2534
2534
|
*/
|
|
2535
|
-
export var
|
|
2536
|
-
(function (
|
|
2537
|
-
/** @deprecated use `
|
|
2538
|
-
|
|
2539
|
-
/** @deprecated use `
|
|
2540
|
-
|
|
2541
|
-
})(
|
|
2542
|
-
export function
|
|
2543
|
-
return JSON.stringify(
|
|
2535
|
+
export var OneHundredAndThirtyTwo$;
|
|
2536
|
+
(function (OneHundredAndThirtyTwo$) {
|
|
2537
|
+
/** @deprecated use `OneHundredAndThirtyTwo$inboundSchema` instead. */
|
|
2538
|
+
OneHundredAndThirtyTwo$.inboundSchema = OneHundredAndThirtyTwo$inboundSchema;
|
|
2539
|
+
/** @deprecated use `OneHundredAndThirtyTwo$outboundSchema` instead. */
|
|
2540
|
+
OneHundredAndThirtyTwo$.outboundSchema = OneHundredAndThirtyTwo$outboundSchema;
|
|
2541
|
+
})(OneHundredAndThirtyTwo$ || (OneHundredAndThirtyTwo$ = {}));
|
|
2542
|
+
export function oneHundredAndThirtyTwoToJSON(oneHundredAndThirtyTwo) {
|
|
2543
|
+
return JSON.stringify(OneHundredAndThirtyTwo$outboundSchema.parse(oneHundredAndThirtyTwo));
|
|
2544
2544
|
}
|
|
2545
|
-
export function
|
|
2546
|
-
return safeParse(jsonString, (x) =>
|
|
2545
|
+
export function oneHundredAndThirtyTwoFromJSON(jsonString) {
|
|
2546
|
+
return safeParse(jsonString, (x) => OneHundredAndThirtyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyTwo' from JSON`);
|
|
2547
2547
|
}
|
|
2548
2548
|
/** @internal */
|
|
2549
|
-
export const
|
|
2549
|
+
export const UserEventPayload131Project$inboundSchema = z.object({
|
|
2550
2550
|
name: z.string(),
|
|
2551
2551
|
id: z.string().optional(),
|
|
2552
2552
|
});
|
|
2553
2553
|
/** @internal */
|
|
2554
|
-
export const
|
|
2554
|
+
export const UserEventPayload131Project$outboundSchema = z.object({
|
|
2555
2555
|
name: z.string(),
|
|
2556
2556
|
id: z.string().optional(),
|
|
2557
2557
|
});
|
|
@@ -2559,18 +2559,18 @@ export const UserEventPayload130Project$outboundSchema = z.object({
|
|
|
2559
2559
|
* @internal
|
|
2560
2560
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2561
2561
|
*/
|
|
2562
|
-
export var
|
|
2563
|
-
(function (
|
|
2564
|
-
/** @deprecated use `
|
|
2565
|
-
|
|
2566
|
-
/** @deprecated use `
|
|
2567
|
-
|
|
2568
|
-
})(
|
|
2569
|
-
export function
|
|
2570
|
-
return JSON.stringify(
|
|
2562
|
+
export var UserEventPayload131Project$;
|
|
2563
|
+
(function (UserEventPayload131Project$) {
|
|
2564
|
+
/** @deprecated use `UserEventPayload131Project$inboundSchema` instead. */
|
|
2565
|
+
UserEventPayload131Project$.inboundSchema = UserEventPayload131Project$inboundSchema;
|
|
2566
|
+
/** @deprecated use `UserEventPayload131Project$outboundSchema` instead. */
|
|
2567
|
+
UserEventPayload131Project$.outboundSchema = UserEventPayload131Project$outboundSchema;
|
|
2568
|
+
})(UserEventPayload131Project$ || (UserEventPayload131Project$ = {}));
|
|
2569
|
+
export function userEventPayload131ProjectToJSON(userEventPayload131Project) {
|
|
2570
|
+
return JSON.stringify(UserEventPayload131Project$outboundSchema.parse(userEventPayload131Project));
|
|
2571
2571
|
}
|
|
2572
|
-
export function
|
|
2573
|
-
return safeParse(jsonString, (x) =>
|
|
2572
|
+
export function userEventPayload131ProjectFromJSON(jsonString) {
|
|
2573
|
+
return safeParse(jsonString, (x) => UserEventPayload131Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload131Project' from JSON`);
|
|
2574
2574
|
}
|
|
2575
2575
|
/** @internal */
|
|
2576
2576
|
export const PayloadRole$inboundSchema = z
|
|
@@ -2620,15 +2620,46 @@ export function projectMembershipFromJSON(jsonString) {
|
|
|
2620
2620
|
return safeParse(jsonString, (x) => ProjectMembership$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ProjectMembership' from JSON`);
|
|
2621
2621
|
}
|
|
2622
2622
|
/** @internal */
|
|
2623
|
-
export const
|
|
2624
|
-
project: z.lazy(() =>
|
|
2623
|
+
export const OneHundredAndThirtyOne$inboundSchema = z.object({
|
|
2624
|
+
project: z.lazy(() => UserEventPayload131Project$inboundSchema),
|
|
2625
2625
|
projectMembership: z.nullable(z.lazy(() => ProjectMembership$inboundSchema)),
|
|
2626
2626
|
});
|
|
2627
2627
|
/** @internal */
|
|
2628
|
-
export const
|
|
2629
|
-
project: z.lazy(() =>
|
|
2628
|
+
export const OneHundredAndThirtyOne$outboundSchema = z.object({
|
|
2629
|
+
project: z.lazy(() => UserEventPayload131Project$outboundSchema),
|
|
2630
2630
|
projectMembership: z.nullable(z.lazy(() => ProjectMembership$outboundSchema)),
|
|
2631
2631
|
});
|
|
2632
|
+
/**
|
|
2633
|
+
* @internal
|
|
2634
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2635
|
+
*/
|
|
2636
|
+
export var OneHundredAndThirtyOne$;
|
|
2637
|
+
(function (OneHundredAndThirtyOne$) {
|
|
2638
|
+
/** @deprecated use `OneHundredAndThirtyOne$inboundSchema` instead. */
|
|
2639
|
+
OneHundredAndThirtyOne$.inboundSchema = OneHundredAndThirtyOne$inboundSchema;
|
|
2640
|
+
/** @deprecated use `OneHundredAndThirtyOne$outboundSchema` instead. */
|
|
2641
|
+
OneHundredAndThirtyOne$.outboundSchema = OneHundredAndThirtyOne$outboundSchema;
|
|
2642
|
+
})(OneHundredAndThirtyOne$ || (OneHundredAndThirtyOne$ = {}));
|
|
2643
|
+
export function oneHundredAndThirtyOneToJSON(oneHundredAndThirtyOne) {
|
|
2644
|
+
return JSON.stringify(OneHundredAndThirtyOne$outboundSchema.parse(oneHundredAndThirtyOne));
|
|
2645
|
+
}
|
|
2646
|
+
export function oneHundredAndThirtyOneFromJSON(jsonString) {
|
|
2647
|
+
return safeParse(jsonString, (x) => OneHundredAndThirtyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyOne' from JSON`);
|
|
2648
|
+
}
|
|
2649
|
+
/** @internal */
|
|
2650
|
+
export const OneHundredAndThirty$inboundSchema = z.object({
|
|
2651
|
+
previousProjectName: z.string(),
|
|
2652
|
+
newProjectName: z.string(),
|
|
2653
|
+
originAccountName: z.string(),
|
|
2654
|
+
transferId: z.string().optional(),
|
|
2655
|
+
});
|
|
2656
|
+
/** @internal */
|
|
2657
|
+
export const OneHundredAndThirty$outboundSchema = z.object({
|
|
2658
|
+
previousProjectName: z.string(),
|
|
2659
|
+
newProjectName: z.string(),
|
|
2660
|
+
originAccountName: z.string(),
|
|
2661
|
+
transferId: z.string().optional(),
|
|
2662
|
+
});
|
|
2632
2663
|
/**
|
|
2633
2664
|
* @internal
|
|
2634
2665
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -2650,14 +2681,14 @@ export function oneHundredAndThirtyFromJSON(jsonString) {
|
|
|
2650
2681
|
export const OneHundredAndTwentyNine$inboundSchema = z.object({
|
|
2651
2682
|
previousProjectName: z.string(),
|
|
2652
2683
|
newProjectName: z.string(),
|
|
2653
|
-
|
|
2684
|
+
destinationAccountName: z.string(),
|
|
2654
2685
|
transferId: z.string().optional(),
|
|
2655
2686
|
});
|
|
2656
2687
|
/** @internal */
|
|
2657
2688
|
export const OneHundredAndTwentyNine$outboundSchema = z.object({
|
|
2658
2689
|
previousProjectName: z.string(),
|
|
2659
2690
|
newProjectName: z.string(),
|
|
2660
|
-
|
|
2691
|
+
destinationAccountName: z.string(),
|
|
2661
2692
|
transferId: z.string().optional(),
|
|
2662
2693
|
});
|
|
2663
2694
|
/**
|
|
@@ -2679,16 +2710,14 @@ export function oneHundredAndTwentyNineFromJSON(jsonString) {
|
|
|
2679
2710
|
}
|
|
2680
2711
|
/** @internal */
|
|
2681
2712
|
export const OneHundredAndTwentyEight$inboundSchema = z.object({
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
destinationAccountName: z.string(),
|
|
2713
|
+
projectName: z.string(),
|
|
2714
|
+
destinationAccountName: z.nullable(z.string()),
|
|
2685
2715
|
transferId: z.string().optional(),
|
|
2686
2716
|
});
|
|
2687
2717
|
/** @internal */
|
|
2688
2718
|
export const OneHundredAndTwentyEight$outboundSchema = z.object({
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
destinationAccountName: z.string(),
|
|
2719
|
+
projectName: z.string(),
|
|
2720
|
+
destinationAccountName: z.nullable(z.string()),
|
|
2692
2721
|
transferId: z.string().optional(),
|
|
2693
2722
|
});
|
|
2694
2723
|
/**
|
|
@@ -2710,14 +2739,20 @@ export function oneHundredAndTwentyEightFromJSON(jsonString) {
|
|
|
2710
2739
|
}
|
|
2711
2740
|
/** @internal */
|
|
2712
2741
|
export const OneHundredAndTwentySeven$inboundSchema = z.object({
|
|
2742
|
+
projectId: z.string(),
|
|
2713
2743
|
projectName: z.string(),
|
|
2714
|
-
|
|
2744
|
+
originAccountName: z.string(),
|
|
2745
|
+
destinationAccountName: z.string(),
|
|
2746
|
+
destinationAccountId: z.string(),
|
|
2715
2747
|
transferId: z.string().optional(),
|
|
2716
2748
|
});
|
|
2717
2749
|
/** @internal */
|
|
2718
2750
|
export const OneHundredAndTwentySeven$outboundSchema = z.object({
|
|
2751
|
+
projectId: z.string(),
|
|
2719
2752
|
projectName: z.string(),
|
|
2720
|
-
|
|
2753
|
+
originAccountName: z.string(),
|
|
2754
|
+
destinationAccountName: z.string(),
|
|
2755
|
+
destinationAccountId: z.string(),
|
|
2721
2756
|
transferId: z.string().optional(),
|
|
2722
2757
|
});
|
|
2723
2758
|
/**
|
|
@@ -2739,21 +2774,21 @@ export function oneHundredAndTwentySevenFromJSON(jsonString) {
|
|
|
2739
2774
|
}
|
|
2740
2775
|
/** @internal */
|
|
2741
2776
|
export const OneHundredAndTwentySix$inboundSchema = z.object({
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2777
|
+
requestedTeamName: z.string(),
|
|
2778
|
+
requestedUserName: z.string().optional(),
|
|
2779
|
+
gitUsername: z.string().optional(),
|
|
2780
|
+
githubUsername: z.string().optional(),
|
|
2781
|
+
gitlabUsername: z.string().optional(),
|
|
2782
|
+
bitbucketUsername: z.string().optional(),
|
|
2748
2783
|
});
|
|
2749
2784
|
/** @internal */
|
|
2750
2785
|
export const OneHundredAndTwentySix$outboundSchema = z.object({
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2786
|
+
requestedTeamName: z.string(),
|
|
2787
|
+
requestedUserName: z.string().optional(),
|
|
2788
|
+
gitUsername: z.string().optional(),
|
|
2789
|
+
githubUsername: z.string().optional(),
|
|
2790
|
+
gitlabUsername: z.string().optional(),
|
|
2791
|
+
bitbucketUsername: z.string().optional(),
|
|
2757
2792
|
});
|
|
2758
2793
|
/**
|
|
2759
2794
|
* @internal
|
|
@@ -2774,21 +2809,21 @@ export function oneHundredAndTwentySixFromJSON(jsonString) {
|
|
|
2774
2809
|
}
|
|
2775
2810
|
/** @internal */
|
|
2776
2811
|
export const OneHundredAndTwentyFive$inboundSchema = z.object({
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
gitUsername: z.string().optional(),
|
|
2780
|
-
githubUsername: z.string().optional(),
|
|
2781
|
-
gitlabUsername: z.string().optional(),
|
|
2782
|
-
bitbucketUsername: z.string().optional(),
|
|
2812
|
+
teamName: z.string(),
|
|
2813
|
+
username: z.string().optional(),
|
|
2814
|
+
gitUsername: z.nullable(z.string()).optional(),
|
|
2815
|
+
githubUsername: z.nullable(z.string()).optional(),
|
|
2816
|
+
gitlabUsername: z.nullable(z.string()).optional(),
|
|
2817
|
+
bitbucketUsername: z.nullable(z.string()).optional(),
|
|
2783
2818
|
});
|
|
2784
2819
|
/** @internal */
|
|
2785
2820
|
export const OneHundredAndTwentyFive$outboundSchema = z.object({
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
gitUsername: z.string().optional(),
|
|
2789
|
-
githubUsername: z.string().optional(),
|
|
2790
|
-
gitlabUsername: z.string().optional(),
|
|
2791
|
-
bitbucketUsername: z.string().optional(),
|
|
2821
|
+
teamName: z.string(),
|
|
2822
|
+
username: z.string().optional(),
|
|
2823
|
+
gitUsername: z.nullable(z.string()).optional(),
|
|
2824
|
+
githubUsername: z.nullable(z.string()).optional(),
|
|
2825
|
+
gitlabUsername: z.nullable(z.string()).optional(),
|
|
2826
|
+
bitbucketUsername: z.nullable(z.string()).optional(),
|
|
2792
2827
|
});
|
|
2793
2828
|
/**
|
|
2794
2829
|
* @internal
|
|
@@ -2811,19 +2846,23 @@ export function oneHundredAndTwentyFiveFromJSON(jsonString) {
|
|
|
2811
2846
|
export const OneHundredAndTwentyFour$inboundSchema = z.object({
|
|
2812
2847
|
teamName: z.string(),
|
|
2813
2848
|
username: z.string().optional(),
|
|
2814
|
-
gitUsername: z.
|
|
2849
|
+
gitUsername: z.string().optional(),
|
|
2815
2850
|
githubUsername: z.nullable(z.string()).optional(),
|
|
2816
2851
|
gitlabUsername: z.nullable(z.string()).optional(),
|
|
2817
2852
|
bitbucketUsername: z.nullable(z.string()).optional(),
|
|
2853
|
+
updatedUid: z.string().optional(),
|
|
2854
|
+
teamId: z.string().optional(),
|
|
2818
2855
|
});
|
|
2819
2856
|
/** @internal */
|
|
2820
2857
|
export const OneHundredAndTwentyFour$outboundSchema = z.object({
|
|
2821
2858
|
teamName: z.string(),
|
|
2822
2859
|
username: z.string().optional(),
|
|
2823
|
-
gitUsername: z.
|
|
2860
|
+
gitUsername: z.string().optional(),
|
|
2824
2861
|
githubUsername: z.nullable(z.string()).optional(),
|
|
2825
2862
|
gitlabUsername: z.nullable(z.string()).optional(),
|
|
2826
2863
|
bitbucketUsername: z.nullable(z.string()).optional(),
|
|
2864
|
+
updatedUid: z.string().optional(),
|
|
2865
|
+
teamId: z.string().optional(),
|
|
2827
2866
|
});
|
|
2828
2867
|
/**
|
|
2829
2868
|
* @internal
|
|
@@ -2844,25 +2883,13 @@ export function oneHundredAndTwentyFourFromJSON(jsonString) {
|
|
|
2844
2883
|
}
|
|
2845
2884
|
/** @internal */
|
|
2846
2885
|
export const OneHundredAndTwentyThree$inboundSchema = z.object({
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
gitUsername: z.string().optional(),
|
|
2850
|
-
githubUsername: z.nullable(z.string()).optional(),
|
|
2851
|
-
gitlabUsername: z.nullable(z.string()).optional(),
|
|
2852
|
-
bitbucketUsername: z.nullable(z.string()).optional(),
|
|
2853
|
-
updatedUid: z.string().optional(),
|
|
2854
|
-
teamId: z.string().optional(),
|
|
2886
|
+
price: z.number().optional(),
|
|
2887
|
+
currency: z.string().optional(),
|
|
2855
2888
|
});
|
|
2856
2889
|
/** @internal */
|
|
2857
2890
|
export const OneHundredAndTwentyThree$outboundSchema = z.object({
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
gitUsername: z.string().optional(),
|
|
2861
|
-
githubUsername: z.nullable(z.string()).optional(),
|
|
2862
|
-
gitlabUsername: z.nullable(z.string()).optional(),
|
|
2863
|
-
bitbucketUsername: z.nullable(z.string()).optional(),
|
|
2864
|
-
updatedUid: z.string().optional(),
|
|
2865
|
-
teamId: z.string().optional(),
|
|
2891
|
+
price: z.number().optional(),
|
|
2892
|
+
currency: z.string().optional(),
|
|
2866
2893
|
});
|
|
2867
2894
|
/**
|
|
2868
2895
|
* @internal
|
|
@@ -2883,13 +2910,13 @@ export function oneHundredAndTwentyThreeFromJSON(jsonString) {
|
|
|
2883
2910
|
}
|
|
2884
2911
|
/** @internal */
|
|
2885
2912
|
export const OneHundredAndTwentyTwo$inboundSchema = z.object({
|
|
2886
|
-
|
|
2887
|
-
|
|
2913
|
+
previewDeploymentSuffix: z.nullable(z.string()).optional(),
|
|
2914
|
+
previousPreviewDeploymentSuffix: z.nullable(z.string()).optional(),
|
|
2888
2915
|
});
|
|
2889
2916
|
/** @internal */
|
|
2890
2917
|
export const OneHundredAndTwentyTwo$outboundSchema = z.object({
|
|
2891
|
-
|
|
2892
|
-
|
|
2918
|
+
previewDeploymentSuffix: z.nullable(z.string()).optional(),
|
|
2919
|
+
previousPreviewDeploymentSuffix: z.nullable(z.string()).optional(),
|
|
2893
2920
|
});
|
|
2894
2921
|
/**
|
|
2895
2922
|
* @internal
|
|
@@ -2910,13 +2937,15 @@ export function oneHundredAndTwentyTwoFromJSON(jsonString) {
|
|
|
2910
2937
|
}
|
|
2911
2938
|
/** @internal */
|
|
2912
2939
|
export const OneHundredAndTwentyOne$inboundSchema = z.object({
|
|
2913
|
-
|
|
2914
|
-
|
|
2940
|
+
price: z.number().optional(),
|
|
2941
|
+
currency: z.string().optional(),
|
|
2942
|
+
enabled: z.boolean().optional(),
|
|
2915
2943
|
});
|
|
2916
2944
|
/** @internal */
|
|
2917
2945
|
export const OneHundredAndTwentyOne$outboundSchema = z.object({
|
|
2918
|
-
|
|
2919
|
-
|
|
2946
|
+
price: z.number().optional(),
|
|
2947
|
+
currency: z.string().optional(),
|
|
2948
|
+
enabled: z.boolean().optional(),
|
|
2920
2949
|
});
|
|
2921
2950
|
/**
|
|
2922
2951
|
* @internal
|
|
@@ -2937,15 +2966,11 @@ export function oneHundredAndTwentyOneFromJSON(jsonString) {
|
|
|
2937
2966
|
}
|
|
2938
2967
|
/** @internal */
|
|
2939
2968
|
export const OneHundredAndTwenty$inboundSchema = z.object({
|
|
2940
|
-
|
|
2941
|
-
currency: z.string().optional(),
|
|
2942
|
-
enabled: z.boolean().optional(),
|
|
2969
|
+
username: z.string(),
|
|
2943
2970
|
});
|
|
2944
2971
|
/** @internal */
|
|
2945
2972
|
export const OneHundredAndTwenty$outboundSchema = z.object({
|
|
2946
|
-
|
|
2947
|
-
currency: z.string().optional(),
|
|
2948
|
-
enabled: z.boolean().optional(),
|
|
2973
|
+
username: z.string(),
|
|
2949
2974
|
});
|
|
2950
2975
|
/**
|
|
2951
2976
|
* @internal
|
|
@@ -2966,11 +2991,13 @@ export function oneHundredAndTwentyFromJSON(jsonString) {
|
|
|
2966
2991
|
}
|
|
2967
2992
|
/** @internal */
|
|
2968
2993
|
export const OneHundredAndNineteen$inboundSchema = z.object({
|
|
2969
|
-
|
|
2994
|
+
email: z.string(),
|
|
2995
|
+
prevEmail: z.string(),
|
|
2970
2996
|
});
|
|
2971
2997
|
/** @internal */
|
|
2972
2998
|
export const OneHundredAndNineteen$outboundSchema = z.object({
|
|
2973
|
-
|
|
2999
|
+
email: z.string(),
|
|
3000
|
+
prevEmail: z.string(),
|
|
2974
3001
|
});
|
|
2975
3002
|
/**
|
|
2976
3003
|
* @internal
|
|
@@ -2991,13 +3018,11 @@ export function oneHundredAndNineteenFromJSON(jsonString) {
|
|
|
2991
3018
|
}
|
|
2992
3019
|
/** @internal */
|
|
2993
3020
|
export const OneHundredAndEighteen$inboundSchema = z.object({
|
|
2994
|
-
|
|
2995
|
-
prevEmail: z.string(),
|
|
3021
|
+
mfaEnabled: z.boolean(),
|
|
2996
3022
|
});
|
|
2997
3023
|
/** @internal */
|
|
2998
3024
|
export const OneHundredAndEighteen$outboundSchema = z.object({
|
|
2999
|
-
|
|
3000
|
-
prevEmail: z.string(),
|
|
3025
|
+
mfaEnabled: z.boolean(),
|
|
3001
3026
|
});
|
|
3002
3027
|
/**
|
|
3003
3028
|
* @internal
|
|
@@ -3018,11 +3043,13 @@ export function oneHundredAndEighteenFromJSON(jsonString) {
|
|
|
3018
3043
|
}
|
|
3019
3044
|
/** @internal */
|
|
3020
3045
|
export const OneHundredAndSeventeen$inboundSchema = z.object({
|
|
3021
|
-
|
|
3046
|
+
enabled: z.boolean(),
|
|
3047
|
+
totpVerified: z.boolean(),
|
|
3022
3048
|
});
|
|
3023
3049
|
/** @internal */
|
|
3024
3050
|
export const OneHundredAndSeventeen$outboundSchema = z.object({
|
|
3025
|
-
|
|
3051
|
+
enabled: z.boolean(),
|
|
3052
|
+
totpVerified: z.boolean(),
|
|
3026
3053
|
});
|
|
3027
3054
|
/**
|
|
3028
3055
|
* @internal
|
|
@@ -3042,33 +3069,6 @@ export function oneHundredAndSeventeenFromJSON(jsonString) {
|
|
|
3042
3069
|
return safeParse(jsonString, (x) => OneHundredAndSeventeen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeventeen' from JSON`);
|
|
3043
3070
|
}
|
|
3044
3071
|
/** @internal */
|
|
3045
|
-
export const OneHundredAndSixteen$inboundSchema = z.object({
|
|
3046
|
-
enabled: z.boolean(),
|
|
3047
|
-
totpVerified: z.boolean(),
|
|
3048
|
-
});
|
|
3049
|
-
/** @internal */
|
|
3050
|
-
export const OneHundredAndSixteen$outboundSchema = z.object({
|
|
3051
|
-
enabled: z.boolean(),
|
|
3052
|
-
totpVerified: z.boolean(),
|
|
3053
|
-
});
|
|
3054
|
-
/**
|
|
3055
|
-
* @internal
|
|
3056
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3057
|
-
*/
|
|
3058
|
-
export var OneHundredAndSixteen$;
|
|
3059
|
-
(function (OneHundredAndSixteen$) {
|
|
3060
|
-
/** @deprecated use `OneHundredAndSixteen$inboundSchema` instead. */
|
|
3061
|
-
OneHundredAndSixteen$.inboundSchema = OneHundredAndSixteen$inboundSchema;
|
|
3062
|
-
/** @deprecated use `OneHundredAndSixteen$outboundSchema` instead. */
|
|
3063
|
-
OneHundredAndSixteen$.outboundSchema = OneHundredAndSixteen$outboundSchema;
|
|
3064
|
-
})(OneHundredAndSixteen$ || (OneHundredAndSixteen$ = {}));
|
|
3065
|
-
export function oneHundredAndSixteenToJSON(oneHundredAndSixteen) {
|
|
3066
|
-
return JSON.stringify(OneHundredAndSixteen$outboundSchema.parse(oneHundredAndSixteen));
|
|
3067
|
-
}
|
|
3068
|
-
export function oneHundredAndSixteenFromJSON(jsonString) {
|
|
3069
|
-
return safeParse(jsonString, (x) => OneHundredAndSixteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixteen' from JSON`);
|
|
3070
|
-
}
|
|
3071
|
-
/** @internal */
|
|
3072
3072
|
export const Previous$inboundSchema = z.object({
|
|
3073
3073
|
enabled: z.boolean(),
|
|
3074
3074
|
totpVerified: z.boolean(),
|
|
@@ -3124,12 +3124,12 @@ export function nextFromJSON(jsonString) {
|
|
|
3124
3124
|
return safeParse(jsonString, (x) => Next$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Next' from JSON`);
|
|
3125
3125
|
}
|
|
3126
3126
|
/** @internal */
|
|
3127
|
-
export const
|
|
3127
|
+
export const OneHundredAndSixteen$inboundSchema = z.object({
|
|
3128
3128
|
previous: z.lazy(() => Previous$inboundSchema),
|
|
3129
3129
|
next: z.lazy(() => Next$inboundSchema),
|
|
3130
3130
|
});
|
|
3131
3131
|
/** @internal */
|
|
3132
|
-
export const
|
|
3132
|
+
export const OneHundredAndSixteen$outboundSchema = z.object({
|
|
3133
3133
|
previous: z.lazy(() => Previous$outboundSchema),
|
|
3134
3134
|
next: z.lazy(() => Next$outboundSchema),
|
|
3135
3135
|
});
|
|
@@ -3137,18 +3137,18 @@ export const OneHundredAndFifteen$outboundSchema = z.object({
|
|
|
3137
3137
|
* @internal
|
|
3138
3138
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3139
3139
|
*/
|
|
3140
|
-
export var
|
|
3141
|
-
(function (
|
|
3142
|
-
/** @deprecated use `
|
|
3143
|
-
|
|
3144
|
-
/** @deprecated use `
|
|
3145
|
-
|
|
3146
|
-
})(
|
|
3147
|
-
export function
|
|
3148
|
-
return JSON.stringify(
|
|
3140
|
+
export var OneHundredAndSixteen$;
|
|
3141
|
+
(function (OneHundredAndSixteen$) {
|
|
3142
|
+
/** @deprecated use `OneHundredAndSixteen$inboundSchema` instead. */
|
|
3143
|
+
OneHundredAndSixteen$.inboundSchema = OneHundredAndSixteen$inboundSchema;
|
|
3144
|
+
/** @deprecated use `OneHundredAndSixteen$outboundSchema` instead. */
|
|
3145
|
+
OneHundredAndSixteen$.outboundSchema = OneHundredAndSixteen$outboundSchema;
|
|
3146
|
+
})(OneHundredAndSixteen$ || (OneHundredAndSixteen$ = {}));
|
|
3147
|
+
export function oneHundredAndSixteenToJSON(oneHundredAndSixteen) {
|
|
3148
|
+
return JSON.stringify(OneHundredAndSixteen$outboundSchema.parse(oneHundredAndSixteen));
|
|
3149
3149
|
}
|
|
3150
|
-
export function
|
|
3151
|
-
return safeParse(jsonString, (x) =>
|
|
3150
|
+
export function oneHundredAndSixteenFromJSON(jsonString) {
|
|
3151
|
+
return safeParse(jsonString, (x) => OneHundredAndSixteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixteen' from JSON`);
|
|
3152
3152
|
}
|
|
3153
3153
|
/** @internal */
|
|
3154
3154
|
export const PayloadRemoteCaching$inboundSchema = z.object({
|
|
@@ -3176,13 +3176,38 @@ export function payloadRemoteCachingFromJSON(jsonString) {
|
|
|
3176
3176
|
return safeParse(jsonString, (x) => PayloadRemoteCaching$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadRemoteCaching' from JSON`);
|
|
3177
3177
|
}
|
|
3178
3178
|
/** @internal */
|
|
3179
|
-
export const
|
|
3179
|
+
export const OneHundredAndFifteen$inboundSchema = z.object({
|
|
3180
3180
|
remoteCaching: z.lazy(() => PayloadRemoteCaching$inboundSchema).optional(),
|
|
3181
3181
|
});
|
|
3182
3182
|
/** @internal */
|
|
3183
|
-
export const
|
|
3183
|
+
export const OneHundredAndFifteen$outboundSchema = z.object({
|
|
3184
3184
|
remoteCaching: z.lazy(() => PayloadRemoteCaching$outboundSchema).optional(),
|
|
3185
3185
|
});
|
|
3186
|
+
/**
|
|
3187
|
+
* @internal
|
|
3188
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3189
|
+
*/
|
|
3190
|
+
export var OneHundredAndFifteen$;
|
|
3191
|
+
(function (OneHundredAndFifteen$) {
|
|
3192
|
+
/** @deprecated use `OneHundredAndFifteen$inboundSchema` instead. */
|
|
3193
|
+
OneHundredAndFifteen$.inboundSchema = OneHundredAndFifteen$inboundSchema;
|
|
3194
|
+
/** @deprecated use `OneHundredAndFifteen$outboundSchema` instead. */
|
|
3195
|
+
OneHundredAndFifteen$.outboundSchema = OneHundredAndFifteen$outboundSchema;
|
|
3196
|
+
})(OneHundredAndFifteen$ || (OneHundredAndFifteen$ = {}));
|
|
3197
|
+
export function oneHundredAndFifteenToJSON(oneHundredAndFifteen) {
|
|
3198
|
+
return JSON.stringify(OneHundredAndFifteen$outboundSchema.parse(oneHundredAndFifteen));
|
|
3199
|
+
}
|
|
3200
|
+
export function oneHundredAndFifteenFromJSON(jsonString) {
|
|
3201
|
+
return safeParse(jsonString, (x) => OneHundredAndFifteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFifteen' from JSON`);
|
|
3202
|
+
}
|
|
3203
|
+
/** @internal */
|
|
3204
|
+
export const OneHundredAndFourteen$inboundSchema = z.object({
|
|
3205
|
+
slug: z.string().optional(),
|
|
3206
|
+
});
|
|
3207
|
+
/** @internal */
|
|
3208
|
+
export const OneHundredAndFourteen$outboundSchema = z.object({
|
|
3209
|
+
slug: z.string().optional(),
|
|
3210
|
+
});
|
|
3186
3211
|
/**
|
|
3187
3212
|
* @internal
|
|
3188
3213
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -3202,11 +3227,11 @@ export function oneHundredAndFourteenFromJSON(jsonString) {
|
|
|
3202
3227
|
}
|
|
3203
3228
|
/** @internal */
|
|
3204
3229
|
export const OneHundredAndThirteen$inboundSchema = z.object({
|
|
3205
|
-
|
|
3230
|
+
name: z.string().optional(),
|
|
3206
3231
|
});
|
|
3207
3232
|
/** @internal */
|
|
3208
3233
|
export const OneHundredAndThirteen$outboundSchema = z.object({
|
|
3209
|
-
|
|
3234
|
+
name: z.string().optional(),
|
|
3210
3235
|
});
|
|
3211
3236
|
/**
|
|
3212
3237
|
* @internal
|
|
@@ -3227,11 +3252,11 @@ export function oneHundredAndThirteenFromJSON(jsonString) {
|
|
|
3227
3252
|
}
|
|
3228
3253
|
/** @internal */
|
|
3229
3254
|
export const OneHundredAndTwelve$inboundSchema = z.object({
|
|
3230
|
-
|
|
3255
|
+
enforced: z.boolean(),
|
|
3231
3256
|
});
|
|
3232
3257
|
/** @internal */
|
|
3233
3258
|
export const OneHundredAndTwelve$outboundSchema = z.object({
|
|
3234
|
-
|
|
3259
|
+
enforced: z.boolean(),
|
|
3235
3260
|
});
|
|
3236
3261
|
/**
|
|
3237
3262
|
* @internal
|
|
@@ -3251,37 +3276,12 @@ export function oneHundredAndTwelveFromJSON(jsonString) {
|
|
|
3251
3276
|
return safeParse(jsonString, (x) => OneHundredAndTwelve$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwelve' from JSON`);
|
|
3252
3277
|
}
|
|
3253
3278
|
/** @internal */
|
|
3254
|
-
export const
|
|
3255
|
-
enforced: z.boolean(),
|
|
3256
|
-
});
|
|
3257
|
-
/** @internal */
|
|
3258
|
-
export const OneHundredAndEleven$outboundSchema = z.object({
|
|
3259
|
-
enforced: z.boolean(),
|
|
3260
|
-
});
|
|
3261
|
-
/**
|
|
3262
|
-
* @internal
|
|
3263
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3264
|
-
*/
|
|
3265
|
-
export var OneHundredAndEleven$;
|
|
3266
|
-
(function (OneHundredAndEleven$) {
|
|
3267
|
-
/** @deprecated use `OneHundredAndEleven$inboundSchema` instead. */
|
|
3268
|
-
OneHundredAndEleven$.inboundSchema = OneHundredAndEleven$inboundSchema;
|
|
3269
|
-
/** @deprecated use `OneHundredAndEleven$outboundSchema` instead. */
|
|
3270
|
-
OneHundredAndEleven$.outboundSchema = OneHundredAndEleven$outboundSchema;
|
|
3271
|
-
})(OneHundredAndEleven$ || (OneHundredAndEleven$ = {}));
|
|
3272
|
-
export function oneHundredAndElevenToJSON(oneHundredAndEleven) {
|
|
3273
|
-
return JSON.stringify(OneHundredAndEleven$outboundSchema.parse(oneHundredAndEleven));
|
|
3274
|
-
}
|
|
3275
|
-
export function oneHundredAndElevenFromJSON(jsonString) {
|
|
3276
|
-
return safeParse(jsonString, (x) => OneHundredAndEleven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndEleven' from JSON`);
|
|
3277
|
-
}
|
|
3278
|
-
/** @internal */
|
|
3279
|
-
export const UserEventPayload110User$inboundSchema = z.object({
|
|
3279
|
+
export const UserEventPayload111User$inboundSchema = z.object({
|
|
3280
3280
|
id: z.string(),
|
|
3281
3281
|
username: z.string(),
|
|
3282
3282
|
});
|
|
3283
3283
|
/** @internal */
|
|
3284
|
-
export const
|
|
3284
|
+
export const UserEventPayload111User$outboundSchema = z.object({
|
|
3285
3285
|
id: z.string(),
|
|
3286
3286
|
username: z.string(),
|
|
3287
3287
|
});
|
|
@@ -3289,47 +3289,47 @@ export const UserEventPayload110User$outboundSchema = z.object({
|
|
|
3289
3289
|
* @internal
|
|
3290
3290
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3291
3291
|
*/
|
|
3292
|
-
export var
|
|
3293
|
-
(function (
|
|
3294
|
-
/** @deprecated use `
|
|
3295
|
-
|
|
3296
|
-
/** @deprecated use `
|
|
3297
|
-
|
|
3298
|
-
})(
|
|
3299
|
-
export function
|
|
3300
|
-
return JSON.stringify(
|
|
3292
|
+
export var UserEventPayload111User$;
|
|
3293
|
+
(function (UserEventPayload111User$) {
|
|
3294
|
+
/** @deprecated use `UserEventPayload111User$inboundSchema` instead. */
|
|
3295
|
+
UserEventPayload111User$.inboundSchema = UserEventPayload111User$inboundSchema;
|
|
3296
|
+
/** @deprecated use `UserEventPayload111User$outboundSchema` instead. */
|
|
3297
|
+
UserEventPayload111User$.outboundSchema = UserEventPayload111User$outboundSchema;
|
|
3298
|
+
})(UserEventPayload111User$ || (UserEventPayload111User$ = {}));
|
|
3299
|
+
export function userEventPayload111UserToJSON(userEventPayload111User) {
|
|
3300
|
+
return JSON.stringify(UserEventPayload111User$outboundSchema.parse(userEventPayload111User));
|
|
3301
3301
|
}
|
|
3302
|
-
export function
|
|
3303
|
-
return safeParse(jsonString, (x) =>
|
|
3302
|
+
export function userEventPayload111UserFromJSON(jsonString) {
|
|
3303
|
+
return safeParse(jsonString, (x) => UserEventPayload111User$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload111User' from JSON`);
|
|
3304
3304
|
}
|
|
3305
3305
|
/** @internal */
|
|
3306
|
-
export const
|
|
3306
|
+
export const OneHundredAndEleven$inboundSchema = z.object({
|
|
3307
3307
|
entitlement: z.string(),
|
|
3308
|
-
user: z.lazy(() =>
|
|
3308
|
+
user: z.lazy(() => UserEventPayload111User$inboundSchema),
|
|
3309
3309
|
previousCanceledAt: z.string().optional(),
|
|
3310
3310
|
});
|
|
3311
3311
|
/** @internal */
|
|
3312
|
-
export const
|
|
3312
|
+
export const OneHundredAndEleven$outboundSchema = z.object({
|
|
3313
3313
|
entitlement: z.string(),
|
|
3314
|
-
user: z.lazy(() =>
|
|
3314
|
+
user: z.lazy(() => UserEventPayload111User$outboundSchema),
|
|
3315
3315
|
previousCanceledAt: z.string().optional(),
|
|
3316
3316
|
});
|
|
3317
3317
|
/**
|
|
3318
3318
|
* @internal
|
|
3319
3319
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3320
3320
|
*/
|
|
3321
|
-
export var
|
|
3322
|
-
(function (
|
|
3323
|
-
/** @deprecated use `
|
|
3324
|
-
|
|
3325
|
-
/** @deprecated use `
|
|
3326
|
-
|
|
3327
|
-
})(
|
|
3328
|
-
export function
|
|
3329
|
-
return JSON.stringify(
|
|
3321
|
+
export var OneHundredAndEleven$;
|
|
3322
|
+
(function (OneHundredAndEleven$) {
|
|
3323
|
+
/** @deprecated use `OneHundredAndEleven$inboundSchema` instead. */
|
|
3324
|
+
OneHundredAndEleven$.inboundSchema = OneHundredAndEleven$inboundSchema;
|
|
3325
|
+
/** @deprecated use `OneHundredAndEleven$outboundSchema` instead. */
|
|
3326
|
+
OneHundredAndEleven$.outboundSchema = OneHundredAndEleven$outboundSchema;
|
|
3327
|
+
})(OneHundredAndEleven$ || (OneHundredAndEleven$ = {}));
|
|
3328
|
+
export function oneHundredAndElevenToJSON(oneHundredAndEleven) {
|
|
3329
|
+
return JSON.stringify(OneHundredAndEleven$outboundSchema.parse(oneHundredAndEleven));
|
|
3330
3330
|
}
|
|
3331
|
-
export function
|
|
3332
|
-
return safeParse(jsonString, (x) =>
|
|
3331
|
+
export function oneHundredAndElevenFromJSON(jsonString) {
|
|
3332
|
+
return safeParse(jsonString, (x) => OneHundredAndEleven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndEleven' from JSON`);
|
|
3333
3333
|
}
|
|
3334
3334
|
/** @internal */
|
|
3335
3335
|
export const UserEventPayloadUser$inboundSchema = z.object({
|
|
@@ -3359,12 +3359,12 @@ export function userEventPayloadUserFromJSON(jsonString) {
|
|
|
3359
3359
|
return safeParse(jsonString, (x) => UserEventPayloadUser$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayloadUser' from JSON`);
|
|
3360
3360
|
}
|
|
3361
3361
|
/** @internal */
|
|
3362
|
-
export const
|
|
3362
|
+
export const OneHundredAndTen$inboundSchema = z.object({
|
|
3363
3363
|
entitlement: z.string(),
|
|
3364
3364
|
user: z.lazy(() => UserEventPayloadUser$inboundSchema),
|
|
3365
3365
|
});
|
|
3366
3366
|
/** @internal */
|
|
3367
|
-
export const
|
|
3367
|
+
export const OneHundredAndTen$outboundSchema = z.object({
|
|
3368
3368
|
entitlement: z.string(),
|
|
3369
3369
|
user: z.lazy(() => UserEventPayloadUser$outboundSchema),
|
|
3370
3370
|
});
|
|
@@ -3372,18 +3372,18 @@ export const OneHundredAndNine$outboundSchema = z.object({
|
|
|
3372
3372
|
* @internal
|
|
3373
3373
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3374
3374
|
*/
|
|
3375
|
-
export var
|
|
3376
|
-
(function (
|
|
3377
|
-
/** @deprecated use `
|
|
3378
|
-
|
|
3379
|
-
/** @deprecated use `
|
|
3380
|
-
|
|
3381
|
-
})(
|
|
3382
|
-
export function
|
|
3383
|
-
return JSON.stringify(
|
|
3375
|
+
export var OneHundredAndTen$;
|
|
3376
|
+
(function (OneHundredAndTen$) {
|
|
3377
|
+
/** @deprecated use `OneHundredAndTen$inboundSchema` instead. */
|
|
3378
|
+
OneHundredAndTen$.inboundSchema = OneHundredAndTen$inboundSchema;
|
|
3379
|
+
/** @deprecated use `OneHundredAndTen$outboundSchema` instead. */
|
|
3380
|
+
OneHundredAndTen$.outboundSchema = OneHundredAndTen$outboundSchema;
|
|
3381
|
+
})(OneHundredAndTen$ || (OneHundredAndTen$ = {}));
|
|
3382
|
+
export function oneHundredAndTenToJSON(oneHundredAndTen) {
|
|
3383
|
+
return JSON.stringify(OneHundredAndTen$outboundSchema.parse(oneHundredAndTen));
|
|
3384
3384
|
}
|
|
3385
|
-
export function
|
|
3386
|
-
return safeParse(jsonString, (x) =>
|
|
3385
|
+
export function oneHundredAndTenFromJSON(jsonString) {
|
|
3386
|
+
return safeParse(jsonString, (x) => OneHundredAndTen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTen' from JSON`);
|
|
3387
3387
|
}
|
|
3388
3388
|
/** @internal */
|
|
3389
3389
|
export const UpdatedUser$inboundSchema = z.object({
|
|
@@ -3413,7 +3413,7 @@ export function updatedUserFromJSON(jsonString) {
|
|
|
3413
3413
|
return safeParse(jsonString, (x) => UpdatedUser$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UpdatedUser' from JSON`);
|
|
3414
3414
|
}
|
|
3415
3415
|
/** @internal */
|
|
3416
|
-
export const
|
|
3416
|
+
export const OneHundredAndNine$inboundSchema = z.object({
|
|
3417
3417
|
directoryType: z.string().optional(),
|
|
3418
3418
|
updatedUser: z.lazy(() => UpdatedUser$inboundSchema).optional(),
|
|
3419
3419
|
role: z.string().optional(),
|
|
@@ -3421,7 +3421,7 @@ export const OneHundredAndEight$inboundSchema = z.object({
|
|
|
3421
3421
|
updatedUid: z.string().optional(),
|
|
3422
3422
|
});
|
|
3423
3423
|
/** @internal */
|
|
3424
|
-
export const
|
|
3424
|
+
export const OneHundredAndNine$outboundSchema = z.object({
|
|
3425
3425
|
directoryType: z.string().optional(),
|
|
3426
3426
|
updatedUser: z.lazy(() => UpdatedUser$outboundSchema).optional(),
|
|
3427
3427
|
role: z.string().optional(),
|
|
@@ -3432,27 +3432,27 @@ export const OneHundredAndEight$outboundSchema = z.object({
|
|
|
3432
3432
|
* @internal
|
|
3433
3433
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3434
3434
|
*/
|
|
3435
|
-
export var
|
|
3436
|
-
(function (
|
|
3437
|
-
/** @deprecated use `
|
|
3438
|
-
|
|
3439
|
-
/** @deprecated use `
|
|
3440
|
-
|
|
3441
|
-
})(
|
|
3442
|
-
export function
|
|
3443
|
-
return JSON.stringify(
|
|
3435
|
+
export var OneHundredAndNine$;
|
|
3436
|
+
(function (OneHundredAndNine$) {
|
|
3437
|
+
/** @deprecated use `OneHundredAndNine$inboundSchema` instead. */
|
|
3438
|
+
OneHundredAndNine$.inboundSchema = OneHundredAndNine$inboundSchema;
|
|
3439
|
+
/** @deprecated use `OneHundredAndNine$outboundSchema` instead. */
|
|
3440
|
+
OneHundredAndNine$.outboundSchema = OneHundredAndNine$outboundSchema;
|
|
3441
|
+
})(OneHundredAndNine$ || (OneHundredAndNine$ = {}));
|
|
3442
|
+
export function oneHundredAndNineToJSON(oneHundredAndNine) {
|
|
3443
|
+
return JSON.stringify(OneHundredAndNine$outboundSchema.parse(oneHundredAndNine));
|
|
3444
3444
|
}
|
|
3445
|
-
export function
|
|
3446
|
-
return safeParse(jsonString, (x) =>
|
|
3445
|
+
export function oneHundredAndNineFromJSON(jsonString) {
|
|
3446
|
+
return safeParse(jsonString, (x) => OneHundredAndNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndNine' from JSON`);
|
|
3447
3447
|
}
|
|
3448
3448
|
/** @internal */
|
|
3449
|
-
export const
|
|
3449
|
+
export const OneHundredAndEight$inboundSchema = z.object({
|
|
3450
3450
|
role: z.string().optional(),
|
|
3451
3451
|
uid: z.string(),
|
|
3452
3452
|
origin: z.string().optional(),
|
|
3453
3453
|
});
|
|
3454
3454
|
/** @internal */
|
|
3455
|
-
export const
|
|
3455
|
+
export const OneHundredAndEight$outboundSchema = z.object({
|
|
3456
3456
|
role: z.string().optional(),
|
|
3457
3457
|
uid: z.string(),
|
|
3458
3458
|
origin: z.string().optional(),
|
|
@@ -3461,18 +3461,18 @@ export const OneHundredAndSeven$outboundSchema = z.object({
|
|
|
3461
3461
|
* @internal
|
|
3462
3462
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3463
3463
|
*/
|
|
3464
|
-
export var
|
|
3465
|
-
(function (
|
|
3466
|
-
/** @deprecated use `
|
|
3467
|
-
|
|
3468
|
-
/** @deprecated use `
|
|
3469
|
-
|
|
3470
|
-
})(
|
|
3471
|
-
export function
|
|
3472
|
-
return JSON.stringify(
|
|
3464
|
+
export var OneHundredAndEight$;
|
|
3465
|
+
(function (OneHundredAndEight$) {
|
|
3466
|
+
/** @deprecated use `OneHundredAndEight$inboundSchema` instead. */
|
|
3467
|
+
OneHundredAndEight$.inboundSchema = OneHundredAndEight$inboundSchema;
|
|
3468
|
+
/** @deprecated use `OneHundredAndEight$outboundSchema` instead. */
|
|
3469
|
+
OneHundredAndEight$.outboundSchema = OneHundredAndEight$outboundSchema;
|
|
3470
|
+
})(OneHundredAndEight$ || (OneHundredAndEight$ = {}));
|
|
3471
|
+
export function oneHundredAndEightToJSON(oneHundredAndEight) {
|
|
3472
|
+
return JSON.stringify(OneHundredAndEight$outboundSchema.parse(oneHundredAndEight));
|
|
3473
3473
|
}
|
|
3474
|
-
export function
|
|
3475
|
-
return safeParse(jsonString, (x) =>
|
|
3474
|
+
export function oneHundredAndEightFromJSON(jsonString) {
|
|
3475
|
+
return safeParse(jsonString, (x) => OneHundredAndEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndEight' from JSON`);
|
|
3476
3476
|
}
|
|
3477
3477
|
/** @internal */
|
|
3478
3478
|
export const DeletedUser$inboundSchema = z.object({
|
|
@@ -3502,7 +3502,7 @@ export function deletedUserFromJSON(jsonString) {
|
|
|
3502
3502
|
return safeParse(jsonString, (x) => DeletedUser$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'DeletedUser' from JSON`);
|
|
3503
3503
|
}
|
|
3504
3504
|
/** @internal */
|
|
3505
|
-
export const
|
|
3505
|
+
export const OneHundredAndSeven$inboundSchema = z.object({
|
|
3506
3506
|
deletedUser: z.lazy(() => DeletedUser$inboundSchema).optional(),
|
|
3507
3507
|
deletedUid: z.string().optional(),
|
|
3508
3508
|
githubUsername: z.nullable(z.string()).optional(),
|
|
@@ -3511,7 +3511,7 @@ export const OneHundredAndSix$inboundSchema = z.object({
|
|
|
3511
3511
|
directoryType: z.string().optional(),
|
|
3512
3512
|
});
|
|
3513
3513
|
/** @internal */
|
|
3514
|
-
export const
|
|
3514
|
+
export const OneHundredAndSeven$outboundSchema = z.object({
|
|
3515
3515
|
deletedUser: z.lazy(() => DeletedUser$outboundSchema).optional(),
|
|
3516
3516
|
deletedUid: z.string().optional(),
|
|
3517
3517
|
githubUsername: z.nullable(z.string()).optional(),
|
|
@@ -3523,18 +3523,18 @@ export const OneHundredAndSix$outboundSchema = z.object({
|
|
|
3523
3523
|
* @internal
|
|
3524
3524
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3525
3525
|
*/
|
|
3526
|
-
export var
|
|
3527
|
-
(function (
|
|
3528
|
-
/** @deprecated use `
|
|
3529
|
-
|
|
3530
|
-
/** @deprecated use `
|
|
3531
|
-
|
|
3532
|
-
})(
|
|
3533
|
-
export function
|
|
3534
|
-
return JSON.stringify(
|
|
3526
|
+
export var OneHundredAndSeven$;
|
|
3527
|
+
(function (OneHundredAndSeven$) {
|
|
3528
|
+
/** @deprecated use `OneHundredAndSeven$inboundSchema` instead. */
|
|
3529
|
+
OneHundredAndSeven$.inboundSchema = OneHundredAndSeven$inboundSchema;
|
|
3530
|
+
/** @deprecated use `OneHundredAndSeven$outboundSchema` instead. */
|
|
3531
|
+
OneHundredAndSeven$.outboundSchema = OneHundredAndSeven$outboundSchema;
|
|
3532
|
+
})(OneHundredAndSeven$ || (OneHundredAndSeven$ = {}));
|
|
3533
|
+
export function oneHundredAndSevenToJSON(oneHundredAndSeven) {
|
|
3534
|
+
return JSON.stringify(OneHundredAndSeven$outboundSchema.parse(oneHundredAndSeven));
|
|
3535
3535
|
}
|
|
3536
|
-
export function
|
|
3537
|
-
return safeParse(jsonString, (x) =>
|
|
3536
|
+
export function oneHundredAndSevenFromJSON(jsonString) {
|
|
3537
|
+
return safeParse(jsonString, (x) => OneHundredAndSeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeven' from JSON`);
|
|
3538
3538
|
}
|
|
3539
3539
|
/** @internal */
|
|
3540
3540
|
export const InvitedUser$inboundSchema = z.object({
|
|
@@ -3564,7 +3564,7 @@ export function invitedUserFromJSON(jsonString) {
|
|
|
3564
3564
|
return safeParse(jsonString, (x) => InvitedUser$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'InvitedUser' from JSON`);
|
|
3565
3565
|
}
|
|
3566
3566
|
/** @internal */
|
|
3567
|
-
export const
|
|
3567
|
+
export const OneHundredAndSix$inboundSchema = z.object({
|
|
3568
3568
|
directoryType: z.string().optional(),
|
|
3569
3569
|
ssoType: z.string().optional(),
|
|
3570
3570
|
invitedUser: z.lazy(() => InvitedUser$inboundSchema).optional(),
|
|
@@ -3574,7 +3574,7 @@ export const OneHundredAndFive$inboundSchema = z.object({
|
|
|
3574
3574
|
invitedUid: z.string().optional(),
|
|
3575
3575
|
});
|
|
3576
3576
|
/** @internal */
|
|
3577
|
-
export const
|
|
3577
|
+
export const OneHundredAndSix$outboundSchema = z.object({
|
|
3578
3578
|
directoryType: z.string().optional(),
|
|
3579
3579
|
ssoType: z.string().optional(),
|
|
3580
3580
|
invitedUser: z.lazy(() => InvitedUser$outboundSchema).optional(),
|
|
@@ -3587,18 +3587,18 @@ export const OneHundredAndFive$outboundSchema = z.object({
|
|
|
3587
3587
|
* @internal
|
|
3588
3588
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3589
3589
|
*/
|
|
3590
|
-
export var
|
|
3591
|
-
(function (
|
|
3592
|
-
/** @deprecated use `
|
|
3593
|
-
|
|
3594
|
-
/** @deprecated use `
|
|
3595
|
-
|
|
3596
|
-
})(
|
|
3597
|
-
export function
|
|
3598
|
-
return JSON.stringify(
|
|
3590
|
+
export var OneHundredAndSix$;
|
|
3591
|
+
(function (OneHundredAndSix$) {
|
|
3592
|
+
/** @deprecated use `OneHundredAndSix$inboundSchema` instead. */
|
|
3593
|
+
OneHundredAndSix$.inboundSchema = OneHundredAndSix$inboundSchema;
|
|
3594
|
+
/** @deprecated use `OneHundredAndSix$outboundSchema` instead. */
|
|
3595
|
+
OneHundredAndSix$.outboundSchema = OneHundredAndSix$outboundSchema;
|
|
3596
|
+
})(OneHundredAndSix$ || (OneHundredAndSix$ = {}));
|
|
3597
|
+
export function oneHundredAndSixToJSON(oneHundredAndSix) {
|
|
3598
|
+
return JSON.stringify(OneHundredAndSix$outboundSchema.parse(oneHundredAndSix));
|
|
3599
3599
|
}
|
|
3600
|
-
export function
|
|
3601
|
-
return safeParse(jsonString, (x) =>
|
|
3600
|
+
export function oneHundredAndSixFromJSON(jsonString) {
|
|
3601
|
+
return safeParse(jsonString, (x) => OneHundredAndSix$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSix' from JSON`);
|
|
3602
3602
|
}
|
|
3603
3603
|
/** @internal */
|
|
3604
3604
|
export const Reasons$inboundSchema = z.object({
|
|
@@ -3628,14 +3628,14 @@ export function reasonsFromJSON(jsonString) {
|
|
|
3628
3628
|
return safeParse(jsonString, (x) => Reasons$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Reasons' from JSON`);
|
|
3629
3629
|
}
|
|
3630
3630
|
/** @internal */
|
|
3631
|
-
export const
|
|
3631
|
+
export const OneHundredAndFive$inboundSchema = z.object({
|
|
3632
3632
|
slug: z.string(),
|
|
3633
3633
|
teamId: z.string(),
|
|
3634
3634
|
by: z.string(),
|
|
3635
3635
|
reasons: z.array(z.lazy(() => Reasons$inboundSchema)).optional(),
|
|
3636
3636
|
});
|
|
3637
3637
|
/** @internal */
|
|
3638
|
-
export const
|
|
3638
|
+
export const OneHundredAndFive$outboundSchema = z.object({
|
|
3639
3639
|
slug: z.string(),
|
|
3640
3640
|
teamId: z.string(),
|
|
3641
3641
|
by: z.string(),
|
|
@@ -3645,43 +3645,43 @@ export const OneHundredAndFour$outboundSchema = z.object({
|
|
|
3645
3645
|
* @internal
|
|
3646
3646
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3647
3647
|
*/
|
|
3648
|
-
export var
|
|
3649
|
-
(function (
|
|
3650
|
-
/** @deprecated use `
|
|
3651
|
-
|
|
3652
|
-
/** @deprecated use `
|
|
3653
|
-
|
|
3654
|
-
})(
|
|
3655
|
-
export function
|
|
3656
|
-
return JSON.stringify(
|
|
3648
|
+
export var OneHundredAndFive$;
|
|
3649
|
+
(function (OneHundredAndFive$) {
|
|
3650
|
+
/** @deprecated use `OneHundredAndFive$inboundSchema` instead. */
|
|
3651
|
+
OneHundredAndFive$.inboundSchema = OneHundredAndFive$inboundSchema;
|
|
3652
|
+
/** @deprecated use `OneHundredAndFive$outboundSchema` instead. */
|
|
3653
|
+
OneHundredAndFive$.outboundSchema = OneHundredAndFive$outboundSchema;
|
|
3654
|
+
})(OneHundredAndFive$ || (OneHundredAndFive$ = {}));
|
|
3655
|
+
export function oneHundredAndFiveToJSON(oneHundredAndFive) {
|
|
3656
|
+
return JSON.stringify(OneHundredAndFive$outboundSchema.parse(oneHundredAndFive));
|
|
3657
3657
|
}
|
|
3658
|
-
export function
|
|
3659
|
-
return safeParse(jsonString, (x) =>
|
|
3658
|
+
export function oneHundredAndFiveFromJSON(jsonString) {
|
|
3659
|
+
return safeParse(jsonString, (x) => OneHundredAndFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFive' from JSON`);
|
|
3660
3660
|
}
|
|
3661
3661
|
/** @internal */
|
|
3662
|
-
export const
|
|
3662
|
+
export const OneHundredAndFour$inboundSchema = z.object({
|
|
3663
3663
|
slug: z.string(),
|
|
3664
3664
|
});
|
|
3665
3665
|
/** @internal */
|
|
3666
|
-
export const
|
|
3666
|
+
export const OneHundredAndFour$outboundSchema = z.object({
|
|
3667
3667
|
slug: z.string(),
|
|
3668
3668
|
});
|
|
3669
3669
|
/**
|
|
3670
3670
|
* @internal
|
|
3671
3671
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3672
3672
|
*/
|
|
3673
|
-
export var
|
|
3674
|
-
(function (
|
|
3675
|
-
/** @deprecated use `
|
|
3676
|
-
|
|
3677
|
-
/** @deprecated use `
|
|
3678
|
-
|
|
3679
|
-
})(
|
|
3680
|
-
export function
|
|
3681
|
-
return JSON.stringify(
|
|
3673
|
+
export var OneHundredAndFour$;
|
|
3674
|
+
(function (OneHundredAndFour$) {
|
|
3675
|
+
/** @deprecated use `OneHundredAndFour$inboundSchema` instead. */
|
|
3676
|
+
OneHundredAndFour$.inboundSchema = OneHundredAndFour$inboundSchema;
|
|
3677
|
+
/** @deprecated use `OneHundredAndFour$outboundSchema` instead. */
|
|
3678
|
+
OneHundredAndFour$.outboundSchema = OneHundredAndFour$outboundSchema;
|
|
3679
|
+
})(OneHundredAndFour$ || (OneHundredAndFour$ = {}));
|
|
3680
|
+
export function oneHundredAndFourToJSON(oneHundredAndFour) {
|
|
3681
|
+
return JSON.stringify(OneHundredAndFour$outboundSchema.parse(oneHundredAndFour));
|
|
3682
3682
|
}
|
|
3683
|
-
export function
|
|
3684
|
-
return safeParse(jsonString, (x) =>
|
|
3683
|
+
export function oneHundredAndFourFromJSON(jsonString) {
|
|
3684
|
+
return safeParse(jsonString, (x) => OneHundredAndFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFour' from JSON`);
|
|
3685
3685
|
}
|
|
3686
3686
|
/** @internal */
|
|
3687
3687
|
export const Store$inboundSchema = z
|
|
@@ -3712,12 +3712,12 @@ export function storeFromJSON(jsonString) {
|
|
|
3712
3712
|
return safeParse(jsonString, (x) => Store$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Store' from JSON`);
|
|
3713
3713
|
}
|
|
3714
3714
|
/** @internal */
|
|
3715
|
-
export const
|
|
3715
|
+
export const OneHundredAndThree$inboundSchema = z.object({
|
|
3716
3716
|
store: z.lazy(() => Store$inboundSchema),
|
|
3717
3717
|
ownerId: z.string().optional(),
|
|
3718
3718
|
});
|
|
3719
3719
|
/** @internal */
|
|
3720
|
-
export const
|
|
3720
|
+
export const OneHundredAndThree$outboundSchema = z.object({
|
|
3721
3721
|
store: z.lazy(() => Store$outboundSchema),
|
|
3722
3722
|
ownerId: z.string().optional(),
|
|
3723
3723
|
});
|
|
@@ -3725,18 +3725,18 @@ export const OneHundredAndTwo$outboundSchema = z.object({
|
|
|
3725
3725
|
* @internal
|
|
3726
3726
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3727
3727
|
*/
|
|
3728
|
-
export var
|
|
3729
|
-
(function (
|
|
3730
|
-
/** @deprecated use `
|
|
3731
|
-
|
|
3732
|
-
/** @deprecated use `
|
|
3733
|
-
|
|
3734
|
-
})(
|
|
3735
|
-
export function
|
|
3736
|
-
return JSON.stringify(
|
|
3728
|
+
export var OneHundredAndThree$;
|
|
3729
|
+
(function (OneHundredAndThree$) {
|
|
3730
|
+
/** @deprecated use `OneHundredAndThree$inboundSchema` instead. */
|
|
3731
|
+
OneHundredAndThree$.inboundSchema = OneHundredAndThree$inboundSchema;
|
|
3732
|
+
/** @deprecated use `OneHundredAndThree$outboundSchema` instead. */
|
|
3733
|
+
OneHundredAndThree$.outboundSchema = OneHundredAndThree$outboundSchema;
|
|
3734
|
+
})(OneHundredAndThree$ || (OneHundredAndThree$ = {}));
|
|
3735
|
+
export function oneHundredAndThreeToJSON(oneHundredAndThree) {
|
|
3736
|
+
return JSON.stringify(OneHundredAndThree$outboundSchema.parse(oneHundredAndThree));
|
|
3737
3737
|
}
|
|
3738
|
-
export function
|
|
3739
|
-
return safeParse(jsonString, (x) =>
|
|
3738
|
+
export function oneHundredAndThreeFromJSON(jsonString) {
|
|
3739
|
+
return safeParse(jsonString, (x) => OneHundredAndThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThree' from JSON`);
|
|
3740
3740
|
}
|
|
3741
3741
|
/** @internal */
|
|
3742
3742
|
export const StoreType$inboundSchema = z
|
|
@@ -3755,29 +3755,29 @@ export var StoreType$;
|
|
|
3755
3755
|
StoreType$.outboundSchema = StoreType$outboundSchema;
|
|
3756
3756
|
})(StoreType$ || (StoreType$ = {}));
|
|
3757
3757
|
/** @internal */
|
|
3758
|
-
export const
|
|
3758
|
+
export const OneHundredAndTwo$inboundSchema = z.object({
|
|
3759
3759
|
storeType: StoreType$inboundSchema,
|
|
3760
3760
|
});
|
|
3761
3761
|
/** @internal */
|
|
3762
|
-
export const
|
|
3762
|
+
export const OneHundredAndTwo$outboundSchema = z.object({
|
|
3763
3763
|
storeType: StoreType$outboundSchema,
|
|
3764
3764
|
});
|
|
3765
3765
|
/**
|
|
3766
3766
|
* @internal
|
|
3767
3767
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3768
3768
|
*/
|
|
3769
|
-
export var
|
|
3770
|
-
(function (
|
|
3771
|
-
/** @deprecated use `
|
|
3772
|
-
|
|
3773
|
-
/** @deprecated use `
|
|
3774
|
-
|
|
3775
|
-
})(
|
|
3776
|
-
export function
|
|
3777
|
-
return JSON.stringify(
|
|
3769
|
+
export var OneHundredAndTwo$;
|
|
3770
|
+
(function (OneHundredAndTwo$) {
|
|
3771
|
+
/** @deprecated use `OneHundredAndTwo$inboundSchema` instead. */
|
|
3772
|
+
OneHundredAndTwo$.inboundSchema = OneHundredAndTwo$inboundSchema;
|
|
3773
|
+
/** @deprecated use `OneHundredAndTwo$outboundSchema` instead. */
|
|
3774
|
+
OneHundredAndTwo$.outboundSchema = OneHundredAndTwo$outboundSchema;
|
|
3775
|
+
})(OneHundredAndTwo$ || (OneHundredAndTwo$ = {}));
|
|
3776
|
+
export function oneHundredAndTwoToJSON(oneHundredAndTwo) {
|
|
3777
|
+
return JSON.stringify(OneHundredAndTwo$outboundSchema.parse(oneHundredAndTwo));
|
|
3778
3778
|
}
|
|
3779
|
-
export function
|
|
3780
|
-
return safeParse(jsonString, (x) =>
|
|
3779
|
+
export function oneHundredAndTwoFromJSON(jsonString) {
|
|
3780
|
+
return safeParse(jsonString, (x) => OneHundredAndTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwo' from JSON`);
|
|
3781
3781
|
}
|
|
3782
3782
|
/** @internal */
|
|
3783
3783
|
export const UserEventPayloadType$inboundSchema = z.nativeEnum(UserEventPayloadType);
|
|
@@ -3795,7 +3795,7 @@ export var UserEventPayloadType$;
|
|
|
3795
3795
|
UserEventPayloadType$.outboundSchema = UserEventPayloadType$outboundSchema;
|
|
3796
3796
|
})(UserEventPayloadType$ || (UserEventPayloadType$ = {}));
|
|
3797
3797
|
/** @internal */
|
|
3798
|
-
export const
|
|
3798
|
+
export const OneHundredAndOne$inboundSchema = z.object({
|
|
3799
3799
|
id: z.string(),
|
|
3800
3800
|
name: z.string().optional(),
|
|
3801
3801
|
computeUnitsMax: z.number().optional(),
|
|
@@ -3804,7 +3804,7 @@ export const OneHundred$inboundSchema = z.object({
|
|
|
3804
3804
|
type: UserEventPayloadType$inboundSchema,
|
|
3805
3805
|
});
|
|
3806
3806
|
/** @internal */
|
|
3807
|
-
export const
|
|
3807
|
+
export const OneHundredAndOne$outboundSchema = z.object({
|
|
3808
3808
|
id: z.string(),
|
|
3809
3809
|
name: z.string().optional(),
|
|
3810
3810
|
computeUnitsMax: z.number().optional(),
|
|
@@ -3816,34 +3816,34 @@ export const OneHundred$outboundSchema = z.object({
|
|
|
3816
3816
|
* @internal
|
|
3817
3817
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3818
3818
|
*/
|
|
3819
|
-
export var
|
|
3820
|
-
(function (
|
|
3821
|
-
/** @deprecated use `
|
|
3822
|
-
|
|
3823
|
-
/** @deprecated use `
|
|
3824
|
-
|
|
3825
|
-
})(
|
|
3826
|
-
export function
|
|
3827
|
-
return JSON.stringify(
|
|
3819
|
+
export var OneHundredAndOne$;
|
|
3820
|
+
(function (OneHundredAndOne$) {
|
|
3821
|
+
/** @deprecated use `OneHundredAndOne$inboundSchema` instead. */
|
|
3822
|
+
OneHundredAndOne$.inboundSchema = OneHundredAndOne$inboundSchema;
|
|
3823
|
+
/** @deprecated use `OneHundredAndOne$outboundSchema` instead. */
|
|
3824
|
+
OneHundredAndOne$.outboundSchema = OneHundredAndOne$outboundSchema;
|
|
3825
|
+
})(OneHundredAndOne$ || (OneHundredAndOne$ = {}));
|
|
3826
|
+
export function oneHundredAndOneToJSON(oneHundredAndOne) {
|
|
3827
|
+
return JSON.stringify(OneHundredAndOne$outboundSchema.parse(oneHundredAndOne));
|
|
3828
3828
|
}
|
|
3829
|
-
export function
|
|
3830
|
-
return safeParse(jsonString, (x) =>
|
|
3829
|
+
export function oneHundredAndOneFromJSON(jsonString) {
|
|
3830
|
+
return safeParse(jsonString, (x) => OneHundredAndOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndOne' from JSON`);
|
|
3831
3831
|
}
|
|
3832
3832
|
/** @internal */
|
|
3833
|
-
export const
|
|
3833
|
+
export const UserEventPayload100Type$inboundSchema = z.nativeEnum(UserEventPayload100Type);
|
|
3834
3834
|
/** @internal */
|
|
3835
|
-
export const
|
|
3835
|
+
export const UserEventPayload100Type$outboundSchema = UserEventPayload100Type$inboundSchema;
|
|
3836
3836
|
/**
|
|
3837
3837
|
* @internal
|
|
3838
3838
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3839
3839
|
*/
|
|
3840
|
-
export var
|
|
3841
|
-
(function (
|
|
3842
|
-
/** @deprecated use `
|
|
3843
|
-
|
|
3844
|
-
/** @deprecated use `
|
|
3845
|
-
|
|
3846
|
-
})(
|
|
3840
|
+
export var UserEventPayload100Type$;
|
|
3841
|
+
(function (UserEventPayload100Type$) {
|
|
3842
|
+
/** @deprecated use `UserEventPayload100Type$inboundSchema` instead. */
|
|
3843
|
+
UserEventPayload100Type$.inboundSchema = UserEventPayload100Type$inboundSchema;
|
|
3844
|
+
/** @deprecated use `UserEventPayload100Type$outboundSchema` instead. */
|
|
3845
|
+
UserEventPayload100Type$.outboundSchema = UserEventPayload100Type$outboundSchema;
|
|
3846
|
+
})(UserEventPayload100Type$ || (UserEventPayload100Type$ = {}));
|
|
3847
3847
|
/** @internal */
|
|
3848
3848
|
export const PayloadPricingPlan$inboundSchema = z.nativeEnum(PayloadPricingPlan);
|
|
3849
3849
|
/** @internal */
|
|
@@ -3861,7 +3861,7 @@ export var PayloadPricingPlan$;
|
|
|
3861
3861
|
})(PayloadPricingPlan$ || (PayloadPricingPlan$ = {}));
|
|
3862
3862
|
/** @internal */
|
|
3863
3863
|
export const BudgetItem$inboundSchema = z.object({
|
|
3864
|
-
type:
|
|
3864
|
+
type: UserEventPayload100Type$inboundSchema,
|
|
3865
3865
|
fixedBudget: z.number(),
|
|
3866
3866
|
previousSpend: z.array(z.number()),
|
|
3867
3867
|
notifiedAt: z.array(z.number()),
|
|
@@ -3877,7 +3877,7 @@ export const BudgetItem$inboundSchema = z.object({
|
|
|
3877
3877
|
});
|
|
3878
3878
|
/** @internal */
|
|
3879
3879
|
export const BudgetItem$outboundSchema = z.object({
|
|
3880
|
-
type:
|
|
3880
|
+
type: UserEventPayload100Type$outboundSchema,
|
|
3881
3881
|
fixedBudget: z.number(),
|
|
3882
3882
|
previousSpend: z.array(z.number()),
|
|
3883
3883
|
notifiedAt: z.array(z.number()),
|
|
@@ -3934,45 +3934,45 @@ export function payloadBudgetFromJSON(jsonString) {
|
|
|
3934
3934
|
return safeParse(jsonString, (x) => PayloadBudget$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadBudget' from JSON`);
|
|
3935
3935
|
}
|
|
3936
3936
|
/** @internal */
|
|
3937
|
-
export const
|
|
3937
|
+
export const OneHundred$inboundSchema = z.object({
|
|
3938
3938
|
budget: z.lazy(() => PayloadBudget$inboundSchema),
|
|
3939
3939
|
});
|
|
3940
3940
|
/** @internal */
|
|
3941
|
-
export const
|
|
3941
|
+
export const OneHundred$outboundSchema = z.object({
|
|
3942
3942
|
budget: z.lazy(() => PayloadBudget$outboundSchema),
|
|
3943
3943
|
});
|
|
3944
3944
|
/**
|
|
3945
3945
|
* @internal
|
|
3946
3946
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3947
3947
|
*/
|
|
3948
|
-
export var
|
|
3949
|
-
(function (
|
|
3950
|
-
/** @deprecated use `
|
|
3951
|
-
|
|
3952
|
-
/** @deprecated use `
|
|
3953
|
-
|
|
3954
|
-
})(
|
|
3955
|
-
export function
|
|
3956
|
-
return JSON.stringify(
|
|
3957
|
-
}
|
|
3958
|
-
export function
|
|
3959
|
-
return safeParse(jsonString, (x) =>
|
|
3960
|
-
}
|
|
3961
|
-
/** @internal */
|
|
3962
|
-
export const
|
|
3963
|
-
/** @internal */
|
|
3964
|
-
export const
|
|
3965
|
-
/**
|
|
3948
|
+
export var OneHundred$;
|
|
3949
|
+
(function (OneHundred$) {
|
|
3950
|
+
/** @deprecated use `OneHundred$inboundSchema` instead. */
|
|
3951
|
+
OneHundred$.inboundSchema = OneHundred$inboundSchema;
|
|
3952
|
+
/** @deprecated use `OneHundred$outboundSchema` instead. */
|
|
3953
|
+
OneHundred$.outboundSchema = OneHundred$outboundSchema;
|
|
3954
|
+
})(OneHundred$ || (OneHundred$ = {}));
|
|
3955
|
+
export function oneHundredToJSON(oneHundred) {
|
|
3956
|
+
return JSON.stringify(OneHundred$outboundSchema.parse(oneHundred));
|
|
3957
|
+
}
|
|
3958
|
+
export function oneHundredFromJSON(jsonString) {
|
|
3959
|
+
return safeParse(jsonString, (x) => OneHundred$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundred' from JSON`);
|
|
3960
|
+
}
|
|
3961
|
+
/** @internal */
|
|
3962
|
+
export const UserEventPayload99Type$inboundSchema = z.nativeEnum(UserEventPayload99Type);
|
|
3963
|
+
/** @internal */
|
|
3964
|
+
export const UserEventPayload99Type$outboundSchema = UserEventPayload99Type$inboundSchema;
|
|
3965
|
+
/**
|
|
3966
3966
|
* @internal
|
|
3967
3967
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3968
3968
|
*/
|
|
3969
|
-
export var
|
|
3970
|
-
(function (
|
|
3971
|
-
/** @deprecated use `
|
|
3972
|
-
|
|
3973
|
-
/** @deprecated use `
|
|
3974
|
-
|
|
3975
|
-
})(
|
|
3969
|
+
export var UserEventPayload99Type$;
|
|
3970
|
+
(function (UserEventPayload99Type$) {
|
|
3971
|
+
/** @deprecated use `UserEventPayload99Type$inboundSchema` instead. */
|
|
3972
|
+
UserEventPayload99Type$.inboundSchema = UserEventPayload99Type$inboundSchema;
|
|
3973
|
+
/** @deprecated use `UserEventPayload99Type$outboundSchema` instead. */
|
|
3974
|
+
UserEventPayload99Type$.outboundSchema = UserEventPayload99Type$outboundSchema;
|
|
3975
|
+
})(UserEventPayload99Type$ || (UserEventPayload99Type$ = {}));
|
|
3976
3976
|
/** @internal */
|
|
3977
3977
|
export const PricingPlan$inboundSchema = z
|
|
3978
3978
|
.nativeEnum(PricingPlan);
|
|
@@ -3992,7 +3992,7 @@ export var PricingPlan$;
|
|
|
3992
3992
|
/** @internal */
|
|
3993
3993
|
export const Budget$inboundSchema = z
|
|
3994
3994
|
.object({
|
|
3995
|
-
type:
|
|
3995
|
+
type: UserEventPayload99Type$inboundSchema,
|
|
3996
3996
|
fixedBudget: z.number(),
|
|
3997
3997
|
previousSpend: z.array(z.number()),
|
|
3998
3998
|
notifiedAt: z.array(z.number()),
|
|
@@ -4008,7 +4008,7 @@ export const Budget$inboundSchema = z
|
|
|
4008
4008
|
});
|
|
4009
4009
|
/** @internal */
|
|
4010
4010
|
export const Budget$outboundSchema = z.object({
|
|
4011
|
-
type:
|
|
4011
|
+
type: UserEventPayload99Type$outboundSchema,
|
|
4012
4012
|
fixedBudget: z.number(),
|
|
4013
4013
|
previousSpend: z.array(z.number()),
|
|
4014
4014
|
notifiedAt: z.array(z.number()),
|
|
@@ -4040,54 +4040,54 @@ export function budgetFromJSON(jsonString) {
|
|
|
4040
4040
|
return safeParse(jsonString, (x) => Budget$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Budget' from JSON`);
|
|
4041
4041
|
}
|
|
4042
4042
|
/** @internal */
|
|
4043
|
-
export const
|
|
4043
|
+
export const NinetyNine$inboundSchema = z.object({
|
|
4044
4044
|
budget: z.lazy(() => Budget$inboundSchema),
|
|
4045
4045
|
});
|
|
4046
4046
|
/** @internal */
|
|
4047
|
-
export const
|
|
4047
|
+
export const NinetyNine$outboundSchema = z.object({
|
|
4048
4048
|
budget: z.lazy(() => Budget$outboundSchema),
|
|
4049
4049
|
});
|
|
4050
4050
|
/**
|
|
4051
4051
|
* @internal
|
|
4052
4052
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4053
4053
|
*/
|
|
4054
|
-
export var
|
|
4055
|
-
(function (
|
|
4056
|
-
/** @deprecated use `
|
|
4057
|
-
|
|
4058
|
-
/** @deprecated use `
|
|
4059
|
-
|
|
4060
|
-
})(
|
|
4061
|
-
export function
|
|
4062
|
-
return JSON.stringify(
|
|
4054
|
+
export var NinetyNine$;
|
|
4055
|
+
(function (NinetyNine$) {
|
|
4056
|
+
/** @deprecated use `NinetyNine$inboundSchema` instead. */
|
|
4057
|
+
NinetyNine$.inboundSchema = NinetyNine$inboundSchema;
|
|
4058
|
+
/** @deprecated use `NinetyNine$outboundSchema` instead. */
|
|
4059
|
+
NinetyNine$.outboundSchema = NinetyNine$outboundSchema;
|
|
4060
|
+
})(NinetyNine$ || (NinetyNine$ = {}));
|
|
4061
|
+
export function ninetyNineToJSON(ninetyNine) {
|
|
4062
|
+
return JSON.stringify(NinetyNine$outboundSchema.parse(ninetyNine));
|
|
4063
4063
|
}
|
|
4064
|
-
export function
|
|
4065
|
-
return safeParse(jsonString, (x) =>
|
|
4064
|
+
export function ninetyNineFromJSON(jsonString) {
|
|
4065
|
+
return safeParse(jsonString, (x) => NinetyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyNine' from JSON`);
|
|
4066
4066
|
}
|
|
4067
4067
|
/** @internal */
|
|
4068
|
-
export const
|
|
4068
|
+
export const NinetyEight$inboundSchema = z.object({
|
|
4069
4069
|
webhookUrl: z.string().optional(),
|
|
4070
4070
|
});
|
|
4071
4071
|
/** @internal */
|
|
4072
|
-
export const
|
|
4072
|
+
export const NinetyEight$outboundSchema = z.object({
|
|
4073
4073
|
webhookUrl: z.string().optional(),
|
|
4074
4074
|
});
|
|
4075
4075
|
/**
|
|
4076
4076
|
* @internal
|
|
4077
4077
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4078
4078
|
*/
|
|
4079
|
-
export var
|
|
4080
|
-
(function (
|
|
4081
|
-
/** @deprecated use `
|
|
4082
|
-
|
|
4083
|
-
/** @deprecated use `
|
|
4084
|
-
|
|
4085
|
-
})(
|
|
4086
|
-
export function
|
|
4087
|
-
return JSON.stringify(
|
|
4079
|
+
export var NinetyEight$;
|
|
4080
|
+
(function (NinetyEight$) {
|
|
4081
|
+
/** @deprecated use `NinetyEight$inboundSchema` instead. */
|
|
4082
|
+
NinetyEight$.inboundSchema = NinetyEight$inboundSchema;
|
|
4083
|
+
/** @deprecated use `NinetyEight$outboundSchema` instead. */
|
|
4084
|
+
NinetyEight$.outboundSchema = NinetyEight$outboundSchema;
|
|
4085
|
+
})(NinetyEight$ || (NinetyEight$ = {}));
|
|
4086
|
+
export function ninetyEightToJSON(ninetyEight) {
|
|
4087
|
+
return JSON.stringify(NinetyEight$outboundSchema.parse(ninetyEight));
|
|
4088
4088
|
}
|
|
4089
|
-
export function
|
|
4090
|
-
return safeParse(jsonString, (x) =>
|
|
4089
|
+
export function ninetyEightFromJSON(jsonString) {
|
|
4090
|
+
return safeParse(jsonString, (x) => NinetyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyEight' from JSON`);
|
|
4091
4091
|
}
|
|
4092
4092
|
/** @internal */
|
|
4093
4093
|
export const ScalingRules$inboundSchema = z.object({
|
|
@@ -4117,19 +4117,44 @@ export function scalingRulesFromJSON(jsonString) {
|
|
|
4117
4117
|
return safeParse(jsonString, (x) => ScalingRules$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ScalingRules' from JSON`);
|
|
4118
4118
|
}
|
|
4119
4119
|
/** @internal */
|
|
4120
|
-
export const
|
|
4120
|
+
export const NinetySeven$inboundSchema = z.object({
|
|
4121
4121
|
scalingRules: z.record(z.lazy(() => ScalingRules$inboundSchema)),
|
|
4122
4122
|
min: z.number(),
|
|
4123
4123
|
max: z.number(),
|
|
4124
4124
|
url: z.string(),
|
|
4125
4125
|
});
|
|
4126
4126
|
/** @internal */
|
|
4127
|
-
export const
|
|
4127
|
+
export const NinetySeven$outboundSchema = z.object({
|
|
4128
4128
|
scalingRules: z.record(z.lazy(() => ScalingRules$outboundSchema)),
|
|
4129
4129
|
min: z.number(),
|
|
4130
4130
|
max: z.number(),
|
|
4131
4131
|
url: z.string(),
|
|
4132
4132
|
});
|
|
4133
|
+
/**
|
|
4134
|
+
* @internal
|
|
4135
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4136
|
+
*/
|
|
4137
|
+
export var NinetySeven$;
|
|
4138
|
+
(function (NinetySeven$) {
|
|
4139
|
+
/** @deprecated use `NinetySeven$inboundSchema` instead. */
|
|
4140
|
+
NinetySeven$.inboundSchema = NinetySeven$inboundSchema;
|
|
4141
|
+
/** @deprecated use `NinetySeven$outboundSchema` instead. */
|
|
4142
|
+
NinetySeven$.outboundSchema = NinetySeven$outboundSchema;
|
|
4143
|
+
})(NinetySeven$ || (NinetySeven$ = {}));
|
|
4144
|
+
export function ninetySevenToJSON(ninetySeven) {
|
|
4145
|
+
return JSON.stringify(NinetySeven$outboundSchema.parse(ninetySeven));
|
|
4146
|
+
}
|
|
4147
|
+
export function ninetySevenFromJSON(jsonString) {
|
|
4148
|
+
return safeParse(jsonString, (x) => NinetySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetySeven' from JSON`);
|
|
4149
|
+
}
|
|
4150
|
+
/** @internal */
|
|
4151
|
+
export const NinetySix$inboundSchema = z.object({
|
|
4152
|
+
bio: z.string(),
|
|
4153
|
+
});
|
|
4154
|
+
/** @internal */
|
|
4155
|
+
export const NinetySix$outboundSchema = z.object({
|
|
4156
|
+
bio: z.string(),
|
|
4157
|
+
});
|
|
4133
4158
|
/**
|
|
4134
4159
|
* @internal
|
|
4135
4160
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -4149,11 +4174,15 @@ export function ninetySixFromJSON(jsonString) {
|
|
|
4149
4174
|
}
|
|
4150
4175
|
/** @internal */
|
|
4151
4176
|
export const NinetyFive$inboundSchema = z.object({
|
|
4152
|
-
|
|
4177
|
+
oldName: z.string(),
|
|
4178
|
+
newName: z.string(),
|
|
4179
|
+
uid: z.string().optional(),
|
|
4153
4180
|
});
|
|
4154
4181
|
/** @internal */
|
|
4155
4182
|
export const NinetyFive$outboundSchema = z.object({
|
|
4156
|
-
|
|
4183
|
+
oldName: z.string(),
|
|
4184
|
+
newName: z.string(),
|
|
4185
|
+
uid: z.string().optional(),
|
|
4157
4186
|
});
|
|
4158
4187
|
/**
|
|
4159
4188
|
* @internal
|
|
@@ -4173,35 +4202,6 @@ export function ninetyFiveFromJSON(jsonString) {
|
|
|
4173
4202
|
return safeParse(jsonString, (x) => NinetyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyFive' from JSON`);
|
|
4174
4203
|
}
|
|
4175
4204
|
/** @internal */
|
|
4176
|
-
export const NinetyFour$inboundSchema = z.object({
|
|
4177
|
-
oldName: z.string(),
|
|
4178
|
-
newName: z.string(),
|
|
4179
|
-
uid: z.string().optional(),
|
|
4180
|
-
});
|
|
4181
|
-
/** @internal */
|
|
4182
|
-
export const NinetyFour$outboundSchema = z.object({
|
|
4183
|
-
oldName: z.string(),
|
|
4184
|
-
newName: z.string(),
|
|
4185
|
-
uid: z.string().optional(),
|
|
4186
|
-
});
|
|
4187
|
-
/**
|
|
4188
|
-
* @internal
|
|
4189
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4190
|
-
*/
|
|
4191
|
-
export var NinetyFour$;
|
|
4192
|
-
(function (NinetyFour$) {
|
|
4193
|
-
/** @deprecated use `NinetyFour$inboundSchema` instead. */
|
|
4194
|
-
NinetyFour$.inboundSchema = NinetyFour$inboundSchema;
|
|
4195
|
-
/** @deprecated use `NinetyFour$outboundSchema` instead. */
|
|
4196
|
-
NinetyFour$.outboundSchema = NinetyFour$outboundSchema;
|
|
4197
|
-
})(NinetyFour$ || (NinetyFour$ = {}));
|
|
4198
|
-
export function ninetyFourToJSON(ninetyFour) {
|
|
4199
|
-
return JSON.stringify(NinetyFour$outboundSchema.parse(ninetyFour));
|
|
4200
|
-
}
|
|
4201
|
-
export function ninetyFourFromJSON(jsonString) {
|
|
4202
|
-
return safeParse(jsonString, (x) => NinetyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyFour' from JSON`);
|
|
4203
|
-
}
|
|
4204
|
-
/** @internal */
|
|
4205
4205
|
export const Name2$inboundSchema = z
|
|
4206
4206
|
.object({
|
|
4207
4207
|
name: z.string(),
|
|
@@ -4250,12 +4250,12 @@ export function nameFromJSON(jsonString) {
|
|
|
4250
4250
|
return safeParse(jsonString, (x) => Name$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Name' from JSON`);
|
|
4251
4251
|
}
|
|
4252
4252
|
/** @internal */
|
|
4253
|
-
export const
|
|
4253
|
+
export const NinetyFour$inboundSchema = z.object({
|
|
4254
4254
|
uid: z.string(),
|
|
4255
4255
|
name: z.union([z.lazy(() => Name2$inboundSchema), z.string()]),
|
|
4256
4256
|
});
|
|
4257
4257
|
/** @internal */
|
|
4258
|
-
export const
|
|
4258
|
+
export const NinetyFour$outboundSchema = z.object({
|
|
4259
4259
|
uid: z.string(),
|
|
4260
4260
|
name: z.union([z.lazy(() => Name2$outboundSchema), z.string()]),
|
|
4261
4261
|
});
|
|
@@ -4263,26 +4263,26 @@ export const NinetyThree$outboundSchema = z.object({
|
|
|
4263
4263
|
* @internal
|
|
4264
4264
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4265
4265
|
*/
|
|
4266
|
-
export var
|
|
4267
|
-
(function (
|
|
4268
|
-
/** @deprecated use `
|
|
4269
|
-
|
|
4270
|
-
/** @deprecated use `
|
|
4271
|
-
|
|
4272
|
-
})(
|
|
4273
|
-
export function
|
|
4274
|
-
return JSON.stringify(
|
|
4266
|
+
export var NinetyFour$;
|
|
4267
|
+
(function (NinetyFour$) {
|
|
4268
|
+
/** @deprecated use `NinetyFour$inboundSchema` instead. */
|
|
4269
|
+
NinetyFour$.inboundSchema = NinetyFour$inboundSchema;
|
|
4270
|
+
/** @deprecated use `NinetyFour$outboundSchema` instead. */
|
|
4271
|
+
NinetyFour$.outboundSchema = NinetyFour$outboundSchema;
|
|
4272
|
+
})(NinetyFour$ || (NinetyFour$ = {}));
|
|
4273
|
+
export function ninetyFourToJSON(ninetyFour) {
|
|
4274
|
+
return JSON.stringify(NinetyFour$outboundSchema.parse(ninetyFour));
|
|
4275
4275
|
}
|
|
4276
|
-
export function
|
|
4277
|
-
return safeParse(jsonString, (x) =>
|
|
4276
|
+
export function ninetyFourFromJSON(jsonString) {
|
|
4277
|
+
return safeParse(jsonString, (x) => NinetyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyFour' from JSON`);
|
|
4278
4278
|
}
|
|
4279
4279
|
/** @internal */
|
|
4280
|
-
export const
|
|
4280
|
+
export const UserEventPayload93Team$inboundSchema = z.object({
|
|
4281
4281
|
id: z.string(),
|
|
4282
4282
|
name: z.string().optional(),
|
|
4283
4283
|
});
|
|
4284
4284
|
/** @internal */
|
|
4285
|
-
export const
|
|
4285
|
+
export const UserEventPayload93Team$outboundSchema = z.object({
|
|
4286
4286
|
id: z.string(),
|
|
4287
4287
|
name: z.string().optional(),
|
|
4288
4288
|
});
|
|
@@ -4290,18 +4290,18 @@ export const UserEventPayload92Team$outboundSchema = z.object({
|
|
|
4290
4290
|
* @internal
|
|
4291
4291
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4292
4292
|
*/
|
|
4293
|
-
export var
|
|
4294
|
-
(function (
|
|
4295
|
-
/** @deprecated use `
|
|
4296
|
-
|
|
4297
|
-
/** @deprecated use `
|
|
4298
|
-
|
|
4299
|
-
})(
|
|
4300
|
-
export function
|
|
4301
|
-
return JSON.stringify(
|
|
4293
|
+
export var UserEventPayload93Team$;
|
|
4294
|
+
(function (UserEventPayload93Team$) {
|
|
4295
|
+
/** @deprecated use `UserEventPayload93Team$inboundSchema` instead. */
|
|
4296
|
+
UserEventPayload93Team$.inboundSchema = UserEventPayload93Team$inboundSchema;
|
|
4297
|
+
/** @deprecated use `UserEventPayload93Team$outboundSchema` instead. */
|
|
4298
|
+
UserEventPayload93Team$.outboundSchema = UserEventPayload93Team$outboundSchema;
|
|
4299
|
+
})(UserEventPayload93Team$ || (UserEventPayload93Team$ = {}));
|
|
4300
|
+
export function userEventPayload93TeamToJSON(userEventPayload93Team) {
|
|
4301
|
+
return JSON.stringify(UserEventPayload93Team$outboundSchema.parse(userEventPayload93Team));
|
|
4302
4302
|
}
|
|
4303
|
-
export function
|
|
4304
|
-
return safeParse(jsonString, (x) =>
|
|
4303
|
+
export function userEventPayload93TeamFromJSON(jsonString) {
|
|
4304
|
+
return safeParse(jsonString, (x) => UserEventPayload93Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload93Team' from JSON`);
|
|
4305
4305
|
}
|
|
4306
4306
|
/** @internal */
|
|
4307
4307
|
export const PayloadPreviousRule$inboundSchema = z.object({
|
|
@@ -4329,39 +4329,39 @@ export function payloadPreviousRuleFromJSON(jsonString) {
|
|
|
4329
4329
|
return safeParse(jsonString, (x) => PayloadPreviousRule$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadPreviousRule' from JSON`);
|
|
4330
4330
|
}
|
|
4331
4331
|
/** @internal */
|
|
4332
|
-
export const
|
|
4333
|
-
team: z.lazy(() =>
|
|
4332
|
+
export const NinetyThree$inboundSchema = z.object({
|
|
4333
|
+
team: z.lazy(() => UserEventPayload93Team$inboundSchema),
|
|
4334
4334
|
previousRule: z.lazy(() => PayloadPreviousRule$inboundSchema),
|
|
4335
4335
|
});
|
|
4336
4336
|
/** @internal */
|
|
4337
|
-
export const
|
|
4338
|
-
team: z.lazy(() =>
|
|
4337
|
+
export const NinetyThree$outboundSchema = z.object({
|
|
4338
|
+
team: z.lazy(() => UserEventPayload93Team$outboundSchema),
|
|
4339
4339
|
previousRule: z.lazy(() => PayloadPreviousRule$outboundSchema),
|
|
4340
4340
|
});
|
|
4341
4341
|
/**
|
|
4342
4342
|
* @internal
|
|
4343
4343
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4344
4344
|
*/
|
|
4345
|
-
export var
|
|
4346
|
-
(function (
|
|
4347
|
-
/** @deprecated use `
|
|
4348
|
-
|
|
4349
|
-
/** @deprecated use `
|
|
4350
|
-
|
|
4351
|
-
})(
|
|
4352
|
-
export function
|
|
4353
|
-
return JSON.stringify(
|
|
4345
|
+
export var NinetyThree$;
|
|
4346
|
+
(function (NinetyThree$) {
|
|
4347
|
+
/** @deprecated use `NinetyThree$inboundSchema` instead. */
|
|
4348
|
+
NinetyThree$.inboundSchema = NinetyThree$inboundSchema;
|
|
4349
|
+
/** @deprecated use `NinetyThree$outboundSchema` instead. */
|
|
4350
|
+
NinetyThree$.outboundSchema = NinetyThree$outboundSchema;
|
|
4351
|
+
})(NinetyThree$ || (NinetyThree$ = {}));
|
|
4352
|
+
export function ninetyThreeToJSON(ninetyThree) {
|
|
4353
|
+
return JSON.stringify(NinetyThree$outboundSchema.parse(ninetyThree));
|
|
4354
4354
|
}
|
|
4355
|
-
export function
|
|
4356
|
-
return safeParse(jsonString, (x) =>
|
|
4355
|
+
export function ninetyThreeFromJSON(jsonString) {
|
|
4356
|
+
return safeParse(jsonString, (x) => NinetyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyThree' from JSON`);
|
|
4357
4357
|
}
|
|
4358
4358
|
/** @internal */
|
|
4359
|
-
export const
|
|
4359
|
+
export const UserEventPayload92Team$inboundSchema = z.object({
|
|
4360
4360
|
id: z.string(),
|
|
4361
4361
|
name: z.string().optional(),
|
|
4362
4362
|
});
|
|
4363
4363
|
/** @internal */
|
|
4364
|
-
export const
|
|
4364
|
+
export const UserEventPayload92Team$outboundSchema = z.object({
|
|
4365
4365
|
id: z.string(),
|
|
4366
4366
|
name: z.string().optional(),
|
|
4367
4367
|
});
|
|
@@ -4369,18 +4369,18 @@ export const UserEventPayload91Team$outboundSchema = z.object({
|
|
|
4369
4369
|
* @internal
|
|
4370
4370
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4371
4371
|
*/
|
|
4372
|
-
export var
|
|
4373
|
-
(function (
|
|
4374
|
-
/** @deprecated use `
|
|
4375
|
-
|
|
4376
|
-
/** @deprecated use `
|
|
4377
|
-
|
|
4378
|
-
})(
|
|
4379
|
-
export function
|
|
4380
|
-
return JSON.stringify(
|
|
4372
|
+
export var UserEventPayload92Team$;
|
|
4373
|
+
(function (UserEventPayload92Team$) {
|
|
4374
|
+
/** @deprecated use `UserEventPayload92Team$inboundSchema` instead. */
|
|
4375
|
+
UserEventPayload92Team$.inboundSchema = UserEventPayload92Team$inboundSchema;
|
|
4376
|
+
/** @deprecated use `UserEventPayload92Team$outboundSchema` instead. */
|
|
4377
|
+
UserEventPayload92Team$.outboundSchema = UserEventPayload92Team$outboundSchema;
|
|
4378
|
+
})(UserEventPayload92Team$ || (UserEventPayload92Team$ = {}));
|
|
4379
|
+
export function userEventPayload92TeamToJSON(userEventPayload92Team) {
|
|
4380
|
+
return JSON.stringify(UserEventPayload92Team$outboundSchema.parse(userEventPayload92Team));
|
|
4381
4381
|
}
|
|
4382
|
-
export function
|
|
4383
|
-
return safeParse(jsonString, (x) =>
|
|
4382
|
+
export function userEventPayload92TeamFromJSON(jsonString) {
|
|
4383
|
+
return safeParse(jsonString, (x) => UserEventPayload92Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload92Team' from JSON`);
|
|
4384
4384
|
}
|
|
4385
4385
|
/** @internal */
|
|
4386
4386
|
export const PreviousRule$inboundSchema = z.object({
|
|
@@ -4433,17 +4433,42 @@ export function nextRuleFromJSON(jsonString) {
|
|
|
4433
4433
|
return safeParse(jsonString, (x) => NextRule$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NextRule' from JSON`);
|
|
4434
4434
|
}
|
|
4435
4435
|
/** @internal */
|
|
4436
|
-
export const
|
|
4437
|
-
team: z.lazy(() =>
|
|
4436
|
+
export const NinetyTwo$inboundSchema = z.object({
|
|
4437
|
+
team: z.lazy(() => UserEventPayload92Team$inboundSchema),
|
|
4438
4438
|
previousRule: z.lazy(() => PreviousRule$inboundSchema).optional(),
|
|
4439
4439
|
nextRule: z.lazy(() => NextRule$inboundSchema).optional(),
|
|
4440
4440
|
});
|
|
4441
4441
|
/** @internal */
|
|
4442
|
-
export const
|
|
4443
|
-
team: z.lazy(() =>
|
|
4442
|
+
export const NinetyTwo$outboundSchema = z.object({
|
|
4443
|
+
team: z.lazy(() => UserEventPayload92Team$outboundSchema),
|
|
4444
4444
|
previousRule: z.lazy(() => PreviousRule$outboundSchema).optional(),
|
|
4445
4445
|
nextRule: z.lazy(() => NextRule$outboundSchema).optional(),
|
|
4446
4446
|
});
|
|
4447
|
+
/**
|
|
4448
|
+
* @internal
|
|
4449
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4450
|
+
*/
|
|
4451
|
+
export var NinetyTwo$;
|
|
4452
|
+
(function (NinetyTwo$) {
|
|
4453
|
+
/** @deprecated use `NinetyTwo$inboundSchema` instead. */
|
|
4454
|
+
NinetyTwo$.inboundSchema = NinetyTwo$inboundSchema;
|
|
4455
|
+
/** @deprecated use `NinetyTwo$outboundSchema` instead. */
|
|
4456
|
+
NinetyTwo$.outboundSchema = NinetyTwo$outboundSchema;
|
|
4457
|
+
})(NinetyTwo$ || (NinetyTwo$ = {}));
|
|
4458
|
+
export function ninetyTwoToJSON(ninetyTwo) {
|
|
4459
|
+
return JSON.stringify(NinetyTwo$outboundSchema.parse(ninetyTwo));
|
|
4460
|
+
}
|
|
4461
|
+
export function ninetyTwoFromJSON(jsonString) {
|
|
4462
|
+
return safeParse(jsonString, (x) => NinetyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyTwo' from JSON`);
|
|
4463
|
+
}
|
|
4464
|
+
/** @internal */
|
|
4465
|
+
export const NinetyOne$inboundSchema = z.object({
|
|
4466
|
+
email: z.string(),
|
|
4467
|
+
});
|
|
4468
|
+
/** @internal */
|
|
4469
|
+
export const NinetyOne$outboundSchema = z.object({
|
|
4470
|
+
email: z.string(),
|
|
4471
|
+
});
|
|
4447
4472
|
/**
|
|
4448
4473
|
* @internal
|
|
4449
4474
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -4465,10 +4490,12 @@ export function ninetyOneFromJSON(jsonString) {
|
|
|
4465
4490
|
export const Ninety$inboundSchema = z
|
|
4466
4491
|
.object({
|
|
4467
4492
|
email: z.string(),
|
|
4493
|
+
verified: z.boolean(),
|
|
4468
4494
|
});
|
|
4469
4495
|
/** @internal */
|
|
4470
4496
|
export const Ninety$outboundSchema = z.object({
|
|
4471
4497
|
email: z.string(),
|
|
4498
|
+
verified: z.boolean(),
|
|
4472
4499
|
});
|
|
4473
4500
|
/**
|
|
4474
4501
|
* @internal
|
|
@@ -4489,13 +4516,13 @@ export function ninetyFromJSON(jsonString) {
|
|
|
4489
4516
|
}
|
|
4490
4517
|
/** @internal */
|
|
4491
4518
|
export const EightyNine$inboundSchema = z.object({
|
|
4492
|
-
|
|
4493
|
-
|
|
4519
|
+
instances: z.number(),
|
|
4520
|
+
url: z.string(),
|
|
4494
4521
|
});
|
|
4495
4522
|
/** @internal */
|
|
4496
4523
|
export const EightyNine$outboundSchema = z.object({
|
|
4497
|
-
|
|
4498
|
-
|
|
4524
|
+
instances: z.number(),
|
|
4525
|
+
url: z.string(),
|
|
4499
4526
|
});
|
|
4500
4527
|
/**
|
|
4501
4528
|
* @internal
|
|
@@ -4516,13 +4543,15 @@ export function eightyNineFromJSON(jsonString) {
|
|
|
4516
4543
|
}
|
|
4517
4544
|
/** @internal */
|
|
4518
4545
|
export const EightyEight$inboundSchema = z.object({
|
|
4519
|
-
|
|
4520
|
-
|
|
4546
|
+
gitProvider: z.string(),
|
|
4547
|
+
gitProviderGroupDescriptor: z.string(),
|
|
4548
|
+
gitScope: z.string(),
|
|
4521
4549
|
});
|
|
4522
4550
|
/** @internal */
|
|
4523
4551
|
export const EightyEight$outboundSchema = z.object({
|
|
4524
|
-
|
|
4525
|
-
|
|
4552
|
+
gitProvider: z.string(),
|
|
4553
|
+
gitProviderGroupDescriptor: z.string(),
|
|
4554
|
+
gitScope: z.string(),
|
|
4526
4555
|
});
|
|
4527
4556
|
/**
|
|
4528
4557
|
* @internal
|
|
@@ -4543,15 +4572,15 @@ export function eightyEightFromJSON(jsonString) {
|
|
|
4543
4572
|
}
|
|
4544
4573
|
/** @internal */
|
|
4545
4574
|
export const EightySeven$inboundSchema = z.object({
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4575
|
+
projectId: z.string().optional(),
|
|
4576
|
+
projectName: z.string().optional(),
|
|
4577
|
+
newTargetPercentage: z.number().optional(),
|
|
4549
4578
|
});
|
|
4550
4579
|
/** @internal */
|
|
4551
4580
|
export const EightySeven$outboundSchema = z.object({
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4581
|
+
projectId: z.string().optional(),
|
|
4582
|
+
projectName: z.string().optional(),
|
|
4583
|
+
newTargetPercentage: z.number().optional(),
|
|
4555
4584
|
});
|
|
4556
4585
|
/**
|
|
4557
4586
|
* @internal
|
|
@@ -4572,15 +4601,13 @@ export function eightySevenFromJSON(jsonString) {
|
|
|
4572
4601
|
}
|
|
4573
4602
|
/** @internal */
|
|
4574
4603
|
export const EightySix$inboundSchema = z.object({
|
|
4575
|
-
projectId: z.string()
|
|
4576
|
-
projectName: z.string()
|
|
4577
|
-
newTargetPercentage: z.number().optional(),
|
|
4604
|
+
projectId: z.string(),
|
|
4605
|
+
projectName: z.string(),
|
|
4578
4606
|
});
|
|
4579
4607
|
/** @internal */
|
|
4580
4608
|
export const EightySix$outboundSchema = z.object({
|
|
4581
|
-
projectId: z.string()
|
|
4582
|
-
projectName: z.string()
|
|
4583
|
-
newTargetPercentage: z.number().optional(),
|
|
4609
|
+
projectId: z.string(),
|
|
4610
|
+
projectName: z.string(),
|
|
4584
4611
|
});
|
|
4585
4612
|
/**
|
|
4586
4613
|
* @internal
|
|
@@ -4602,12 +4629,10 @@ export function eightySixFromJSON(jsonString) {
|
|
|
4602
4629
|
/** @internal */
|
|
4603
4630
|
export const EightyFive$inboundSchema = z.object({
|
|
4604
4631
|
projectId: z.string(),
|
|
4605
|
-
projectName: z.string(),
|
|
4606
4632
|
});
|
|
4607
4633
|
/** @internal */
|
|
4608
4634
|
export const EightyFive$outboundSchema = z.object({
|
|
4609
4635
|
projectId: z.string(),
|
|
4610
|
-
projectName: z.string(),
|
|
4611
4636
|
});
|
|
4612
4637
|
/**
|
|
4613
4638
|
* @internal
|
|
@@ -4627,37 +4652,12 @@ export function eightyFiveFromJSON(jsonString) {
|
|
|
4627
4652
|
return safeParse(jsonString, (x) => EightyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyFive' from JSON`);
|
|
4628
4653
|
}
|
|
4629
4654
|
/** @internal */
|
|
4630
|
-
export const
|
|
4631
|
-
projectId: z.string(),
|
|
4632
|
-
});
|
|
4633
|
-
/** @internal */
|
|
4634
|
-
export const EightyFour$outboundSchema = z.object({
|
|
4635
|
-
projectId: z.string(),
|
|
4636
|
-
});
|
|
4637
|
-
/**
|
|
4638
|
-
* @internal
|
|
4639
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4640
|
-
*/
|
|
4641
|
-
export var EightyFour$;
|
|
4642
|
-
(function (EightyFour$) {
|
|
4643
|
-
/** @deprecated use `EightyFour$inboundSchema` instead. */
|
|
4644
|
-
EightyFour$.inboundSchema = EightyFour$inboundSchema;
|
|
4645
|
-
/** @deprecated use `EightyFour$outboundSchema` instead. */
|
|
4646
|
-
EightyFour$.outboundSchema = EightyFour$outboundSchema;
|
|
4647
|
-
})(EightyFour$ || (EightyFour$ = {}));
|
|
4648
|
-
export function eightyFourToJSON(eightyFour) {
|
|
4649
|
-
return JSON.stringify(EightyFour$outboundSchema.parse(eightyFour));
|
|
4650
|
-
}
|
|
4651
|
-
export function eightyFourFromJSON(jsonString) {
|
|
4652
|
-
return safeParse(jsonString, (x) => EightyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyFour' from JSON`);
|
|
4653
|
-
}
|
|
4654
|
-
/** @internal */
|
|
4655
|
-
export const UserEventPayload83Team$inboundSchema = z.object({
|
|
4655
|
+
export const UserEventPayload84Team$inboundSchema = z.object({
|
|
4656
4656
|
id: z.string(),
|
|
4657
4657
|
name: z.string(),
|
|
4658
4658
|
});
|
|
4659
4659
|
/** @internal */
|
|
4660
|
-
export const
|
|
4660
|
+
export const UserEventPayload84Team$outboundSchema = z.object({
|
|
4661
4661
|
id: z.string(),
|
|
4662
4662
|
name: z.string(),
|
|
4663
4663
|
});
|
|
@@ -4665,18 +4665,18 @@ export const UserEventPayload83Team$outboundSchema = z.object({
|
|
|
4665
4665
|
* @internal
|
|
4666
4666
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4667
4667
|
*/
|
|
4668
|
-
export var
|
|
4669
|
-
(function (
|
|
4670
|
-
/** @deprecated use `
|
|
4671
|
-
|
|
4672
|
-
/** @deprecated use `
|
|
4673
|
-
|
|
4674
|
-
})(
|
|
4675
|
-
export function
|
|
4676
|
-
return JSON.stringify(
|
|
4668
|
+
export var UserEventPayload84Team$;
|
|
4669
|
+
(function (UserEventPayload84Team$) {
|
|
4670
|
+
/** @deprecated use `UserEventPayload84Team$inboundSchema` instead. */
|
|
4671
|
+
UserEventPayload84Team$.inboundSchema = UserEventPayload84Team$inboundSchema;
|
|
4672
|
+
/** @deprecated use `UserEventPayload84Team$outboundSchema` instead. */
|
|
4673
|
+
UserEventPayload84Team$.outboundSchema = UserEventPayload84Team$outboundSchema;
|
|
4674
|
+
})(UserEventPayload84Team$ || (UserEventPayload84Team$ = {}));
|
|
4675
|
+
export function userEventPayload84TeamToJSON(userEventPayload84Team) {
|
|
4676
|
+
return JSON.stringify(UserEventPayload84Team$outboundSchema.parse(userEventPayload84Team));
|
|
4677
4677
|
}
|
|
4678
|
-
export function
|
|
4679
|
-
return safeParse(jsonString, (x) =>
|
|
4678
|
+
export function userEventPayload84TeamFromJSON(jsonString) {
|
|
4679
|
+
return safeParse(jsonString, (x) => UserEventPayload84Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload84Team' from JSON`);
|
|
4680
4680
|
}
|
|
4681
4681
|
/** @internal */
|
|
4682
4682
|
export const EnvId2$inboundSchema = z
|
|
@@ -4883,14 +4883,14 @@ export function newConnectConfigurationsFromJSON(jsonString) {
|
|
|
4883
4883
|
return safeParse(jsonString, (x) => NewConnectConfigurations$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NewConnectConfigurations' from JSON`);
|
|
4884
4884
|
}
|
|
4885
4885
|
/** @internal */
|
|
4886
|
-
export const
|
|
4886
|
+
export const UserEventPayload84Project$inboundSchema = z.object({
|
|
4887
4887
|
id: z.string(),
|
|
4888
4888
|
name: z.string().optional(),
|
|
4889
4889
|
oldConnectConfigurations: z.nullable(z.array(z.lazy(() => OldConnectConfigurations$inboundSchema))),
|
|
4890
4890
|
newConnectConfigurations: z.nullable(z.array(z.lazy(() => NewConnectConfigurations$inboundSchema))),
|
|
4891
4891
|
});
|
|
4892
4892
|
/** @internal */
|
|
4893
|
-
export const
|
|
4893
|
+
export const UserEventPayload84Project$outboundSchema = z.object({
|
|
4894
4894
|
id: z.string(),
|
|
4895
4895
|
name: z.string().optional(),
|
|
4896
4896
|
oldConnectConfigurations: z.nullable(z.array(z.lazy(() => OldConnectConfigurations$outboundSchema))),
|
|
@@ -4900,53 +4900,53 @@ export const UserEventPayload83Project$outboundSchema = z.object({
|
|
|
4900
4900
|
* @internal
|
|
4901
4901
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4902
4902
|
*/
|
|
4903
|
-
export var
|
|
4904
|
-
(function (
|
|
4905
|
-
/** @deprecated use `
|
|
4906
|
-
|
|
4907
|
-
/** @deprecated use `
|
|
4908
|
-
|
|
4909
|
-
})(
|
|
4910
|
-
export function
|
|
4911
|
-
return JSON.stringify(
|
|
4903
|
+
export var UserEventPayload84Project$;
|
|
4904
|
+
(function (UserEventPayload84Project$) {
|
|
4905
|
+
/** @deprecated use `UserEventPayload84Project$inboundSchema` instead. */
|
|
4906
|
+
UserEventPayload84Project$.inboundSchema = UserEventPayload84Project$inboundSchema;
|
|
4907
|
+
/** @deprecated use `UserEventPayload84Project$outboundSchema` instead. */
|
|
4908
|
+
UserEventPayload84Project$.outboundSchema = UserEventPayload84Project$outboundSchema;
|
|
4909
|
+
})(UserEventPayload84Project$ || (UserEventPayload84Project$ = {}));
|
|
4910
|
+
export function userEventPayload84ProjectToJSON(userEventPayload84Project) {
|
|
4911
|
+
return JSON.stringify(UserEventPayload84Project$outboundSchema.parse(userEventPayload84Project));
|
|
4912
4912
|
}
|
|
4913
|
-
export function
|
|
4914
|
-
return safeParse(jsonString, (x) =>
|
|
4913
|
+
export function userEventPayload84ProjectFromJSON(jsonString) {
|
|
4914
|
+
return safeParse(jsonString, (x) => UserEventPayload84Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload84Project' from JSON`);
|
|
4915
4915
|
}
|
|
4916
4916
|
/** @internal */
|
|
4917
|
-
export const
|
|
4918
|
-
team: z.lazy(() =>
|
|
4919
|
-
project: z.lazy(() =>
|
|
4917
|
+
export const EightyFour$inboundSchema = z.object({
|
|
4918
|
+
team: z.lazy(() => UserEventPayload84Team$inboundSchema),
|
|
4919
|
+
project: z.lazy(() => UserEventPayload84Project$inboundSchema),
|
|
4920
4920
|
});
|
|
4921
4921
|
/** @internal */
|
|
4922
|
-
export const
|
|
4923
|
-
team: z.lazy(() =>
|
|
4924
|
-
project: z.lazy(() =>
|
|
4922
|
+
export const EightyFour$outboundSchema = z.object({
|
|
4923
|
+
team: z.lazy(() => UserEventPayload84Team$outboundSchema),
|
|
4924
|
+
project: z.lazy(() => UserEventPayload84Project$outboundSchema),
|
|
4925
4925
|
});
|
|
4926
4926
|
/**
|
|
4927
4927
|
* @internal
|
|
4928
4928
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4929
4929
|
*/
|
|
4930
|
-
export var
|
|
4931
|
-
(function (
|
|
4932
|
-
/** @deprecated use `
|
|
4933
|
-
|
|
4934
|
-
/** @deprecated use `
|
|
4935
|
-
|
|
4936
|
-
})(
|
|
4937
|
-
export function
|
|
4938
|
-
return JSON.stringify(
|
|
4930
|
+
export var EightyFour$;
|
|
4931
|
+
(function (EightyFour$) {
|
|
4932
|
+
/** @deprecated use `EightyFour$inboundSchema` instead. */
|
|
4933
|
+
EightyFour$.inboundSchema = EightyFour$inboundSchema;
|
|
4934
|
+
/** @deprecated use `EightyFour$outboundSchema` instead. */
|
|
4935
|
+
EightyFour$.outboundSchema = EightyFour$outboundSchema;
|
|
4936
|
+
})(EightyFour$ || (EightyFour$ = {}));
|
|
4937
|
+
export function eightyFourToJSON(eightyFour) {
|
|
4938
|
+
return JSON.stringify(EightyFour$outboundSchema.parse(eightyFour));
|
|
4939
4939
|
}
|
|
4940
|
-
export function
|
|
4941
|
-
return safeParse(jsonString, (x) =>
|
|
4940
|
+
export function eightyFourFromJSON(jsonString) {
|
|
4941
|
+
return safeParse(jsonString, (x) => EightyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyFour' from JSON`);
|
|
4942
4942
|
}
|
|
4943
4943
|
/** @internal */
|
|
4944
|
-
export const
|
|
4944
|
+
export const EightyThree$inboundSchema = z.object({
|
|
4945
4945
|
name: z.string(),
|
|
4946
4946
|
ownerId: z.string(),
|
|
4947
4947
|
});
|
|
4948
4948
|
/** @internal */
|
|
4949
|
-
export const
|
|
4949
|
+
export const EightyThree$outboundSchema = z.object({
|
|
4950
4950
|
name: z.string(),
|
|
4951
4951
|
ownerId: z.string(),
|
|
4952
4952
|
});
|
|
@@ -4954,18 +4954,18 @@ export const EightyTwo$outboundSchema = z.object({
|
|
|
4954
4954
|
* @internal
|
|
4955
4955
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4956
4956
|
*/
|
|
4957
|
-
export var
|
|
4958
|
-
(function (
|
|
4959
|
-
/** @deprecated use `
|
|
4960
|
-
|
|
4961
|
-
/** @deprecated use `
|
|
4962
|
-
|
|
4963
|
-
})(
|
|
4964
|
-
export function
|
|
4965
|
-
return JSON.stringify(
|
|
4957
|
+
export var EightyThree$;
|
|
4958
|
+
(function (EightyThree$) {
|
|
4959
|
+
/** @deprecated use `EightyThree$inboundSchema` instead. */
|
|
4960
|
+
EightyThree$.inboundSchema = EightyThree$inboundSchema;
|
|
4961
|
+
/** @deprecated use `EightyThree$outboundSchema` instead. */
|
|
4962
|
+
EightyThree$.outboundSchema = EightyThree$outboundSchema;
|
|
4963
|
+
})(EightyThree$ || (EightyThree$ = {}));
|
|
4964
|
+
export function eightyThreeToJSON(eightyThree) {
|
|
4965
|
+
return JSON.stringify(EightyThree$outboundSchema.parse(eightyThree));
|
|
4966
4966
|
}
|
|
4967
|
-
export function
|
|
4968
|
-
return safeParse(jsonString, (x) =>
|
|
4967
|
+
export function eightyThreeFromJSON(jsonString) {
|
|
4968
|
+
return safeParse(jsonString, (x) => EightyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyThree' from JSON`);
|
|
4969
4969
|
}
|
|
4970
4970
|
/** @internal */
|
|
4971
4971
|
export const UserEventPayloadAction$inboundSchema = z.nativeEnum(UserEventPayloadAction);
|
|
@@ -4983,12 +4983,12 @@ export var UserEventPayloadAction$;
|
|
|
4983
4983
|
UserEventPayloadAction$.outboundSchema = UserEventPayloadAction$outboundSchema;
|
|
4984
4984
|
})(UserEventPayloadAction$ || (UserEventPayloadAction$ = {}));
|
|
4985
4985
|
/** @internal */
|
|
4986
|
-
export const
|
|
4986
|
+
export const EightyTwo$inboundSchema = z.object({
|
|
4987
4987
|
projectName: z.string(),
|
|
4988
4988
|
action: UserEventPayloadAction$inboundSchema,
|
|
4989
4989
|
});
|
|
4990
4990
|
/** @internal */
|
|
4991
|
-
export const
|
|
4991
|
+
export const EightyTwo$outboundSchema = z.object({
|
|
4992
4992
|
projectName: z.string(),
|
|
4993
4993
|
action: UserEventPayloadAction$outboundSchema,
|
|
4994
4994
|
});
|
|
@@ -4996,18 +4996,18 @@ export const EightyOne$outboundSchema = z.object({
|
|
|
4996
4996
|
* @internal
|
|
4997
4997
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4998
4998
|
*/
|
|
4999
|
-
export var
|
|
5000
|
-
(function (
|
|
5001
|
-
/** @deprecated use `
|
|
5002
|
-
|
|
5003
|
-
/** @deprecated use `
|
|
5004
|
-
|
|
5005
|
-
})(
|
|
5006
|
-
export function
|
|
5007
|
-
return JSON.stringify(
|
|
4999
|
+
export var EightyTwo$;
|
|
5000
|
+
(function (EightyTwo$) {
|
|
5001
|
+
/** @deprecated use `EightyTwo$inboundSchema` instead. */
|
|
5002
|
+
EightyTwo$.inboundSchema = EightyTwo$inboundSchema;
|
|
5003
|
+
/** @deprecated use `EightyTwo$outboundSchema` instead. */
|
|
5004
|
+
EightyTwo$.outboundSchema = EightyTwo$outboundSchema;
|
|
5005
|
+
})(EightyTwo$ || (EightyTwo$ = {}));
|
|
5006
|
+
export function eightyTwoToJSON(eightyTwo) {
|
|
5007
|
+
return JSON.stringify(EightyTwo$outboundSchema.parse(eightyTwo));
|
|
5008
5008
|
}
|
|
5009
|
-
export function
|
|
5010
|
-
return safeParse(jsonString, (x) =>
|
|
5009
|
+
export function eightyTwoFromJSON(jsonString) {
|
|
5010
|
+
return safeParse(jsonString, (x) => EightyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyTwo' from JSON`);
|
|
5011
5011
|
}
|
|
5012
5012
|
/** @internal */
|
|
5013
5013
|
export const Paths$inboundSchema = z
|
|
@@ -5111,15 +5111,14 @@ export function oldOptionsAllowlistFromJSON(jsonString) {
|
|
|
5111
5111
|
return safeParse(jsonString, (x) => OldOptionsAllowlist$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OldOptionsAllowlist' from JSON`);
|
|
5112
5112
|
}
|
|
5113
5113
|
/** @internal */
|
|
5114
|
-
export const
|
|
5115
|
-
.object({
|
|
5114
|
+
export const EightyOne$inboundSchema = z.object({
|
|
5116
5115
|
projectName: z.string(),
|
|
5117
5116
|
optionsAllowlist: z.nullable(z.lazy(() => OptionsAllowlist$inboundSchema))
|
|
5118
5117
|
.optional(),
|
|
5119
5118
|
oldOptionsAllowlist: z.nullable(z.lazy(() => OldOptionsAllowlist$inboundSchema)).optional(),
|
|
5120
5119
|
});
|
|
5121
5120
|
/** @internal */
|
|
5122
|
-
export const
|
|
5121
|
+
export const EightyOne$outboundSchema = z.object({
|
|
5123
5122
|
projectName: z.string(),
|
|
5124
5123
|
optionsAllowlist: z.nullable(z.lazy(() => OptionsAllowlist$outboundSchema))
|
|
5125
5124
|
.optional(),
|
|
@@ -5129,18 +5128,18 @@ export const Eighty$outboundSchema = z.object({
|
|
|
5129
5128
|
* @internal
|
|
5130
5129
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5131
5130
|
*/
|
|
5132
|
-
export var
|
|
5133
|
-
(function (
|
|
5134
|
-
/** @deprecated use `
|
|
5135
|
-
|
|
5136
|
-
/** @deprecated use `
|
|
5137
|
-
|
|
5138
|
-
})(
|
|
5139
|
-
export function
|
|
5140
|
-
return JSON.stringify(
|
|
5131
|
+
export var EightyOne$;
|
|
5132
|
+
(function (EightyOne$) {
|
|
5133
|
+
/** @deprecated use `EightyOne$inboundSchema` instead. */
|
|
5134
|
+
EightyOne$.inboundSchema = EightyOne$inboundSchema;
|
|
5135
|
+
/** @deprecated use `EightyOne$outboundSchema` instead. */
|
|
5136
|
+
EightyOne$.outboundSchema = EightyOne$outboundSchema;
|
|
5137
|
+
})(EightyOne$ || (EightyOne$ = {}));
|
|
5138
|
+
export function eightyOneToJSON(eightyOne) {
|
|
5139
|
+
return JSON.stringify(EightyOne$outboundSchema.parse(eightyOne));
|
|
5141
5140
|
}
|
|
5142
|
-
export function
|
|
5143
|
-
return safeParse(jsonString, (x) =>
|
|
5141
|
+
export function eightyOneFromJSON(jsonString) {
|
|
5142
|
+
return safeParse(jsonString, (x) => EightyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyOne' from JSON`);
|
|
5144
5143
|
}
|
|
5145
5144
|
/** @internal */
|
|
5146
5145
|
export const TrustedIps$inboundSchema = z
|
|
@@ -5174,7 +5173,8 @@ export var OldTrustedIps$;
|
|
|
5174
5173
|
OldTrustedIps$.outboundSchema = OldTrustedIps$outboundSchema;
|
|
5175
5174
|
})(OldTrustedIps$ || (OldTrustedIps$ = {}));
|
|
5176
5175
|
/** @internal */
|
|
5177
|
-
export const
|
|
5176
|
+
export const Eighty$inboundSchema = z
|
|
5177
|
+
.object({
|
|
5178
5178
|
projectName: z.string(),
|
|
5179
5179
|
trustedIps: z.nullable(TrustedIps$inboundSchema).optional(),
|
|
5180
5180
|
oldTrustedIps: z.nullable(OldTrustedIps$inboundSchema).optional(),
|
|
@@ -5182,7 +5182,7 @@ export const SeventyNine$inboundSchema = z.object({
|
|
|
5182
5182
|
removedAddresses: z.nullable(z.array(z.string())).optional(),
|
|
5183
5183
|
});
|
|
5184
5184
|
/** @internal */
|
|
5185
|
-
export const
|
|
5185
|
+
export const Eighty$outboundSchema = z.object({
|
|
5186
5186
|
projectName: z.string(),
|
|
5187
5187
|
trustedIps: z.nullable(TrustedIps$outboundSchema).optional(),
|
|
5188
5188
|
oldTrustedIps: z.nullable(OldTrustedIps$outboundSchema).optional(),
|
|
@@ -5193,18 +5193,18 @@ export const SeventyNine$outboundSchema = z.object({
|
|
|
5193
5193
|
* @internal
|
|
5194
5194
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5195
5195
|
*/
|
|
5196
|
-
export var
|
|
5197
|
-
(function (
|
|
5198
|
-
/** @deprecated use `
|
|
5199
|
-
|
|
5200
|
-
/** @deprecated use `
|
|
5201
|
-
|
|
5202
|
-
})(
|
|
5203
|
-
export function
|
|
5204
|
-
return JSON.stringify(
|
|
5196
|
+
export var Eighty$;
|
|
5197
|
+
(function (Eighty$) {
|
|
5198
|
+
/** @deprecated use `Eighty$inboundSchema` instead. */
|
|
5199
|
+
Eighty$.inboundSchema = Eighty$inboundSchema;
|
|
5200
|
+
/** @deprecated use `Eighty$outboundSchema` instead. */
|
|
5201
|
+
Eighty$.outboundSchema = Eighty$outboundSchema;
|
|
5202
|
+
})(Eighty$ || (Eighty$ = {}));
|
|
5203
|
+
export function eightyToJSON(eighty) {
|
|
5204
|
+
return JSON.stringify(Eighty$outboundSchema.parse(eighty));
|
|
5205
5205
|
}
|
|
5206
|
-
export function
|
|
5207
|
-
return safeParse(jsonString, (x) =>
|
|
5206
|
+
export function eightyFromJSON(jsonString) {
|
|
5207
|
+
return safeParse(jsonString, (x) => Eighty$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Eighty' from JSON`);
|
|
5208
5208
|
}
|
|
5209
5209
|
/** @internal */
|
|
5210
5210
|
export const PasswordProtection2$inboundSchema = z.nativeEnum(PasswordProtection2);
|
|
@@ -5371,7 +5371,7 @@ export function oldPasswordProtectionFromJSON(jsonString) {
|
|
|
5371
5371
|
return safeParse(jsonString, (x) => OldPasswordProtection$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OldPasswordProtection' from JSON`);
|
|
5372
5372
|
}
|
|
5373
5373
|
/** @internal */
|
|
5374
|
-
export const
|
|
5374
|
+
export const SeventyNine$inboundSchema = z.object({
|
|
5375
5375
|
projectName: z.string(),
|
|
5376
5376
|
passwordProtection: z.nullable(z.union([
|
|
5377
5377
|
z.lazy(() => PasswordProtection1$inboundSchema),
|
|
@@ -5383,7 +5383,7 @@ export const SeventyEight$inboundSchema = z.object({
|
|
|
5383
5383
|
])),
|
|
5384
5384
|
});
|
|
5385
5385
|
/** @internal */
|
|
5386
|
-
export const
|
|
5386
|
+
export const SeventyNine$outboundSchema = z.object({
|
|
5387
5387
|
projectName: z.string(),
|
|
5388
5388
|
passwordProtection: z.nullable(z.union([
|
|
5389
5389
|
z.lazy(() => PasswordProtection1$outboundSchema),
|
|
@@ -5398,18 +5398,18 @@ export const SeventyEight$outboundSchema = z.object({
|
|
|
5398
5398
|
* @internal
|
|
5399
5399
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5400
5400
|
*/
|
|
5401
|
-
export var
|
|
5402
|
-
(function (
|
|
5403
|
-
/** @deprecated use `
|
|
5404
|
-
|
|
5405
|
-
/** @deprecated use `
|
|
5406
|
-
|
|
5407
|
-
})(
|
|
5408
|
-
export function
|
|
5409
|
-
return JSON.stringify(
|
|
5401
|
+
export var SeventyNine$;
|
|
5402
|
+
(function (SeventyNine$) {
|
|
5403
|
+
/** @deprecated use `SeventyNine$inboundSchema` instead. */
|
|
5404
|
+
SeventyNine$.inboundSchema = SeventyNine$inboundSchema;
|
|
5405
|
+
/** @deprecated use `SeventyNine$outboundSchema` instead. */
|
|
5406
|
+
SeventyNine$.outboundSchema = SeventyNine$outboundSchema;
|
|
5407
|
+
})(SeventyNine$ || (SeventyNine$ = {}));
|
|
5408
|
+
export function seventyNineToJSON(seventyNine) {
|
|
5409
|
+
return JSON.stringify(SeventyNine$outboundSchema.parse(seventyNine));
|
|
5410
5410
|
}
|
|
5411
|
-
export function
|
|
5412
|
-
return safeParse(jsonString, (x) =>
|
|
5411
|
+
export function seventyNineFromJSON(jsonString) {
|
|
5412
|
+
return safeParse(jsonString, (x) => SeventyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventyNine' from JSON`);
|
|
5413
5413
|
}
|
|
5414
5414
|
/** @internal */
|
|
5415
5415
|
export const SsoProtection2$inboundSchema = z.nativeEnum(SsoProtection2);
|
|
@@ -5576,7 +5576,7 @@ export function oldSsoProtectionFromJSON(jsonString) {
|
|
|
5576
5576
|
return safeParse(jsonString, (x) => OldSsoProtection$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OldSsoProtection' from JSON`);
|
|
5577
5577
|
}
|
|
5578
5578
|
/** @internal */
|
|
5579
|
-
export const
|
|
5579
|
+
export const SeventyEight$inboundSchema = z.object({
|
|
5580
5580
|
projectName: z.string(),
|
|
5581
5581
|
ssoProtection: z.nullable(z.union([
|
|
5582
5582
|
z.lazy(() => SsoProtection1$inboundSchema),
|
|
@@ -5588,7 +5588,7 @@ export const SeventySeven$inboundSchema = z.object({
|
|
|
5588
5588
|
])),
|
|
5589
5589
|
});
|
|
5590
5590
|
/** @internal */
|
|
5591
|
-
export const
|
|
5591
|
+
export const SeventyEight$outboundSchema = z.object({
|
|
5592
5592
|
projectName: z.string(),
|
|
5593
5593
|
ssoProtection: z.nullable(z.union([
|
|
5594
5594
|
z.lazy(() => SsoProtection1$outboundSchema),
|
|
@@ -5603,26 +5603,26 @@ export const SeventySeven$outboundSchema = z.object({
|
|
|
5603
5603
|
* @internal
|
|
5604
5604
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5605
5605
|
*/
|
|
5606
|
-
export var
|
|
5607
|
-
(function (
|
|
5608
|
-
/** @deprecated use `
|
|
5609
|
-
|
|
5610
|
-
/** @deprecated use `
|
|
5611
|
-
|
|
5612
|
-
})(
|
|
5613
|
-
export function
|
|
5614
|
-
return JSON.stringify(
|
|
5606
|
+
export var SeventyEight$;
|
|
5607
|
+
(function (SeventyEight$) {
|
|
5608
|
+
/** @deprecated use `SeventyEight$inboundSchema` instead. */
|
|
5609
|
+
SeventyEight$.inboundSchema = SeventyEight$inboundSchema;
|
|
5610
|
+
/** @deprecated use `SeventyEight$outboundSchema` instead. */
|
|
5611
|
+
SeventyEight$.outboundSchema = SeventyEight$outboundSchema;
|
|
5612
|
+
})(SeventyEight$ || (SeventyEight$ = {}));
|
|
5613
|
+
export function seventyEightToJSON(seventyEight) {
|
|
5614
|
+
return JSON.stringify(SeventyEight$outboundSchema.parse(seventyEight));
|
|
5615
5615
|
}
|
|
5616
|
-
export function
|
|
5617
|
-
return safeParse(jsonString, (x) =>
|
|
5616
|
+
export function seventyEightFromJSON(jsonString) {
|
|
5617
|
+
return safeParse(jsonString, (x) => SeventyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventyEight' from JSON`);
|
|
5618
5618
|
}
|
|
5619
5619
|
/** @internal */
|
|
5620
|
-
export const
|
|
5620
|
+
export const SeventySeven$inboundSchema = z.object({
|
|
5621
5621
|
projectName: z.string().optional(),
|
|
5622
5622
|
projectId: z.string(),
|
|
5623
5623
|
});
|
|
5624
5624
|
/** @internal */
|
|
5625
|
-
export const
|
|
5625
|
+
export const SeventySeven$outboundSchema = z.object({
|
|
5626
5626
|
projectName: z.string().optional(),
|
|
5627
5627
|
projectId: z.string(),
|
|
5628
5628
|
});
|
|
@@ -5630,28 +5630,28 @@ export const SeventySix$outboundSchema = z.object({
|
|
|
5630
5630
|
* @internal
|
|
5631
5631
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5632
5632
|
*/
|
|
5633
|
-
export var
|
|
5634
|
-
(function (
|
|
5635
|
-
/** @deprecated use `
|
|
5636
|
-
|
|
5637
|
-
/** @deprecated use `
|
|
5638
|
-
|
|
5639
|
-
})(
|
|
5640
|
-
export function
|
|
5641
|
-
return JSON.stringify(
|
|
5633
|
+
export var SeventySeven$;
|
|
5634
|
+
(function (SeventySeven$) {
|
|
5635
|
+
/** @deprecated use `SeventySeven$inboundSchema` instead. */
|
|
5636
|
+
SeventySeven$.inboundSchema = SeventySeven$inboundSchema;
|
|
5637
|
+
/** @deprecated use `SeventySeven$outboundSchema` instead. */
|
|
5638
|
+
SeventySeven$.outboundSchema = SeventySeven$outboundSchema;
|
|
5639
|
+
})(SeventySeven$ || (SeventySeven$ = {}));
|
|
5640
|
+
export function seventySevenToJSON(seventySeven) {
|
|
5641
|
+
return JSON.stringify(SeventySeven$outboundSchema.parse(seventySeven));
|
|
5642
5642
|
}
|
|
5643
|
-
export function
|
|
5644
|
-
return safeParse(jsonString, (x) =>
|
|
5643
|
+
export function seventySevenFromJSON(jsonString) {
|
|
5644
|
+
return safeParse(jsonString, (x) => SeventySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventySeven' from JSON`);
|
|
5645
5645
|
}
|
|
5646
5646
|
/** @internal */
|
|
5647
|
-
export const
|
|
5647
|
+
export const SeventySix$inboundSchema = z.object({
|
|
5648
5648
|
projectName: z.string().optional(),
|
|
5649
5649
|
projectId: z.string(),
|
|
5650
5650
|
projectAnalytics: z.record(z.any()).optional(),
|
|
5651
5651
|
prevProjectAnalytics: z.nullable(z.record(z.any())).optional(),
|
|
5652
5652
|
});
|
|
5653
5653
|
/** @internal */
|
|
5654
|
-
export const
|
|
5654
|
+
export const SeventySix$outboundSchema = z.object({
|
|
5655
5655
|
projectName: z.string().optional(),
|
|
5656
5656
|
projectId: z.string(),
|
|
5657
5657
|
projectAnalytics: z.record(z.any()).optional(),
|
|
@@ -5661,18 +5661,18 @@ export const SeventyFive$outboundSchema = z.object({
|
|
|
5661
5661
|
* @internal
|
|
5662
5662
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5663
5663
|
*/
|
|
5664
|
-
export var
|
|
5665
|
-
(function (
|
|
5666
|
-
/** @deprecated use `
|
|
5667
|
-
|
|
5668
|
-
/** @deprecated use `
|
|
5669
|
-
|
|
5670
|
-
})(
|
|
5671
|
-
export function
|
|
5672
|
-
return JSON.stringify(
|
|
5664
|
+
export var SeventySix$;
|
|
5665
|
+
(function (SeventySix$) {
|
|
5666
|
+
/** @deprecated use `SeventySix$inboundSchema` instead. */
|
|
5667
|
+
SeventySix$.inboundSchema = SeventySix$inboundSchema;
|
|
5668
|
+
/** @deprecated use `SeventySix$outboundSchema` instead. */
|
|
5669
|
+
SeventySix$.outboundSchema = SeventySix$outboundSchema;
|
|
5670
|
+
})(SeventySix$ || (SeventySix$ = {}));
|
|
5671
|
+
export function seventySixToJSON(seventySix) {
|
|
5672
|
+
return JSON.stringify(SeventySix$outboundSchema.parse(seventySix));
|
|
5673
5673
|
}
|
|
5674
|
-
export function
|
|
5675
|
-
return safeParse(jsonString, (x) =>
|
|
5674
|
+
export function seventySixFromJSON(jsonString) {
|
|
5675
|
+
return safeParse(jsonString, (x) => SeventySix$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventySix' from JSON`);
|
|
5676
5676
|
}
|
|
5677
5677
|
/** @internal */
|
|
5678
5678
|
export const ProjectAnalytics$inboundSchema = z.object({
|
|
@@ -5749,14 +5749,14 @@ export function prevProjectAnalyticsFromJSON(jsonString) {
|
|
|
5749
5749
|
return safeParse(jsonString, (x) => PrevProjectAnalytics$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PrevProjectAnalytics' from JSON`);
|
|
5750
5750
|
}
|
|
5751
5751
|
/** @internal */
|
|
5752
|
-
export const
|
|
5752
|
+
export const SeventyFive$inboundSchema = z.object({
|
|
5753
5753
|
projectName: z.string().optional(),
|
|
5754
5754
|
projectId: z.string(),
|
|
5755
5755
|
projectAnalytics: z.nullable(z.lazy(() => ProjectAnalytics$inboundSchema)),
|
|
5756
5756
|
prevProjectAnalytics: z.nullable(z.lazy(() => PrevProjectAnalytics$inboundSchema)),
|
|
5757
5757
|
});
|
|
5758
5758
|
/** @internal */
|
|
5759
|
-
export const
|
|
5759
|
+
export const SeventyFive$outboundSchema = z.object({
|
|
5760
5760
|
projectName: z.string().optional(),
|
|
5761
5761
|
projectId: z.string(),
|
|
5762
5762
|
projectAnalytics: z.nullable(z.lazy(() => ProjectAnalytics$outboundSchema)),
|
|
@@ -5766,34 +5766,34 @@ export const SeventyFour$outboundSchema = z.object({
|
|
|
5766
5766
|
* @internal
|
|
5767
5767
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5768
5768
|
*/
|
|
5769
|
-
export var
|
|
5770
|
-
(function (
|
|
5771
|
-
/** @deprecated use `
|
|
5772
|
-
|
|
5773
|
-
/** @deprecated use `
|
|
5774
|
-
|
|
5775
|
-
})(
|
|
5776
|
-
export function
|
|
5777
|
-
return JSON.stringify(
|
|
5769
|
+
export var SeventyFive$;
|
|
5770
|
+
(function (SeventyFive$) {
|
|
5771
|
+
/** @deprecated use `SeventyFive$inboundSchema` instead. */
|
|
5772
|
+
SeventyFive$.inboundSchema = SeventyFive$inboundSchema;
|
|
5773
|
+
/** @deprecated use `SeventyFive$outboundSchema` instead. */
|
|
5774
|
+
SeventyFive$.outboundSchema = SeventyFive$outboundSchema;
|
|
5775
|
+
})(SeventyFive$ || (SeventyFive$ = {}));
|
|
5776
|
+
export function seventyFiveToJSON(seventyFive) {
|
|
5777
|
+
return JSON.stringify(SeventyFive$outboundSchema.parse(seventyFive));
|
|
5778
5778
|
}
|
|
5779
|
-
export function
|
|
5780
|
-
return safeParse(jsonString, (x) =>
|
|
5779
|
+
export function seventyFiveFromJSON(jsonString) {
|
|
5780
|
+
return safeParse(jsonString, (x) => SeventyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventyFive' from JSON`);
|
|
5781
5781
|
}
|
|
5782
5782
|
/** @internal */
|
|
5783
|
-
export const
|
|
5783
|
+
export const UserEventPayload74Role$inboundSchema = z.nativeEnum(UserEventPayload74Role);
|
|
5784
5784
|
/** @internal */
|
|
5785
|
-
export const
|
|
5785
|
+
export const UserEventPayload74Role$outboundSchema = UserEventPayload74Role$inboundSchema;
|
|
5786
5786
|
/**
|
|
5787
5787
|
* @internal
|
|
5788
5788
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5789
5789
|
*/
|
|
5790
|
-
export var
|
|
5791
|
-
(function (
|
|
5792
|
-
/** @deprecated use `
|
|
5793
|
-
|
|
5794
|
-
/** @deprecated use `
|
|
5795
|
-
|
|
5796
|
-
})(
|
|
5790
|
+
export var UserEventPayload74Role$;
|
|
5791
|
+
(function (UserEventPayload74Role$) {
|
|
5792
|
+
/** @deprecated use `UserEventPayload74Role$inboundSchema` instead. */
|
|
5793
|
+
UserEventPayload74Role$.inboundSchema = UserEventPayload74Role$inboundSchema;
|
|
5794
|
+
/** @deprecated use `UserEventPayload74Role$outboundSchema` instead. */
|
|
5795
|
+
UserEventPayload74Role$.outboundSchema = UserEventPayload74Role$outboundSchema;
|
|
5796
|
+
})(UserEventPayload74Role$ || (UserEventPayload74Role$ = {}));
|
|
5797
5797
|
/** @internal */
|
|
5798
5798
|
export const PayloadOrigin$inboundSchema = z.nativeEnum(PayloadOrigin);
|
|
5799
5799
|
/** @internal */
|
|
@@ -5877,14 +5877,14 @@ export function payloadJoinedFromFromJSON(jsonString) {
|
|
|
5877
5877
|
}
|
|
5878
5878
|
/** @internal */
|
|
5879
5879
|
export const RemovedUsers$inboundSchema = z.object({
|
|
5880
|
-
role:
|
|
5880
|
+
role: UserEventPayload74Role$inboundSchema,
|
|
5881
5881
|
confirmed: z.boolean(),
|
|
5882
5882
|
confirmedAt: z.number().optional(),
|
|
5883
5883
|
joinedFrom: z.lazy(() => PayloadJoinedFrom$inboundSchema).optional(),
|
|
5884
5884
|
});
|
|
5885
5885
|
/** @internal */
|
|
5886
5886
|
export const RemovedUsers$outboundSchema = z.object({
|
|
5887
|
-
role:
|
|
5887
|
+
role: UserEventPayload74Role$outboundSchema,
|
|
5888
5888
|
confirmed: z.boolean(),
|
|
5889
5889
|
confirmedAt: z.number().optional(),
|
|
5890
5890
|
joinedFrom: z.lazy(() => PayloadJoinedFrom$outboundSchema).optional(),
|
|
@@ -5907,7 +5907,7 @@ export function removedUsersFromJSON(jsonString) {
|
|
|
5907
5907
|
return safeParse(jsonString, (x) => RemovedUsers$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'RemovedUsers' from JSON`);
|
|
5908
5908
|
}
|
|
5909
5909
|
/** @internal */
|
|
5910
|
-
export const
|
|
5910
|
+
export const SeventyFour$inboundSchema = z.object({
|
|
5911
5911
|
plan: z.string(),
|
|
5912
5912
|
removedUsers: z.record(z.lazy(() => RemovedUsers$inboundSchema)).optional(),
|
|
5913
5913
|
priorPlan: z.string().optional(),
|
|
@@ -5917,7 +5917,7 @@ export const SeventyThree$inboundSchema = z.object({
|
|
|
5917
5917
|
isTrialUpgrade: z.boolean().optional(),
|
|
5918
5918
|
});
|
|
5919
5919
|
/** @internal */
|
|
5920
|
-
export const
|
|
5920
|
+
export const SeventyFour$outboundSchema = z.object({
|
|
5921
5921
|
plan: z.string(),
|
|
5922
5922
|
removedUsers: z.record(z.lazy(() => RemovedUsers$outboundSchema)).optional(),
|
|
5923
5923
|
priorPlan: z.string().optional(),
|
|
@@ -5926,6 +5926,31 @@ export const SeventyThree$outboundSchema = z.object({
|
|
|
5926
5926
|
isReactivate: z.boolean().optional(),
|
|
5927
5927
|
isTrialUpgrade: z.boolean().optional(),
|
|
5928
5928
|
});
|
|
5929
|
+
/**
|
|
5930
|
+
* @internal
|
|
5931
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5932
|
+
*/
|
|
5933
|
+
export var SeventyFour$;
|
|
5934
|
+
(function (SeventyFour$) {
|
|
5935
|
+
/** @deprecated use `SeventyFour$inboundSchema` instead. */
|
|
5936
|
+
SeventyFour$.inboundSchema = SeventyFour$inboundSchema;
|
|
5937
|
+
/** @deprecated use `SeventyFour$outboundSchema` instead. */
|
|
5938
|
+
SeventyFour$.outboundSchema = SeventyFour$outboundSchema;
|
|
5939
|
+
})(SeventyFour$ || (SeventyFour$ = {}));
|
|
5940
|
+
export function seventyFourToJSON(seventyFour) {
|
|
5941
|
+
return JSON.stringify(SeventyFour$outboundSchema.parse(seventyFour));
|
|
5942
|
+
}
|
|
5943
|
+
export function seventyFourFromJSON(jsonString) {
|
|
5944
|
+
return safeParse(jsonString, (x) => SeventyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventyFour' from JSON`);
|
|
5945
|
+
}
|
|
5946
|
+
/** @internal */
|
|
5947
|
+
export const SeventyThree$inboundSchema = z.object({
|
|
5948
|
+
projectName: z.string(),
|
|
5949
|
+
});
|
|
5950
|
+
/** @internal */
|
|
5951
|
+
export const SeventyThree$outboundSchema = z.object({
|
|
5952
|
+
projectName: z.string(),
|
|
5953
|
+
});
|
|
5929
5954
|
/**
|
|
5930
5955
|
* @internal
|
|
5931
5956
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -13265,24 +13290,25 @@ export const Payload$inboundSchema = z.union([
|
|
|
13265
13290
|
z.lazy(() => TwentyEight$inboundSchema),
|
|
13266
13291
|
z.lazy(() => ThirtyThree$inboundSchema),
|
|
13267
13292
|
z.lazy(() => FortyThree$inboundSchema),
|
|
13268
|
-
z.lazy(() =>
|
|
13269
|
-
z.lazy(() =>
|
|
13270
|
-
z.lazy(() =>
|
|
13271
|
-
z.lazy(() =>
|
|
13293
|
+
z.lazy(() => SeventyThree$inboundSchema),
|
|
13294
|
+
z.lazy(() => EightyFive$inboundSchema),
|
|
13295
|
+
z.lazy(() => NinetyOne$inboundSchema),
|
|
13296
|
+
z.lazy(() => NinetySix$inboundSchema),
|
|
13272
13297
|
z.lazy(() => NinetyEight$inboundSchema),
|
|
13273
13298
|
z.lazy(() => NinetyNine$inboundSchema),
|
|
13274
|
-
z.lazy(() =>
|
|
13275
|
-
z.lazy(() =>
|
|
13276
|
-
z.lazy(() =>
|
|
13299
|
+
z.lazy(() => OneHundred$inboundSchema),
|
|
13300
|
+
z.lazy(() => OneHundredAndTwo$inboundSchema),
|
|
13301
|
+
z.lazy(() => OneHundredAndFour$inboundSchema),
|
|
13277
13302
|
z.lazy(() => OneHundredAndTwelve$inboundSchema),
|
|
13278
13303
|
z.lazy(() => OneHundredAndThirteen$inboundSchema),
|
|
13279
13304
|
z.lazy(() => OneHundredAndFourteen$inboundSchema),
|
|
13280
|
-
z.lazy(() =>
|
|
13281
|
-
z.lazy(() =>
|
|
13282
|
-
z.lazy(() =>
|
|
13283
|
-
z.lazy(() =>
|
|
13284
|
-
z.lazy(() =>
|
|
13285
|
-
z.lazy(() =>
|
|
13305
|
+
z.lazy(() => OneHundredAndFifteen$inboundSchema),
|
|
13306
|
+
z.lazy(() => OneHundredAndEighteen$inboundSchema),
|
|
13307
|
+
z.lazy(() => OneHundredAndTwenty$inboundSchema),
|
|
13308
|
+
z.lazy(() => OneHundredAndThirtyFour$inboundSchema),
|
|
13309
|
+
z.lazy(() => OneHundredAndThirtyEight$inboundSchema),
|
|
13310
|
+
z.lazy(() => OneHundredAndFortyFour$inboundSchema),
|
|
13311
|
+
z.lazy(() => OneHundredAndFortyEight$inboundSchema),
|
|
13286
13312
|
z.lazy(() => Four$inboundSchema),
|
|
13287
13313
|
z.lazy(() => Fourteen$inboundSchema),
|
|
13288
13314
|
z.lazy(() => Seventeen$inboundSchema),
|
|
@@ -13301,29 +13327,29 @@ export const Payload$inboundSchema = z.union([
|
|
|
13301
13327
|
z.lazy(() => SixtyNine$inboundSchema),
|
|
13302
13328
|
z.lazy(() => Seventy$inboundSchema),
|
|
13303
13329
|
z.lazy(() => SeventyOne$inboundSchema),
|
|
13304
|
-
z.lazy(() =>
|
|
13305
|
-
z.lazy(() => EightyOne$inboundSchema),
|
|
13330
|
+
z.lazy(() => SeventySeven$inboundSchema),
|
|
13306
13331
|
z.lazy(() => EightyTwo$inboundSchema),
|
|
13307
13332
|
z.lazy(() => EightyThree$inboundSchema),
|
|
13308
|
-
z.lazy(() =>
|
|
13309
|
-
z.lazy(() =>
|
|
13333
|
+
z.lazy(() => EightyFour$inboundSchema),
|
|
13334
|
+
z.lazy(() => EightySix$inboundSchema),
|
|
13310
13335
|
z.lazy(() => EightyNine$inboundSchema),
|
|
13311
|
-
z.lazy(() =>
|
|
13336
|
+
z.lazy(() => Ninety$inboundSchema),
|
|
13312
13337
|
z.lazy(() => NinetyThree$inboundSchema),
|
|
13313
|
-
z.lazy(() =>
|
|
13314
|
-
z.lazy(() =>
|
|
13315
|
-
z.lazy(() =>
|
|
13338
|
+
z.lazy(() => NinetyFour$inboundSchema),
|
|
13339
|
+
z.lazy(() => OneHundredAndThree$inboundSchema),
|
|
13340
|
+
z.lazy(() => OneHundredAndTen$inboundSchema),
|
|
13316
13341
|
z.lazy(() => OneHundredAndSixteen$inboundSchema),
|
|
13317
|
-
z.lazy(() =>
|
|
13318
|
-
z.lazy(() =>
|
|
13342
|
+
z.lazy(() => OneHundredAndSeventeen$inboundSchema),
|
|
13343
|
+
z.lazy(() => OneHundredAndNineteen$inboundSchema),
|
|
13319
13344
|
z.lazy(() => OneHundredAndTwentyTwo$inboundSchema),
|
|
13320
|
-
z.lazy(() =>
|
|
13345
|
+
z.lazy(() => OneHundredAndTwentyThree$inboundSchema),
|
|
13321
13346
|
z.lazy(() => OneHundredAndThirtyOne$inboundSchema),
|
|
13322
13347
|
z.lazy(() => OneHundredAndThirtyTwo$inboundSchema),
|
|
13323
|
-
z.lazy(() =>
|
|
13324
|
-
z.lazy(() =>
|
|
13348
|
+
z.lazy(() => OneHundredAndThirtyThree$inboundSchema),
|
|
13349
|
+
z.lazy(() => OneHundredAndFortyOne$inboundSchema),
|
|
13325
13350
|
z.lazy(() => OneHundredAndFortyFive$inboundSchema),
|
|
13326
13351
|
z.lazy(() => OneHundredAndFortySix$inboundSchema),
|
|
13352
|
+
z.lazy(() => OneHundredAndFortySeven$inboundSchema),
|
|
13327
13353
|
z.lazy(() => Five$inboundSchema),
|
|
13328
13354
|
z.lazy(() => Eight$inboundSchema),
|
|
13329
13355
|
z.lazy(() => Ten$inboundSchema),
|
|
@@ -13349,23 +13375,23 @@ export const Payload$inboundSchema = z.union([
|
|
|
13349
13375
|
z.lazy(() => Sixty$inboundSchema),
|
|
13350
13376
|
z.lazy(() => SixtyOne$inboundSchema),
|
|
13351
13377
|
z.lazy(() => SeventyTwo$inboundSchema),
|
|
13352
|
-
z.lazy(() => SeventySeven$inboundSchema),
|
|
13353
13378
|
z.lazy(() => SeventyEight$inboundSchema),
|
|
13354
|
-
z.lazy(() =>
|
|
13355
|
-
z.lazy(() =>
|
|
13379
|
+
z.lazy(() => SeventyNine$inboundSchema),
|
|
13380
|
+
z.lazy(() => EightyOne$inboundSchema),
|
|
13356
13381
|
z.lazy(() => EightySeven$inboundSchema),
|
|
13357
|
-
z.lazy(() =>
|
|
13358
|
-
z.lazy(() =>
|
|
13359
|
-
z.lazy(() =>
|
|
13360
|
-
z.lazy(() =>
|
|
13361
|
-
z.lazy(() =>
|
|
13362
|
-
z.lazy(() =>
|
|
13363
|
-
z.lazy(() =>
|
|
13364
|
-
z.lazy(() =>
|
|
13365
|
-
z.lazy(() =>
|
|
13366
|
-
z.lazy(() =>
|
|
13367
|
-
z.lazy(() =>
|
|
13382
|
+
z.lazy(() => EightyEight$inboundSchema),
|
|
13383
|
+
z.lazy(() => NinetyTwo$inboundSchema),
|
|
13384
|
+
z.lazy(() => NinetyFive$inboundSchema),
|
|
13385
|
+
z.lazy(() => OneHundredAndEight$inboundSchema),
|
|
13386
|
+
z.lazy(() => OneHundredAndEleven$inboundSchema),
|
|
13387
|
+
z.lazy(() => OneHundredAndTwentyOne$inboundSchema),
|
|
13388
|
+
z.lazy(() => OneHundredAndTwentyEight$inboundSchema),
|
|
13389
|
+
z.lazy(() => OneHundredAndThirtyFive$inboundSchema),
|
|
13390
|
+
z.lazy(() => OneHundredAndThirtySeven$inboundSchema),
|
|
13391
|
+
z.lazy(() => OneHundredAndThirtyNine$inboundSchema),
|
|
13392
|
+
z.lazy(() => OneHundredAndFortyTwo$inboundSchema),
|
|
13368
13393
|
z.lazy(() => OneHundredAndFortyNine$inboundSchema),
|
|
13394
|
+
z.lazy(() => OneHundredAndFifty$inboundSchema),
|
|
13369
13395
|
z.lazy(() => Payload2$inboundSchema),
|
|
13370
13396
|
z.lazy(() => Six$inboundSchema),
|
|
13371
13397
|
z.lazy(() => Eleven$inboundSchema),
|
|
@@ -13374,36 +13400,36 @@ export const Payload$inboundSchema = z.union([
|
|
|
13374
13400
|
z.lazy(() => Twenty$inboundSchema),
|
|
13375
13401
|
z.lazy(() => TwentyNine$inboundSchema),
|
|
13376
13402
|
z.lazy(() => FortySix$inboundSchema),
|
|
13377
|
-
z.lazy(() => SeventyFour$inboundSchema),
|
|
13378
13403
|
z.lazy(() => SeventyFive$inboundSchema),
|
|
13379
|
-
z.lazy(() =>
|
|
13380
|
-
z.lazy(() =>
|
|
13381
|
-
z.lazy(() =>
|
|
13404
|
+
z.lazy(() => SeventySix$inboundSchema),
|
|
13405
|
+
z.lazy(() => NinetySeven$inboundSchema),
|
|
13406
|
+
z.lazy(() => OneHundredAndFive$inboundSchema),
|
|
13382
13407
|
z.lazy(() => OneHundredAndTwentyNine$inboundSchema),
|
|
13383
|
-
z.lazy(() =>
|
|
13384
|
-
z.lazy(() =>
|
|
13385
|
-
z.lazy(() =>
|
|
13386
|
-
z.lazy(() =>
|
|
13408
|
+
z.lazy(() => OneHundredAndThirty$inboundSchema),
|
|
13409
|
+
z.lazy(() => OneHundredAndThirtySix$inboundSchema),
|
|
13410
|
+
z.lazy(() => OneHundredAndForty$inboundSchema),
|
|
13411
|
+
z.lazy(() => OneHundredAndFortyThree$inboundSchema),
|
|
13412
|
+
z.lazy(() => OneHundredAndFiftyOne$inboundSchema),
|
|
13387
13413
|
z.lazy(() => Thirty$inboundSchema),
|
|
13388
13414
|
z.lazy(() => FortyTwo$inboundSchema),
|
|
13389
13415
|
z.lazy(() => FiftyNine$inboundSchema),
|
|
13390
13416
|
z.lazy(() => SixtySix$inboundSchema),
|
|
13391
|
-
z.lazy(() =>
|
|
13392
|
-
z.lazy(() =>
|
|
13417
|
+
z.lazy(() => Eighty$inboundSchema),
|
|
13418
|
+
z.lazy(() => OneHundredAndNine$inboundSchema),
|
|
13393
13419
|
z.lazy(() => Forty$inboundSchema),
|
|
13394
13420
|
z.lazy(() => SixtyTwo$inboundSchema),
|
|
13395
13421
|
z.lazy(() => SixtyFive$inboundSchema),
|
|
13396
|
-
z.lazy(() =>
|
|
13397
|
-
z.lazy(() =>
|
|
13398
|
-
z.lazy(() => OneHundredAndTwentyFour$inboundSchema),
|
|
13422
|
+
z.lazy(() => OneHundredAndOne$inboundSchema),
|
|
13423
|
+
z.lazy(() => OneHundredAndSeven$inboundSchema),
|
|
13399
13424
|
z.lazy(() => OneHundredAndTwentyFive$inboundSchema),
|
|
13400
13425
|
z.lazy(() => OneHundredAndTwentySix$inboundSchema),
|
|
13401
|
-
z.lazy(() =>
|
|
13426
|
+
z.lazy(() => OneHundredAndTwentySeven$inboundSchema),
|
|
13427
|
+
z.lazy(() => OneHundredAndFiftyTwo$inboundSchema),
|
|
13402
13428
|
z.lazy(() => SixtyFour$inboundSchema),
|
|
13403
13429
|
z.lazy(() => SixtySeven$inboundSchema),
|
|
13404
|
-
z.lazy(() =>
|
|
13405
|
-
z.lazy(() =>
|
|
13406
|
-
z.lazy(() =>
|
|
13430
|
+
z.lazy(() => SeventyFour$inboundSchema),
|
|
13431
|
+
z.lazy(() => OneHundredAndSix$inboundSchema),
|
|
13432
|
+
z.lazy(() => OneHundredAndTwentyFour$inboundSchema),
|
|
13407
13433
|
z.lazy(() => FiftySix$inboundSchema),
|
|
13408
13434
|
z.lazy(() => Seven$inboundSchema),
|
|
13409
13435
|
z.lazy(() => ThirtySeven$inboundSchema),
|
|
@@ -13419,24 +13445,25 @@ export const Payload$outboundSchema = z.union([
|
|
|
13419
13445
|
z.lazy(() => TwentyEight$outboundSchema),
|
|
13420
13446
|
z.lazy(() => ThirtyThree$outboundSchema),
|
|
13421
13447
|
z.lazy(() => FortyThree$outboundSchema),
|
|
13422
|
-
z.lazy(() =>
|
|
13423
|
-
z.lazy(() =>
|
|
13424
|
-
z.lazy(() =>
|
|
13425
|
-
z.lazy(() =>
|
|
13448
|
+
z.lazy(() => SeventyThree$outboundSchema),
|
|
13449
|
+
z.lazy(() => EightyFive$outboundSchema),
|
|
13450
|
+
z.lazy(() => NinetyOne$outboundSchema),
|
|
13451
|
+
z.lazy(() => NinetySix$outboundSchema),
|
|
13426
13452
|
z.lazy(() => NinetyEight$outboundSchema),
|
|
13427
13453
|
z.lazy(() => NinetyNine$outboundSchema),
|
|
13428
|
-
z.lazy(() =>
|
|
13429
|
-
z.lazy(() =>
|
|
13430
|
-
z.lazy(() =>
|
|
13454
|
+
z.lazy(() => OneHundred$outboundSchema),
|
|
13455
|
+
z.lazy(() => OneHundredAndTwo$outboundSchema),
|
|
13456
|
+
z.lazy(() => OneHundredAndFour$outboundSchema),
|
|
13431
13457
|
z.lazy(() => OneHundredAndTwelve$outboundSchema),
|
|
13432
13458
|
z.lazy(() => OneHundredAndThirteen$outboundSchema),
|
|
13433
13459
|
z.lazy(() => OneHundredAndFourteen$outboundSchema),
|
|
13434
|
-
z.lazy(() =>
|
|
13435
|
-
z.lazy(() =>
|
|
13436
|
-
z.lazy(() =>
|
|
13437
|
-
z.lazy(() =>
|
|
13438
|
-
z.lazy(() =>
|
|
13439
|
-
z.lazy(() =>
|
|
13460
|
+
z.lazy(() => OneHundredAndFifteen$outboundSchema),
|
|
13461
|
+
z.lazy(() => OneHundredAndEighteen$outboundSchema),
|
|
13462
|
+
z.lazy(() => OneHundredAndTwenty$outboundSchema),
|
|
13463
|
+
z.lazy(() => OneHundredAndThirtyFour$outboundSchema),
|
|
13464
|
+
z.lazy(() => OneHundredAndThirtyEight$outboundSchema),
|
|
13465
|
+
z.lazy(() => OneHundredAndFortyFour$outboundSchema),
|
|
13466
|
+
z.lazy(() => OneHundredAndFortyEight$outboundSchema),
|
|
13440
13467
|
z.lazy(() => Four$outboundSchema),
|
|
13441
13468
|
z.lazy(() => Fourteen$outboundSchema),
|
|
13442
13469
|
z.lazy(() => Seventeen$outboundSchema),
|
|
@@ -13455,29 +13482,29 @@ export const Payload$outboundSchema = z.union([
|
|
|
13455
13482
|
z.lazy(() => SixtyNine$outboundSchema),
|
|
13456
13483
|
z.lazy(() => Seventy$outboundSchema),
|
|
13457
13484
|
z.lazy(() => SeventyOne$outboundSchema),
|
|
13458
|
-
z.lazy(() =>
|
|
13459
|
-
z.lazy(() => EightyOne$outboundSchema),
|
|
13485
|
+
z.lazy(() => SeventySeven$outboundSchema),
|
|
13460
13486
|
z.lazy(() => EightyTwo$outboundSchema),
|
|
13461
13487
|
z.lazy(() => EightyThree$outboundSchema),
|
|
13462
|
-
z.lazy(() =>
|
|
13463
|
-
z.lazy(() =>
|
|
13488
|
+
z.lazy(() => EightyFour$outboundSchema),
|
|
13489
|
+
z.lazy(() => EightySix$outboundSchema),
|
|
13464
13490
|
z.lazy(() => EightyNine$outboundSchema),
|
|
13465
|
-
z.lazy(() =>
|
|
13491
|
+
z.lazy(() => Ninety$outboundSchema),
|
|
13466
13492
|
z.lazy(() => NinetyThree$outboundSchema),
|
|
13467
|
-
z.lazy(() =>
|
|
13468
|
-
z.lazy(() =>
|
|
13469
|
-
z.lazy(() =>
|
|
13493
|
+
z.lazy(() => NinetyFour$outboundSchema),
|
|
13494
|
+
z.lazy(() => OneHundredAndThree$outboundSchema),
|
|
13495
|
+
z.lazy(() => OneHundredAndTen$outboundSchema),
|
|
13470
13496
|
z.lazy(() => OneHundredAndSixteen$outboundSchema),
|
|
13471
|
-
z.lazy(() =>
|
|
13472
|
-
z.lazy(() =>
|
|
13497
|
+
z.lazy(() => OneHundredAndSeventeen$outboundSchema),
|
|
13498
|
+
z.lazy(() => OneHundredAndNineteen$outboundSchema),
|
|
13473
13499
|
z.lazy(() => OneHundredAndTwentyTwo$outboundSchema),
|
|
13474
|
-
z.lazy(() =>
|
|
13500
|
+
z.lazy(() => OneHundredAndTwentyThree$outboundSchema),
|
|
13475
13501
|
z.lazy(() => OneHundredAndThirtyOne$outboundSchema),
|
|
13476
13502
|
z.lazy(() => OneHundredAndThirtyTwo$outboundSchema),
|
|
13477
|
-
z.lazy(() =>
|
|
13478
|
-
z.lazy(() =>
|
|
13503
|
+
z.lazy(() => OneHundredAndThirtyThree$outboundSchema),
|
|
13504
|
+
z.lazy(() => OneHundredAndFortyOne$outboundSchema),
|
|
13479
13505
|
z.lazy(() => OneHundredAndFortyFive$outboundSchema),
|
|
13480
13506
|
z.lazy(() => OneHundredAndFortySix$outboundSchema),
|
|
13507
|
+
z.lazy(() => OneHundredAndFortySeven$outboundSchema),
|
|
13481
13508
|
z.lazy(() => Five$outboundSchema),
|
|
13482
13509
|
z.lazy(() => Eight$outboundSchema),
|
|
13483
13510
|
z.lazy(() => Ten$outboundSchema),
|
|
@@ -13503,23 +13530,23 @@ export const Payload$outboundSchema = z.union([
|
|
|
13503
13530
|
z.lazy(() => Sixty$outboundSchema),
|
|
13504
13531
|
z.lazy(() => SixtyOne$outboundSchema),
|
|
13505
13532
|
z.lazy(() => SeventyTwo$outboundSchema),
|
|
13506
|
-
z.lazy(() => SeventySeven$outboundSchema),
|
|
13507
13533
|
z.lazy(() => SeventyEight$outboundSchema),
|
|
13508
|
-
z.lazy(() =>
|
|
13509
|
-
z.lazy(() =>
|
|
13534
|
+
z.lazy(() => SeventyNine$outboundSchema),
|
|
13535
|
+
z.lazy(() => EightyOne$outboundSchema),
|
|
13510
13536
|
z.lazy(() => EightySeven$outboundSchema),
|
|
13511
|
-
z.lazy(() =>
|
|
13512
|
-
z.lazy(() =>
|
|
13513
|
-
z.lazy(() =>
|
|
13514
|
-
z.lazy(() =>
|
|
13515
|
-
z.lazy(() =>
|
|
13516
|
-
z.lazy(() =>
|
|
13517
|
-
z.lazy(() =>
|
|
13518
|
-
z.lazy(() =>
|
|
13519
|
-
z.lazy(() =>
|
|
13520
|
-
z.lazy(() =>
|
|
13521
|
-
z.lazy(() =>
|
|
13537
|
+
z.lazy(() => EightyEight$outboundSchema),
|
|
13538
|
+
z.lazy(() => NinetyTwo$outboundSchema),
|
|
13539
|
+
z.lazy(() => NinetyFive$outboundSchema),
|
|
13540
|
+
z.lazy(() => OneHundredAndEight$outboundSchema),
|
|
13541
|
+
z.lazy(() => OneHundredAndEleven$outboundSchema),
|
|
13542
|
+
z.lazy(() => OneHundredAndTwentyOne$outboundSchema),
|
|
13543
|
+
z.lazy(() => OneHundredAndTwentyEight$outboundSchema),
|
|
13544
|
+
z.lazy(() => OneHundredAndThirtyFive$outboundSchema),
|
|
13545
|
+
z.lazy(() => OneHundredAndThirtySeven$outboundSchema),
|
|
13546
|
+
z.lazy(() => OneHundredAndThirtyNine$outboundSchema),
|
|
13547
|
+
z.lazy(() => OneHundredAndFortyTwo$outboundSchema),
|
|
13522
13548
|
z.lazy(() => OneHundredAndFortyNine$outboundSchema),
|
|
13549
|
+
z.lazy(() => OneHundredAndFifty$outboundSchema),
|
|
13523
13550
|
z.lazy(() => Payload2$outboundSchema),
|
|
13524
13551
|
z.lazy(() => Six$outboundSchema),
|
|
13525
13552
|
z.lazy(() => Eleven$outboundSchema),
|
|
@@ -13528,36 +13555,36 @@ export const Payload$outboundSchema = z.union([
|
|
|
13528
13555
|
z.lazy(() => Twenty$outboundSchema),
|
|
13529
13556
|
z.lazy(() => TwentyNine$outboundSchema),
|
|
13530
13557
|
z.lazy(() => FortySix$outboundSchema),
|
|
13531
|
-
z.lazy(() => SeventyFour$outboundSchema),
|
|
13532
13558
|
z.lazy(() => SeventyFive$outboundSchema),
|
|
13533
|
-
z.lazy(() =>
|
|
13534
|
-
z.lazy(() =>
|
|
13535
|
-
z.lazy(() =>
|
|
13559
|
+
z.lazy(() => SeventySix$outboundSchema),
|
|
13560
|
+
z.lazy(() => NinetySeven$outboundSchema),
|
|
13561
|
+
z.lazy(() => OneHundredAndFive$outboundSchema),
|
|
13536
13562
|
z.lazy(() => OneHundredAndTwentyNine$outboundSchema),
|
|
13537
|
-
z.lazy(() =>
|
|
13538
|
-
z.lazy(() =>
|
|
13539
|
-
z.lazy(() =>
|
|
13540
|
-
z.lazy(() =>
|
|
13563
|
+
z.lazy(() => OneHundredAndThirty$outboundSchema),
|
|
13564
|
+
z.lazy(() => OneHundredAndThirtySix$outboundSchema),
|
|
13565
|
+
z.lazy(() => OneHundredAndForty$outboundSchema),
|
|
13566
|
+
z.lazy(() => OneHundredAndFortyThree$outboundSchema),
|
|
13567
|
+
z.lazy(() => OneHundredAndFiftyOne$outboundSchema),
|
|
13541
13568
|
z.lazy(() => Thirty$outboundSchema),
|
|
13542
13569
|
z.lazy(() => FortyTwo$outboundSchema),
|
|
13543
13570
|
z.lazy(() => FiftyNine$outboundSchema),
|
|
13544
13571
|
z.lazy(() => SixtySix$outboundSchema),
|
|
13545
|
-
z.lazy(() =>
|
|
13546
|
-
z.lazy(() =>
|
|
13572
|
+
z.lazy(() => Eighty$outboundSchema),
|
|
13573
|
+
z.lazy(() => OneHundredAndNine$outboundSchema),
|
|
13547
13574
|
z.lazy(() => Forty$outboundSchema),
|
|
13548
13575
|
z.lazy(() => SixtyTwo$outboundSchema),
|
|
13549
13576
|
z.lazy(() => SixtyFive$outboundSchema),
|
|
13550
|
-
z.lazy(() =>
|
|
13551
|
-
z.lazy(() =>
|
|
13552
|
-
z.lazy(() => OneHundredAndTwentyFour$outboundSchema),
|
|
13577
|
+
z.lazy(() => OneHundredAndOne$outboundSchema),
|
|
13578
|
+
z.lazy(() => OneHundredAndSeven$outboundSchema),
|
|
13553
13579
|
z.lazy(() => OneHundredAndTwentyFive$outboundSchema),
|
|
13554
13580
|
z.lazy(() => OneHundredAndTwentySix$outboundSchema),
|
|
13555
|
-
z.lazy(() =>
|
|
13581
|
+
z.lazy(() => OneHundredAndTwentySeven$outboundSchema),
|
|
13582
|
+
z.lazy(() => OneHundredAndFiftyTwo$outboundSchema),
|
|
13556
13583
|
z.lazy(() => SixtyFour$outboundSchema),
|
|
13557
13584
|
z.lazy(() => SixtySeven$outboundSchema),
|
|
13558
|
-
z.lazy(() =>
|
|
13559
|
-
z.lazy(() =>
|
|
13560
|
-
z.lazy(() =>
|
|
13585
|
+
z.lazy(() => SeventyFour$outboundSchema),
|
|
13586
|
+
z.lazy(() => OneHundredAndSix$outboundSchema),
|
|
13587
|
+
z.lazy(() => OneHundredAndTwentyFour$outboundSchema),
|
|
13561
13588
|
z.lazy(() => FiftySix$outboundSchema),
|
|
13562
13589
|
z.lazy(() => Seven$outboundSchema),
|
|
13563
13590
|
z.lazy(() => ThirtySeven$outboundSchema),
|
|
@@ -13607,24 +13634,25 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
13607
13634
|
z.lazy(() => TwentyEight$inboundSchema),
|
|
13608
13635
|
z.lazy(() => ThirtyThree$inboundSchema),
|
|
13609
13636
|
z.lazy(() => FortyThree$inboundSchema),
|
|
13610
|
-
z.lazy(() =>
|
|
13611
|
-
z.lazy(() =>
|
|
13612
|
-
z.lazy(() =>
|
|
13613
|
-
z.lazy(() =>
|
|
13637
|
+
z.lazy(() => SeventyThree$inboundSchema),
|
|
13638
|
+
z.lazy(() => EightyFive$inboundSchema),
|
|
13639
|
+
z.lazy(() => NinetyOne$inboundSchema),
|
|
13640
|
+
z.lazy(() => NinetySix$inboundSchema),
|
|
13614
13641
|
z.lazy(() => NinetyEight$inboundSchema),
|
|
13615
13642
|
z.lazy(() => NinetyNine$inboundSchema),
|
|
13616
|
-
z.lazy(() =>
|
|
13617
|
-
z.lazy(() =>
|
|
13618
|
-
z.lazy(() =>
|
|
13643
|
+
z.lazy(() => OneHundred$inboundSchema),
|
|
13644
|
+
z.lazy(() => OneHundredAndTwo$inboundSchema),
|
|
13645
|
+
z.lazy(() => OneHundredAndFour$inboundSchema),
|
|
13619
13646
|
z.lazy(() => OneHundredAndTwelve$inboundSchema),
|
|
13620
13647
|
z.lazy(() => OneHundredAndThirteen$inboundSchema),
|
|
13621
13648
|
z.lazy(() => OneHundredAndFourteen$inboundSchema),
|
|
13622
|
-
z.lazy(() =>
|
|
13623
|
-
z.lazy(() =>
|
|
13624
|
-
z.lazy(() =>
|
|
13625
|
-
z.lazy(() =>
|
|
13626
|
-
z.lazy(() =>
|
|
13627
|
-
z.lazy(() =>
|
|
13649
|
+
z.lazy(() => OneHundredAndFifteen$inboundSchema),
|
|
13650
|
+
z.lazy(() => OneHundredAndEighteen$inboundSchema),
|
|
13651
|
+
z.lazy(() => OneHundredAndTwenty$inboundSchema),
|
|
13652
|
+
z.lazy(() => OneHundredAndThirtyFour$inboundSchema),
|
|
13653
|
+
z.lazy(() => OneHundredAndThirtyEight$inboundSchema),
|
|
13654
|
+
z.lazy(() => OneHundredAndFortyFour$inboundSchema),
|
|
13655
|
+
z.lazy(() => OneHundredAndFortyEight$inboundSchema),
|
|
13628
13656
|
z.lazy(() => Four$inboundSchema),
|
|
13629
13657
|
z.lazy(() => Fourteen$inboundSchema),
|
|
13630
13658
|
z.lazy(() => Seventeen$inboundSchema),
|
|
@@ -13643,29 +13671,29 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
13643
13671
|
z.lazy(() => SixtyNine$inboundSchema),
|
|
13644
13672
|
z.lazy(() => Seventy$inboundSchema),
|
|
13645
13673
|
z.lazy(() => SeventyOne$inboundSchema),
|
|
13646
|
-
z.lazy(() =>
|
|
13647
|
-
z.lazy(() => EightyOne$inboundSchema),
|
|
13674
|
+
z.lazy(() => SeventySeven$inboundSchema),
|
|
13648
13675
|
z.lazy(() => EightyTwo$inboundSchema),
|
|
13649
13676
|
z.lazy(() => EightyThree$inboundSchema),
|
|
13650
|
-
z.lazy(() =>
|
|
13651
|
-
z.lazy(() =>
|
|
13677
|
+
z.lazy(() => EightyFour$inboundSchema),
|
|
13678
|
+
z.lazy(() => EightySix$inboundSchema),
|
|
13652
13679
|
z.lazy(() => EightyNine$inboundSchema),
|
|
13653
|
-
z.lazy(() =>
|
|
13680
|
+
z.lazy(() => Ninety$inboundSchema),
|
|
13654
13681
|
z.lazy(() => NinetyThree$inboundSchema),
|
|
13655
|
-
z.lazy(() =>
|
|
13656
|
-
z.lazy(() =>
|
|
13657
|
-
z.lazy(() =>
|
|
13682
|
+
z.lazy(() => NinetyFour$inboundSchema),
|
|
13683
|
+
z.lazy(() => OneHundredAndThree$inboundSchema),
|
|
13684
|
+
z.lazy(() => OneHundredAndTen$inboundSchema),
|
|
13658
13685
|
z.lazy(() => OneHundredAndSixteen$inboundSchema),
|
|
13659
|
-
z.lazy(() =>
|
|
13660
|
-
z.lazy(() =>
|
|
13686
|
+
z.lazy(() => OneHundredAndSeventeen$inboundSchema),
|
|
13687
|
+
z.lazy(() => OneHundredAndNineteen$inboundSchema),
|
|
13661
13688
|
z.lazy(() => OneHundredAndTwentyTwo$inboundSchema),
|
|
13662
|
-
z.lazy(() =>
|
|
13689
|
+
z.lazy(() => OneHundredAndTwentyThree$inboundSchema),
|
|
13663
13690
|
z.lazy(() => OneHundredAndThirtyOne$inboundSchema),
|
|
13664
13691
|
z.lazy(() => OneHundredAndThirtyTwo$inboundSchema),
|
|
13665
|
-
z.lazy(() =>
|
|
13666
|
-
z.lazy(() =>
|
|
13692
|
+
z.lazy(() => OneHundredAndThirtyThree$inboundSchema),
|
|
13693
|
+
z.lazy(() => OneHundredAndFortyOne$inboundSchema),
|
|
13667
13694
|
z.lazy(() => OneHundredAndFortyFive$inboundSchema),
|
|
13668
13695
|
z.lazy(() => OneHundredAndFortySix$inboundSchema),
|
|
13696
|
+
z.lazy(() => OneHundredAndFortySeven$inboundSchema),
|
|
13669
13697
|
z.lazy(() => Five$inboundSchema),
|
|
13670
13698
|
z.lazy(() => Eight$inboundSchema),
|
|
13671
13699
|
z.lazy(() => Ten$inboundSchema),
|
|
@@ -13691,23 +13719,23 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
13691
13719
|
z.lazy(() => Sixty$inboundSchema),
|
|
13692
13720
|
z.lazy(() => SixtyOne$inboundSchema),
|
|
13693
13721
|
z.lazy(() => SeventyTwo$inboundSchema),
|
|
13694
|
-
z.lazy(() => SeventySeven$inboundSchema),
|
|
13695
13722
|
z.lazy(() => SeventyEight$inboundSchema),
|
|
13696
|
-
z.lazy(() =>
|
|
13697
|
-
z.lazy(() =>
|
|
13723
|
+
z.lazy(() => SeventyNine$inboundSchema),
|
|
13724
|
+
z.lazy(() => EightyOne$inboundSchema),
|
|
13698
13725
|
z.lazy(() => EightySeven$inboundSchema),
|
|
13699
|
-
z.lazy(() =>
|
|
13700
|
-
z.lazy(() =>
|
|
13701
|
-
z.lazy(() =>
|
|
13702
|
-
z.lazy(() =>
|
|
13703
|
-
z.lazy(() =>
|
|
13704
|
-
z.lazy(() =>
|
|
13705
|
-
z.lazy(() =>
|
|
13706
|
-
z.lazy(() =>
|
|
13707
|
-
z.lazy(() =>
|
|
13708
|
-
z.lazy(() =>
|
|
13709
|
-
z.lazy(() =>
|
|
13726
|
+
z.lazy(() => EightyEight$inboundSchema),
|
|
13727
|
+
z.lazy(() => NinetyTwo$inboundSchema),
|
|
13728
|
+
z.lazy(() => NinetyFive$inboundSchema),
|
|
13729
|
+
z.lazy(() => OneHundredAndEight$inboundSchema),
|
|
13730
|
+
z.lazy(() => OneHundredAndEleven$inboundSchema),
|
|
13731
|
+
z.lazy(() => OneHundredAndTwentyOne$inboundSchema),
|
|
13732
|
+
z.lazy(() => OneHundredAndTwentyEight$inboundSchema),
|
|
13733
|
+
z.lazy(() => OneHundredAndThirtyFive$inboundSchema),
|
|
13734
|
+
z.lazy(() => OneHundredAndThirtySeven$inboundSchema),
|
|
13735
|
+
z.lazy(() => OneHundredAndThirtyNine$inboundSchema),
|
|
13736
|
+
z.lazy(() => OneHundredAndFortyTwo$inboundSchema),
|
|
13710
13737
|
z.lazy(() => OneHundredAndFortyNine$inboundSchema),
|
|
13738
|
+
z.lazy(() => OneHundredAndFifty$inboundSchema),
|
|
13711
13739
|
z.lazy(() => Payload2$inboundSchema),
|
|
13712
13740
|
z.lazy(() => Six$inboundSchema),
|
|
13713
13741
|
z.lazy(() => Eleven$inboundSchema),
|
|
@@ -13716,36 +13744,36 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
13716
13744
|
z.lazy(() => Twenty$inboundSchema),
|
|
13717
13745
|
z.lazy(() => TwentyNine$inboundSchema),
|
|
13718
13746
|
z.lazy(() => FortySix$inboundSchema),
|
|
13719
|
-
z.lazy(() => SeventyFour$inboundSchema),
|
|
13720
13747
|
z.lazy(() => SeventyFive$inboundSchema),
|
|
13721
|
-
z.lazy(() =>
|
|
13722
|
-
z.lazy(() =>
|
|
13723
|
-
z.lazy(() =>
|
|
13748
|
+
z.lazy(() => SeventySix$inboundSchema),
|
|
13749
|
+
z.lazy(() => NinetySeven$inboundSchema),
|
|
13750
|
+
z.lazy(() => OneHundredAndFive$inboundSchema),
|
|
13724
13751
|
z.lazy(() => OneHundredAndTwentyNine$inboundSchema),
|
|
13725
|
-
z.lazy(() =>
|
|
13726
|
-
z.lazy(() =>
|
|
13727
|
-
z.lazy(() =>
|
|
13728
|
-
z.lazy(() =>
|
|
13752
|
+
z.lazy(() => OneHundredAndThirty$inboundSchema),
|
|
13753
|
+
z.lazy(() => OneHundredAndThirtySix$inboundSchema),
|
|
13754
|
+
z.lazy(() => OneHundredAndForty$inboundSchema),
|
|
13755
|
+
z.lazy(() => OneHundredAndFortyThree$inboundSchema),
|
|
13756
|
+
z.lazy(() => OneHundredAndFiftyOne$inboundSchema),
|
|
13729
13757
|
z.lazy(() => Thirty$inboundSchema),
|
|
13730
13758
|
z.lazy(() => FortyTwo$inboundSchema),
|
|
13731
13759
|
z.lazy(() => FiftyNine$inboundSchema),
|
|
13732
13760
|
z.lazy(() => SixtySix$inboundSchema),
|
|
13733
|
-
z.lazy(() =>
|
|
13734
|
-
z.lazy(() =>
|
|
13761
|
+
z.lazy(() => Eighty$inboundSchema),
|
|
13762
|
+
z.lazy(() => OneHundredAndNine$inboundSchema),
|
|
13735
13763
|
z.lazy(() => Forty$inboundSchema),
|
|
13736
13764
|
z.lazy(() => SixtyTwo$inboundSchema),
|
|
13737
13765
|
z.lazy(() => SixtyFive$inboundSchema),
|
|
13738
|
-
z.lazy(() =>
|
|
13739
|
-
z.lazy(() =>
|
|
13740
|
-
z.lazy(() => OneHundredAndTwentyFour$inboundSchema),
|
|
13766
|
+
z.lazy(() => OneHundredAndOne$inboundSchema),
|
|
13767
|
+
z.lazy(() => OneHundredAndSeven$inboundSchema),
|
|
13741
13768
|
z.lazy(() => OneHundredAndTwentyFive$inboundSchema),
|
|
13742
13769
|
z.lazy(() => OneHundredAndTwentySix$inboundSchema),
|
|
13743
|
-
z.lazy(() =>
|
|
13770
|
+
z.lazy(() => OneHundredAndTwentySeven$inboundSchema),
|
|
13771
|
+
z.lazy(() => OneHundredAndFiftyTwo$inboundSchema),
|
|
13744
13772
|
z.lazy(() => SixtyFour$inboundSchema),
|
|
13745
13773
|
z.lazy(() => SixtySeven$inboundSchema),
|
|
13746
|
-
z.lazy(() =>
|
|
13747
|
-
z.lazy(() =>
|
|
13748
|
-
z.lazy(() =>
|
|
13774
|
+
z.lazy(() => SeventyFour$inboundSchema),
|
|
13775
|
+
z.lazy(() => OneHundredAndSix$inboundSchema),
|
|
13776
|
+
z.lazy(() => OneHundredAndTwentyFour$inboundSchema),
|
|
13749
13777
|
z.lazy(() => FiftySix$inboundSchema),
|
|
13750
13778
|
z.lazy(() => Seven$inboundSchema),
|
|
13751
13779
|
z.lazy(() => ThirtySeven$inboundSchema),
|
|
@@ -13779,24 +13807,25 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
13779
13807
|
z.lazy(() => TwentyEight$outboundSchema),
|
|
13780
13808
|
z.lazy(() => ThirtyThree$outboundSchema),
|
|
13781
13809
|
z.lazy(() => FortyThree$outboundSchema),
|
|
13782
|
-
z.lazy(() =>
|
|
13783
|
-
z.lazy(() =>
|
|
13784
|
-
z.lazy(() =>
|
|
13785
|
-
z.lazy(() =>
|
|
13810
|
+
z.lazy(() => SeventyThree$outboundSchema),
|
|
13811
|
+
z.lazy(() => EightyFive$outboundSchema),
|
|
13812
|
+
z.lazy(() => NinetyOne$outboundSchema),
|
|
13813
|
+
z.lazy(() => NinetySix$outboundSchema),
|
|
13786
13814
|
z.lazy(() => NinetyEight$outboundSchema),
|
|
13787
13815
|
z.lazy(() => NinetyNine$outboundSchema),
|
|
13788
|
-
z.lazy(() =>
|
|
13789
|
-
z.lazy(() =>
|
|
13790
|
-
z.lazy(() =>
|
|
13816
|
+
z.lazy(() => OneHundred$outboundSchema),
|
|
13817
|
+
z.lazy(() => OneHundredAndTwo$outboundSchema),
|
|
13818
|
+
z.lazy(() => OneHundredAndFour$outboundSchema),
|
|
13791
13819
|
z.lazy(() => OneHundredAndTwelve$outboundSchema),
|
|
13792
13820
|
z.lazy(() => OneHundredAndThirteen$outboundSchema),
|
|
13793
13821
|
z.lazy(() => OneHundredAndFourteen$outboundSchema),
|
|
13794
|
-
z.lazy(() =>
|
|
13795
|
-
z.lazy(() =>
|
|
13796
|
-
z.lazy(() =>
|
|
13797
|
-
z.lazy(() =>
|
|
13798
|
-
z.lazy(() =>
|
|
13799
|
-
z.lazy(() =>
|
|
13822
|
+
z.lazy(() => OneHundredAndFifteen$outboundSchema),
|
|
13823
|
+
z.lazy(() => OneHundredAndEighteen$outboundSchema),
|
|
13824
|
+
z.lazy(() => OneHundredAndTwenty$outboundSchema),
|
|
13825
|
+
z.lazy(() => OneHundredAndThirtyFour$outboundSchema),
|
|
13826
|
+
z.lazy(() => OneHundredAndThirtyEight$outboundSchema),
|
|
13827
|
+
z.lazy(() => OneHundredAndFortyFour$outboundSchema),
|
|
13828
|
+
z.lazy(() => OneHundredAndFortyEight$outboundSchema),
|
|
13800
13829
|
z.lazy(() => Four$outboundSchema),
|
|
13801
13830
|
z.lazy(() => Fourteen$outboundSchema),
|
|
13802
13831
|
z.lazy(() => Seventeen$outboundSchema),
|
|
@@ -13815,29 +13844,29 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
13815
13844
|
z.lazy(() => SixtyNine$outboundSchema),
|
|
13816
13845
|
z.lazy(() => Seventy$outboundSchema),
|
|
13817
13846
|
z.lazy(() => SeventyOne$outboundSchema),
|
|
13818
|
-
z.lazy(() =>
|
|
13819
|
-
z.lazy(() => EightyOne$outboundSchema),
|
|
13847
|
+
z.lazy(() => SeventySeven$outboundSchema),
|
|
13820
13848
|
z.lazy(() => EightyTwo$outboundSchema),
|
|
13821
13849
|
z.lazy(() => EightyThree$outboundSchema),
|
|
13822
|
-
z.lazy(() =>
|
|
13823
|
-
z.lazy(() =>
|
|
13850
|
+
z.lazy(() => EightyFour$outboundSchema),
|
|
13851
|
+
z.lazy(() => EightySix$outboundSchema),
|
|
13824
13852
|
z.lazy(() => EightyNine$outboundSchema),
|
|
13825
|
-
z.lazy(() =>
|
|
13853
|
+
z.lazy(() => Ninety$outboundSchema),
|
|
13826
13854
|
z.lazy(() => NinetyThree$outboundSchema),
|
|
13827
|
-
z.lazy(() =>
|
|
13828
|
-
z.lazy(() =>
|
|
13829
|
-
z.lazy(() =>
|
|
13855
|
+
z.lazy(() => NinetyFour$outboundSchema),
|
|
13856
|
+
z.lazy(() => OneHundredAndThree$outboundSchema),
|
|
13857
|
+
z.lazy(() => OneHundredAndTen$outboundSchema),
|
|
13830
13858
|
z.lazy(() => OneHundredAndSixteen$outboundSchema),
|
|
13831
|
-
z.lazy(() =>
|
|
13832
|
-
z.lazy(() =>
|
|
13859
|
+
z.lazy(() => OneHundredAndSeventeen$outboundSchema),
|
|
13860
|
+
z.lazy(() => OneHundredAndNineteen$outboundSchema),
|
|
13833
13861
|
z.lazy(() => OneHundredAndTwentyTwo$outboundSchema),
|
|
13834
|
-
z.lazy(() =>
|
|
13862
|
+
z.lazy(() => OneHundredAndTwentyThree$outboundSchema),
|
|
13835
13863
|
z.lazy(() => OneHundredAndThirtyOne$outboundSchema),
|
|
13836
13864
|
z.lazy(() => OneHundredAndThirtyTwo$outboundSchema),
|
|
13837
|
-
z.lazy(() =>
|
|
13838
|
-
z.lazy(() =>
|
|
13865
|
+
z.lazy(() => OneHundredAndThirtyThree$outboundSchema),
|
|
13866
|
+
z.lazy(() => OneHundredAndFortyOne$outboundSchema),
|
|
13839
13867
|
z.lazy(() => OneHundredAndFortyFive$outboundSchema),
|
|
13840
13868
|
z.lazy(() => OneHundredAndFortySix$outboundSchema),
|
|
13869
|
+
z.lazy(() => OneHundredAndFortySeven$outboundSchema),
|
|
13841
13870
|
z.lazy(() => Five$outboundSchema),
|
|
13842
13871
|
z.lazy(() => Eight$outboundSchema),
|
|
13843
13872
|
z.lazy(() => Ten$outboundSchema),
|
|
@@ -13863,23 +13892,23 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
13863
13892
|
z.lazy(() => Sixty$outboundSchema),
|
|
13864
13893
|
z.lazy(() => SixtyOne$outboundSchema),
|
|
13865
13894
|
z.lazy(() => SeventyTwo$outboundSchema),
|
|
13866
|
-
z.lazy(() => SeventySeven$outboundSchema),
|
|
13867
13895
|
z.lazy(() => SeventyEight$outboundSchema),
|
|
13868
|
-
z.lazy(() =>
|
|
13869
|
-
z.lazy(() =>
|
|
13896
|
+
z.lazy(() => SeventyNine$outboundSchema),
|
|
13897
|
+
z.lazy(() => EightyOne$outboundSchema),
|
|
13870
13898
|
z.lazy(() => EightySeven$outboundSchema),
|
|
13871
|
-
z.lazy(() =>
|
|
13872
|
-
z.lazy(() =>
|
|
13873
|
-
z.lazy(() =>
|
|
13874
|
-
z.lazy(() =>
|
|
13875
|
-
z.lazy(() =>
|
|
13876
|
-
z.lazy(() =>
|
|
13877
|
-
z.lazy(() =>
|
|
13878
|
-
z.lazy(() =>
|
|
13879
|
-
z.lazy(() =>
|
|
13880
|
-
z.lazy(() =>
|
|
13881
|
-
z.lazy(() =>
|
|
13899
|
+
z.lazy(() => EightyEight$outboundSchema),
|
|
13900
|
+
z.lazy(() => NinetyTwo$outboundSchema),
|
|
13901
|
+
z.lazy(() => NinetyFive$outboundSchema),
|
|
13902
|
+
z.lazy(() => OneHundredAndEight$outboundSchema),
|
|
13903
|
+
z.lazy(() => OneHundredAndEleven$outboundSchema),
|
|
13904
|
+
z.lazy(() => OneHundredAndTwentyOne$outboundSchema),
|
|
13905
|
+
z.lazy(() => OneHundredAndTwentyEight$outboundSchema),
|
|
13906
|
+
z.lazy(() => OneHundredAndThirtyFive$outboundSchema),
|
|
13907
|
+
z.lazy(() => OneHundredAndThirtySeven$outboundSchema),
|
|
13908
|
+
z.lazy(() => OneHundredAndThirtyNine$outboundSchema),
|
|
13909
|
+
z.lazy(() => OneHundredAndFortyTwo$outboundSchema),
|
|
13882
13910
|
z.lazy(() => OneHundredAndFortyNine$outboundSchema),
|
|
13911
|
+
z.lazy(() => OneHundredAndFifty$outboundSchema),
|
|
13883
13912
|
z.lazy(() => Payload2$outboundSchema),
|
|
13884
13913
|
z.lazy(() => Six$outboundSchema),
|
|
13885
13914
|
z.lazy(() => Eleven$outboundSchema),
|
|
@@ -13888,36 +13917,36 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
13888
13917
|
z.lazy(() => Twenty$outboundSchema),
|
|
13889
13918
|
z.lazy(() => TwentyNine$outboundSchema),
|
|
13890
13919
|
z.lazy(() => FortySix$outboundSchema),
|
|
13891
|
-
z.lazy(() => SeventyFour$outboundSchema),
|
|
13892
13920
|
z.lazy(() => SeventyFive$outboundSchema),
|
|
13893
|
-
z.lazy(() =>
|
|
13894
|
-
z.lazy(() =>
|
|
13895
|
-
z.lazy(() =>
|
|
13921
|
+
z.lazy(() => SeventySix$outboundSchema),
|
|
13922
|
+
z.lazy(() => NinetySeven$outboundSchema),
|
|
13923
|
+
z.lazy(() => OneHundredAndFive$outboundSchema),
|
|
13896
13924
|
z.lazy(() => OneHundredAndTwentyNine$outboundSchema),
|
|
13897
|
-
z.lazy(() =>
|
|
13898
|
-
z.lazy(() =>
|
|
13899
|
-
z.lazy(() =>
|
|
13900
|
-
z.lazy(() =>
|
|
13925
|
+
z.lazy(() => OneHundredAndThirty$outboundSchema),
|
|
13926
|
+
z.lazy(() => OneHundredAndThirtySix$outboundSchema),
|
|
13927
|
+
z.lazy(() => OneHundredAndForty$outboundSchema),
|
|
13928
|
+
z.lazy(() => OneHundredAndFortyThree$outboundSchema),
|
|
13929
|
+
z.lazy(() => OneHundredAndFiftyOne$outboundSchema),
|
|
13901
13930
|
z.lazy(() => Thirty$outboundSchema),
|
|
13902
13931
|
z.lazy(() => FortyTwo$outboundSchema),
|
|
13903
13932
|
z.lazy(() => FiftyNine$outboundSchema),
|
|
13904
13933
|
z.lazy(() => SixtySix$outboundSchema),
|
|
13905
|
-
z.lazy(() =>
|
|
13906
|
-
z.lazy(() =>
|
|
13934
|
+
z.lazy(() => Eighty$outboundSchema),
|
|
13935
|
+
z.lazy(() => OneHundredAndNine$outboundSchema),
|
|
13907
13936
|
z.lazy(() => Forty$outboundSchema),
|
|
13908
13937
|
z.lazy(() => SixtyTwo$outboundSchema),
|
|
13909
13938
|
z.lazy(() => SixtyFive$outboundSchema),
|
|
13910
|
-
z.lazy(() =>
|
|
13911
|
-
z.lazy(() =>
|
|
13912
|
-
z.lazy(() => OneHundredAndTwentyFour$outboundSchema),
|
|
13939
|
+
z.lazy(() => OneHundredAndOne$outboundSchema),
|
|
13940
|
+
z.lazy(() => OneHundredAndSeven$outboundSchema),
|
|
13913
13941
|
z.lazy(() => OneHundredAndTwentyFive$outboundSchema),
|
|
13914
13942
|
z.lazy(() => OneHundredAndTwentySix$outboundSchema),
|
|
13915
|
-
z.lazy(() =>
|
|
13943
|
+
z.lazy(() => OneHundredAndTwentySeven$outboundSchema),
|
|
13944
|
+
z.lazy(() => OneHundredAndFiftyTwo$outboundSchema),
|
|
13916
13945
|
z.lazy(() => SixtyFour$outboundSchema),
|
|
13917
13946
|
z.lazy(() => SixtySeven$outboundSchema),
|
|
13918
|
-
z.lazy(() =>
|
|
13919
|
-
z.lazy(() =>
|
|
13920
|
-
z.lazy(() =>
|
|
13947
|
+
z.lazy(() => SeventyFour$outboundSchema),
|
|
13948
|
+
z.lazy(() => OneHundredAndSix$outboundSchema),
|
|
13949
|
+
z.lazy(() => OneHundredAndTwentyFour$outboundSchema),
|
|
13921
13950
|
z.lazy(() => FiftySix$outboundSchema),
|
|
13922
13951
|
z.lazy(() => Seven$outboundSchema),
|
|
13923
13952
|
z.lazy(() => ThirtySeven$outboundSchema),
|