@junctionpanel/server 0.1.87 → 0.1.89

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.
@@ -17466,16 +17466,28 @@ export declare const ListAvailableProvidersResponseSchema: z.ZodObject<{
17466
17466
  payload: z.ZodObject<{
17467
17467
  providers: z.ZodArray<z.ZodObject<{
17468
17468
  provider: z.ZodEnum<[string, ...string[]]>;
17469
+ label: z.ZodOptional<z.ZodString>;
17470
+ description: z.ZodOptional<z.ZodString>;
17471
+ defaultModeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17472
+ modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, z.ZodTypeDef, AgentMode>, "many">>;
17469
17473
  available: z.ZodBoolean;
17470
17474
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17471
17475
  }, "strip", z.ZodTypeAny, {
17472
17476
  provider: string;
17473
17477
  available: boolean;
17474
17478
  error?: string | null | undefined;
17479
+ label?: string | undefined;
17480
+ description?: string | undefined;
17481
+ defaultModeId?: string | null | undefined;
17482
+ modes?: AgentMode[] | undefined;
17475
17483
  }, {
17476
17484
  provider: string;
17477
17485
  available: boolean;
17478
17486
  error?: string | null | undefined;
17487
+ label?: string | undefined;
17488
+ description?: string | undefined;
17489
+ defaultModeId?: string | null | undefined;
17490
+ modes?: AgentMode[] | undefined;
17479
17491
  }>, "many">;
17480
17492
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17481
17493
  fetchedAt: z.ZodString;
@@ -17487,6 +17499,10 @@ export declare const ListAvailableProvidersResponseSchema: z.ZodObject<{
17487
17499
  provider: string;
17488
17500
  available: boolean;
17489
17501
  error?: string | null | undefined;
17502
+ label?: string | undefined;
17503
+ description?: string | undefined;
17504
+ defaultModeId?: string | null | undefined;
17505
+ modes?: AgentMode[] | undefined;
17490
17506
  }[];
17491
17507
  error?: string | null | undefined;
17492
17508
  }, {
@@ -17496,6 +17512,10 @@ export declare const ListAvailableProvidersResponseSchema: z.ZodObject<{
17496
17512
  provider: string;
17497
17513
  available: boolean;
17498
17514
  error?: string | null | undefined;
17515
+ label?: string | undefined;
17516
+ description?: string | undefined;
17517
+ defaultModeId?: string | null | undefined;
17518
+ modes?: AgentMode[] | undefined;
17499
17519
  }[];
17500
17520
  error?: string | null | undefined;
17501
17521
  }>;
@@ -17508,6 +17528,10 @@ export declare const ListAvailableProvidersResponseSchema: z.ZodObject<{
17508
17528
  provider: string;
17509
17529
  available: boolean;
17510
17530
  error?: string | null | undefined;
17531
+ label?: string | undefined;
17532
+ description?: string | undefined;
17533
+ defaultModeId?: string | null | undefined;
17534
+ modes?: AgentMode[] | undefined;
17511
17535
  }[];
17512
17536
  error?: string | null | undefined;
17513
17537
  };
@@ -17520,6 +17544,10 @@ export declare const ListAvailableProvidersResponseSchema: z.ZodObject<{
17520
17544
  provider: string;
17521
17545
  available: boolean;
17522
17546
  error?: string | null | undefined;
17547
+ label?: string | undefined;
17548
+ description?: string | undefined;
17549
+ defaultModeId?: string | null | undefined;
17550
+ modes?: AgentMode[] | undefined;
17523
17551
  }[];
17524
17552
  error?: string | null | undefined;
17525
17553
  };
@@ -29431,16 +29459,28 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
29431
29459
  payload: z.ZodObject<{
29432
29460
  providers: z.ZodArray<z.ZodObject<{
29433
29461
  provider: z.ZodEnum<[string, ...string[]]>;
29462
+ label: z.ZodOptional<z.ZodString>;
29463
+ description: z.ZodOptional<z.ZodString>;
29464
+ defaultModeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29465
+ modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, z.ZodTypeDef, AgentMode>, "many">>;
29434
29466
  available: z.ZodBoolean;
29435
29467
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29436
29468
  }, "strip", z.ZodTypeAny, {
29437
29469
  provider: string;
29438
29470
  available: boolean;
29439
29471
  error?: string | null | undefined;
29472
+ label?: string | undefined;
29473
+ description?: string | undefined;
29474
+ defaultModeId?: string | null | undefined;
29475
+ modes?: AgentMode[] | undefined;
29440
29476
  }, {
29441
29477
  provider: string;
29442
29478
  available: boolean;
29443
29479
  error?: string | null | undefined;
29480
+ label?: string | undefined;
29481
+ description?: string | undefined;
29482
+ defaultModeId?: string | null | undefined;
29483
+ modes?: AgentMode[] | undefined;
29444
29484
  }>, "many">;
29445
29485
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29446
29486
  fetchedAt: z.ZodString;
@@ -29452,6 +29492,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
29452
29492
  provider: string;
29453
29493
  available: boolean;
29454
29494
  error?: string | null | undefined;
29495
+ label?: string | undefined;
29496
+ description?: string | undefined;
29497
+ defaultModeId?: string | null | undefined;
29498
+ modes?: AgentMode[] | undefined;
29455
29499
  }[];
