@renai-labs/sdk 0.1.15 → 0.1.17

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.
@@ -1,9 +1,4 @@
1
1
  import * as z from "zod";
2
- export declare const zProjectGitRepo: z.ZodObject<{
3
- url: z.ZodString;
4
- baseBranch: z.ZodOptional<z.ZodString>;
5
- mountPath: z.ZodOptional<z.ZodString>;
6
- }, z.core.$strip>;
7
2
  export declare const zPermissionConfig: z.ZodUnion<readonly [z.ZodObject<{
8
3
  __originalKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
9
4
  read: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
@@ -334,7 +329,7 @@ export declare const zBlueprintProjectEntry: z.ZodObject<{
334
329
  schedule: z.ZodString;
335
330
  timezone: z.ZodNullable<z.ZodString>;
336
331
  cronTriggerId: z.ZodString;
337
- agentId: z.ZodString;
332
+ agentId: z.ZodNullable<z.ZodString>;
338
333
  }, z.core.$strip>>;
339
334
  }, z.core.$strip>;
340
335
  export declare const zBlueprintTemplate: z.ZodObject<{
@@ -483,7 +478,7 @@ export declare const zBlueprintTemplate: z.ZodObject<{
483
478
  schedule: z.ZodString;
484
479
  timezone: z.ZodNullable<z.ZodString>;
485
480
  cronTriggerId: z.ZodString;
486
- agentId: z.ZodString;
481
+ agentId: z.ZodNullable<z.ZodString>;
487
482
  }, z.core.$strip>>;
488
483
  }, z.core.$strip>>;
489
484
  agents: z.ZodArray<z.ZodObject<{
@@ -662,7 +657,7 @@ export declare const zBlueprintPublicView: z.ZodObject<{
662
657
  schedule: z.ZodString;
663
658
  timezone: z.ZodNullable<z.ZodString>;
664
659
  cronTriggerId: z.ZodString;
665
- agentId: z.ZodString;
660
+ agentId: z.ZodNullable<z.ZodString>;
666
661
  }, z.core.$strip>>;
667
662
  }, z.core.$strip>>;
668
663
  agents: z.ZodArray<z.ZodObject<{
@@ -843,7 +838,6 @@ export declare const zTelegramChatMapping: z.ZodObject<{
843
838
  chatTitle: z.ZodNullable<z.ZodString>;
844
839
  chatType: z.ZodNullable<z.ZodString>;
845
840
  projectId: z.ZodString;
846
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
847
841
  claimedByUserId: z.ZodNullable<z.ZodString>;
848
842
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
849
843
  allowedSenders: z.ZodArray<z.ZodString>;
@@ -858,7 +852,6 @@ export declare const zTelegramChat: z.ZodObject<{
858
852
  chatTitle: z.ZodNullable<z.ZodString>;
859
853
  chatType: z.ZodNullable<z.ZodString>;
860
854
  projectId: z.ZodString;
861
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
862
855
  claimedByUserId: z.ZodNullable<z.ZodString>;
863
856
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
864
857
  allowedSenders: z.ZodArray<z.ZodString>;
@@ -885,7 +878,6 @@ export declare const zProjectEmailResponse: z.ZodObject<{
885
878
  orgId: z.ZodString;
886
879
  podId: z.ZodString;
887
880
  projectId: z.ZodString;
888
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
889
881
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
890
882
  localPart: z.ZodString;
891
883
  createdAt: z.ZodISODateTime;
@@ -898,7 +890,6 @@ export declare const zSlackChannel: z.ZodObject<{
898
890
  id: z.ZodString;
899
891
  name: z.ZodString;
900
892
  projectId: z.ZodNullable<z.ZodString>;
901
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
902
893
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
903
894
  projectName: z.ZodNullable<z.ZodString>;
904
895
  }, z.core.$strip>;
@@ -935,7 +926,7 @@ export declare const zSlackOAuthStartResult: z.ZodObject<{
935
926
  export declare const zWebhookTrigger: z.ZodObject<{
936
927
  id: z.ZodString;
937
928
  projectId: z.ZodString;
938
- projectAgentId: z.ZodString;
929
+ projectAgentId: z.ZodNullable<z.ZodString>;
939
930
  senderUserId: z.ZodString;
940
931
  provider: z.ZodEnum<{
941
932
  generic: "generic";
@@ -954,7 +945,7 @@ export declare const zWebhookTriggerCreateResult: z.ZodObject<{
954
945
  trigger: z.ZodObject<{
955
946
  id: z.ZodString;
956
947
  projectId: z.ZodString;
957
- projectAgentId: z.ZodString;
948
+ projectAgentId: z.ZodNullable<z.ZodString>;
958
949
  senderUserId: z.ZodString;
959
950
  provider: z.ZodEnum<{
960
951
  generic: "generic";
@@ -974,7 +965,7 @@ export declare const zWebhookTriggerCreateResult: z.ZodObject<{
974
965
  export declare const zCronTrigger: z.ZodObject<{
975
966
  id: z.ZodString;
976
967
  projectId: z.ZodString;
977
- projectAgentId: z.ZodString;
968
+ projectAgentId: z.ZodNullable<z.ZodString>;
978
969
  senderUserId: z.ZodString;
979
970
  inputMessage: z.ZodString;
980
971
  schedule: z.ZodString;
@@ -1388,6 +1379,10 @@ export declare const zAuthRequirements: z.ZodObject<{
1388
1379
  }, z.core.$strip>>;
1389
1380
  }, z.core.$strip>>;
1390
1381
  }, z.core.$strip>;
1382
+ export declare const zSessionTracesResponse: z.ZodObject<{
1383
+ configured: z.ZodBoolean;
1384
+ traces: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1385
+ }, z.core.$strip>;
1391
1386
  export declare const zSessionMessagesPage: z.ZodObject<{
1392
1387
  items: z.ZodArray<z.ZodObject<{
1393
1388
  info: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -1400,6 +1395,7 @@ export declare const zSessionMessagesPage: z.ZodObject<{
1400
1395
  export declare const zSessionUrlResponse: z.ZodObject<{
1401
1396
  url: z.ZodString;
1402
1397
  authedUrl: z.ZodString;
1398
+ serverUrl: z.ZodString;
1403
1399
  serverPassword: z.ZodString;
1404
1400
  username: z.ZodString;
1405
1401
  }, z.core.$strip>;
@@ -1525,6 +1521,13 @@ export declare const zProjectAgent: z.ZodObject<{
1525
1521
  createdAt: z.ZodISODateTime;
1526
1522
  updatedAt: z.ZodISODateTime;
1527
1523
  }, z.core.$strip>;
1524
+ export declare const zProjectGitRepo: z.ZodObject<{
1525
+ name: z.ZodString;
1526
+ url: z.ZodString;
1527
+ baseBranch: z.ZodOptional<z.ZodString>;
1528
+ description: z.ZodOptional<z.ZodString>;
1529
+ hidden: z.ZodOptional<z.ZodBoolean>;
1530
+ }, z.core.$strip>;
1528
1531
  export declare const zProject: z.ZodObject<{
1529
1532
  id: z.ZodString;
1530
1533
  orgId: z.ZodString;
@@ -1660,10 +1663,12 @@ export declare const zProject: z.ZodObject<{
1660
1663
  deny: "deny";
1661
1664
  ask: "ask";
1662
1665
  }>]>;
1663
- gitRepo: z.ZodNullable<z.ZodObject<{
1666
+ gitRepos: z.ZodArray<z.ZodObject<{
1667
+ name: z.ZodString;
1664
1668
  url: z.ZodString;
1665
1669
  baseBranch: z.ZodOptional<z.ZodString>;
1666
- mountPath: z.ZodOptional<z.ZodString>;
1670
+ description: z.ZodOptional<z.ZodString>;
1671
+ hidden: z.ZodOptional<z.ZodBoolean>;
1667
1672
  }, z.core.$strip>>;
1668
1673
  createdAt: z.ZodISODateTime;
1669
1674
  updatedAt: z.ZodISODateTime;
@@ -2399,7 +2404,7 @@ export declare const zBlueprint: z.ZodObject<{
2399
2404
  schedule: z.ZodString;
2400
2405
  timezone: z.ZodNullable<z.ZodString>;
2401
2406
  cronTriggerId: z.ZodString;
2402
- agentId: z.ZodString;
2407
+ agentId: z.ZodNullable<z.ZodString>;
2403
2408
  }, z.core.$strip>>;
2404
2409
  }, z.core.$strip>>;
2405
2410
  agents: z.ZodArray<z.ZodObject<{
@@ -4421,7 +4426,7 @@ export declare const zBlueprintListResponse: z.ZodArray<z.ZodObject<{
4421
4426
  schedule: z.ZodString;
4422
4427
  timezone: z.ZodNullable<z.ZodString>;
4423
4428
  cronTriggerId: z.ZodString;
4424
- agentId: z.ZodString;
4429
+ agentId: z.ZodNullable<z.ZodString>;
4425
4430
  }, z.core.$strip>>;
4426
4431
  }, z.core.$strip>>;
4427
4432
  agents: z.ZodArray<z.ZodObject<{
@@ -4637,7 +4642,7 @@ export declare const zBlueprintCreateResponse: z.ZodObject<{
4637
4642
  schedule: z.ZodString;
4638
4643
  timezone: z.ZodNullable<z.ZodString>;
4639
4644
  cronTriggerId: z.ZodString;
4640
- agentId: z.ZodString;
4645
+ agentId: z.ZodNullable<z.ZodString>;
4641
4646
  }, z.core.$strip>>;
4642
4647
  }, z.core.$strip>>;
4643
4648
  agents: z.ZodArray<z.ZodObject<{
@@ -4862,7 +4867,7 @@ export declare const zBlueprintGetResponse: z.ZodObject<{
4862
4867
  schedule: z.ZodString;
4863
4868
  timezone: z.ZodNullable<z.ZodString>;
4864
4869
  cronTriggerId: z.ZodString;
4865
- agentId: z.ZodString;
4870
+ agentId: z.ZodNullable<z.ZodString>;
4866
4871
  }, z.core.$strip>>;
4867
4872
  }, z.core.$strip>>;
4868
4873
  agents: z.ZodArray<z.ZodObject<{
@@ -5081,7 +5086,7 @@ export declare const zBlueprintUpdateResponse: z.ZodObject<{
5081
5086
  schedule: z.ZodString;
5082
5087
  timezone: z.ZodNullable<z.ZodString>;
5083
5088
  cronTriggerId: z.ZodString;
5084
- agentId: z.ZodString;
5089
+ agentId: z.ZodNullable<z.ZodString>;
5085
5090
  }, z.core.$strip>>;
5086
5091
  }, z.core.$strip>>;
5087
5092
  agents: z.ZodArray<z.ZodObject<{
@@ -5279,7 +5284,7 @@ export declare const zBlueprintPublishResponse: z.ZodObject<{
5279
5284
  schedule: z.ZodString;
5280
5285
  timezone: z.ZodNullable<z.ZodString>;
5281
5286
  cronTriggerId: z.ZodString;
5282
- agentId: z.ZodString;
5287
+ agentId: z.ZodNullable<z.ZodString>;
5283
5288
  }, z.core.$strip>>;
5284
5289
  }, z.core.$strip>>;
5285
5290
  agents: z.ZodArray<z.ZodObject<{
@@ -5480,7 +5485,7 @@ export declare const zBlueprintDeprecateResponse: z.ZodObject<{
5480
5485
  schedule: z.ZodString;
5481
5486
  timezone: z.ZodNullable<z.ZodString>;
5482
5487
  cronTriggerId: z.ZodString;
5483
- agentId: z.ZodString;
5488
+ agentId: z.ZodNullable<z.ZodString>;
5484
5489
  }, z.core.$strip>>;
5485
5490
  }, z.core.$strip>>;
5486
5491
  agents: z.ZodArray<z.ZodObject<{
@@ -5678,7 +5683,7 @@ export declare const zBlueprintUndeprecateResponse: z.ZodObject<{
5678
5683
  schedule: z.ZodString;
5679
5684
  timezone: z.ZodNullable<z.ZodString>;
5680
5685
  cronTriggerId: z.ZodString;
5681
- agentId: z.ZodString;
5686
+ agentId: z.ZodNullable<z.ZodString>;
5682
5687
  }, z.core.$strip>>;
5683
5688
  }, z.core.$strip>>;
5684
5689
  agents: z.ZodArray<z.ZodObject<{
@@ -5876,7 +5881,7 @@ export declare const zBlueprintArchiveResponse: z.ZodObject<{
5876
5881
  schedule: z.ZodString;
5877
5882
  timezone: z.ZodNullable<z.ZodString>;
5878
5883
  cronTriggerId: z.ZodString;
5879
- agentId: z.ZodString;
5884
+ agentId: z.ZodNullable<z.ZodString>;
5880
5885
  }, z.core.$strip>>;
5881
5886
  }, z.core.$strip>>;
5882
5887
  agents: z.ZodArray<z.ZodObject<{
@@ -8579,10 +8584,12 @@ export declare const zProjectListResponse: z.ZodArray<z.ZodObject<{
8579
8584
  deny: "deny";
8580
8585
  ask: "ask";
8581
8586
  }>]>;
8582
- gitRepo: z.ZodNullable<z.ZodObject<{
8587
+ gitRepos: z.ZodArray<z.ZodObject<{
8588
+ name: z.ZodString;
8583
8589
  url: z.ZodString;
8584
8590
  baseBranch: z.ZodOptional<z.ZodString>;
8585
- mountPath: z.ZodOptional<z.ZodString>;
8591
+ description: z.ZodOptional<z.ZodString>;
8592
+ hidden: z.ZodOptional<z.ZodBoolean>;
8586
8593
  }, z.core.$strip>>;
8587
8594
  createdAt: z.ZodISODateTime;
8588
8595
  updatedAt: z.ZodISODateTime;
@@ -8719,10 +8726,12 @@ export declare const zProjectCreateBody: z.ZodObject<{
8719
8726
  deny: "deny";
8720
8727
  ask: "ask";
8721
8728
  }>]>>;
8722
- gitRepo: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodObject<{
8729
+ gitRepos: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
8730
+ name: z.ZodString;
8723
8731
  url: z.ZodString;
8724
8732
  baseBranch: z.ZodOptional<z.ZodString>;
8725
- mountPath: z.ZodOptional<z.ZodString>;
8733
+ description: z.ZodOptional<z.ZodString>;
8734
+ hidden: z.ZodOptional<z.ZodBoolean>;
8726
8735
  }, z.core.$strip>>>>;
8727
8736
  }, z.core.$strip>;
8728
8737
  export declare const zProjectCreateQuery: z.ZodObject<{
@@ -8868,10 +8877,12 @@ export declare const zProjectCreateResponse: z.ZodObject<{
8868
8877
  deny: "deny";
8869
8878
  ask: "ask";
8870
8879
  }>]>;
8871
- gitRepo: z.ZodNullable<z.ZodObject<{
8880
+ gitRepos: z.ZodArray<z.ZodObject<{
8881
+ name: z.ZodString;
8872
8882
  url: z.ZodString;
8873
8883
  baseBranch: z.ZodOptional<z.ZodString>;
8874
- mountPath: z.ZodOptional<z.ZodString>;
8884
+ description: z.ZodOptional<z.ZodString>;
8885
+ hidden: z.ZodOptional<z.ZodBoolean>;
8875
8886
  }, z.core.$strip>>;
8876
8887
  createdAt: z.ZodISODateTime;
8877
8888
  updatedAt: z.ZodISODateTime;
@@ -9023,10 +9034,12 @@ export declare const zProjectGetResponse: z.ZodObject<{
9023
9034
  deny: "deny";
9024
9035
  ask: "ask";
9025
9036
  }>]>;
9026
- gitRepo: z.ZodNullable<z.ZodObject<{
9037
+ gitRepos: z.ZodArray<z.ZodObject<{
9038
+ name: z.ZodString;
9027
9039
  url: z.ZodString;
9028
9040
  baseBranch: z.ZodOptional<z.ZodString>;
9029
- mountPath: z.ZodOptional<z.ZodString>;
9041
+ description: z.ZodOptional<z.ZodString>;
9042
+ hidden: z.ZodOptional<z.ZodBoolean>;
9030
9043
  }, z.core.$strip>>;
9031
9044
  createdAt: z.ZodISODateTime;
9032
9045
  updatedAt: z.ZodISODateTime;
@@ -9162,10 +9175,12 @@ export declare const zProjectUpdateBody: z.ZodObject<{
9162
9175
  deny: "deny";
9163
9176
  ask: "ask";
9164
9177
  }>]>>;
9165
- gitRepo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9178
+ gitRepos: z.ZodOptional<z.ZodArray<z.ZodObject<{
9179
+ name: z.ZodString;
9166
9180
  url: z.ZodString;
9167
9181
  baseBranch: z.ZodOptional<z.ZodString>;
9168
- mountPath: z.ZodOptional<z.ZodString>;
9182
+ description: z.ZodOptional<z.ZodString>;
9183
+ hidden: z.ZodOptional<z.ZodBoolean>;
9169
9184
  }, z.core.$strip>>>;
9170
9185
  }, z.core.$strip>;
9171
9186
  export declare const zProjectUpdatePath: z.ZodObject<{
@@ -9314,10 +9329,12 @@ export declare const zProjectUpdateResponse: z.ZodObject<{
9314
9329
  deny: "deny";
9315
9330
  ask: "ask";
9316
9331
  }>]>;
9317
- gitRepo: z.ZodNullable<z.ZodObject<{
9332
+ gitRepos: z.ZodArray<z.ZodObject<{
9333
+ name: z.ZodString;
9318
9334
  url: z.ZodString;
9319
9335
  baseBranch: z.ZodOptional<z.ZodString>;
9320
- mountPath: z.ZodOptional<z.ZodString>;
9336
+ description: z.ZodOptional<z.ZodString>;
9337
+ hidden: z.ZodOptional<z.ZodBoolean>;
9321
9338
  }, z.core.$strip>>;
9322
9339
  createdAt: z.ZodISODateTime;
9323
9340
  updatedAt: z.ZodISODateTime;
@@ -9700,10 +9717,12 @@ export declare const zProjectArchiveResponse: z.ZodObject<{
9700
9717
  deny: "deny";
9701
9718
  ask: "ask";
9702
9719
  }>]>;
9703
- gitRepo: z.ZodNullable<z.ZodObject<{
9720
+ gitRepos: z.ZodArray<z.ZodObject<{
9721
+ name: z.ZodString;
9704
9722
  url: z.ZodString;
9705
9723
  baseBranch: z.ZodOptional<z.ZodString>;
9706
- mountPath: z.ZodOptional<z.ZodString>;
9724
+ description: z.ZodOptional<z.ZodString>;
9725
+ hidden: z.ZodOptional<z.ZodBoolean>;
9707
9726
  }, z.core.$strip>>;
9708
9727
  createdAt: z.ZodISODateTime;
9709
9728
  updatedAt: z.ZodISODateTime;
@@ -10410,6 +10429,7 @@ export declare const zSessionUrlQuery: z.ZodObject<{
10410
10429
  export declare const zSessionUrlResponse2: z.ZodObject<{
10411
10430
  url: z.ZodString;
10412
10431
  authedUrl: z.ZodString;
10432
+ serverUrl: z.ZodString;
10413
10433
  serverPassword: z.ZodString;
10414
10434
  username: z.ZodString;
10415
10435
  }, z.core.$strip>;
@@ -10435,6 +10455,24 @@ export declare const zSessionMessagesListResponse: z.ZodObject<{
10435
10455
  pageSize: z.ZodInt;
10436
10456
  total: z.ZodInt;
10437
10457
  }, z.core.$strip>;
10458
+ export declare const zSessionTracesListPath: z.ZodObject<{
10459
+ id: z.ZodString;
10460
+ }, z.core.$strip>;
10461
+ export declare const zSessionTracesListQuery: z.ZodObject<{
10462
+ scope: z.ZodOptional<z.ZodEnum<{
10463
+ user: "user";
10464
+ }>>;
10465
+ limit: z.ZodOptional<z.ZodInt>;
10466
+ page: z.ZodOptional<z.ZodInt>;
10467
+ fields: z.ZodOptional<z.ZodString>;
10468
+ }, z.core.$strip>;
10469
+ /**
10470
+ * Session traces
10471
+ */
10472
+ export declare const zSessionTracesListResponse: z.ZodObject<{
10473
+ configured: z.ZodBoolean;
10474
+ traces: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
10475
+ }, z.core.$strip>;
10438
10476
  export declare const zSessionAuthRequirementsPath: z.ZodObject<{
10439
10477
  id: z.ZodString;
10440
10478
  }, z.core.$strip>;
@@ -11579,7 +11617,7 @@ export declare const zTriggerListQuery: z.ZodObject<{
11579
11617
  export declare const zTriggerListResponse: z.ZodArray<z.ZodObject<{
11580
11618
  id: z.ZodString;
11581
11619
  projectId: z.ZodString;
11582
- projectAgentId: z.ZodString;
11620
+ projectAgentId: z.ZodNullable<z.ZodString>;
11583
11621
  senderUserId: z.ZodString;
11584
11622
  inputMessage: z.ZodString;
11585
11623
  schedule: z.ZodString;
@@ -11592,7 +11630,7 @@ export declare const zTriggerListResponse: z.ZodArray<z.ZodObject<{
11592
11630
  }, z.core.$strip>>;
11593
11631
  export declare const zTriggerCreateBody: z.ZodObject<{
11594
11632
  projectId: z.ZodString;
11595
- projectAgentId: z.ZodString;
11633
+ projectAgentId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11596
11634
  senderUserId: z.ZodOptional<z.ZodString>;
11597
11635
  inputMessage: z.ZodString;
11598
11636
  schedule: z.ZodString;
@@ -11610,7 +11648,7 @@ export declare const zTriggerCreateQuery: z.ZodObject<{
11610
11648
  export declare const zTriggerCreateResponse: z.ZodObject<{
11611
11649
  id: z.ZodString;
11612
11650
  projectId: z.ZodString;
11613
- projectAgentId: z.ZodString;
11651
+ projectAgentId: z.ZodNullable<z.ZodString>;
11614
11652
  senderUserId: z.ZodString;
11615
11653
  inputMessage: z.ZodString;
11616
11654
  schedule: z.ZodString;
@@ -11636,7 +11674,7 @@ export declare const zTriggerGetQuery: z.ZodObject<{
11636
11674
  export declare const zTriggerGetResponse: z.ZodObject<{
11637
11675
  id: z.ZodString;
11638
11676
  projectId: z.ZodString;
11639
- projectAgentId: z.ZodString;
11677
+ projectAgentId: z.ZodNullable<z.ZodString>;
11640
11678
  senderUserId: z.ZodString;
11641
11679
  inputMessage: z.ZodString;
11642
11680
  schedule: z.ZodString;
@@ -11648,7 +11686,7 @@ export declare const zTriggerGetResponse: z.ZodObject<{
11648
11686
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
11649
11687
  }, z.core.$strip>;
11650
11688
  export declare const zTriggerUpdateBody: z.ZodObject<{
11651
- projectAgentId: z.ZodOptional<z.ZodString>;
11689
+ projectAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11652
11690
  senderUserId: z.ZodOptional<z.ZodString>;
11653
11691
  inputMessage: z.ZodOptional<z.ZodString>;
11654
11692
  schedule: z.ZodOptional<z.ZodString>;
@@ -11670,7 +11708,7 @@ export declare const zTriggerUpdateQuery: z.ZodObject<{
11670
11708
  export declare const zTriggerUpdateResponse: z.ZodObject<{
11671
11709
  id: z.ZodString;
11672
11710
  projectId: z.ZodString;
11673
- projectAgentId: z.ZodString;
11711
+ projectAgentId: z.ZodNullable<z.ZodString>;
11674
11712
  senderUserId: z.ZodString;
11675
11713
  inputMessage: z.ZodString;
11676
11714
  schedule: z.ZodString;
@@ -11698,7 +11736,7 @@ export declare const zTriggerArchiveQuery: z.ZodObject<{
11698
11736
  export declare const zTriggerArchiveResponse: z.ZodObject<{
11699
11737
  id: z.ZodString;
11700
11738
  projectId: z.ZodString;
11701
- projectAgentId: z.ZodString;
11739
+ projectAgentId: z.ZodNullable<z.ZodString>;
11702
11740
  senderUserId: z.ZodString;
11703
11741
  inputMessage: z.ZodString;
11704
11742
  schedule: z.ZodString;
@@ -11724,7 +11762,7 @@ export declare const zWebhookTriggerListQuery: z.ZodObject<{
11724
11762
  export declare const zWebhookTriggerListResponse: z.ZodArray<z.ZodObject<{
11725
11763
  id: z.ZodString;
11726
11764
  projectId: z.ZodString;
11727
- projectAgentId: z.ZodString;
11765
+ projectAgentId: z.ZodNullable<z.ZodString>;
11728
11766
  senderUserId: z.ZodString;
11729
11767
  provider: z.ZodEnum<{
11730
11768
  generic: "generic";
@@ -11741,7 +11779,7 @@ export declare const zWebhookTriggerListResponse: z.ZodArray<z.ZodObject<{
11741
11779
  }, z.core.$strip>>;
11742
11780
  export declare const zWebhookTriggerCreateBody: z.ZodObject<{
11743
11781
  projectId: z.ZodString;
11744
- projectAgentId: z.ZodString;
11782
+ projectAgentId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11745
11783
  senderUserId: z.ZodString;
11746
11784
  provider: z.ZodEnum<{
11747
11785
  generic: "generic";
@@ -11764,7 +11802,7 @@ export declare const zWebhookTriggerCreateResponse: z.ZodObject<{
11764
11802
  trigger: z.ZodObject<{
11765
11803
  id: z.ZodString;
11766
11804
  projectId: z.ZodString;
11767
- projectAgentId: z.ZodString;
11805
+ projectAgentId: z.ZodNullable<z.ZodString>;
11768
11806
  senderUserId: z.ZodString;
11769
11807
  provider: z.ZodEnum<{
11770
11808
  generic: "generic";
@@ -11796,7 +11834,7 @@ export declare const zWebhookTriggerGetQuery: z.ZodObject<{
11796
11834
  export declare const zWebhookTriggerGetResponse: z.ZodObject<{
11797
11835
  id: z.ZodString;
11798
11836
  projectId: z.ZodString;
11799
- projectAgentId: z.ZodString;
11837
+ projectAgentId: z.ZodNullable<z.ZodString>;
11800
11838
  senderUserId: z.ZodString;
11801
11839
  provider: z.ZodEnum<{
11802
11840
  generic: "generic";
@@ -11812,7 +11850,7 @@ export declare const zWebhookTriggerGetResponse: z.ZodObject<{
11812
11850
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
11813
11851
  }, z.core.$strip>;
11814
11852
  export declare const zWebhookTriggerUpdateBody: z.ZodObject<{
11815
- projectAgentId: z.ZodOptional<z.ZodString>;
11853
+ projectAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11816
11854
  senderUserId: z.ZodOptional<z.ZodString>;
11817
11855
  scopeFilter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11818
11856
  channelId: z.ZodOptional<z.ZodString>;
@@ -11834,7 +11872,7 @@ export declare const zWebhookTriggerUpdateQuery: z.ZodObject<{
11834
11872
  export declare const zWebhookTriggerUpdateResponse: z.ZodObject<{
11835
11873
  id: z.ZodString;
11836
11874
  projectId: z.ZodString;
11837
- projectAgentId: z.ZodString;
11875
+ projectAgentId: z.ZodNullable<z.ZodString>;
11838
11876
  senderUserId: z.ZodString;
11839
11877
  provider: z.ZodEnum<{
11840
11878
  generic: "generic";
@@ -11866,7 +11904,7 @@ export declare const zWebhookTriggerArchiveQuery: z.ZodObject<{
11866
11904
  export declare const zWebhookTriggerArchiveResponse: z.ZodObject<{
11867
11905
  id: z.ZodString;
11868
11906
  projectId: z.ZodString;
11869
- projectAgentId: z.ZodString;
11907
+ projectAgentId: z.ZodNullable<z.ZodString>;
11870
11908
  senderUserId: z.ZodString;
11871
11909
  provider: z.ZodEnum<{
11872
11910
  generic: "generic";
@@ -11937,7 +11975,6 @@ export declare const zSlackChannelListResponse: z.ZodArray<z.ZodObject<{
11937
11975
  id: z.ZodString;
11938
11976
  name: z.ZodString;
11939
11977
  projectId: z.ZodNullable<z.ZodString>;
11940
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11941
11978
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11942
11979
  projectName: z.ZodNullable<z.ZodString>;
11943
11980
  }, z.core.$strip>>;
@@ -11966,7 +12003,6 @@ export declare const zSlackChannelUnsetResponse: z.ZodObject<{
11966
12003
  }, z.core.$strip>;
11967
12004
  export declare const zSlackChannelSetBody: z.ZodObject<{
11968
12005
  projectId: z.ZodString;
11969
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11970
12006
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11971
12007
  }, z.core.$strip>;
11972
12008
  export declare const zSlackChannelSetPath: z.ZodObject<{
@@ -12005,7 +12041,6 @@ export declare const zEmailListResponse: z.ZodArray<z.ZodObject<{
12005
12041
  orgId: z.ZodString;
12006
12042
  podId: z.ZodString;
12007
12043
  projectId: z.ZodString;
12008
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
12009
12044
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
12010
12045
  localPart: z.ZodString;
12011
12046
  createdAt: z.ZodISODateTime;
@@ -12027,7 +12062,6 @@ export declare const zEmailUnsetQuery: z.ZodObject<{
12027
12062
  */
12028
12063
  export declare const zEmailUnsetResponse: z.ZodVoid;
12029
12064
  export declare const zEmailSetBody: z.ZodObject<{
12030
- defaultProjectAgentId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12031
12065
  fallbackSenderUserId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12032
12066
  }, z.core.$strip>;
12033
12067
  export declare const zEmailSetPath: z.ZodObject<{
@@ -12046,7 +12080,6 @@ export declare const zEmailSetResponse: z.ZodObject<{
12046
12080
  orgId: z.ZodString;
12047
12081
  podId: z.ZodString;
12048
12082
  projectId: z.ZodString;
12049
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
12050
12083
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
12051
12084
  localPart: z.ZodString;
12052
12085
  createdAt: z.ZodISODateTime;
@@ -12090,7 +12123,6 @@ export declare const zTelegramUnlinkQuery: z.ZodObject<{
12090
12123
  export declare const zTelegramUnlinkResponse: z.ZodVoid;
12091
12124
  export declare const zTelegramClaimCodeBody: z.ZodObject<{
12092
12125
  projectId: z.ZodString;
12093
- defaultProjectAgentId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12094
12126
  fallbackSenderUserId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12095
12127
  }, z.core.$strip>;
12096
12128
  export declare const zTelegramClaimCodeQuery: z.ZodObject<{
@@ -12121,7 +12153,6 @@ export declare const zTelegramChatListResponse: z.ZodArray<z.ZodObject<{
12121
12153
  chatTitle: z.ZodNullable<z.ZodString>;
12122
12154
  chatType: z.ZodNullable<z.ZodString>;
12123
12155
  projectId: z.ZodString;
12124
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
12125
12156
  claimedByUserId: z.ZodNullable<z.ZodString>;
12126
12157
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
12127
12158
  allowedSenders: z.ZodArray<z.ZodString>;
@@ -12145,7 +12176,6 @@ export declare const zTelegramChatUnsetQuery: z.ZodObject<{
12145
12176
  export declare const zTelegramChatUnsetResponse: z.ZodVoid;
12146
12177
  export declare const zTelegramChatSetBody: z.ZodObject<{
12147
12178
  projectId: z.ZodString;
12148
- defaultProjectAgentId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12149
12179
  fallbackSenderUserId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
12150
12180
  allowedSenders: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
12151
12181
  blockedSenders: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
@@ -12169,7 +12199,6 @@ export declare const zTelegramChatSetResponse: z.ZodObject<{
12169
12199
  chatTitle: z.ZodNullable<z.ZodString>;
12170
12200
  chatType: z.ZodNullable<z.ZodString>;
12171
12201
  projectId: z.ZodString;
12172
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
12173
12202
  claimedByUserId: z.ZodNullable<z.ZodString>;
12174
12203
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
12175
12204
  allowedSenders: z.ZodArray<z.ZodString>;
@@ -13299,7 +13328,7 @@ export declare const zRegistryBlueprintGetResponse: z.ZodObject<{
13299
13328
  schedule: z.ZodString;
13300
13329
  timezone: z.ZodNullable<z.ZodString>;
13301
13330
  cronTriggerId: z.ZodString;
13302
- agentId: z.ZodString;
13331
+ agentId: z.ZodNullable<z.ZodString>;
13303
13332
  }, z.core.$strip>>;
13304
13333
  }, z.core.$strip>>;
13305
13334
  agents: z.ZodArray<z.ZodObject<{