@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,1561 @@
1
+ import { Elysia } from "elysia";
2
+ import type { AppContext } from "@boboddy/core/lib/di";
3
+ export declare const createLinearPipelineDefinitionRoutes: (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
+ "linear-pipeline-definitions": {
20
+ post: {
21
+ body: {
22
+ projectId: string & {
23
+ readonly __brand: "uuidv7";
24
+ };
25
+ key: string;
26
+ name: string;
27
+ description: string | null;
28
+ version: number;
29
+ status: "draft" | "active" | "archived";
30
+ stepDefinitions: {
31
+ name: string;
32
+ description: string | null;
33
+ key: string;
34
+ stepDefinitionId: string & {
35
+ readonly __brand: "uuidv7";
36
+ };
37
+ stepDefinitionVersion: number;
38
+ position: number;
39
+ inputBindingsJson: Record<string, {
40
+ source: "pipeline_input";
41
+ path: string | null;
42
+ } | {
43
+ source: "step_output";
44
+ stepKey: string;
45
+ path: string | null;
46
+ } | {
47
+ source: "step_signal";
48
+ stepKey: string;
49
+ signalKey: string;
50
+ } | {
51
+ source: "literal";
52
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
53
+ }> | null;
54
+ timeoutSeconds: number | null;
55
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
56
+ advancementPolicyDefinition: {
57
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
58
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
59
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
60
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
61
+ };
62
+ }[];
63
+ };
64
+ params: {};
65
+ query: unknown;
66
+ headers: unknown;
67
+ response: {
68
+ 422: {
69
+ type: string;
70
+ title: string;
71
+ status: number;
72
+ detail?: string | undefined;
73
+ instance?: string | undefined;
74
+ code?: string | undefined;
75
+ errors?: {
76
+ path: string;
77
+ message: string;
78
+ summary?: string | undefined;
79
+ }[] | undefined;
80
+ };
81
+ 404: {
82
+ type: string;
83
+ title: string;
84
+ status: number;
85
+ detail?: string | undefined;
86
+ instance?: string | undefined;
87
+ code?: string | undefined;
88
+ errors?: {
89
+ path: string;
90
+ message: string;
91
+ summary?: string | undefined;
92
+ }[] | undefined;
93
+ };
94
+ 409: {
95
+ type: string;
96
+ title: string;
97
+ status: number;
98
+ detail?: string | undefined;
99
+ instance?: string | undefined;
100
+ code?: string | undefined;
101
+ errors?: {
102
+ path: string;
103
+ message: string;
104
+ summary?: string | undefined;
105
+ }[] | undefined;
106
+ };
107
+ 500: {
108
+ type: string;
109
+ title: string;
110
+ status: number;
111
+ detail?: string | undefined;
112
+ instance?: string | undefined;
113
+ code?: string | undefined;
114
+ errors?: {
115
+ path: string;
116
+ message: string;
117
+ summary?: string | undefined;
118
+ }[] | undefined;
119
+ };
120
+ 200: {
121
+ id: string & {
122
+ readonly __brand: "uuidv7";
123
+ };
124
+ projectId: string & {
125
+ readonly __brand: "uuidv7";
126
+ };
127
+ key: string;
128
+ name: string;
129
+ description: string | null;
130
+ version: number;
131
+ status: "draft" | "active" | "archived";
132
+ stepDefinitions: {
133
+ id: string & {
134
+ readonly __brand: "uuidv7";
135
+ };
136
+ linearPipelineDefinitionId: string & {
137
+ readonly __brand: "uuidv7";
138
+ };
139
+ stepDefinitionId: string & {
140
+ readonly __brand: "uuidv7";
141
+ };
142
+ stepDefinitionVersion: number;
143
+ key: string;
144
+ name: string;
145
+ description: string | null;
146
+ position: number;
147
+ inputBindingsJson: Record<string, {
148
+ source: "pipeline_input";
149
+ path: string | null;
150
+ } | {
151
+ source: "step_output";
152
+ stepKey: string;
153
+ path: string | null;
154
+ } | {
155
+ source: "step_signal";
156
+ stepKey: string;
157
+ signalKey: string;
158
+ } | {
159
+ source: "literal";
160
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
161
+ }> | null;
162
+ timeoutSeconds: number | null;
163
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
164
+ advancementPolicyDefinition: {
165
+ id: string & {
166
+ readonly __brand: "uuidv7";
167
+ };
168
+ linearPipelineStepDefinitionId: string & {
169
+ readonly __brand: "uuidv7";
170
+ };
171
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
172
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
173
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
174
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
175
+ createdAt: string;
176
+ updatedAt: string;
177
+ };
178
+ createdAt: string;
179
+ updatedAt: string;
180
+ }[];
181
+ createdAt: string;
182
+ updatedAt: string;
183
+ };
184
+ 403: {
185
+ type: string;
186
+ title: string;
187
+ status: number;
188
+ detail?: string | undefined;
189
+ instance?: string | undefined;
190
+ code?: string | undefined;
191
+ errors?: {
192
+ path: string;
193
+ message: string;
194
+ summary?: string | undefined;
195
+ }[] | undefined;
196
+ };
197
+ 400: {
198
+ type: string;
199
+ title: string;
200
+ status: number;
201
+ detail?: string | undefined;
202
+ instance?: string | undefined;
203
+ code?: string | undefined;
204
+ errors?: {
205
+ path: string;
206
+ message: string;
207
+ summary?: string | undefined;
208
+ }[] | undefined;
209
+ };
210
+ 401: {
211
+ type: string;
212
+ title: string;
213
+ status: number;
214
+ detail?: string | undefined;
215
+ instance?: string | undefined;
216
+ code?: string | undefined;
217
+ errors?: {
218
+ path: string;
219
+ message: string;
220
+ summary?: string | undefined;
221
+ }[] | undefined;
222
+ };
223
+ };
224
+ };
225
+ };
226
+ } & {
227
+ "linear-pipeline-definitions": {
228
+ ":linearPipelineDefinitionId": {
229
+ get: {
230
+ body: unknown;
231
+ params: {
232
+ linearPipelineDefinitionId: string & {
233
+ readonly __brand: "uuidv7";
234
+ };
235
+ };
236
+ query: unknown;
237
+ headers: unknown;
238
+ response: {
239
+ 422: {
240
+ type: string;
241
+ title: string;
242
+ status: number;
243
+ detail?: string | undefined;
244
+ instance?: string | undefined;
245
+ code?: string | undefined;
246
+ errors?: {
247
+ path: string;
248
+ message: string;
249
+ summary?: string | undefined;
250
+ }[] | undefined;
251
+ };
252
+ 404: {
253
+ type: string;
254
+ title: string;
255
+ status: number;
256
+ detail?: string | undefined;
257
+ instance?: string | undefined;
258
+ code?: string | undefined;
259
+ errors?: {
260
+ path: string;
261
+ message: string;
262
+ summary?: string | undefined;
263
+ }[] | undefined;
264
+ };
265
+ 500: {
266
+ type: string;
267
+ title: string;
268
+ status: number;
269
+ detail?: string | undefined;
270
+ instance?: string | undefined;
271
+ code?: string | undefined;
272
+ errors?: {
273
+ path: string;
274
+ message: string;
275
+ summary?: string | undefined;
276
+ }[] | undefined;
277
+ };
278
+ 200: {
279
+ id: string & {
280
+ readonly __brand: "uuidv7";
281
+ };
282
+ projectId: string & {
283
+ readonly __brand: "uuidv7";
284
+ };
285
+ key: string;
286
+ name: string;
287
+ description: string | null;
288
+ version: number;
289
+ status: "draft" | "active" | "archived";
290
+ stepDefinitions: {
291
+ id: string & {
292
+ readonly __brand: "uuidv7";
293
+ };
294
+ linearPipelineDefinitionId: string & {
295
+ readonly __brand: "uuidv7";
296
+ };
297
+ stepDefinitionId: string & {
298
+ readonly __brand: "uuidv7";
299
+ };
300
+ stepDefinitionVersion: number;
301
+ key: string;
302
+ name: string;
303
+ description: string | null;
304
+ position: number;
305
+ inputBindingsJson: Record<string, {
306
+ source: "pipeline_input";
307
+ path: string | null;
308
+ } | {
309
+ source: "step_output";
310
+ stepKey: string;
311
+ path: string | null;
312
+ } | {
313
+ source: "step_signal";
314
+ stepKey: string;
315
+ signalKey: string;
316
+ } | {
317
+ source: "literal";
318
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
319
+ }> | null;
320
+ timeoutSeconds: number | null;
321
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
322
+ advancementPolicyDefinition: {
323
+ id: string & {
324
+ readonly __brand: "uuidv7";
325
+ };
326
+ linearPipelineStepDefinitionId: string & {
327
+ readonly __brand: "uuidv7";
328
+ };
329
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
330
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
331
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
332
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
333
+ createdAt: string;
334
+ updatedAt: string;
335
+ };
336
+ createdAt: string;
337
+ updatedAt: string;
338
+ }[];
339
+ createdAt: string;
340
+ updatedAt: string;
341
+ };
342
+ 403: {
343
+ type: string;
344
+ title: string;
345
+ status: number;
346
+ detail?: string | undefined;
347
+ instance?: string | undefined;
348
+ code?: string | undefined;
349
+ errors?: {
350
+ path: string;
351
+ message: string;
352
+ summary?: string | undefined;
353
+ }[] | undefined;
354
+ };
355
+ 400: {
356
+ type: string;
357
+ title: string;
358
+ status: number;
359
+ detail?: string | undefined;
360
+ instance?: string | undefined;
361
+ code?: string | undefined;
362
+ errors?: {
363
+ path: string;
364
+ message: string;
365
+ summary?: string | undefined;
366
+ }[] | undefined;
367
+ };
368
+ 401: {
369
+ type: string;
370
+ title: string;
371
+ status: number;
372
+ detail?: string | undefined;
373
+ instance?: string | undefined;
374
+ code?: string | undefined;
375
+ errors?: {
376
+ path: string;
377
+ message: string;
378
+ summary?: string | undefined;
379
+ }[] | undefined;
380
+ };
381
+ };
382
+ };
383
+ };
384
+ };
385
+ } & {
386
+ "linear-pipeline-definitions": {
387
+ get: {
388
+ body: unknown;
389
+ params: {};
390
+ query: {
391
+ projectId: string & {
392
+ readonly __brand: "uuidv7";
393
+ };
394
+ };
395
+ headers: unknown;
396
+ response: {
397
+ 422: {
398
+ type: string;
399
+ title: string;
400
+ status: number;
401
+ detail?: string | undefined;
402
+ instance?: string | undefined;
403
+ code?: string | undefined;
404
+ errors?: {
405
+ path: string;
406
+ message: string;
407
+ summary?: string | undefined;
408
+ }[] | undefined;
409
+ };
410
+ 500: {
411
+ type: string;
412
+ title: string;
413
+ status: number;
414
+ detail?: string | undefined;
415
+ instance?: string | undefined;
416
+ code?: string | undefined;
417
+ errors?: {
418
+ path: string;
419
+ message: string;
420
+ summary?: string | undefined;
421
+ }[] | undefined;
422
+ };
423
+ 200: {
424
+ id: string & {
425
+ readonly __brand: "uuidv7";
426
+ };
427
+ projectId: string & {
428
+ readonly __brand: "uuidv7";
429
+ };
430
+ key: string;
431
+ name: string;
432
+ description: string | null;
433
+ version: number;
434
+ status: "draft" | "active" | "archived";
435
+ stepDefinitions: {
436
+ id: string & {
437
+ readonly __brand: "uuidv7";
438
+ };
439
+ linearPipelineDefinitionId: string & {
440
+ readonly __brand: "uuidv7";
441
+ };
442
+ stepDefinitionId: string & {
443
+ readonly __brand: "uuidv7";
444
+ };
445
+ stepDefinitionVersion: number;
446
+ key: string;
447
+ name: string;
448
+ description: string | null;
449
+ position: number;
450
+ inputBindingsJson: Record<string, {
451
+ source: "pipeline_input";
452
+ path: string | null;
453
+ } | {
454
+ source: "step_output";
455
+ stepKey: string;
456
+ path: string | null;
457
+ } | {
458
+ source: "step_signal";
459
+ stepKey: string;
460
+ signalKey: string;
461
+ } | {
462
+ source: "literal";
463
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
464
+ }> | null;
465
+ timeoutSeconds: number | null;
466
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
467
+ advancementPolicyDefinition: {
468
+ id: string & {
469
+ readonly __brand: "uuidv7";
470
+ };
471
+ linearPipelineStepDefinitionId: string & {
472
+ readonly __brand: "uuidv7";
473
+ };
474
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
475
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
476
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
477
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
478
+ createdAt: string;
479
+ updatedAt: string;
480
+ };
481
+ createdAt: string;
482
+ updatedAt: string;
483
+ }[];
484
+ createdAt: string;
485
+ updatedAt: string;
486
+ }[];
487
+ 403: {
488
+ type: string;
489
+ title: string;
490
+ status: number;
491
+ detail?: string | undefined;
492
+ instance?: string | undefined;
493
+ code?: string | undefined;
494
+ errors?: {
495
+ path: string;
496
+ message: string;
497
+ summary?: string | undefined;
498
+ }[] | undefined;
499
+ };
500
+ 401: {
501
+ type: string;
502
+ title: string;
503
+ status: number;
504
+ detail?: string | undefined;
505
+ instance?: string | undefined;
506
+ code?: string | undefined;
507
+ errors?: {
508
+ path: string;
509
+ message: string;
510
+ summary?: string | undefined;
511
+ }[] | undefined;
512
+ };
513
+ };
514
+ };
515
+ };
516
+ } & {
517
+ "linear-pipeline-definitions": {
518
+ ":linearPipelineDefinitionId": {
519
+ put: {
520
+ body: {
521
+ status: "draft" | "active" | "archived";
522
+ name: string;
523
+ description: string | null;
524
+ projectId: string & {
525
+ readonly __brand: "uuidv7";
526
+ };
527
+ key: string;
528
+ version: number;
529
+ };
530
+ params: {
531
+ linearPipelineDefinitionId: string & {
532
+ readonly __brand: "uuidv7";
533
+ };
534
+ };
535
+ query: unknown;
536
+ headers: unknown;
537
+ response: {
538
+ 422: {
539
+ type: string;
540
+ title: string;
541
+ status: number;
542
+ detail?: string | undefined;
543
+ instance?: string | undefined;
544
+ code?: string | undefined;
545
+ errors?: {
546
+ path: string;
547
+ message: string;
548
+ summary?: string | undefined;
549
+ }[] | undefined;
550
+ };
551
+ 404: {
552
+ type: string;
553
+ title: string;
554
+ status: number;
555
+ detail?: string | undefined;
556
+ instance?: string | undefined;
557
+ code?: string | undefined;
558
+ errors?: {
559
+ path: string;
560
+ message: string;
561
+ summary?: string | undefined;
562
+ }[] | undefined;
563
+ };
564
+ 500: {
565
+ type: string;
566
+ title: string;
567
+ status: number;
568
+ detail?: string | undefined;
569
+ instance?: string | undefined;
570
+ code?: string | undefined;
571
+ errors?: {
572
+ path: string;
573
+ message: string;
574
+ summary?: string | undefined;
575
+ }[] | undefined;
576
+ };
577
+ 200: {
578
+ id: string & {
579
+ readonly __brand: "uuidv7";
580
+ };
581
+ projectId: string & {
582
+ readonly __brand: "uuidv7";
583
+ };
584
+ key: string;
585
+ name: string;
586
+ description: string | null;
587
+ version: number;
588
+ status: "draft" | "active" | "archived";
589
+ stepDefinitions: {
590
+ id: string & {
591
+ readonly __brand: "uuidv7";
592
+ };
593
+ linearPipelineDefinitionId: string & {
594
+ readonly __brand: "uuidv7";
595
+ };
596
+ stepDefinitionId: string & {
597
+ readonly __brand: "uuidv7";
598
+ };
599
+ stepDefinitionVersion: number;
600
+ key: string;
601
+ name: string;
602
+ description: string | null;
603
+ position: number;
604
+ inputBindingsJson: Record<string, {
605
+ source: "pipeline_input";
606
+ path: string | null;
607
+ } | {
608
+ source: "step_output";
609
+ stepKey: string;
610
+ path: string | null;
611
+ } | {
612
+ source: "step_signal";
613
+ stepKey: string;
614
+ signalKey: string;
615
+ } | {
616
+ source: "literal";
617
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
618
+ }> | null;
619
+ timeoutSeconds: number | null;
620
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
621
+ advancementPolicyDefinition: {
622
+ id: string & {
623
+ readonly __brand: "uuidv7";
624
+ };
625
+ linearPipelineStepDefinitionId: string & {
626
+ readonly __brand: "uuidv7";
627
+ };
628
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
629
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
630
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
631
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
632
+ createdAt: string;
633
+ updatedAt: string;
634
+ };
635
+ createdAt: string;
636
+ updatedAt: string;
637
+ }[];
638
+ createdAt: string;
639
+ updatedAt: string;
640
+ };
641
+ 403: {
642
+ type: string;
643
+ title: string;
644
+ status: number;
645
+ detail?: string | undefined;
646
+ instance?: string | undefined;
647
+ code?: string | undefined;
648
+ errors?: {
649
+ path: string;
650
+ message: string;
651
+ summary?: string | undefined;
652
+ }[] | undefined;
653
+ };
654
+ 401: {
655
+ type: string;
656
+ title: string;
657
+ status: number;
658
+ detail?: string | undefined;
659
+ instance?: string | undefined;
660
+ code?: string | undefined;
661
+ errors?: {
662
+ path: string;
663
+ message: string;
664
+ summary?: string | undefined;
665
+ }[] | undefined;
666
+ };
667
+ };
668
+ };
669
+ };
670
+ };
671
+ } & {
672
+ "linear-pipeline-definitions": {
673
+ ":linearPipelineDefinitionId": {
674
+ archive: {
675
+ put: {
676
+ body: unknown;
677
+ params: {
678
+ linearPipelineDefinitionId: string & {
679
+ readonly __brand: "uuidv7";
680
+ };
681
+ };
682
+ query: unknown;
683
+ headers: unknown;
684
+ response: {
685
+ 422: {
686
+ type: string;
687
+ title: string;
688
+ status: number;
689
+ detail?: string | undefined;
690
+ instance?: string | undefined;
691
+ code?: string | undefined;
692
+ errors?: {
693
+ path: string;
694
+ message: string;
695
+ summary?: string | undefined;
696
+ }[] | undefined;
697
+ };
698
+ 404: {
699
+ type: string;
700
+ title: string;
701
+ status: number;
702
+ detail?: string | undefined;
703
+ instance?: string | undefined;
704
+ code?: string | undefined;
705
+ errors?: {
706
+ path: string;
707
+ message: string;
708
+ summary?: string | undefined;
709
+ }[] | undefined;
710
+ };
711
+ 500: {
712
+ type: string;
713
+ title: string;
714
+ status: number;
715
+ detail?: string | undefined;
716
+ instance?: string | undefined;
717
+ code?: string | undefined;
718
+ errors?: {
719
+ path: string;
720
+ message: string;
721
+ summary?: string | undefined;
722
+ }[] | undefined;
723
+ };
724
+ 200: {
725
+ id: string & {
726
+ readonly __brand: "uuidv7";
727
+ };
728
+ projectId: string & {
729
+ readonly __brand: "uuidv7";
730
+ };
731
+ key: string;
732
+ name: string;
733
+ description: string | null;
734
+ version: number;
735
+ status: "draft" | "active" | "archived";
736
+ stepDefinitions: {
737
+ id: string & {
738
+ readonly __brand: "uuidv7";
739
+ };
740
+ linearPipelineDefinitionId: string & {
741
+ readonly __brand: "uuidv7";
742
+ };
743
+ stepDefinitionId: string & {
744
+ readonly __brand: "uuidv7";
745
+ };
746
+ stepDefinitionVersion: number;
747
+ key: string;
748
+ name: string;
749
+ description: string | null;
750
+ position: number;
751
+ inputBindingsJson: Record<string, {
752
+ source: "pipeline_input";
753
+ path: string | null;
754
+ } | {
755
+ source: "step_output";
756
+ stepKey: string;
757
+ path: string | null;
758
+ } | {
759
+ source: "step_signal";
760
+ stepKey: string;
761
+ signalKey: string;
762
+ } | {
763
+ source: "literal";
764
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
765
+ }> | null;
766
+ timeoutSeconds: number | null;
767
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
768
+ advancementPolicyDefinition: {
769
+ id: string & {
770
+ readonly __brand: "uuidv7";
771
+ };
772
+ linearPipelineStepDefinitionId: string & {
773
+ readonly __brand: "uuidv7";
774
+ };
775
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
776
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
777
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
778
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
779
+ createdAt: string;
780
+ updatedAt: string;
781
+ };
782
+ createdAt: string;
783
+ updatedAt: string;
784
+ }[];
785
+ createdAt: string;
786
+ updatedAt: string;
787
+ };
788
+ 403: {
789
+ type: string;
790
+ title: string;
791
+ status: number;
792
+ detail?: string | undefined;
793
+ instance?: string | undefined;
794
+ code?: string | undefined;
795
+ errors?: {
796
+ path: string;
797
+ message: string;
798
+ summary?: string | undefined;
799
+ }[] | undefined;
800
+ };
801
+ 401: {
802
+ type: string;
803
+ title: string;
804
+ status: number;
805
+ detail?: string | undefined;
806
+ instance?: string | undefined;
807
+ code?: string | undefined;
808
+ errors?: {
809
+ path: string;
810
+ message: string;
811
+ summary?: string | undefined;
812
+ }[] | undefined;
813
+ };
814
+ };
815
+ };
816
+ };
817
+ };
818
+ };
819
+ } & {
820
+ "linear-pipeline-definitions": {
821
+ ":linearPipelineDefinitionId": {
822
+ steps: {
823
+ post: {
824
+ body: {
825
+ name: string;
826
+ description: string | null;
827
+ key: string;
828
+ stepDefinitionId: string & {
829
+ readonly __brand: "uuidv7";
830
+ };
831
+ stepDefinitionVersion: number;
832
+ position: number;
833
+ inputBindingsJson: Record<string, {
834
+ source: "pipeline_input";
835
+ path: string | null;
836
+ } | {
837
+ source: "step_output";
838
+ stepKey: string;
839
+ path: string | null;
840
+ } | {
841
+ source: "step_signal";
842
+ stepKey: string;
843
+ signalKey: string;
844
+ } | {
845
+ source: "literal";
846
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
847
+ }> | null;
848
+ timeoutSeconds: number | null;
849
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
850
+ advancementPolicyDefinition: {
851
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
852
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
853
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
854
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
855
+ };
856
+ };
857
+ params: {
858
+ linearPipelineDefinitionId: string & {
859
+ readonly __brand: "uuidv7";
860
+ };
861
+ };
862
+ query: unknown;
863
+ headers: unknown;
864
+ response: {
865
+ 422: {
866
+ type: string;
867
+ title: string;
868
+ status: number;
869
+ detail?: string | undefined;
870
+ instance?: string | undefined;
871
+ code?: string | undefined;
872
+ errors?: {
873
+ path: string;
874
+ message: string;
875
+ summary?: string | undefined;
876
+ }[] | undefined;
877
+ };
878
+ 404: {
879
+ type: string;
880
+ title: string;
881
+ status: number;
882
+ detail?: string | undefined;
883
+ instance?: string | undefined;
884
+ code?: string | undefined;
885
+ errors?: {
886
+ path: string;
887
+ message: string;
888
+ summary?: string | undefined;
889
+ }[] | undefined;
890
+ };
891
+ 500: {
892
+ type: string;
893
+ title: string;
894
+ status: number;
895
+ detail?: string | undefined;
896
+ instance?: string | undefined;
897
+ code?: string | undefined;
898
+ errors?: {
899
+ path: string;
900
+ message: string;
901
+ summary?: string | undefined;
902
+ }[] | undefined;
903
+ };
904
+ 200: {
905
+ id: string & {
906
+ readonly __brand: "uuidv7";
907
+ };
908
+ projectId: string & {
909
+ readonly __brand: "uuidv7";
910
+ };
911
+ key: string;
912
+ name: string;
913
+ description: string | null;
914
+ version: number;
915
+ status: "draft" | "active" | "archived";
916
+ stepDefinitions: {
917
+ id: string & {
918
+ readonly __brand: "uuidv7";
919
+ };
920
+ linearPipelineDefinitionId: string & {
921
+ readonly __brand: "uuidv7";
922
+ };
923
+ stepDefinitionId: string & {
924
+ readonly __brand: "uuidv7";
925
+ };
926
+ stepDefinitionVersion: number;
927
+ key: string;
928
+ name: string;
929
+ description: string | null;
930
+ position: number;
931
+ inputBindingsJson: Record<string, {
932
+ source: "pipeline_input";
933
+ path: string | null;
934
+ } | {
935
+ source: "step_output";
936
+ stepKey: string;
937
+ path: string | null;
938
+ } | {
939
+ source: "step_signal";
940
+ stepKey: string;
941
+ signalKey: string;
942
+ } | {
943
+ source: "literal";
944
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
945
+ }> | null;
946
+ timeoutSeconds: number | null;
947
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
948
+ advancementPolicyDefinition: {
949
+ id: string & {
950
+ readonly __brand: "uuidv7";
951
+ };
952
+ linearPipelineStepDefinitionId: string & {
953
+ readonly __brand: "uuidv7";
954
+ };
955
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
956
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
957
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
958
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
959
+ createdAt: string;
960
+ updatedAt: string;
961
+ };
962
+ createdAt: string;
963
+ updatedAt: string;
964
+ }[];
965
+ createdAt: string;
966
+ updatedAt: string;
967
+ };
968
+ 403: {
969
+ type: string;
970
+ title: string;
971
+ status: number;
972
+ detail?: string | undefined;
973
+ instance?: string | undefined;
974
+ code?: string | undefined;
975
+ errors?: {
976
+ path: string;
977
+ message: string;
978
+ summary?: string | undefined;
979
+ }[] | undefined;
980
+ };
981
+ 401: {
982
+ type: string;
983
+ title: string;
984
+ status: number;
985
+ detail?: string | undefined;
986
+ instance?: string | undefined;
987
+ code?: string | undefined;
988
+ errors?: {
989
+ path: string;
990
+ message: string;
991
+ summary?: string | undefined;
992
+ }[] | undefined;
993
+ };
994
+ };
995
+ };
996
+ };
997
+ };
998
+ };
999
+ } & {
1000
+ "linear-pipeline-definitions": {
1001
+ ":linearPipelineDefinitionId": {
1002
+ steps: {
1003
+ ":linearPipelineStepDefinitionId": {
1004
+ put: {
1005
+ body: {
1006
+ name: string;
1007
+ description: string | null;
1008
+ key: string;
1009
+ stepDefinitionId: string & {
1010
+ readonly __brand: "uuidv7";
1011
+ };
1012
+ stepDefinitionVersion: number;
1013
+ position: number;
1014
+ inputBindingsJson: Record<string, {
1015
+ source: "pipeline_input";
1016
+ path: string | null;
1017
+ } | {
1018
+ source: "step_output";
1019
+ stepKey: string;
1020
+ path: string | null;
1021
+ } | {
1022
+ source: "step_signal";
1023
+ stepKey: string;
1024
+ signalKey: string;
1025
+ } | {
1026
+ source: "literal";
1027
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
1028
+ }> | null;
1029
+ timeoutSeconds: number | null;
1030
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1031
+ advancementPolicyDefinition: {
1032
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
1033
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
1034
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1035
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
1036
+ };
1037
+ };
1038
+ params: {
1039
+ linearPipelineDefinitionId: string & {
1040
+ readonly __brand: "uuidv7";
1041
+ };
1042
+ linearPipelineStepDefinitionId: string & {
1043
+ readonly __brand: "uuidv7";
1044
+ };
1045
+ };
1046
+ query: unknown;
1047
+ headers: unknown;
1048
+ response: {
1049
+ 422: {
1050
+ type: string;
1051
+ title: string;
1052
+ status: number;
1053
+ detail?: string | undefined;
1054
+ instance?: string | undefined;
1055
+ code?: string | undefined;
1056
+ errors?: {
1057
+ path: string;
1058
+ message: string;
1059
+ summary?: string | undefined;
1060
+ }[] | undefined;
1061
+ };
1062
+ 404: {
1063
+ type: string;
1064
+ title: string;
1065
+ status: number;
1066
+ detail?: string | undefined;
1067
+ instance?: string | undefined;
1068
+ code?: string | undefined;
1069
+ errors?: {
1070
+ path: string;
1071
+ message: string;
1072
+ summary?: string | undefined;
1073
+ }[] | undefined;
1074
+ };
1075
+ 500: {
1076
+ type: string;
1077
+ title: string;
1078
+ status: number;
1079
+ detail?: string | undefined;
1080
+ instance?: string | undefined;
1081
+ code?: string | undefined;
1082
+ errors?: {
1083
+ path: string;
1084
+ message: string;
1085
+ summary?: string | undefined;
1086
+ }[] | undefined;
1087
+ };
1088
+ 200: {
1089
+ id: string & {
1090
+ readonly __brand: "uuidv7";
1091
+ };
1092
+ projectId: string & {
1093
+ readonly __brand: "uuidv7";
1094
+ };
1095
+ key: string;
1096
+ name: string;
1097
+ description: string | null;
1098
+ version: number;
1099
+ status: "draft" | "active" | "archived";
1100
+ stepDefinitions: {
1101
+ id: string & {
1102
+ readonly __brand: "uuidv7";
1103
+ };
1104
+ linearPipelineDefinitionId: string & {
1105
+ readonly __brand: "uuidv7";
1106
+ };
1107
+ stepDefinitionId: string & {
1108
+ readonly __brand: "uuidv7";
1109
+ };
1110
+ stepDefinitionVersion: number;
1111
+ key: string;
1112
+ name: string;
1113
+ description: string | null;
1114
+ position: number;
1115
+ inputBindingsJson: Record<string, {
1116
+ source: "pipeline_input";
1117
+ path: string | null;
1118
+ } | {
1119
+ source: "step_output";
1120
+ stepKey: string;
1121
+ path: string | null;
1122
+ } | {
1123
+ source: "step_signal";
1124
+ stepKey: string;
1125
+ signalKey: string;
1126
+ } | {
1127
+ source: "literal";
1128
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
1129
+ }> | null;
1130
+ timeoutSeconds: number | null;
1131
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1132
+ advancementPolicyDefinition: {
1133
+ id: string & {
1134
+ readonly __brand: "uuidv7";
1135
+ };
1136
+ linearPipelineStepDefinitionId: string & {
1137
+ readonly __brand: "uuidv7";
1138
+ };
1139
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
1140
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
1141
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1142
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
1143
+ createdAt: string;
1144
+ updatedAt: string;
1145
+ };
1146
+ createdAt: string;
1147
+ updatedAt: string;
1148
+ }[];
1149
+ createdAt: string;
1150
+ updatedAt: string;
1151
+ };
1152
+ 403: {
1153
+ type: string;
1154
+ title: string;
1155
+ status: number;
1156
+ detail?: string | undefined;
1157
+ instance?: string | undefined;
1158
+ code?: string | undefined;
1159
+ errors?: {
1160
+ path: string;
1161
+ message: string;
1162
+ summary?: string | undefined;
1163
+ }[] | undefined;
1164
+ };
1165
+ 401: {
1166
+ type: string;
1167
+ title: string;
1168
+ status: number;
1169
+ detail?: string | undefined;
1170
+ instance?: string | undefined;
1171
+ code?: string | undefined;
1172
+ errors?: {
1173
+ path: string;
1174
+ message: string;
1175
+ summary?: string | undefined;
1176
+ }[] | undefined;
1177
+ };
1178
+ };
1179
+ };
1180
+ };
1181
+ };
1182
+ };
1183
+ };
1184
+ } & {
1185
+ "linear-pipeline-definitions": {
1186
+ ":linearPipelineDefinitionId": {
1187
+ steps: {
1188
+ ":linearPipelineStepDefinitionId": {
1189
+ delete: {
1190
+ body: unknown;
1191
+ params: {
1192
+ linearPipelineDefinitionId: string & {
1193
+ readonly __brand: "uuidv7";
1194
+ };
1195
+ linearPipelineStepDefinitionId: string & {
1196
+ readonly __brand: "uuidv7";
1197
+ };
1198
+ };
1199
+ query: unknown;
1200
+ headers: unknown;
1201
+ response: {
1202
+ 422: {
1203
+ type: string;
1204
+ title: string;
1205
+ status: number;
1206
+ detail?: string | undefined;
1207
+ instance?: string | undefined;
1208
+ code?: string | undefined;
1209
+ errors?: {
1210
+ path: string;
1211
+ message: string;
1212
+ summary?: string | undefined;
1213
+ }[] | undefined;
1214
+ };
1215
+ 404: {
1216
+ type: string;
1217
+ title: string;
1218
+ status: number;
1219
+ detail?: string | undefined;
1220
+ instance?: string | undefined;
1221
+ code?: string | undefined;
1222
+ errors?: {
1223
+ path: string;
1224
+ message: string;
1225
+ summary?: string | undefined;
1226
+ }[] | undefined;
1227
+ };
1228
+ 500: {
1229
+ type: string;
1230
+ title: string;
1231
+ status: number;
1232
+ detail?: string | undefined;
1233
+ instance?: string | undefined;
1234
+ code?: string | undefined;
1235
+ errors?: {
1236
+ path: string;
1237
+ message: string;
1238
+ summary?: string | undefined;
1239
+ }[] | undefined;
1240
+ };
1241
+ 200: {
1242
+ id: string & {
1243
+ readonly __brand: "uuidv7";
1244
+ };
1245
+ projectId: string & {
1246
+ readonly __brand: "uuidv7";
1247
+ };
1248
+ key: string;
1249
+ name: string;
1250
+ description: string | null;
1251
+ version: number;
1252
+ status: "draft" | "active" | "archived";
1253
+ stepDefinitions: {
1254
+ id: string & {
1255
+ readonly __brand: "uuidv7";
1256
+ };
1257
+ linearPipelineDefinitionId: string & {
1258
+ readonly __brand: "uuidv7";
1259
+ };
1260
+ stepDefinitionId: string & {
1261
+ readonly __brand: "uuidv7";
1262
+ };
1263
+ stepDefinitionVersion: number;
1264
+ key: string;
1265
+ name: string;
1266
+ description: string | null;
1267
+ position: number;
1268
+ inputBindingsJson: Record<string, {
1269
+ source: "pipeline_input";
1270
+ path: string | null;
1271
+ } | {
1272
+ source: "step_output";
1273
+ stepKey: string;
1274
+ path: string | null;
1275
+ } | {
1276
+ source: "step_signal";
1277
+ stepKey: string;
1278
+ signalKey: string;
1279
+ } | {
1280
+ source: "literal";
1281
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
1282
+ }> | null;
1283
+ timeoutSeconds: number | null;
1284
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1285
+ advancementPolicyDefinition: {
1286
+ id: string & {
1287
+ readonly __brand: "uuidv7";
1288
+ };
1289
+ linearPipelineStepDefinitionId: string & {
1290
+ readonly __brand: "uuidv7";
1291
+ };
1292
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
1293
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
1294
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1295
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
1296
+ createdAt: string;
1297
+ updatedAt: string;
1298
+ };
1299
+ createdAt: string;
1300
+ updatedAt: string;
1301
+ }[];
1302
+ createdAt: string;
1303
+ updatedAt: string;
1304
+ };
1305
+ 403: {
1306
+ type: string;
1307
+ title: string;
1308
+ status: number;
1309
+ detail?: string | undefined;
1310
+ instance?: string | undefined;
1311
+ code?: string | undefined;
1312
+ errors?: {
1313
+ path: string;
1314
+ message: string;
1315
+ summary?: string | undefined;
1316
+ }[] | undefined;
1317
+ };
1318
+ 401: {
1319
+ type: string;
1320
+ title: string;
1321
+ status: number;
1322
+ detail?: string | undefined;
1323
+ instance?: string | undefined;
1324
+ code?: string | undefined;
1325
+ errors?: {
1326
+ path: string;
1327
+ message: string;
1328
+ summary?: string | undefined;
1329
+ }[] | undefined;
1330
+ };
1331
+ };
1332
+ };
1333
+ };
1334
+ };
1335
+ };
1336
+ };
1337
+ } & {
1338
+ "linear-pipeline-definitions": {
1339
+ ":linearPipelineDefinitionId": {
1340
+ steps: {
1341
+ ":linearPipelineStepDefinitionId": {
1342
+ "advancement-policy": {
1343
+ put: {
1344
+ body: {
1345
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
1346
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
1347
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1348
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
1349
+ };
1350
+ params: {
1351
+ linearPipelineDefinitionId: string & {
1352
+ readonly __brand: "uuidv7";
1353
+ };
1354
+ linearPipelineStepDefinitionId: string & {
1355
+ readonly __brand: "uuidv7";
1356
+ };
1357
+ };
1358
+ query: unknown;
1359
+ headers: unknown;
1360
+ response: {
1361
+ 422: {
1362
+ type: string;
1363
+ title: string;
1364
+ status: number;
1365
+ detail?: string | undefined;
1366
+ instance?: string | undefined;
1367
+ code?: string | undefined;
1368
+ errors?: {
1369
+ path: string;
1370
+ message: string;
1371
+ summary?: string | undefined;
1372
+ }[] | undefined;
1373
+ };
1374
+ 404: {
1375
+ type: string;
1376
+ title: string;
1377
+ status: number;
1378
+ detail?: string | undefined;
1379
+ instance?: string | undefined;
1380
+ code?: string | undefined;
1381
+ errors?: {
1382
+ path: string;
1383
+ message: string;
1384
+ summary?: string | undefined;
1385
+ }[] | undefined;
1386
+ };
1387
+ 500: {
1388
+ type: string;
1389
+ title: string;
1390
+ status: number;
1391
+ detail?: string | undefined;
1392
+ instance?: string | undefined;
1393
+ code?: string | undefined;
1394
+ errors?: {
1395
+ path: string;
1396
+ message: string;
1397
+ summary?: string | undefined;
1398
+ }[] | undefined;
1399
+ };
1400
+ 200: {
1401
+ id: string & {
1402
+ readonly __brand: "uuidv7";
1403
+ };
1404
+ projectId: string & {
1405
+ readonly __brand: "uuidv7";
1406
+ };
1407
+ key: string;
1408
+ name: string;
1409
+ description: string | null;
1410
+ version: number;
1411
+ status: "draft" | "active" | "archived";
1412
+ stepDefinitions: {
1413
+ id: string & {
1414
+ readonly __brand: "uuidv7";
1415
+ };
1416
+ linearPipelineDefinitionId: string & {
1417
+ readonly __brand: "uuidv7";
1418
+ };
1419
+ stepDefinitionId: string & {
1420
+ readonly __brand: "uuidv7";
1421
+ };
1422
+ stepDefinitionVersion: number;
1423
+ key: string;
1424
+ name: string;
1425
+ description: string | null;
1426
+ position: number;
1427
+ inputBindingsJson: Record<string, {
1428
+ source: "pipeline_input";
1429
+ path: string | null;
1430
+ } | {
1431
+ source: "step_output";
1432
+ stepKey: string;
1433
+ path: string | null;
1434
+ } | {
1435
+ source: "step_signal";
1436
+ stepKey: string;
1437
+ signalKey: string;
1438
+ } | {
1439
+ source: "literal";
1440
+ value: import("@boboddy/core/common/contracts/json").AnyJsonValue;
1441
+ }> | null;
1442
+ timeoutSeconds: number | null;
1443
+ retryPolicyJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1444
+ advancementPolicyDefinition: {
1445
+ id: string & {
1446
+ readonly __brand: "uuidv7";
1447
+ };
1448
+ linearPipelineStepDefinitionId: string & {
1449
+ readonly __brand: "uuidv7";
1450
+ };
1451
+ rulesJson: import("@boboddy/core/pipeline-definitions/pipeline-definition/entities/linear-pipeline-step-advancement-policy-definition-entity").LinearPipelineStepAdvancementPolicyRulesJson;
1452
+ defaultEventType: "continue" | "block" | "needs_review" | "complete";
1453
+ defaultEventParamsJson: import("@boboddy/core/common/contracts/json").AnyJsonObject | null;
1454
+ allowedEventTypes: ("continue" | "block" | "needs_review" | "complete")[];
1455
+ createdAt: string;
1456
+ updatedAt: string;
1457
+ };
1458
+ createdAt: string;
1459
+ updatedAt: string;
1460
+ }[];
1461
+ createdAt: string;
1462
+ updatedAt: string;
1463
+ };
1464
+ 403: {
1465
+ type: string;
1466
+ title: string;
1467
+ status: number;
1468
+ detail?: string | undefined;
1469
+ instance?: string | undefined;
1470
+ code?: string | undefined;
1471
+ errors?: {
1472
+ path: string;
1473
+ message: string;
1474
+ summary?: string | undefined;
1475
+ }[] | undefined;
1476
+ };
1477
+ 401: {
1478
+ type: string;
1479
+ title: string;
1480
+ status: number;
1481
+ detail?: string | undefined;
1482
+ instance?: string | undefined;
1483
+ code?: string | undefined;
1484
+ errors?: {
1485
+ path: string;
1486
+ message: string;
1487
+ summary?: string | undefined;
1488
+ }[] | undefined;
1489
+ };
1490
+ };
1491
+ };
1492
+ };
1493
+ };
1494
+ };
1495
+ };
1496
+ };
1497
+ }, {
1498
+ derive: {};
1499
+ resolve: {};
1500
+ schema: {};
1501
+ standaloneSchema: {};
1502
+ response: {};
1503
+ }, {
1504
+ derive: {};
1505
+ resolve: {};
1506
+ schema: {};
1507
+ standaloneSchema: {};
1508
+ response: {};
1509
+ } & {
1510
+ derive: {
1511
+ readonly auth: {
1512
+ readonly userId: import("@boboddy/core/common/contracts/uuid-v7").UuidV7;
1513
+ readonly user: {
1514
+ id: string;
1515
+ createdAt: Date;
1516
+ updatedAt: Date;
1517
+ email: string;
1518
+ emailVerified: boolean;
1519
+ name: string;
1520
+ image?: string | null | undefined | undefined;
1521
+ };
1522
+ readonly session: {
1523
+ id: string;
1524
+ createdAt: Date;
1525
+ updatedAt: Date;
1526
+ userId: string;
1527
+ expiresAt: Date;
1528
+ token: string;
1529
+ ipAddress?: string | null | undefined | undefined;
1530
+ userAgent?: string | null | undefined | undefined;
1531
+ };
1532
+ };
1533
+ };
1534
+ resolve: {};
1535
+ schema: {};
1536
+ standaloneSchema: {};
1537
+ response: import("elysia").ExtractErrorFromHandle<{
1538
+ readonly auth: {
1539
+ readonly userId: import("@boboddy/core/common/contracts/uuid-v7").UuidV7;
1540
+ readonly user: {
1541
+ id: string;
1542
+ createdAt: Date;
1543
+ updatedAt: Date;
1544
+ email: string;
1545
+ emailVerified: boolean;
1546
+ name: string;
1547
+ image?: string | null | undefined | undefined;
1548
+ };
1549
+ readonly session: {
1550
+ id: string;
1551
+ createdAt: Date;
1552
+ updatedAt: Date;
1553
+ userId: string;
1554
+ expiresAt: Date;
1555
+ token: string;
1556
+ ipAddress?: string | null | undefined | undefined;
1557
+ userAgent?: string | null | undefined | undefined;
1558
+ };
1559
+ };
1560
+ }>;
1561
+ }>;