29456
29500
  error?: string | null | undefined;
29457
29501
  }, {
@@ -29461,6 +29505,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
29461
29505
  provider: string;
29462
29506
  available: boolean;
29463
29507
  error?: string | null | undefined;
29508
+ label?: string | undefined;
29509
+ description?: string | undefined;
29510
+ defaultModeId?: string | null | undefined;
29511
+ modes?: AgentMode[] | undefined;
29464
29512
  }[];
29465
29513
  error?: string | null | undefined;
29466
29514
  }>;
@@ -29473,6 +29521,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
29473
29521
  provider: string;
29474
29522
  available: boolean;
29475
29523
  error?: string | null | undefined;
29524
+ label?: string | undefined;
29525
+ description?: string | undefined;
29526
+ defaultModeId?: string | null | undefined;
29527
+ modes?: AgentMode[] | undefined;
29476
29528
  }[];
29477
29529
  error?: string | null | undefined;
29478
29530
  };
@@ -29485,6 +29537,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
29485
29537
  provider: string;
29486
29538
  available: boolean;
29487
29539
  error?: string | null | undefined;
29540
+ label?: string | undefined;
29541
+ description?: string | undefined;
29542
+ defaultModeId?: string | null | undefined;
29543
+ modes?: AgentMode[] | undefined;
29488
29544
  }[];
29489
29545
  error?: string | null | undefined;
29490
29546
  };
@@ -44714,16 +44770,28 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
44714
44770
  payload: z.ZodObject<{
44715
44771
  providers: z.ZodArray<z.ZodObject<{
44716
44772
  provider: z.ZodEnum<[string, ...string[]]>;
44773
+ label: z.ZodOptional<z.ZodString>;
44774
+ description: z.ZodOptional<z.ZodString>;
44775
+ defaultModeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44776
+ modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, z.ZodTypeDef, AgentMode>, "many">>;
44717
44777
  available: z.ZodBoolean;
44718
44778
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44719
44779
  }, "strip", z.ZodTypeAny, {
44720
44780
  provider: string;
44721
44781
  available: boolean;
44722
44782
  error?: string | null | undefined;
44783
+ label?: string | undefined;
44784
+ description?: string | undefined;
44785
+ defaultModeId?: string | null | undefined;
44786
+ modes?: AgentMode[] | undefined;
44723
44787
  }, {
44724
44788
  provider: string;
44725
44789
  available: boolean;
44726
44790
  error?: string | null | undefined;
44791
+ label?: string | undefined;
44792
+ description?: string | undefined;
44793
+ defaultModeId?: string | null | undefined;
44794
+ modes?: AgentMode[] | undefined;
44727
44795
  }>, "many">;
44728
44796
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44729
44797
  fetchedAt: z.ZodString;
@@ -44735,6 +44803,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
44735
44803
  provider: string;
44736
44804
  available: boolean;
44737
44805
  error?: string | null | undefined;
44806
+ label?: string | undefined;
44807
+ description?: string | undefined;
44808
+ defaultModeId?: string | null | undefined;
44809
+ modes?: AgentMode[] | undefined;
44738
44810
  }[];
44739
44811
  error?: string | null | undefined;
44740
44812
  }, {
@@ -44744,6 +44816,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
44744
44816
  provider: string;
44745
44817
  available: boolean;
44746
44818
  error?: string | null | undefined;
44819
+ label?: string | undefined;
44820
+ description?: string | undefined;
44821
+ defaultModeId?: string | null | undefined;
44822
+ modes?: AgentMode[] | undefined;
44747
44823
  }[];
44748
44824
  error?: string | null | undefined;
44749
44825
  }>;
@@ -44756,6 +44832,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
44756
44832
  provider: string;
44757
44833
  available: boolean;
44758
44834
  error?: string | null | undefined;
44835
+ label?: string | undefined;
44836
+ description?: string | undefined;
44837
+ defaultModeId?: string | null | undefined;
44838
+ modes?: AgentMode[] | undefined;
44759
44839
  }[];
44760
44840
  error?: string | null | undefined;
44761
44841
  };
@@ -44768,6 +44848,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
44768
44848
  provider: string;
44769
44849
  available: boolean;
44770
44850
  error?: string | null | undefined;
44851
+ label?: string | undefined;
44852
+ description?: string | undefined;
44853
+ defaultModeId?: string | null | undefined;
44854
+ modes?: AgentMode[] | undefined;
44771
44855
  }[];
44772
44856
  error?: string | null | undefined;
44773
44857
  };
