@replit/river 0.8.1 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__tests__/e2e.test.js +64 -1
- package/dist/__tests__/fixtures/cleanup.js +1 -1
- package/dist/__tests__/fixtures/services.d.ts +69 -0
- package/dist/__tests__/fixtures/services.d.ts.map +1 -1
- package/dist/__tests__/fixtures/services.js +51 -0
- package/dist/__tests__/handler.test.js +35 -2
- package/dist/__tests__/invariants.test.js +12 -12
- package/dist/__tests__/serialize.test.js +39 -0
- package/dist/__tests__/typescript-stress.test.d.ts +392 -196
- package/dist/__tests__/typescript-stress.test.d.ts.map +1 -1
- package/dist/__tests__/typescript-stress.test.js +13 -3
- package/dist/router/builder.d.ts +49 -11
- package/dist/router/builder.d.ts.map +1 -1
- package/dist/router/builder.js +8 -2
- package/dist/router/client.d.ts +18 -2
- package/dist/router/client.d.ts.map +1 -1
- package/dist/router/client.js +37 -5
- package/dist/router/index.d.ts +1 -1
- package/dist/router/index.d.ts.map +1 -1
- package/dist/router/server.d.ts +3 -3
- package/dist/router/server.d.ts.map +1 -1
- package/dist/router/server.js +48 -6
- package/dist/transport/events.d.ts +19 -0
- package/dist/transport/events.d.ts.map +1 -0
- package/dist/transport/events.js +26 -0
- package/dist/transport/index.js +2 -2
- package/dist/transport/transport.d.ts +11 -8
- package/dist/transport/transport.d.ts.map +1 -1
- package/dist/transport/transport.js +23 -14
- package/dist/util/testHelpers.d.ts +58 -7
- package/dist/util/testHelpers.d.ts.map +1 -1
- package/dist/util/testHelpers.js +133 -3
- package/package.json +12 -13
|
@@ -5,11 +5,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
5
5
|
state: {};
|
|
6
6
|
procedures: {
|
|
7
7
|
f1: {
|
|
8
|
-
input: import("@sinclair/typebox").TObject<{
|
|
8
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
9
9
|
a: import("@sinclair/typebox").TNumber;
|
|
10
|
-
}
|
|
10
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
11
|
+
c: import("@sinclair/typebox").TString;
|
|
12
|
+
}>]>;
|
|
11
13
|
output: import("@sinclair/typebox").TObject<{
|
|
12
|
-
b: import("@sinclair/typebox").TNumber
|
|
14
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
13
15
|
}>;
|
|
14
16
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
15
17
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -20,8 +22,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
20
22
|
}>]>;
|
|
21
23
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
22
24
|
a: number;
|
|
25
|
+
} | {
|
|
26
|
+
c: string;
|
|
23
27
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
24
|
-
b: number;
|
|
28
|
+
b: string | number;
|
|
25
29
|
}, {
|
|
26
30
|
message: string;
|
|
27
31
|
code: "ERROR1";
|
|
@@ -33,11 +37,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
33
37
|
};
|
|
34
38
|
} & {
|
|
35
39
|
f2: {
|
|
36
|
-
input: import("@sinclair/typebox").TObject<{
|
|
40
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
37
41
|
a: import("@sinclair/typebox").TNumber;
|
|
38
|
-
}
|
|
42
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
43
|
+
c: import("@sinclair/typebox").TString;
|
|
44
|
+
}>]>;
|
|
39
45
|
output: import("@sinclair/typebox").TObject<{
|
|
40
|
-
b: import("@sinclair/typebox").TNumber
|
|
46
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
41
47
|
}>;
|
|
42
48
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
43
49
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -48,8 +54,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
48
54
|
}>]>;
|
|
49
55
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
50
56
|
a: number;
|
|
57
|
+
} | {
|
|
58
|
+
c: string;
|
|
51
59
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
52
|
-
b: number;
|
|
60
|
+
b: string | number;
|
|
53
61
|
}, {
|
|
54
62
|
message: string;
|
|
55
63
|
code: "ERROR1";
|
|
@@ -61,11 +69,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
61
69
|
};
|
|
62
70
|
} & {
|
|
63
71
|
f3: {
|
|
64
|
-
input: import("@sinclair/typebox").TObject<{
|
|
72
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
65
73
|
a: import("@sinclair/typebox").TNumber;
|
|
66
|
-
}
|
|
74
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
75
|
+
c: import("@sinclair/typebox").TString;
|
|
76
|
+
}>]>;
|
|
67
77
|
output: import("@sinclair/typebox").TObject<{
|
|
68
|
-
b: import("@sinclair/typebox").TNumber
|
|
78
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
69
79
|
}>;
|
|
70
80
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
71
81
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -76,8 +86,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
76
86
|
}>]>;
|
|
77
87
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
78
88
|
a: number;
|
|
89
|
+
} | {
|
|
90
|
+
c: string;
|
|
79
91
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
80
|
-
b: number;
|
|
92
|
+
b: string | number;
|
|
81
93
|
}, {
|
|
82
94
|
message: string;
|
|
83
95
|
code: "ERROR1";
|
|
@@ -89,11 +101,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
89
101
|
};
|
|
90
102
|
} & {
|
|
91
103
|
f4: {
|
|
92
|
-
input: import("@sinclair/typebox").TObject<{
|
|
104
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
93
105
|
a: import("@sinclair/typebox").TNumber;
|
|
94
|
-
}
|
|
106
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
107
|
+
c: import("@sinclair/typebox").TString;
|
|
108
|
+
}>]>;
|
|
95
109
|
output: import("@sinclair/typebox").TObject<{
|
|
96
|
-
b: import("@sinclair/typebox").TNumber
|
|
110
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
97
111
|
}>;
|
|
98
112
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
99
113
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -104,8 +118,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
104
118
|
}>]>;
|
|
105
119
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
106
120
|
a: number;
|
|
121
|
+
} | {
|
|
122
|
+
c: string;
|
|
107
123
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
108
|
-
b: number;
|
|
124
|
+
b: string | number;
|
|
109
125
|
}, {
|
|
110
126
|
message: string;
|
|
111
127
|
code: "ERROR1";
|
|
@@ -117,11 +133,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
117
133
|
};
|
|
118
134
|
} & {
|
|
119
135
|
f5: {
|
|
120
|
-
input: import("@sinclair/typebox").TObject<{
|
|
136
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
121
137
|
a: import("@sinclair/typebox").TNumber;
|
|
122
|
-
}
|
|
138
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
139
|
+
c: import("@sinclair/typebox").TString;
|
|
140
|
+
}>]>;
|
|
123
141
|
output: import("@sinclair/typebox").TObject<{
|
|
124
|
-
b: import("@sinclair/typebox").TNumber
|
|
142
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
125
143
|
}>;
|
|
126
144
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
127
145
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -132,8 +150,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
132
150
|
}>]>;
|
|
133
151
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
134
152
|
a: number;
|
|
153
|
+
} | {
|
|
154
|
+
c: string;
|
|
135
155
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
136
|
-
b: number;
|
|
156
|
+
b: string | number;
|
|
137
157
|
}, {
|
|
138
158
|
message: string;
|
|
139
159
|
code: "ERROR1";
|
|
@@ -145,11 +165,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
145
165
|
};
|
|
146
166
|
} & {
|
|
147
167
|
f6: {
|
|
148
|
-
input: import("@sinclair/typebox").TObject<{
|
|
168
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
149
169
|
a: import("@sinclair/typebox").TNumber;
|
|
150
|
-
}
|
|
170
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
171
|
+
c: import("@sinclair/typebox").TString;
|
|
172
|
+
}>]>;
|
|
151
173
|
output: import("@sinclair/typebox").TObject<{
|
|
152
|
-
b: import("@sinclair/typebox").TNumber
|
|
174
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
153
175
|
}>;
|
|
154
176
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
155
177
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -160,8 +182,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
160
182
|
}>]>;
|
|
161
183
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
162
184
|
a: number;
|
|
185
|
+
} | {
|
|
186
|
+
c: string;
|
|
163
187
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
164
|
-
b: number;
|
|
188
|
+
b: string | number;
|
|
165
189
|
}, {
|
|
166
190
|
message: string;
|
|
167
191
|
code: "ERROR1";
|
|
@@ -173,11 +197,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
173
197
|
};
|
|
174
198
|
} & {
|
|
175
199
|
f7: {
|
|
176
|
-
input: import("@sinclair/typebox").TObject<{
|
|
200
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
177
201
|
a: import("@sinclair/typebox").TNumber;
|
|
178
|
-
}
|
|
202
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
203
|
+
c: import("@sinclair/typebox").TString;
|
|
204
|
+
}>]>;
|
|
179
205
|
output: import("@sinclair/typebox").TObject<{
|
|
180
|
-
b: import("@sinclair/typebox").TNumber
|
|
206
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
181
207
|
}>;
|
|
182
208
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
183
209
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -188,8 +214,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
188
214
|
}>]>;
|
|
189
215
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
190
216
|
a: number;
|
|
217
|
+
} | {
|
|
218
|
+
c: string;
|
|
191
219
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
192
|
-
b: number;
|
|
220
|
+
b: string | number;
|
|
193
221
|
}, {
|
|
194
222
|
message: string;
|
|
195
223
|
code: "ERROR1";
|
|
@@ -201,11 +229,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
201
229
|
};
|
|
202
230
|
} & {
|
|
203
231
|
f8: {
|
|
204
|
-
input: import("@sinclair/typebox").TObject<{
|
|
232
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
205
233
|
a: import("@sinclair/typebox").TNumber;
|
|
206
|
-
}
|
|
234
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
235
|
+
c: import("@sinclair/typebox").TString;
|
|
236
|
+
}>]>;
|
|
207
237
|
output: import("@sinclair/typebox").TObject<{
|
|
208
|
-
b: import("@sinclair/typebox").TNumber
|
|
238
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
209
239
|
}>;
|
|
210
240
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
211
241
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -216,8 +246,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
216
246
|
}>]>;
|
|
217
247
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
218
248
|
a: number;
|
|
249
|
+
} | {
|
|
250
|
+
c: string;
|
|
219
251
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
220
|
-
b: number;
|
|
252
|
+
b: string | number;
|
|
221
253
|
}, {
|
|
222
254
|
message: string;
|
|
223
255
|
code: "ERROR1";
|
|
@@ -229,11 +261,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
229
261
|
};
|
|
230
262
|
} & {
|
|
231
263
|
f9: {
|
|
232
|
-
input: import("@sinclair/typebox").TObject<{
|
|
264
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
233
265
|
a: import("@sinclair/typebox").TNumber;
|
|
234
|
-
}
|
|
266
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
267
|
+
c: import("@sinclair/typebox").TString;
|
|
268
|
+
}>]>;
|
|
235
269
|
output: import("@sinclair/typebox").TObject<{
|
|
236
|
-
b: import("@sinclair/typebox").TNumber
|
|
270
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
237
271
|
}>;
|
|
238
272
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
239
273
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -244,8 +278,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
244
278
|
}>]>;
|
|
245
279
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
246
280
|
a: number;
|
|
281
|
+
} | {
|
|
282
|
+
c: string;
|
|
247
283
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
248
|
-
b: number;
|
|
284
|
+
b: string | number;
|
|
249
285
|
}, {
|
|
250
286
|
message: string;
|
|
251
287
|
code: "ERROR1";
|
|
@@ -257,11 +293,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
257
293
|
};
|
|
258
294
|
} & {
|
|
259
295
|
f10: {
|
|
260
|
-
input: import("@sinclair/typebox").TObject<{
|
|
296
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
261
297
|
a: import("@sinclair/typebox").TNumber;
|
|
262
|
-
}
|
|
298
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
299
|
+
c: import("@sinclair/typebox").TString;
|
|
300
|
+
}>]>;
|
|
263
301
|
output: import("@sinclair/typebox").TObject<{
|
|
264
|
-
b: import("@sinclair/typebox").TNumber
|
|
302
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
265
303
|
}>;
|
|
266
304
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
267
305
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -272,8 +310,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
272
310
|
}>]>;
|
|
273
311
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
274
312
|
a: number;
|
|
313
|
+
} | {
|
|
314
|
+
c: string;
|
|
275
315
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
276
|
-
b: number;
|
|
316
|
+
b: string | number;
|
|
277
317
|
}, {
|
|
278
318
|
message: string;
|
|
279
319
|
code: "ERROR1";
|
|
@@ -285,11 +325,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
285
325
|
};
|
|
286
326
|
} & {
|
|
287
327
|
f11: {
|
|
288
|
-
input: import("@sinclair/typebox").TObject<{
|
|
328
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
289
329
|
a: import("@sinclair/typebox").TNumber;
|
|
290
|
-
}
|
|
330
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
331
|
+
c: import("@sinclair/typebox").TString;
|
|
332
|
+
}>]>;
|
|
291
333
|
output: import("@sinclair/typebox").TObject<{
|
|
292
|
-
b: import("@sinclair/typebox").TNumber
|
|
334
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
293
335
|
}>;
|
|
294
336
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
295
337
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -300,8 +342,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
300
342
|
}>]>;
|
|
301
343
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
302
344
|
a: number;
|
|
345
|
+
} | {
|
|
346
|
+
c: string;
|
|
303
347
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
304
|
-
b: number;
|
|
348
|
+
b: string | number;
|
|
305
349
|
}, {
|
|
306
350
|
message: string;
|
|
307
351
|
code: "ERROR1";
|
|
@@ -313,11 +357,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
313
357
|
};
|
|
314
358
|
} & {
|
|
315
359
|
f12: {
|
|
316
|
-
input: import("@sinclair/typebox").TObject<{
|
|
360
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
317
361
|
a: import("@sinclair/typebox").TNumber;
|
|
318
|
-
}
|
|
362
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
363
|
+
c: import("@sinclair/typebox").TString;
|
|
364
|
+
}>]>;
|
|
319
365
|
output: import("@sinclair/typebox").TObject<{
|
|
320
|
-
b: import("@sinclair/typebox").TNumber
|
|
366
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
321
367
|
}>;
|
|
322
368
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
323
369
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -328,8 +374,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
328
374
|
}>]>;
|
|
329
375
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
330
376
|
a: number;
|
|
377
|
+
} | {
|
|
378
|
+
c: string;
|
|
331
379
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
332
|
-
b: number;
|
|
380
|
+
b: string | number;
|
|
333
381
|
}, {
|
|
334
382
|
message: string;
|
|
335
383
|
code: "ERROR1";
|
|
@@ -341,11 +389,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
341
389
|
};
|
|
342
390
|
} & {
|
|
343
391
|
f13: {
|
|
344
|
-
input: import("@sinclair/typebox").TObject<{
|
|
392
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
345
393
|
a: import("@sinclair/typebox").TNumber;
|
|
346
|
-
}
|
|
394
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
395
|
+
c: import("@sinclair/typebox").TString;
|
|
396
|
+
}>]>;
|
|
347
397
|
output: import("@sinclair/typebox").TObject<{
|
|
348
|
-
b: import("@sinclair/typebox").TNumber
|
|
398
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
349
399
|
}>;
|
|
350
400
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
351
401
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -356,8 +406,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
356
406
|
}>]>;
|
|
357
407
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
358
408
|
a: number;
|
|
409
|
+
} | {
|
|
410
|
+
c: string;
|
|
359
411
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
360
|
-
b: number;
|
|
412
|
+
b: string | number;
|
|
361
413
|
}, {
|
|
362
414
|
message: string;
|
|
363
415
|
code: "ERROR1";
|
|
@@ -369,11 +421,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
369
421
|
};
|
|
370
422
|
} & {
|
|
371
423
|
f14: {
|
|
372
|
-
input: import("@sinclair/typebox").TObject<{
|
|
424
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
373
425
|
a: import("@sinclair/typebox").TNumber;
|
|
374
|
-
}
|
|
426
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
427
|
+
c: import("@sinclair/typebox").TString;
|
|
428
|
+
}>]>;
|
|
375
429
|
output: import("@sinclair/typebox").TObject<{
|
|
376
|
-
b: import("@sinclair/typebox").TNumber
|
|
430
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
377
431
|
}>;
|
|
378
432
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
379
433
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -384,8 +438,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
384
438
|
}>]>;
|
|
385
439
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
386
440
|
a: number;
|
|
441
|
+
} | {
|
|
442
|
+
c: string;
|
|
387
443
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
388
|
-
b: number;
|
|
444
|
+
b: string | number;
|
|
389
445
|
}, {
|
|
390
446
|
message: string;
|
|
391
447
|
code: "ERROR1";
|
|
@@ -397,11 +453,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
397
453
|
};
|
|
398
454
|
} & {
|
|
399
455
|
f15: {
|
|
400
|
-
input: import("@sinclair/typebox").TObject<{
|
|
456
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
401
457
|
a: import("@sinclair/typebox").TNumber;
|
|
402
|
-
}
|
|
458
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
459
|
+
c: import("@sinclair/typebox").TString;
|
|
460
|
+
}>]>;
|
|
403
461
|
output: import("@sinclair/typebox").TObject<{
|
|
404
|
-
b: import("@sinclair/typebox").TNumber
|
|
462
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
405
463
|
}>;
|
|
406
464
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
407
465
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -412,8 +470,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
412
470
|
}>]>;
|
|
413
471
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
414
472
|
a: number;
|
|
473
|
+
} | {
|
|
474
|
+
c: string;
|
|
415
475
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
416
|
-
b: number;
|
|
476
|
+
b: string | number;
|
|
417
477
|
}, {
|
|
418
478
|
message: string;
|
|
419
479
|
code: "ERROR1";
|
|
@@ -425,11 +485,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
425
485
|
};
|
|
426
486
|
} & {
|
|
427
487
|
f16: {
|
|
428
|
-
input: import("@sinclair/typebox").TObject<{
|
|
488
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
429
489
|
a: import("@sinclair/typebox").TNumber;
|
|
430
|
-
}
|
|
490
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
491
|
+
c: import("@sinclair/typebox").TString;
|
|
492
|
+
}>]>;
|
|
431
493
|
output: import("@sinclair/typebox").TObject<{
|
|
432
|
-
b: import("@sinclair/typebox").TNumber
|
|
494
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
433
495
|
}>;
|
|
434
496
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
435
497
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -440,8 +502,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
440
502
|
}>]>;
|
|
441
503
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
442
504
|
a: number;
|
|
505
|
+
} | {
|
|
506
|
+
c: string;
|
|
443
507
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
444
|
-
b: number;
|
|
508
|
+
b: string | number;
|
|
445
509
|
}, {
|
|
446
510
|
message: string;
|
|
447
511
|
code: "ERROR1";
|
|
@@ -453,11 +517,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
453
517
|
};
|
|
454
518
|
} & {
|
|
455
519
|
f17: {
|
|
456
|
-
input: import("@sinclair/typebox").TObject<{
|
|
520
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
457
521
|
a: import("@sinclair/typebox").TNumber;
|
|
458
|
-
}
|
|
522
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
523
|
+
c: import("@sinclair/typebox").TString;
|
|
524
|
+
}>]>;
|
|
459
525
|
output: import("@sinclair/typebox").TObject<{
|
|
460
|
-
b: import("@sinclair/typebox").TNumber
|
|
526
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
461
527
|
}>;
|
|
462
528
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
463
529
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -468,8 +534,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
468
534
|
}>]>;
|
|
469
535
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
470
536
|
a: number;
|
|
537
|
+
} | {
|
|
538
|
+
c: string;
|
|
471
539
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
472
|
-
b: number;
|
|
540
|
+
b: string | number;
|
|
473
541
|
}, {
|
|
474
542
|
message: string;
|
|
475
543
|
code: "ERROR1";
|
|
@@ -481,11 +549,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
481
549
|
};
|
|
482
550
|
} & {
|
|
483
551
|
f18: {
|
|
484
|
-
input: import("@sinclair/typebox").TObject<{
|
|
552
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
485
553
|
a: import("@sinclair/typebox").TNumber;
|
|
486
|
-
}
|
|
554
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
555
|
+
c: import("@sinclair/typebox").TString;
|
|
556
|
+
}>]>;
|
|
487
557
|
output: import("@sinclair/typebox").TObject<{
|
|
488
|
-
b: import("@sinclair/typebox").TNumber
|
|
558
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
489
559
|
}>;
|
|
490
560
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
491
561
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -496,8 +566,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
496
566
|
}>]>;
|
|
497
567
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
498
568
|
a: number;
|
|
569
|
+
} | {
|
|
570
|
+
c: string;
|
|
499
571
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
500
|
-
b: number;
|
|
572
|
+
b: string | number;
|
|
501
573
|
}, {
|
|
502
574
|
message: string;
|
|
503
575
|
code: "ERROR1";
|
|
@@ -509,11 +581,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
509
581
|
};
|
|
510
582
|
} & {
|
|
511
583
|
f19: {
|
|
512
|
-
input: import("@sinclair/typebox").TObject<{
|
|
584
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
513
585
|
a: import("@sinclair/typebox").TNumber;
|
|
514
|
-
}
|
|
586
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
587
|
+
c: import("@sinclair/typebox").TString;
|
|
588
|
+
}>]>;
|
|
515
589
|
output: import("@sinclair/typebox").TObject<{
|
|
516
|
-
b: import("@sinclair/typebox").TNumber
|
|
590
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
517
591
|
}>;
|
|
518
592
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
519
593
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -524,8 +598,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
524
598
|
}>]>;
|
|
525
599
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
526
600
|
a: number;
|
|
601
|
+
} | {
|
|
602
|
+
c: string;
|
|
527
603
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
528
|
-
b: number;
|
|
604
|
+
b: string | number;
|
|
529
605
|
}, {
|
|
530
606
|
message: string;
|
|
531
607
|
code: "ERROR1";
|
|
@@ -537,11 +613,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
537
613
|
};
|
|
538
614
|
} & {
|
|
539
615
|
f20: {
|
|
540
|
-
input: import("@sinclair/typebox").TObject<{
|
|
616
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
541
617
|
a: import("@sinclair/typebox").TNumber;
|
|
542
|
-
}
|
|
618
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
619
|
+
c: import("@sinclair/typebox").TString;
|
|
620
|
+
}>]>;
|
|
543
621
|
output: import("@sinclair/typebox").TObject<{
|
|
544
|
-
b: import("@sinclair/typebox").TNumber
|
|
622
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
545
623
|
}>;
|
|
546
624
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
547
625
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -552,8 +630,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
552
630
|
}>]>;
|
|
553
631
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
554
632
|
a: number;
|
|
633
|
+
} | {
|
|
634
|
+
c: string;
|
|
555
635
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
556
|
-
b: number;
|
|
636
|
+
b: string | number;
|
|
557
637
|
}, {
|
|
558
638
|
message: string;
|
|
559
639
|
code: "ERROR1";
|
|
@@ -565,11 +645,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
565
645
|
};
|
|
566
646
|
} & {
|
|
567
647
|
f21: {
|
|
568
|
-
input: import("@sinclair/typebox").TObject<{
|
|
648
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
569
649
|
a: import("@sinclair/typebox").TNumber;
|
|
570
|
-
}
|
|
650
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
651
|
+
c: import("@sinclair/typebox").TString;
|
|
652
|
+
}>]>;
|
|
571
653
|
output: import("@sinclair/typebox").TObject<{
|
|
572
|
-
b: import("@sinclair/typebox").TNumber
|
|
654
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
573
655
|
}>;
|
|
574
656
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
575
657
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -580,8 +662,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
580
662
|
}>]>;
|
|
581
663
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
582
664
|
a: number;
|
|
665
|
+
} | {
|
|
666
|
+
c: string;
|
|
583
667
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
584
|
-
b: number;
|
|
668
|
+
b: string | number;
|
|
585
669
|
}, {
|
|
586
670
|
message: string;
|
|
587
671
|
code: "ERROR1";
|
|
@@ -593,11 +677,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
593
677
|
};
|
|
594
678
|
} & {
|
|
595
679
|
f22: {
|
|
596
|
-
input: import("@sinclair/typebox").TObject<{
|
|
680
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
597
681
|
a: import("@sinclair/typebox").TNumber;
|
|
598
|
-
}
|
|
682
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
683
|
+
c: import("@sinclair/typebox").TString;
|
|
684
|
+
}>]>;
|
|
599
685
|
output: import("@sinclair/typebox").TObject<{
|
|
600
|
-
b: import("@sinclair/typebox").TNumber
|
|
686
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
601
687
|
}>;
|
|
602
688
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
603
689
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -608,8 +694,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
608
694
|
}>]>;
|
|
609
695
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
610
696
|
a: number;
|
|
697
|
+
} | {
|
|
698
|
+
c: string;
|
|
611
699
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
612
|
-
b: number;
|
|
700
|
+
b: string | number;
|
|
613
701
|
}, {
|
|
614
702
|
message: string;
|
|
615
703
|
code: "ERROR1";
|
|
@@ -621,11 +709,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
621
709
|
};
|
|
622
710
|
} & {
|
|
623
711
|
f23: {
|
|
624
|
-
input: import("@sinclair/typebox").TObject<{
|
|
712
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
625
713
|
a: import("@sinclair/typebox").TNumber;
|
|
626
|
-
}
|
|
714
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
715
|
+
c: import("@sinclair/typebox").TString;
|
|
716
|
+
}>]>;
|
|
627
717
|
output: import("@sinclair/typebox").TObject<{
|
|
628
|
-
b: import("@sinclair/typebox").TNumber
|
|
718
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
629
719
|
}>;
|
|
630
720
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
631
721
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -636,8 +726,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
636
726
|
}>]>;
|
|
637
727
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
638
728
|
a: number;
|
|
729
|
+
} | {
|
|
730
|
+
c: string;
|
|
639
731
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
640
|
-
b: number;
|
|
732
|
+
b: string | number;
|
|
641
733
|
}, {
|
|
642
734
|
message: string;
|
|
643
735
|
code: "ERROR1";
|
|
@@ -649,11 +741,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
649
741
|
};
|
|
650
742
|
} & {
|
|
651
743
|
f24: {
|
|
652
|
-
input: import("@sinclair/typebox").TObject<{
|
|
744
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
653
745
|
a: import("@sinclair/typebox").TNumber;
|
|
654
|
-
}
|
|
746
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
747
|
+
c: import("@sinclair/typebox").TString;
|
|
748
|
+
}>]>;
|
|
655
749
|
output: import("@sinclair/typebox").TObject<{
|
|
656
|
-
b: import("@sinclair/typebox").TNumber
|
|
750
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
657
751
|
}>;
|
|
658
752
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
659
753
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -664,8 +758,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
664
758
|
}>]>;
|
|
665
759
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
666
760
|
a: number;
|
|
761
|
+
} | {
|
|
762
|
+
c: string;
|
|
667
763
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
668
|
-
b: number;
|
|
764
|
+
b: string | number;
|
|
669
765
|
}, {
|
|
670
766
|
message: string;
|
|
671
767
|
code: "ERROR1";
|
|
@@ -677,11 +773,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
677
773
|
};
|
|
678
774
|
} & {
|
|
679
775
|
f25: {
|
|
680
|
-
input: import("@sinclair/typebox").TObject<{
|
|
776
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
681
777
|
a: import("@sinclair/typebox").TNumber;
|
|
682
|
-
}
|
|
778
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
779
|
+
c: import("@sinclair/typebox").TString;
|
|
780
|
+
}>]>;
|
|
683
781
|
output: import("@sinclair/typebox").TObject<{
|
|
684
|
-
b: import("@sinclair/typebox").TNumber
|
|
782
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
685
783
|
}>;
|
|
686
784
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
687
785
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -692,8 +790,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
692
790
|
}>]>;
|
|
693
791
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
694
792
|
a: number;
|
|
793
|
+
} | {
|
|
794
|
+
c: string;
|
|
695
795
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
696
|
-
b: number;
|
|
796
|
+
b: string | number;
|
|
697
797
|
}, {
|
|
698
798
|
message: string;
|
|
699
799
|
code: "ERROR1";
|
|
@@ -705,11 +805,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
705
805
|
};
|
|
706
806
|
} & {
|
|
707
807
|
f26: {
|
|
708
|
-
input: import("@sinclair/typebox").TObject<{
|
|
808
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
709
809
|
a: import("@sinclair/typebox").TNumber;
|
|
710
|
-
}
|
|
810
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
811
|
+
c: import("@sinclair/typebox").TString;
|
|
812
|
+
}>]>;
|
|
711
813
|
output: import("@sinclair/typebox").TObject<{
|
|
712
|
-
b: import("@sinclair/typebox").TNumber
|
|
814
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
713
815
|
}>;
|
|
714
816
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
715
817
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -720,8 +822,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
720
822
|
}>]>;
|
|
721
823
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
722
824
|
a: number;
|
|
825
|
+
} | {
|
|
826
|
+
c: string;
|
|
723
827
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
724
|
-
b: number;
|
|
828
|
+
b: string | number;
|
|
725
829
|
}, {
|
|
726
830
|
message: string;
|
|
727
831
|
code: "ERROR1";
|
|
@@ -733,11 +837,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
733
837
|
};
|
|
734
838
|
} & {
|
|
735
839
|
f27: {
|
|
736
|
-
input: import("@sinclair/typebox").TObject<{
|
|
840
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
737
841
|
a: import("@sinclair/typebox").TNumber;
|
|
738
|
-
}
|
|
842
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
843
|
+
c: import("@sinclair/typebox").TString;
|
|
844
|
+
}>]>;
|
|
739
845
|
output: import("@sinclair/typebox").TObject<{
|
|
740
|
-
b: import("@sinclair/typebox").TNumber
|
|
846
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
741
847
|
}>;
|
|
742
848
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
743
849
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -748,8 +854,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
748
854
|
}>]>;
|
|
749
855
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
750
856
|
a: number;
|
|
857
|
+
} | {
|
|
858
|
+
c: string;
|
|
751
859
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
752
|
-
b: number;
|
|
860
|
+
b: string | number;
|
|
753
861
|
}, {
|
|
754
862
|
message: string;
|
|
755
863
|
code: "ERROR1";
|
|
@@ -761,11 +869,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
761
869
|
};
|
|
762
870
|
} & {
|
|
763
871
|
f28: {
|
|
764
|
-
input: import("@sinclair/typebox").TObject<{
|
|
872
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
765
873
|
a: import("@sinclair/typebox").TNumber;
|
|
766
|
-
}
|
|
874
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
875
|
+
c: import("@sinclair/typebox").TString;
|
|
876
|
+
}>]>;
|
|
767
877
|
output: import("@sinclair/typebox").TObject<{
|
|
768
|
-
b: import("@sinclair/typebox").TNumber
|
|
878
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
769
879
|
}>;
|
|
770
880
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
771
881
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -776,8 +886,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
776
886
|
}>]>;
|
|
777
887
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
778
888
|
a: number;
|
|
889
|
+
} | {
|
|
890
|
+
c: string;
|
|
779
891
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
780
|
-
b: number;
|
|
892
|
+
b: string | number;
|
|
781
893
|
}, {
|
|
782
894
|
message: string;
|
|
783
895
|
code: "ERROR1";
|
|
@@ -789,11 +901,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
789
901
|
};
|
|
790
902
|
} & {
|
|
791
903
|
f29: {
|
|
792
|
-
input: import("@sinclair/typebox").TObject<{
|
|
904
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
793
905
|
a: import("@sinclair/typebox").TNumber;
|
|
794
|
-
}
|
|
906
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
907
|
+
c: import("@sinclair/typebox").TString;
|
|
908
|
+
}>]>;
|
|
795
909
|
output: import("@sinclair/typebox").TObject<{
|
|
796
|
-
b: import("@sinclair/typebox").TNumber
|
|
910
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
797
911
|
}>;
|
|
798
912
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
799
913
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -804,8 +918,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
804
918
|
}>]>;
|
|
805
919
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
806
920
|
a: number;
|
|
921
|
+
} | {
|
|
922
|
+
c: string;
|
|
807
923
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
808
|
-
b: number;
|
|
924
|
+
b: string | number;
|
|
809
925
|
}, {
|
|
810
926
|
message: string;
|
|
811
927
|
code: "ERROR1";
|
|
@@ -817,11 +933,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
817
933
|
};
|
|
818
934
|
} & {
|
|
819
935
|
f30: {
|
|
820
|
-
input: import("@sinclair/typebox").TObject<{
|
|
936
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
821
937
|
a: import("@sinclair/typebox").TNumber;
|
|
822
|
-
}
|
|
938
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
939
|
+
c: import("@sinclair/typebox").TString;
|
|
940
|
+
}>]>;
|
|
823
941
|
output: import("@sinclair/typebox").TObject<{
|
|
824
|
-
b: import("@sinclair/typebox").TNumber
|
|
942
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
825
943
|
}>;
|
|
826
944
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
827
945
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -832,8 +950,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
832
950
|
}>]>;
|
|
833
951
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
834
952
|
a: number;
|
|
953
|
+
} | {
|
|
954
|
+
c: string;
|
|
835
955
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
836
|
-
b: number;
|
|
956
|
+
b: string | number;
|
|
837
957
|
}, {
|
|
838
958
|
message: string;
|
|
839
959
|
code: "ERROR1";
|
|
@@ -845,11 +965,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
845
965
|
};
|
|
846
966
|
} & {
|
|
847
967
|
f31: {
|
|
848
|
-
input: import("@sinclair/typebox").TObject<{
|
|
968
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
849
969
|
a: import("@sinclair/typebox").TNumber;
|
|
850
|
-
}
|
|
970
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
971
|
+
c: import("@sinclair/typebox").TString;
|
|
972
|
+
}>]>;
|
|
851
973
|
output: import("@sinclair/typebox").TObject<{
|
|
852
|
-
b: import("@sinclair/typebox").TNumber
|
|
974
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
853
975
|
}>;
|
|
854
976
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
855
977
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -860,8 +982,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
860
982
|
}>]>;
|
|
861
983
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
862
984
|
a: number;
|
|
985
|
+
} | {
|
|
986
|
+
c: string;
|
|
863
987
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
864
|
-
b: number;
|
|
988
|
+
b: string | number;
|
|
865
989
|
}, {
|
|
866
990
|
message: string;
|
|
867
991
|
code: "ERROR1";
|
|
@@ -873,11 +997,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
873
997
|
};
|
|
874
998
|
} & {
|
|
875
999
|
f32: {
|
|
876
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1000
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
877
1001
|
a: import("@sinclair/typebox").TNumber;
|
|
878
|
-
}
|
|
1002
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1003
|
+
c: import("@sinclair/typebox").TString;
|
|
1004
|
+
}>]>;
|
|
879
1005
|
output: import("@sinclair/typebox").TObject<{
|
|
880
|
-
b: import("@sinclair/typebox").TNumber
|
|
1006
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
881
1007
|
}>;
|
|
882
1008
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
883
1009
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -888,8 +1014,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
888
1014
|
}>]>;
|
|
889
1015
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
890
1016
|
a: number;
|
|
1017
|
+
} | {
|
|
1018
|
+
c: string;
|
|
891
1019
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
892
|
-
b: number;
|
|
1020
|
+
b: string | number;
|
|
893
1021
|
}, {
|
|
894
1022
|
message: string;
|
|
895
1023
|
code: "ERROR1";
|
|
@@ -901,11 +1029,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
901
1029
|
};
|
|
902
1030
|
} & {
|
|
903
1031
|
f33: {
|
|
904
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1032
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
905
1033
|
a: import("@sinclair/typebox").TNumber;
|
|
906
|
-
}
|
|
1034
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1035
|
+
c: import("@sinclair/typebox").TString;
|
|
1036
|
+
}>]>;
|
|
907
1037
|
output: import("@sinclair/typebox").TObject<{
|
|
908
|
-
b: import("@sinclair/typebox").TNumber
|
|
1038
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
909
1039
|
}>;
|
|
910
1040
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
911
1041
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -916,8 +1046,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
916
1046
|
}>]>;
|
|
917
1047
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
918
1048
|
a: number;
|
|
1049
|
+
} | {
|
|
1050
|
+
c: string;
|
|
919
1051
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
920
|
-
b: number;
|
|
1052
|
+
b: string | number;
|
|
921
1053
|
}, {
|
|
922
1054
|
message: string;
|
|
923
1055
|
code: "ERROR1";
|
|
@@ -929,11 +1061,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
929
1061
|
};
|
|
930
1062
|
} & {
|
|
931
1063
|
f34: {
|
|
932
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1064
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
933
1065
|
a: import("@sinclair/typebox").TNumber;
|
|
934
|
-
}
|
|
1066
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1067
|
+
c: import("@sinclair/typebox").TString;
|
|
1068
|
+
}>]>;
|
|
935
1069
|
output: import("@sinclair/typebox").TObject<{
|
|
936
|
-
b: import("@sinclair/typebox").TNumber
|
|
1070
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
937
1071
|
}>;
|
|
938
1072
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
939
1073
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -944,8 +1078,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
944
1078
|
}>]>;
|
|
945
1079
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
946
1080
|
a: number;
|
|
1081
|
+
} | {
|
|
1082
|
+
c: string;
|
|
947
1083
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
948
|
-
b: number;
|
|
1084
|
+
b: string | number;
|
|
949
1085
|
}, {
|
|
950
1086
|
message: string;
|
|
951
1087
|
code: "ERROR1";
|
|
@@ -957,11 +1093,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
957
1093
|
};
|
|
958
1094
|
} & {
|
|
959
1095
|
f35: {
|
|
960
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1096
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
961
1097
|
a: import("@sinclair/typebox").TNumber;
|
|
962
|
-
}
|
|
1098
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1099
|
+
c: import("@sinclair/typebox").TString;
|
|
1100
|
+
}>]>;
|
|
963
1101
|
output: import("@sinclair/typebox").TObject<{
|
|
964
|
-
b: import("@sinclair/typebox").TNumber
|
|
1102
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
965
1103
|
}>;
|
|
966
1104
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
967
1105
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -972,8 +1110,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
972
1110
|
}>]>;
|
|
973
1111
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
974
1112
|
a: number;
|
|
1113
|
+
} | {
|
|
1114
|
+
c: string;
|
|
975
1115
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
976
|
-
b: number;
|
|
1116
|
+
b: string | number;
|
|
977
1117
|
}, {
|
|
978
1118
|
message: string;
|
|
979
1119
|
code: "ERROR1";
|
|
@@ -985,11 +1125,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
985
1125
|
};
|
|
986
1126
|
} & {
|
|
987
1127
|
f36: {
|
|
988
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1128
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
989
1129
|
a: import("@sinclair/typebox").TNumber;
|
|
990
|
-
}
|
|
1130
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1131
|
+
c: import("@sinclair/typebox").TString;
|
|
1132
|
+
}>]>;
|
|
991
1133
|
output: import("@sinclair/typebox").TObject<{
|
|
992
|
-
b: import("@sinclair/typebox").TNumber
|
|
1134
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
993
1135
|
}>;
|
|
994
1136
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
995
1137
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1000,8 +1142,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1000
1142
|
}>]>;
|
|
1001
1143
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1002
1144
|
a: number;
|
|
1145
|
+
} | {
|
|
1146
|
+
c: string;
|
|
1003
1147
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1004
|
-
b: number;
|
|
1148
|
+
b: string | number;
|
|
1005
1149
|
}, {
|
|
1006
1150
|
message: string;
|
|
1007
1151
|
code: "ERROR1";
|
|
@@ -1013,11 +1157,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1013
1157
|
};
|
|
1014
1158
|
} & {
|
|
1015
1159
|
f37: {
|
|
1016
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1160
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1017
1161
|
a: import("@sinclair/typebox").TNumber;
|
|
1018
|
-
}
|
|
1162
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1163
|
+
c: import("@sinclair/typebox").TString;
|
|
1164
|
+
}>]>;
|
|
1019
1165
|
output: import("@sinclair/typebox").TObject<{
|
|
1020
|
-
b: import("@sinclair/typebox").TNumber
|
|
1166
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1021
1167
|
}>;
|
|
1022
1168
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1023
1169
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1028,8 +1174,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1028
1174
|
}>]>;
|
|
1029
1175
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1030
1176
|
a: number;
|
|
1177
|
+
} | {
|
|
1178
|
+
c: string;
|
|
1031
1179
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1032
|
-
b: number;
|
|
1180
|
+
b: string | number;
|
|
1033
1181
|
}, {
|
|
1034
1182
|
message: string;
|
|
1035
1183
|
code: "ERROR1";
|
|
@@ -1041,11 +1189,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1041
1189
|
};
|
|
1042
1190
|
} & {
|
|
1043
1191
|
f38: {
|
|
1044
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1192
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1045
1193
|
a: import("@sinclair/typebox").TNumber;
|
|
1046
|
-
}
|
|
1194
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1195
|
+
c: import("@sinclair/typebox").TString;
|
|
1196
|
+
}>]>;
|
|
1047
1197
|
output: import("@sinclair/typebox").TObject<{
|
|
1048
|
-
b: import("@sinclair/typebox").TNumber
|
|
1198
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1049
1199
|
}>;
|
|
1050
1200
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1051
1201
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1056,8 +1206,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1056
1206
|
}>]>;
|
|
1057
1207
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1058
1208
|
a: number;
|
|
1209
|
+
} | {
|
|
1210
|
+
c: string;
|
|
1059
1211
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1060
|
-
b: number;
|
|
1212
|
+
b: string | number;
|
|
1061
1213
|
}, {
|
|
1062
1214
|
message: string;
|
|
1063
1215
|
code: "ERROR1";
|
|
@@ -1069,11 +1221,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1069
1221
|
};
|
|
1070
1222
|
} & {
|
|
1071
1223
|
f39: {
|
|
1072
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1224
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1073
1225
|
a: import("@sinclair/typebox").TNumber;
|
|
1074
|
-
}
|
|
1226
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1227
|
+
c: import("@sinclair/typebox").TString;
|
|
1228
|
+
}>]>;
|
|
1075
1229
|
output: import("@sinclair/typebox").TObject<{
|
|
1076
|
-
b: import("@sinclair/typebox").TNumber
|
|
1230
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1077
1231
|
}>;
|
|
1078
1232
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1079
1233
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1084,8 +1238,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1084
1238
|
}>]>;
|
|
1085
1239
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1086
1240
|
a: number;
|
|
1241
|
+
} | {
|
|
1242
|
+
c: string;
|
|
1087
1243
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1088
|
-
b: number;
|
|
1244
|
+
b: string | number;
|
|
1089
1245
|
}, {
|
|
1090
1246
|
message: string;
|
|
1091
1247
|
code: "ERROR1";
|
|
@@ -1097,11 +1253,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1097
1253
|
};
|
|
1098
1254
|
} & {
|
|
1099
1255
|
f40: {
|
|
1100
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1256
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1101
1257
|
a: import("@sinclair/typebox").TNumber;
|
|
1102
|
-
}
|
|
1258
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1259
|
+
c: import("@sinclair/typebox").TString;
|
|
1260
|
+
}>]>;
|
|
1103
1261
|
output: import("@sinclair/typebox").TObject<{
|
|
1104
|
-
b: import("@sinclair/typebox").TNumber
|
|
1262
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1105
1263
|
}>;
|
|
1106
1264
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1107
1265
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1112,8 +1270,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1112
1270
|
}>]>;
|
|
1113
1271
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1114
1272
|
a: number;
|
|
1273
|
+
} | {
|
|
1274
|
+
c: string;
|
|
1115
1275
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1116
|
-
b: number;
|
|
1276
|
+
b: string | number;
|
|
1117
1277
|
}, {
|
|
1118
1278
|
message: string;
|
|
1119
1279
|
code: "ERROR1";
|
|
@@ -1125,11 +1285,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1125
1285
|
};
|
|
1126
1286
|
} & {
|
|
1127
1287
|
f41: {
|
|
1128
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1288
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1129
1289
|
a: import("@sinclair/typebox").TNumber;
|
|
1130
|
-
}
|
|
1290
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1291
|
+
c: import("@sinclair/typebox").TString;
|
|
1292
|
+
}>]>;
|
|
1131
1293
|
output: import("@sinclair/typebox").TObject<{
|
|
1132
|
-
b: import("@sinclair/typebox").TNumber
|
|
1294
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1133
1295
|
}>;
|
|
1134
1296
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1135
1297
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1140,8 +1302,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1140
1302
|
}>]>;
|
|
1141
1303
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1142
1304
|
a: number;
|
|
1305
|
+
} | {
|
|
1306
|
+
c: string;
|
|
1143
1307
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1144
|
-
b: number;
|
|
1308
|
+
b: string | number;
|
|
1145
1309
|
}, {
|
|
1146
1310
|
message: string;
|
|
1147
1311
|
code: "ERROR1";
|
|
@@ -1153,11 +1317,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1153
1317
|
};
|
|
1154
1318
|
} & {
|
|
1155
1319
|
f42: {
|
|
1156
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1320
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1157
1321
|
a: import("@sinclair/typebox").TNumber;
|
|
1158
|
-
}
|
|
1322
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1323
|
+
c: import("@sinclair/typebox").TString;
|
|
1324
|
+
}>]>;
|
|
1159
1325
|
output: import("@sinclair/typebox").TObject<{
|
|
1160
|
-
b: import("@sinclair/typebox").TNumber
|
|
1326
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1161
1327
|
}>;
|
|
1162
1328
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1163
1329
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1168,8 +1334,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1168
1334
|
}>]>;
|
|
1169
1335
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1170
1336
|
a: number;
|
|
1337
|
+
} | {
|
|
1338
|
+
c: string;
|
|
1171
1339
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1172
|
-
b: number;
|
|
1340
|
+
b: string | number;
|
|
1173
1341
|
}, {
|
|
1174
1342
|
message: string;
|
|
1175
1343
|
code: "ERROR1";
|
|
@@ -1181,11 +1349,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1181
1349
|
};
|
|
1182
1350
|
} & {
|
|
1183
1351
|
f43: {
|
|
1184
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1352
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1185
1353
|
a: import("@sinclair/typebox").TNumber;
|
|
1186
|
-
}
|
|
1354
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1355
|
+
c: import("@sinclair/typebox").TString;
|
|
1356
|
+
}>]>;
|
|
1187
1357
|
output: import("@sinclair/typebox").TObject<{
|
|
1188
|
-
b: import("@sinclair/typebox").TNumber
|
|
1358
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1189
1359
|
}>;
|
|
1190
1360
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1191
1361
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1196,8 +1366,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1196
1366
|
}>]>;
|
|
1197
1367
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1198
1368
|
a: number;
|
|
1369
|
+
} | {
|
|
1370
|
+
c: string;
|
|
1199
1371
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1200
|
-
b: number;
|
|
1372
|
+
b: string | number;
|
|
1201
1373
|
}, {
|
|
1202
1374
|
message: string;
|
|
1203
1375
|
code: "ERROR1";
|
|
@@ -1209,11 +1381,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1209
1381
|
};
|
|
1210
1382
|
} & {
|
|
1211
1383
|
f44: {
|
|
1212
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1384
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1213
1385
|
a: import("@sinclair/typebox").TNumber;
|
|
1214
|
-
}
|
|
1386
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1387
|
+
c: import("@sinclair/typebox").TString;
|
|
1388
|
+
}>]>;
|
|
1215
1389
|
output: import("@sinclair/typebox").TObject<{
|
|
1216
|
-
b: import("@sinclair/typebox").TNumber
|
|
1390
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1217
1391
|
}>;
|
|
1218
1392
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1219
1393
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1224,8 +1398,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1224
1398
|
}>]>;
|
|
1225
1399
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1226
1400
|
a: number;
|
|
1401
|
+
} | {
|
|
1402
|
+
c: string;
|
|
1227
1403
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1228
|
-
b: number;
|
|
1404
|
+
b: string | number;
|
|
1229
1405
|
}, {
|
|
1230
1406
|
message: string;
|
|
1231
1407
|
code: "ERROR1";
|
|
@@ -1237,11 +1413,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1237
1413
|
};
|
|
1238
1414
|
} & {
|
|
1239
1415
|
f45: {
|
|
1240
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1416
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1241
1417
|
a: import("@sinclair/typebox").TNumber;
|
|
1242
|
-
}
|
|
1418
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1419
|
+
c: import("@sinclair/typebox").TString;
|
|
1420
|
+
}>]>;
|
|
1243
1421
|
output: import("@sinclair/typebox").TObject<{
|
|
1244
|
-
b: import("@sinclair/typebox").TNumber
|
|
1422
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1245
1423
|
}>;
|
|
1246
1424
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1247
1425
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1252,8 +1430,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1252
1430
|
}>]>;
|
|
1253
1431
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1254
1432
|
a: number;
|
|
1433
|
+
} | {
|
|
1434
|
+
c: string;
|
|
1255
1435
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1256
|
-
b: number;
|
|
1436
|
+
b: string | number;
|
|
1257
1437
|
}, {
|
|
1258
1438
|
message: string;
|
|
1259
1439
|
code: "ERROR1";
|
|
@@ -1265,11 +1445,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1265
1445
|
};
|
|
1266
1446
|
} & {
|
|
1267
1447
|
f46: {
|
|
1268
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1448
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1269
1449
|
a: import("@sinclair/typebox").TNumber;
|
|
1270
|
-
}
|
|
1450
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1451
|
+
c: import("@sinclair/typebox").TString;
|
|
1452
|
+
}>]>;
|
|
1271
1453
|
output: import("@sinclair/typebox").TObject<{
|
|
1272
|
-
b: import("@sinclair/typebox").TNumber
|
|
1454
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1273
1455
|
}>;
|
|
1274
1456
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1275
1457
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1280,8 +1462,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1280
1462
|
}>]>;
|
|
1281
1463
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1282
1464
|
a: number;
|
|
1465
|
+
} | {
|
|
1466
|
+
c: string;
|
|
1283
1467
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1284
|
-
b: number;
|
|
1468
|
+
b: string | number;
|
|
1285
1469
|
}, {
|
|
1286
1470
|
message: string;
|
|
1287
1471
|
code: "ERROR1";
|
|
@@ -1293,11 +1477,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1293
1477
|
};
|
|
1294
1478
|
} & {
|
|
1295
1479
|
f47: {
|
|
1296
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1480
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1297
1481
|
a: import("@sinclair/typebox").TNumber;
|
|
1298
|
-
}
|
|
1482
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1483
|
+
c: import("@sinclair/typebox").TString;
|
|
1484
|
+
}>]>;
|
|
1299
1485
|
output: import("@sinclair/typebox").TObject<{
|
|
1300
|
-
b: import("@sinclair/typebox").TNumber
|
|
1486
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1301
1487
|
}>;
|
|
1302
1488
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1303
1489
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1308,8 +1494,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1308
1494
|
}>]>;
|
|
1309
1495
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1310
1496
|
a: number;
|
|
1497
|
+
} | {
|
|
1498
|
+
c: string;
|
|
1311
1499
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1312
|
-
b: number;
|
|
1500
|
+
b: string | number;
|
|
1313
1501
|
}, {
|
|
1314
1502
|
message: string;
|
|
1315
1503
|
code: "ERROR1";
|
|
@@ -1321,11 +1509,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1321
1509
|
};
|
|
1322
1510
|
} & {
|
|
1323
1511
|
f48: {
|
|
1324
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1512
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1325
1513
|
a: import("@sinclair/typebox").TNumber;
|
|
1326
|
-
}
|
|
1514
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1515
|
+
c: import("@sinclair/typebox").TString;
|
|
1516
|
+
}>]>;
|
|
1327
1517
|
output: import("@sinclair/typebox").TObject<{
|
|
1328
|
-
b: import("@sinclair/typebox").TNumber
|
|
1518
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1329
1519
|
}>;
|
|
1330
1520
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1331
1521
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1336,8 +1526,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1336
1526
|
}>]>;
|
|
1337
1527
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1338
1528
|
a: number;
|
|
1529
|
+
} | {
|
|
1530
|
+
c: string;
|
|
1339
1531
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1340
|
-
b: number;
|
|
1532
|
+
b: string | number;
|
|
1341
1533
|
}, {
|
|
1342
1534
|
message: string;
|
|
1343
1535
|
code: "ERROR1";
|
|
@@ -1349,11 +1541,13 @@ export declare const StupidlyLargeService: () => {
|
|
|
1349
1541
|
};
|
|
1350
1542
|
} & {
|
|
1351
1543
|
f49: {
|
|
1352
|
-
input: import("@sinclair/typebox").TObject<{
|
|
1544
|
+
input: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1353
1545
|
a: import("@sinclair/typebox").TNumber;
|
|
1354
|
-
}
|
|
1546
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
1547
|
+
c: import("@sinclair/typebox").TString;
|
|
1548
|
+
}>]>;
|
|
1355
1549
|
output: import("@sinclair/typebox").TObject<{
|
|
1356
|
-
b: import("@sinclair/typebox").TNumber
|
|
1550
|
+
b: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TString]>;
|
|
1357
1551
|
}>;
|
|
1358
1552
|
errors: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
1359
1553
|
code: import("@sinclair/typebox").TLiteral<"ERROR1">;
|
|
@@ -1364,8 +1558,10 @@ export declare const StupidlyLargeService: () => {
|
|
|
1364
1558
|
}>]>;
|
|
1365
1559
|
handler: (context: import("../router").ServiceContextWithState<{}>, input: import("../transport/message").TransportMessage<{
|
|
1366
1560
|
a: number;
|
|
1561
|
+
} | {
|
|
1562
|
+
c: string;
|
|
1367
1563
|
}>) => Promise<import("../transport/message").TransportMessage<import("../router/result").Result<{
|
|
1368
|
-
b: number;
|
|
1564
|
+
b: string | number;
|
|
1369
1565
|
}, {
|
|
1370
1566
|
message: string;
|
|
1371
1567
|
code: "ERROR1";
|