@boboddy/sdk 0.0.7-alpha

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.
@@ -0,0 +1,964 @@
1
+ import { Elysia } from "elysia";
2
+ import { type AppContext } from "@boboddy/core/lib/di";
3
+ export declare const createWorkItemsRoutes: (appContext: AppContext) => Elysia<"", {
4
+ decorator: {};
5
+ store: {};
6
+ derive: {};
7
+ resolve: {};
8
+ }, {
9
+ typebox: {};
10
+ error: {};
11
+ }, {
12
+ schema: {};
13
+ standaloneSchema: {};
14
+ macro: {};
15
+ macroFn: {};
16
+ parser: {};
17
+ response: {};
18
+ }, {
19
+ "work-items": {
20
+ post: {
21
+ body: {
22
+ description: string;
23
+ projectId: string & {
24
+ readonly __brand: "uuidv7";
25
+ };
26
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
27
+ platformKey: string;
28
+ title: string;
29
+ sourceCreatedAt: string | null;
30
+ sourceUpdatedAt: string | null;
31
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
32
+ platformId?: string | null | undefined;
33
+ url?: string | null | undefined;
34
+ };
35
+ params: {};
36
+ query: unknown;
37
+ headers: unknown;
38
+ response: {
39
+ 422: {
40
+ type: string;
41
+ title: string;
42
+ status: number;
43
+ detail?: string | undefined;
44
+ instance?: string | undefined;
45
+ code?: string | undefined;
46
+ errors?: {
47
+ path: string;
48
+ message: string;
49
+ summary?: string | undefined;
50
+ }[] | undefined;
51
+ };
52
+ 404: {
53
+ type: string;
54
+ title: string;
55
+ status: number;
56
+ detail?: string | undefined;
57
+ instance?: string | undefined;
58
+ code?: string | undefined;
59
+ errors?: {
60
+ path: string;
61
+ message: string;
62
+ summary?: string | undefined;
63
+ }[] | undefined;
64
+ };
65
+ 409: {
66
+ type: string;
67
+ title: string;
68
+ status: number;
69
+ detail?: string | undefined;
70
+ instance?: string | undefined;
71
+ code?: string | undefined;
72
+ errors?: {
73
+ path: string;
74
+ message: string;
75
+ summary?: string | undefined;
76
+ }[] | undefined;
77
+ };
78
+ 500: {
79
+ type: string;
80
+ title: string;
81
+ status: number;
82
+ detail?: string | undefined;
83
+ instance?: string | undefined;
84
+ code?: string | undefined;
85
+ errors?: {
86
+ path: string;
87
+ message: string;
88
+ summary?: string | undefined;
89
+ }[] | undefined;
90
+ };
91
+ 200: {
92
+ id: string & {
93
+ readonly __brand: "uuidv7";
94
+ };
95
+ projectId: string & {
96
+ readonly __brand: "uuidv7";
97
+ };
98
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
99
+ platformKey: string;
100
+ title: string;
101
+ description: string;
102
+ sourceCreatedAt: string | null;
103
+ sourceUpdatedAt: string | null;
104
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
105
+ createdAt: string;
106
+ updatedAt: string;
107
+ platformId?: string | null | undefined;
108
+ url?: string | null | undefined;
109
+ };
110
+ 403: {
111
+ type: string;
112
+ title: string;
113
+ status: number;
114
+ detail?: string | undefined;
115
+ instance?: string | undefined;
116
+ code?: string | undefined;
117
+ errors?: {
118
+ path: string;
119
+ message: string;
120
+ summary?: string | undefined;
121
+ }[] | undefined;
122
+ };
123
+ 400: {
124
+ type: string;
125
+ title: string;
126
+ status: number;
127
+ detail?: string | undefined;
128
+ instance?: string | undefined;
129
+ code?: string | undefined;
130
+ errors?: {
131
+ path: string;
132
+ message: string;
133
+ summary?: string | undefined;
134
+ }[] | undefined;
135
+ };
136
+ 401: {
137
+ type: string;
138
+ title: string;
139
+ status: number;
140
+ detail?: string | undefined;
141
+ instance?: string | undefined;
142
+ code?: string | undefined;
143
+ errors?: {
144
+ path: string;
145
+ message: string;
146
+ summary?: string | undefined;
147
+ }[] | undefined;
148
+ };
149
+ };
150
+ };
151
+ };
152
+ } & {
153
+ "work-items": {
154
+ batch: {
155
+ post: {
156
+ body: {
157
+ description: string;
158
+ projectId: string & {
159
+ readonly __brand: "uuidv7";
160
+ };
161
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
162
+ platformKey: string;
163
+ title: string;
164
+ sourceCreatedAt: string | null;
165
+ sourceUpdatedAt: string | null;
166
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
167
+ platformId?: string | null | undefined;
168
+ url?: string | null | undefined;
169
+ }[];
170
+ params: {};
171
+ query: unknown;
172
+ headers: unknown;
173
+ response: {
174
+ 422: {
175
+ type: string;
176
+ title: string;
177
+ status: number;
178
+ detail?: string | undefined;
179
+ instance?: string | undefined;
180
+ code?: string | undefined;
181
+ errors?: {
182
+ path: string;
183
+ message: string;
184
+ summary?: string | undefined;
185
+ }[] | undefined;
186
+ };
187
+ 404: {
188
+ type: string;
189
+ title: string;
190
+ status: number;
191
+ detail?: string | undefined;
192
+ instance?: string | undefined;
193
+ code?: string | undefined;
194
+ errors?: {
195
+ path: string;
196
+ message: string;
197
+ summary?: string | undefined;
198
+ }[] | undefined;
199
+ };
200
+ 409: {
201
+ type: string;
202
+ title: string;
203
+ status: number;
204
+ detail?: string | undefined;
205
+ instance?: string | undefined;
206
+ code?: string | undefined;
207
+ errors?: {
208
+ path: string;
209
+ message: string;
210
+ summary?: string | undefined;
211
+ }[] | undefined;
212
+ };
213
+ 500: {
214
+ type: string;
215
+ title: string;
216
+ status: number;
217
+ detail?: string | undefined;
218
+ instance?: string | undefined;
219
+ code?: string | undefined;
220
+ errors?: {
221
+ path: string;
222
+ message: string;
223
+ summary?: string | undefined;
224
+ }[] | undefined;
225
+ };
226
+ 200: {
227
+ id: string & {
228
+ readonly __brand: "uuidv7";
229
+ };
230
+ projectId: string & {
231
+ readonly __brand: "uuidv7";
232
+ };
233
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
234
+ platformKey: string;
235
+ title: string;
236
+ description: string;
237
+ sourceCreatedAt: string | null;
238
+ sourceUpdatedAt: string | null;
239
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
240
+ createdAt: string;
241
+ updatedAt: string;
242
+ platformId?: string | null | undefined;
243
+ url?: string | null | undefined;
244
+ }[];
245
+ 403: {
246
+ type: string;
247
+ title: string;
248
+ status: number;
249
+ detail?: string | undefined;
250
+ instance?: string | undefined;
251
+ code?: string | undefined;
252
+ errors?: {
253
+ path: string;
254
+ message: string;
255
+ summary?: string | undefined;
256
+ }[] | undefined;
257
+ };
258
+ 400: {
259
+ type: string;
260
+ title: string;
261
+ status: number;
262
+ detail?: string | undefined;
263
+ instance?: string | undefined;
264
+ code?: string | undefined;
265
+ errors?: {
266
+ path: string;
267
+ message: string;
268
+ summary?: string | undefined;
269
+ }[] | undefined;
270
+ };
271
+ 401: {
272
+ type: string;
273
+ title: string;
274
+ status: number;
275
+ detail?: string | undefined;
276
+ instance?: string | undefined;
277
+ code?: string | undefined;
278
+ errors?: {
279
+ path: string;
280
+ message: string;
281
+ summary?: string | undefined;
282
+ }[] | undefined;
283
+ };
284
+ };
285
+ };
286
+ };
287
+ };
288
+ } & {
289
+ "work-items": {
290
+ put: {
291
+ body: {
292
+ description: string;
293
+ projectId: string & {
294
+ readonly __brand: "uuidv7";
295
+ };
296
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
297
+ platformKey: string;
298
+ title: string;
299
+ sourceCreatedAt: string | null;
300
+ sourceUpdatedAt: string | null;
301
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
302
+ platformId?: string | null | undefined;
303
+ url?: string | null | undefined;
304
+ };
305
+ params: {};
306
+ query: unknown;
307
+ headers: unknown;
308
+ response: {
309
+ 422: {
310
+ type: string;
311
+ title: string;
312
+ status: number;
313
+ detail?: string | undefined;
314
+ instance?: string | undefined;
315
+ code?: string | undefined;
316
+ errors?: {
317
+ path: string;
318
+ message: string;
319
+ summary?: string | undefined;
320
+ }[] | undefined;
321
+ };
322
+ 404: {
323
+ type: string;
324
+ title: string;
325
+ status: number;
326
+ detail?: string | undefined;
327
+ instance?: string | undefined;
328
+ code?: string | undefined;
329
+ errors?: {
330
+ path: string;
331
+ message: string;
332
+ summary?: string | undefined;
333
+ }[] | undefined;
334
+ };
335
+ 500: {
336
+ type: string;
337
+ title: string;
338
+ status: number;
339
+ detail?: string | undefined;
340
+ instance?: string | undefined;
341
+ code?: string | undefined;
342
+ errors?: {
343
+ path: string;
344
+ message: string;
345
+ summary?: string | undefined;
346
+ }[] | undefined;
347
+ };
348
+ 200: {
349
+ id: string & {
350
+ readonly __brand: "uuidv7";
351
+ };
352
+ projectId: string & {
353
+ readonly __brand: "uuidv7";
354
+ };
355
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
356
+ platformKey: string;
357
+ title: string;
358
+ description: string;
359
+ sourceCreatedAt: string | null;
360
+ sourceUpdatedAt: string | null;
361
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
362
+ createdAt: string;
363
+ updatedAt: string;
364
+ platformId?: string | null | undefined;
365
+ url?: string | null | undefined;
366
+ };
367
+ 403: {
368
+ type: string;
369
+ title: string;
370
+ status: number;
371
+ detail?: string | undefined;
372
+ instance?: string | undefined;
373
+ code?: string | undefined;
374
+ errors?: {
375
+ path: string;
376
+ message: string;
377
+ summary?: string | undefined;
378
+ }[] | undefined;
379
+ };
380
+ 400: {
381
+ type: string;
382
+ title: string;
383
+ status: number;
384
+ detail?: string | undefined;
385
+ instance?: string | undefined;
386
+ code?: string | undefined;
387
+ errors?: {
388
+ path: string;
389
+ message: string;
390
+ summary?: string | undefined;
391
+ }[] | undefined;
392
+ };
393
+ 401: {
394
+ type: string;
395
+ title: string;
396
+ status: number;
397
+ detail?: string | undefined;
398
+ instance?: string | undefined;
399
+ code?: string | undefined;
400
+ errors?: {
401
+ path: string;
402
+ message: string;
403
+ summary?: string | undefined;
404
+ }[] | undefined;
405
+ };
406
+ };
407
+ };
408
+ };
409
+ } & {
410
+ "work-items": {
411
+ batch: {
412
+ put: {
413
+ body: {
414
+ description: string;
415
+ projectId: string & {
416
+ readonly __brand: "uuidv7";
417
+ };
418
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
419
+ platformKey: string;
420
+ title: string;
421
+ sourceCreatedAt: string | null;
422
+ sourceUpdatedAt: string | null;
423
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
424
+ platformId?: string | null | undefined;
425
+ url?: string | null | undefined;
426
+ }[];
427
+ params: {};
428
+ query: unknown;
429
+ headers: unknown;
430
+ response: {
431
+ 422: {
432
+ type: string;
433
+ title: string;
434
+ status: number;
435
+ detail?: string | undefined;
436
+ instance?: string | undefined;
437
+ code?: string | undefined;
438
+ errors?: {
439
+ path: string;
440
+ message: string;
441
+ summary?: string | undefined;
442
+ }[] | undefined;
443
+ };
444
+ 404: {
445
+ type: string;
446
+ title: string;
447
+ status: number;
448
+ detail?: string | undefined;
449
+ instance?: string | undefined;
450
+ code?: string | undefined;
451
+ errors?: {
452
+ path: string;
453
+ message: string;
454
+ summary?: string | undefined;
455
+ }[] | undefined;
456
+ };
457
+ 500: {
458
+ type: string;
459
+ title: string;
460
+ status: number;
461
+ detail?: string | undefined;
462
+ instance?: string | undefined;
463
+ code?: string | undefined;
464
+ errors?: {
465
+ path: string;
466
+ message: string;
467
+ summary?: string | undefined;
468
+ }[] | undefined;
469
+ };
470
+ 200: {
471
+ id: string & {
472
+ readonly __brand: "uuidv7";
473
+ };
474
+ projectId: string & {
475
+ readonly __brand: "uuidv7";
476
+ };
477
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
478
+ platformKey: string;
479
+ title: string;
480
+ description: string;
481
+ sourceCreatedAt: string | null;
482
+ sourceUpdatedAt: string | null;
483
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
484
+ createdAt: string;
485
+ updatedAt: string;
486
+ platformId?: string | null | undefined;
487
+ url?: string | null | undefined;
488
+ }[];
489
+ 403: {
490
+ type: string;
491
+ title: string;
492
+ status: number;
493
+ detail?: string | undefined;
494
+ instance?: string | undefined;
495
+ code?: string | undefined;
496
+ errors?: {
497
+ path: string;
498
+ message: string;
499
+ summary?: string | undefined;
500
+ }[] | undefined;
501
+ };
502
+ 400: {
503
+ type: string;
504
+ title: string;
505
+ status: number;
506
+ detail?: string | undefined;
507
+ instance?: string | undefined;
508
+ code?: string | undefined;
509
+ errors?: {
510
+ path: string;
511
+ message: string;
512
+ summary?: string | undefined;
513
+ }[] | undefined;
514
+ };
515
+ 401: {
516
+ type: string;
517
+ title: string;
518
+ status: number;
519
+ detail?: string | undefined;
520
+ instance?: string | undefined;
521
+ code?: string | undefined;
522
+ errors?: {
523
+ path: string;
524
+ message: string;
525
+ summary?: string | undefined;
526
+ }[] | undefined;
527
+ };
528
+ };
529
+ };
530
+ };
531
+ };
532
+ } & {
533
+ "work-items": {
534
+ ":workItemId": {
535
+ get: {
536
+ body: unknown;
537
+ params: {
538
+ workItemId: string & {
539
+ readonly __brand: "WorkItemId";
540
+ };
541
+ };
542
+ query: unknown;
543
+ headers: unknown;
544
+ response: {
545
+ 422: {
546
+ type: string;
547
+ title: string;
548
+ status: number;
549
+ detail?: string | undefined;
550
+ instance?: string | undefined;
551
+ code?: string | undefined;
552
+ errors?: {
553
+ path: string;
554
+ message: string;
555
+ summary?: string | undefined;
556
+ }[] | undefined;
557
+ };
558
+ 404: {
559
+ type: string;
560
+ title: string;
561
+ status: number;
562
+ detail?: string | undefined;
563
+ instance?: string | undefined;
564
+ code?: string | undefined;
565
+ errors?: {
566
+ path: string;
567
+ message: string;
568
+ summary?: string | undefined;
569
+ }[] | undefined;
570
+ };
571
+ 500: {
572
+ type: string;
573
+ title: string;
574
+ status: number;
575
+ detail?: string | undefined;
576
+ instance?: string | undefined;
577
+ code?: string | undefined;
578
+ errors?: {
579
+ path: string;
580
+ message: string;
581
+ summary?: string | undefined;
582
+ }[] | undefined;
583
+ };
584
+ 200: {
585
+ id: string & {
586
+ readonly __brand: "uuidv7";
587
+ };
588
+ projectId: string & {
589
+ readonly __brand: "uuidv7";
590
+ };
591
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
592
+ platformKey: string;
593
+ title: string;
594
+ description: string;
595
+ sourceCreatedAt: string | null;
596
+ sourceUpdatedAt: string | null;
597
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
598
+ createdAt: string;
599
+ updatedAt: string;
600
+ platformId?: string | null | undefined;
601
+ url?: string | null | undefined;
602
+ };
603
+ 403: {
604
+ type: string;
605
+ title: string;
606
+ status: number;
607
+ detail?: string | undefined;
608
+ instance?: string | undefined;
609
+ code?: string | undefined;
610
+ errors?: {
611
+ path: string;
612
+ message: string;
613
+ summary?: string | undefined;
614
+ }[] | undefined;
615
+ };
616
+ 401: {
617
+ type: string;
618
+ title: string;
619
+ status: number;
620
+ detail?: string | undefined;
621
+ instance?: string | undefined;
622
+ code?: string | undefined;
623
+ errors?: {
624
+ path: string;
625
+ message: string;
626
+ summary?: string | undefined;
627
+ }[] | undefined;
628
+ };
629
+ };
630
+ };
631
+ };
632
+ };
633
+ } & {
634
+ "work-items": {
635
+ batch: {
636
+ get: {
637
+ body: unknown;
638
+ params: {};
639
+ query: {
640
+ workItemIds: (string & {
641
+ readonly __brand: "WorkItemId";
642
+ })[];
643
+ };
644
+ headers: unknown;
645
+ response: {
646
+ 422: {
647
+ type: string;
648
+ title: string;
649
+ status: number;
650
+ detail?: string | undefined;
651
+ instance?: string | undefined;
652
+ code?: string | undefined;
653
+ errors?: {
654
+ path: string;
655
+ message: string;
656
+ summary?: string | undefined;
657
+ }[] | undefined;
658
+ };
659
+ 404: {
660
+ type: string;
661
+ title: string;
662
+ status: number;
663
+ detail?: string | undefined;
664
+ instance?: string | undefined;
665
+ code?: string | undefined;
666
+ errors?: {
667
+ path: string;
668
+ message: string;
669
+ summary?: string | undefined;
670
+ }[] | undefined;
671
+ };
672
+ 500: {
673
+ type: string;
674
+ title: string;
675
+ status: number;
676
+ detail?: string | undefined;
677
+ instance?: string | undefined;
678
+ code?: string | undefined;
679
+ errors?: {
680
+ path: string;
681
+ message: string;
682
+ summary?: string | undefined;
683
+ }[] | undefined;
684
+ };
685
+ 200: {
686
+ id: string & {
687
+ readonly __brand: "uuidv7";
688
+ };
689
+ projectId: string & {
690
+ readonly __brand: "uuidv7";
691
+ };
692
+ platform: "jira" | "github" | "linear" | "boboddy" | "custom";
693
+ platformKey: string;
694
+ title: string;
695
+ description: string;
696
+ sourceCreatedAt: string | null;
697
+ sourceUpdatedAt: string | null;
698
+ fields: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
699
+ createdAt: string;
700
+ updatedAt: string;
701
+ platformId?: string | null | undefined;
702
+ url?: string | null | undefined;
703
+ }[];
704
+ 403: {
705
+ type: string;
706
+ title: string;
707
+ status: number;
708
+ detail?: string | undefined;
709
+ instance?: string | undefined;
710
+ code?: string | undefined;
711
+ errors?: {
712
+ path: string;
713
+ message: string;
714
+ summary?: string | undefined;
715
+ }[] | undefined;
716
+ };
717
+ 401: {
718
+ type: string;
719
+ title: string;
720
+ status: number;
721
+ detail?: string | undefined;
722
+ instance?: string | undefined;
723
+ code?: string | undefined;
724
+ errors?: {
725
+ path: string;
726
+ message: string;
727
+ summary?: string | undefined;
728
+ }[] | undefined;
729
+ };
730
+ };
731
+ };
732
+ };
733
+ };
734
+ } & {
735
+ "work-items": {
736
+ ":workItemId": {
737
+ delete: {
738
+ body: unknown;
739
+ params: {
740
+ workItemId: string & {
741
+ readonly __brand: "WorkItemId";
742
+ };
743
+ };
744
+ query: unknown;
745
+ headers: unknown;
746
+ response: {
747
+ 422: {
748
+ type: string;
749
+ title: string;
750
+ status: number;
751
+ detail?: string | undefined;
752
+ instance?: string | undefined;
753
+ code?: string | undefined;
754
+ errors?: {
755
+ path: string;
756
+ message: string;
757
+ summary?: string | undefined;
758
+ }[] | undefined;
759
+ };
760
+ 404: {
761
+ type: string;
762
+ title: string;
763
+ status: number;
764
+ detail?: string | undefined;
765
+ instance?: string | undefined;
766
+ code?: string | undefined;
767
+ errors?: {
768
+ path: string;
769
+ message: string;
770
+ summary?: string | undefined;
771
+ }[] | undefined;
772
+ };
773
+ 500: {
774
+ type: string;
775
+ title: string;
776
+ status: number;
777
+ detail?: string | undefined;
778
+ instance?: string | undefined;
779
+ code?: string | undefined;
780
+ errors?: {
781
+ path: string;
782
+ message: string;
783
+ summary?: string | undefined;
784
+ }[] | undefined;
785
+ };
786
+ 200: number;
787
+ 403: {
788
+ type: string;
789
+ title: string;
790
+ status: number;
791
+ detail?: string | undefined;
792
+ instance?: string | undefined;
793
+ code?: string | undefined;
794
+ errors?: {
795
+ path: string;
796
+ message: string;
797
+ summary?: string | undefined;
798
+ }[] | undefined;
799
+ };
800
+ 401: {
801
+ type: string;
802
+ title: string;
803
+ status: number;
804
+ detail?: string | undefined;
805
+ instance?: string | undefined;
806
+ code?: string | undefined;
807
+ errors?: {
808
+ path: string;
809
+ message: string;
810
+ summary?: string | undefined;
811
+ }[] | undefined;
812
+ };
813
+ };
814
+ };
815
+ };
816
+ };
817
+ } & {
818
+ "work-items": {
819
+ batch: {
820
+ delete: {
821
+ body: {
822
+ input: (string & {
823
+ readonly __brand: "WorkItemId";
824
+ })[];
825
+ };
826
+ params: {};
827
+ query: unknown;
828
+ headers: unknown;
829
+ response: {
830
+ 422: {
831
+ type: string;
832
+ title: string;
833
+ status: number;
834
+ detail?: string | undefined;
835
+ instance?: string | undefined;
836
+ code?: string | undefined;
837
+ errors?: {
838
+ path: string;
839
+ message: string;
840
+ summary?: string | undefined;
841
+ }[] | undefined;
842
+ };
843
+ 404: {
844
+ type: string;
845
+ title: string;
846
+ status: number;
847
+ detail?: string | undefined;
848
+ instance?: string | undefined;
849
+ code?: string | undefined;
850
+ errors?: {
851
+ path: string;
852
+ message: string;
853
+ summary?: string | undefined;
854
+ }[] | undefined;
855
+ };
856
+ 500: {
857
+ type: string;
858
+ title: string;
859
+ status: number;
860
+ detail?: string | undefined;
861
+ instance?: string | undefined;
862
+ code?: string | undefined;
863
+ errors?: {
864
+ path: string;
865
+ message: string;
866
+ summary?: string | undefined;
867
+ }[] | undefined;
868
+ };
869
+ 200: number;
870
+ 403: {
871
+ type: string;
872
+ title: string;
873
+ status: number;
874
+ detail?: string | undefined;
875
+ instance?: string | undefined;
876
+ code?: string | undefined;
877
+ errors?: {
878
+ path: string;
879
+ message: string;
880
+ summary?: string | undefined;
881
+ }[] | undefined;
882
+ };
883
+ 401: {
884
+ type: string;
885
+ title: string;
886
+ status: number;
887
+ detail?: string | undefined;
888
+ instance?: string | undefined;
889
+ code?: string | undefined;
890
+ errors?: {
891
+ path: string;
892
+ message: string;
893
+ summary?: string | undefined;
894
+ }[] | undefined;
895
+ };
896
+ };
897
+ };
898
+ };
899
+ };
900
+ }, {
901
+ derive: {};
902
+ resolve: {};
903
+ schema: {};
904
+ standaloneSchema: {};
905
+ response: {};
906
+ }, {
907
+ derive: {};
908
+ resolve: {};
909
+ schema: {};
910
+ standaloneSchema: {};
911
+ response: {};
912
+ } & {
913
+ derive: {
914
+ readonly auth: {
915
+ readonly userId: import("@boboddy/core/common/contracts/uuid-v7").UuidV7;
916
+ readonly user: {
917
+ id: string;
918
+ createdAt: Date;
919
+ updatedAt: Date;
920
+ email: string;
921
+ emailVerified: boolean;
922
+ name: string;
923
+ image?: string | null | undefined | undefined;
924
+ };
925
+ readonly session: {
926
+ id: string;
927
+ createdAt: Date;
928
+ updatedAt: Date;
929
+ userId: string;
930
+ expiresAt: Date;
931
+ token: string;
932
+ ipAddress?: string | null | undefined | undefined;
933
+ userAgent?: string | null | undefined | undefined;
934
+ };
935
+ };
936
+ };
937
+ resolve: {};
938
+ schema: {};
939
+ standaloneSchema: {};
940
+ response: import("elysia").ExtractErrorFromHandle<{
941
+ readonly auth: {
942
+ readonly userId: import("@boboddy/core/common/contracts/uuid-v7").UuidV7;
943
+ readonly user: {
944
+ id: string;
945
+ createdAt: Date;
946
+ updatedAt: Date;
947
+ email: string;
948
+ emailVerified: boolean;
949
+ name: string;
950
+ image?: string | null | undefined | undefined;
951
+ };
952
+ readonly session: {
953
+ id: string;
954
+ createdAt: Date;
955
+ updatedAt: Date;
956
+ userId: string;
957
+ expiresAt: Date;
958
+ token: string;
959
+ ipAddress?: string | null | undefined | undefined;
960
+ userAgent?: string | null | undefined | undefined;
961
+ };
962
+ };
963
+ }>;
964
+ }>;