@@ -47996,6 +48080,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
47996
48080
  provider: string;
47997
48081
  available: boolean;
47998
48082
  error?: string | null | undefined;
48083
+ label?: string | undefined;
48084
+ description?: string | undefined;
48085
+ defaultModeId?: string | null | undefined;
48086
+ modes?: AgentMode[] | undefined;
47999
48087
  }[];
48000
48088
  error?: string | null | undefined;
48001
48089
  };
@@ -49783,6 +49871,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
49783
49871
  provider: string;
49784
49872
  available: boolean;
49785
49873
  error?: string | null | undefined;
49874
+ label?: string | undefined;
49875
+ description?: string | undefined;
49876
+ defaultModeId?: string | null | undefined;
49877
+ modes?: AgentMode[] | undefined;
49786
49878
  }[];
49787
49879
  error?: string | null | undefined;
49788
49880
  };
@@ -63420,16 +63512,28 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
63420
63512
  payload: z.ZodObject<{
63421
63513
  providers: z.ZodArray<z.ZodObject<{
63422
63514
  provider: z.ZodEnum<[string, ...string[]]>;
63515
+ label: z.ZodOptional<z.ZodString>;
63516
+ description: z.ZodOptional<z.ZodString>;
63517
+ defaultModeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63518
+ modes: z.ZodOptional<z.ZodArray<z.ZodType<AgentMode, z.ZodTypeDef, AgentMode>, "many">>;
63423
63519
  available: z.ZodBoolean;
63424
63520
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63425
63521
  }, "strip", z.ZodTypeAny, {
63426
63522
  provider: string;
63427
63523
  available: boolean;
63428
63524
  error?: string | null | undefined;
63525
+ label?: string | undefined;
63526
+ description?: string | undefined;
63527
+ defaultModeId?: string | null | undefined;
63528
+ modes?: AgentMode[] | undefined;
63429
63529
  }, {
63430
63530
  provider: string;
63431
63531
  available: boolean;
63432
63532
  error?: string | null | undefined;
63533
+ label?: string | undefined;
63534
+ description?: string | undefined;
63535
+ defaultModeId?: string | null | undefined;
63536
+ modes?: AgentMode[] | undefined;
63433
63537
  }>, "many">;
63434
63538
  error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63435
63539
  fetchedAt: z.ZodString;
@@ -63441,6 +63545,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
63441
63545
  provider: string;
63442
63546
  available: boolean;
63443
63547
  error?: string | null | undefined;
63548
+ label?: string | undefined;
63549
+ description?: string | undefined;
63550
+ defaultModeId?: string | null | undefined;
63551
+ modes?: AgentMode[] | undefined;
63444
63552
  }[];
63445
63553
  error?: string | null | undefined;
63446
63554
  }, {
@@ -63450,6 +63558,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
63450
63558
  provider: string;
63451
63559
  available: boolean;
63452
63560
  error?: string | null | undefined;
63561
+ label?: string | undefined;
63562
+ description?: string | undefined;
63563
+ defaultModeId?: string | null | undefined;
63564
+ modes?: AgentMode[] | undefined;
63453
63565
  }[];
63454
63566
  error?: string | null | undefined;
63455
63567
  }>;
@@ -63462,6 +63574,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
63462
63574
  provider: string;
63463
63575
  available: boolean;
63464
63576
  error?: string | null | undefined;
63577
+ label?: string | undefined;
63578
+ description?: string | undefined;
63579
+ defaultModeId?: string | null | undefined;
63580
+ modes?: AgentMode[] | undefined;
63465
63581
  }[];
63466
63582
  error?: string | null | undefined;
63467
63583
  };
@@ -63474,6 +63590,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
63474
63590
  provider: string;
63475
63591
  available: boolean;
63476
63592
  error?: string | null | undefined;
63593
+ label?: string | undefined;
63594
+ description?: string | undefined;
63595
+ defaultModeId?: string | null | undefined;
63596
+ modes?: AgentMode[] | undefined;
63477
63597
  }[];
63478
63598
  error?: string | null | undefined;
63479
63599
  };
@@ -66702,6 +66822,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
66702
66822
  provider: string;
66703
66823
  available: boolean;
66704
66824
  error?: string | null | undefined;
66825
+ label?: string | undefined;
66826
+ description?: string | undefined;
66827
+ defaultModeId?: string | null | undefined;
66828
+ modes?: AgentMode[] | undefined;
66705
66829
  }[];
66706
66830
  error?: string | null | undefined;
66707
66831
  };
@@ -68489,6 +68613,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
68489
68613
  provider: string;
68490
68614
  available: boolean;
68491
68615
  error?: string | null | undefined;
68616
+ label?: string | undefined;
68617
+ description?: string | undefined;
68618
+ defaultModeId?: string | null | undefined;
68619
+ modes?: AgentMode[] | undefined;
68492
68620
  }[];
68493
68621
  error?: string | null | undefined;
68494
68622
  };