@renai-labs/sdk 0.1.5 → 0.1.7

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.
@@ -690,6 +690,8 @@ export declare const zAgentLatestVersion: z.ZodObject<{
690
690
  agentId: z.ZodString;
691
691
  version: z.ZodString;
692
692
  description: z.ZodNullable<z.ZodString>;
693
+ prompt: z.ZodNullable<z.ZodString>;
694
+ model: z.ZodNullable<z.ZodString>;
693
695
  skills: z.ZodArray<z.ZodObject<{
694
696
  skillId: z.ZodString;
695
697
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -816,6 +818,10 @@ export declare const zVault: z.ZodObject<{
816
818
  export declare const zSlackChannel: z.ZodObject<{
817
819
  id: z.ZodString;
818
820
  name: z.ZodString;
821
+ projectId: z.ZodNullable<z.ZodString>;
822
+ defaultProjectAgentId: z.ZodNullable<z.ZodString>;
823
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
824
+ projectName: z.ZodNullable<z.ZodString>;
819
825
  }, z.core.$strip>;
820
826
  export declare const zSlackInstallationResponse: z.ZodObject<{
821
827
  id: z.ZodString;
@@ -825,12 +831,6 @@ export declare const zSlackInstallationResponse: z.ZodObject<{
825
831
  teamName: z.ZodNullable<z.ZodString>;
826
832
  botUserId: z.ZodString;
827
833
  scope: z.ZodString;
828
- channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
829
- channelName: z.ZodNullable<z.ZodString>;
830
- projectId: z.ZodString;
831
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
832
- fallbackSenderUserId: z.ZodNullable<z.ZodString>;
833
- }, z.core.$strip>>;
834
834
  createdAt: z.ZodISODateTime;
835
835
  updatedAt: z.ZodISODateTime;
836
836
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -845,17 +845,14 @@ export declare const zSlackStatus: z.ZodObject<{
845
845
  teamName: z.ZodNullable<z.ZodString>;
846
846
  botUserId: z.ZodString;
847
847
  scope: z.ZodString;
848
- channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
849
- channelName: z.ZodNullable<z.ZodString>;
850
- projectId: z.ZodString;
851
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
852
- fallbackSenderUserId: z.ZodNullable<z.ZodString>;
853
- }, z.core.$strip>>;
854
848
  createdAt: z.ZodISODateTime;
855
849
  updatedAt: z.ZodISODateTime;
856
850
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
857
851
  }, z.core.$strip>>;
858
852
  }, z.core.$strip>;
853
+ export declare const zSlackOAuthStartResult: z.ZodObject<{
854
+ url: z.ZodURL;
855
+ }, z.core.$strip>;
859
856
  export declare const zWebhookTrigger: z.ZodObject<{
860
857
  id: z.ZodString;
861
858
  projectId: z.ZodString;
@@ -1752,6 +1749,9 @@ export declare const zGithubStatus: z.ZodObject<{
1752
1749
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
1753
1750
  }, z.core.$strip>>;
1754
1751
  }, z.core.$strip>;
1752
+ export declare const zGithubOAuthStartResult: z.ZodObject<{
1753
+ url: z.ZodURL;
1754
+ }, z.core.$strip>;
1755
1755
  export declare const zStoreStartUploadResponse: z.ZodObject<{
1756
1756
  url: z.ZodString;
1757
1757
  expiresAt: z.ZodISODateTime;
@@ -2301,6 +2301,8 @@ export declare const zAgent: z.ZodObject<{
2301
2301
  agentId: z.ZodString;
2302
2302
  version: z.ZodString;
2303
2303
  description: z.ZodNullable<z.ZodString>;
2304
+ prompt: z.ZodNullable<z.ZodString>;
2305
+ model: z.ZodNullable<z.ZodString>;
2304
2306
  skills: z.ZodArray<z.ZodObject<{
2305
2307
  skillId: z.ZodString;
2306
2308
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2368,6 +2370,8 @@ export declare const zAgentListResponse: z.ZodArray<z.ZodObject<{
2368
2370
  agentId: z.ZodString;
2369
2371
  version: z.ZodString;
2370
2372
  description: z.ZodNullable<z.ZodString>;
2373
+ prompt: z.ZodNullable<z.ZodString>;
2374
+ model: z.ZodNullable<z.ZodString>;
2371
2375
  skills: z.ZodArray<z.ZodObject<{
2372
2376
  skillId: z.ZodString;
2373
2377
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2575,6 +2579,8 @@ export declare const zAgentCreateResponse: z.ZodObject<{
2575
2579
  agentId: z.ZodString;
2576
2580
  version: z.ZodString;
2577
2581
  description: z.ZodNullable<z.ZodString>;
2582
+ prompt: z.ZodNullable<z.ZodString>;
2583
+ model: z.ZodNullable<z.ZodString>;
2578
2584
  skills: z.ZodArray<z.ZodObject<{
2579
2585
  skillId: z.ZodString;
2580
2586
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2667,6 +2673,8 @@ export declare const zAgentGetBySlugResponse: z.ZodObject<{
2667
2673
  agentId: z.ZodString;
2668
2674
  version: z.ZodString;
2669
2675
  description: z.ZodNullable<z.ZodString>;
2676
+ prompt: z.ZodNullable<z.ZodString>;
2677
+ model: z.ZodNullable<z.ZodString>;
2670
2678
  skills: z.ZodArray<z.ZodObject<{
2671
2679
  skillId: z.ZodString;
2672
2680
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2729,6 +2737,8 @@ export declare const zAgentGetResponse: z.ZodObject<{
2729
2737
  agentId: z.ZodString;
2730
2738
  version: z.ZodString;
2731
2739
  description: z.ZodNullable<z.ZodString>;
2740
+ prompt: z.ZodNullable<z.ZodString>;
2741
+ model: z.ZodNullable<z.ZodString>;
2732
2742
  skills: z.ZodArray<z.ZodObject<{
2733
2743
  skillId: z.ZodString;
2734
2744
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2805,6 +2815,8 @@ export declare const zAgentUpdateResponse: z.ZodObject<{
2805
2815
  agentId: z.ZodString;
2806
2816
  version: z.ZodString;
2807
2817
  description: z.ZodNullable<z.ZodString>;
2818
+ prompt: z.ZodNullable<z.ZodString>;
2819
+ model: z.ZodNullable<z.ZodString>;
2808
2820
  skills: z.ZodArray<z.ZodObject<{
2809
2821
  skillId: z.ZodString;
2810
2822
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2867,6 +2879,8 @@ export declare const zAgentArchiveResponse: z.ZodObject<{
2867
2879
  agentId: z.ZodString;
2868
2880
  version: z.ZodString;
2869
2881
  description: z.ZodNullable<z.ZodString>;
2882
+ prompt: z.ZodNullable<z.ZodString>;
2883
+ model: z.ZodNullable<z.ZodString>;
2870
2884
  skills: z.ZodArray<z.ZodObject<{
2871
2885
  skillId: z.ZodString;
2872
2886
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2929,6 +2943,8 @@ export declare const zAgentPublishResponse: z.ZodObject<{
2929
2943
  agentId: z.ZodString;
2930
2944
  version: z.ZodString;
2931
2945
  description: z.ZodNullable<z.ZodString>;
2946
+ prompt: z.ZodNullable<z.ZodString>;
2947
+ model: z.ZodNullable<z.ZodString>;
2932
2948
  skills: z.ZodArray<z.ZodObject<{
2933
2949
  skillId: z.ZodString;
2934
2950
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -2994,6 +3010,8 @@ export declare const zAgentDeprecateResponse: z.ZodObject<{
2994
3010
  agentId: z.ZodString;
2995
3011
  version: z.ZodString;
2996
3012
  description: z.ZodNullable<z.ZodString>;
3013
+ prompt: z.ZodNullable<z.ZodString>;
3014
+ model: z.ZodNullable<z.ZodString>;
2997
3015
  skills: z.ZodArray<z.ZodObject<{
2998
3016
  skillId: z.ZodString;
2999
3017
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -3056,6 +3074,8 @@ export declare const zAgentUndeprecateResponse: z.ZodObject<{
3056
3074
  agentId: z.ZodString;
3057
3075
  version: z.ZodString;
3058
3076
  description: z.ZodNullable<z.ZodString>;
3077
+ prompt: z.ZodNullable<z.ZodString>;
3078
+ model: z.ZodNullable<z.ZodString>;
3059
3079
  skills: z.ZodArray<z.ZodObject<{
3060
3080
  skillId: z.ZodString;
3061
3081
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -6112,6 +6132,39 @@ export declare const zFileStoreFilesFinalizeUploadResponse: z.ZodObject<{
6112
6132
  lastModified: z.ZodOptional<z.ZodISODateTime>;
6113
6133
  contentSha256: z.ZodOptional<z.ZodString>;
6114
6134
  }, z.core.$strip>;
6135
+ export declare const zGithubUninstallQuery: z.ZodObject<{
6136
+ scope: z.ZodOptional<z.ZodEnum<{
6137
+ user: "user";
6138
+ }>>;
6139
+ }, z.core.$strip>;
6140
+ /**
6141
+ * Removed
6142
+ */
6143
+ export declare const zGithubUninstallResponse: z.ZodVoid;
6144
+ export declare const zGithubInstallQuery: z.ZodObject<{
6145
+ scope: z.ZodOptional<z.ZodEnum<{
6146
+ user: "user";
6147
+ }>>;
6148
+ returnTo: z.ZodOptional<z.ZodString>;
6149
+ }, z.core.$strip>;
6150
+ /**
6151
+ * Authorization URL for the user to visit
6152
+ */
6153
+ export declare const zGithubInstallResponse: z.ZodObject<{
6154
+ url: z.ZodURL;
6155
+ }, z.core.$strip>;
6156
+ export declare const zGithubConnectQuery: z.ZodObject<{
6157
+ scope: z.ZodOptional<z.ZodEnum<{
6158
+ user: "user";
6159
+ }>>;
6160
+ returnTo: z.ZodOptional<z.ZodString>;
6161
+ }, z.core.$strip>;
6162
+ /**
6163
+ * Authorization URL for the user to visit
6164
+ */
6165
+ export declare const zGithubConnectResponse: z.ZodObject<{
6166
+ url: z.ZodURL;
6167
+ }, z.core.$strip>;
6115
6168
  export declare const zGithubStatusQuery: z.ZodObject<{
6116
6169
  scope: z.ZodOptional<z.ZodEnum<{
6117
6170
  user: "user";
@@ -6146,40 +6199,7 @@ export declare const zGithubStatusResponse: z.ZodObject<{
6146
6199
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
6147
6200
  }, z.core.$strip>>;
6148
6201
  }, z.core.$strip>;
6149
- export declare const zGithubInstallationListQuery: z.ZodObject<{
6150
- scope: z.ZodOptional<z.ZodEnum<{
6151
- user: "user";
6152
- }>>;
6153
- }, z.core.$strip>;
6154
- /**
6155
- * Installations
6156
- */
6157
- export declare const zGithubInstallationListResponse: z.ZodArray<z.ZodObject<{
6158
- id: z.ZodString;
6159
- orgId: z.ZodString;
6160
- installedById: z.ZodNullable<z.ZodString>;
6161
- installationId: z.ZodString;
6162
- accountLogin: z.ZodString;
6163
- accountType: z.ZodEnum<{
6164
- User: "User";
6165
- Organization: "Organization";
6166
- }>;
6167
- repositorySelection: z.ZodEnum<{
6168
- all: "all";
6169
- selected: "selected";
6170
- }>;
6171
- selectedRepos: z.ZodNullable<z.ZodArray<z.ZodObject<{
6172
- fullName: z.ZodString;
6173
- }, z.core.$strip>>>;
6174
- appPermissions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
6175
- createdAt: z.ZodISODateTime;
6176
- updatedAt: z.ZodISODateTime;
6177
- archivedAt: z.ZodNullable<z.ZodISODateTime>;
6178
- }, z.core.$strip>>;
6179
- export declare const zGithubInstallationReposListPath: z.ZodObject<{
6180
- id: z.ZodString;
6181
- }, z.core.$strip>;
6182
- export declare const zGithubInstallationReposListQuery: z.ZodObject<{
6202
+ export declare const zGithubReposQuery: z.ZodObject<{
6183
6203
  scope: z.ZodOptional<z.ZodEnum<{
6184
6204
  user: "user";
6185
6205
  }>>;
@@ -6187,54 +6207,9 @@ export declare const zGithubInstallationReposListQuery: z.ZodObject<{
6187
6207
  /**
6188
6208
  * Repositories
6189
6209
  */
6190
- export declare const zGithubInstallationReposListResponse: z.ZodArray<z.ZodObject<{
6210
+ export declare const zGithubReposResponse: z.ZodArray<z.ZodObject<{
6191
6211
  fullName: z.ZodString;
6192
6212
  }, z.core.$strip>>;
6193
- export declare const zGithubInstallationRefreshPath: z.ZodObject<{
6194
- id: z.ZodString;
6195
- }, z.core.$strip>;
6196
- export declare const zGithubInstallationRefreshQuery: z.ZodObject<{
6197
- scope: z.ZodOptional<z.ZodEnum<{
6198
- user: "user";
6199
- }>>;
6200
- }, z.core.$strip>;
6201
- /**
6202
- * Updated installation snapshot
6203
- */
6204
- export declare const zGithubInstallationRefreshResponse: z.ZodObject<{
6205
- id: z.ZodString;
6206
- orgId: z.ZodString;
6207
- installedById: z.ZodNullable<z.ZodString>;
6208
- installationId: z.ZodString;
6209
- accountLogin: z.ZodString;
6210
- accountType: z.ZodEnum<{
6211
- User: "User";
6212
- Organization: "Organization";
6213
- }>;
6214
- repositorySelection: z.ZodEnum<{
6215
- all: "all";
6216
- selected: "selected";
6217
- }>;
6218
- selectedRepos: z.ZodNullable<z.ZodArray<z.ZodObject<{
6219
- fullName: z.ZodString;
6220
- }, z.core.$strip>>>;
6221
- appPermissions: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
6222
- createdAt: z.ZodISODateTime;
6223
- updatedAt: z.ZodISODateTime;
6224
- archivedAt: z.ZodNullable<z.ZodISODateTime>;
6225
- }, z.core.$strip>;
6226
- export declare const zGithubInstallationRemovePath: z.ZodObject<{
6227
- id: z.ZodString;
6228
- }, z.core.$strip>;
6229
- export declare const zGithubInstallationRemoveQuery: z.ZodObject<{
6230
- scope: z.ZodOptional<z.ZodEnum<{
6231
- user: "user";
6232
- }>>;
6233
- }, z.core.$strip>;
6234
- /**
6235
- * Removed
6236
- */
6237
- export declare const zGithubInstallationRemoveResponse: z.ZodVoid;
6238
6213
  export declare const zMcpListQuery: z.ZodObject<{
6239
6214
  scope: z.ZodOptional<z.ZodEnum<{
6240
6215
  user: "user";
@@ -8871,6 +8846,39 @@ export declare const zProjectAgentRemoveResponse: z.ZodObject<{
8871
8846
  createdAt: z.ZodISODateTime;
8872
8847
  updatedAt: z.ZodISODateTime;
8873
8848
  }, z.core.$strip>;
8849
+ export declare const zProjectAgentUpdateBody: z.ZodObject<{
8850
+ agentVersionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8851
+ type: z.ZodOptional<z.ZodEnum<{
8852
+ primary: "primary";
8853
+ subagent: "subagent";
8854
+ all: "all";
8855
+ }>>;
8856
+ }, z.core.$strip>;
8857
+ export declare const zProjectAgentUpdatePath: z.ZodObject<{
8858
+ id: z.ZodString;
8859
+ agentId: z.ZodString;
8860
+ }, z.core.$strip>;
8861
+ export declare const zProjectAgentUpdateQuery: z.ZodObject<{
8862
+ scope: z.ZodOptional<z.ZodEnum<{
8863
+ user: "user";
8864
+ }>>;
8865
+ }, z.core.$strip>;
8866
+ /**
8867
+ * Updated agent membership
8868
+ */
8869
+ export declare const zProjectAgentUpdateResponse: z.ZodObject<{
8870
+ id: z.ZodString;
8871
+ projectId: z.ZodString;
8872
+ agentId: z.ZodString;
8873
+ agentVersionId: z.ZodNullable<z.ZodString>;
8874
+ type: z.ZodEnum<{
8875
+ primary: "primary";
8876
+ subagent: "subagent";
8877
+ all: "all";
8878
+ }>;
8879
+ createdAt: z.ZodISODateTime;
8880
+ updatedAt: z.ZodISODateTime;
8881
+ }, z.core.$strip>;
8874
8882
  export declare const zProjectFileStoreListPath: z.ZodObject<{
8875
8883
  id: z.ZodString;
8876
8884
  }, z.core.$strip>;
@@ -11050,6 +11058,27 @@ export declare const zWebhookTriggerArchiveResponse: z.ZodObject<{
11050
11058
  updatedAt: z.ZodISODateTime;
11051
11059
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
11052
11060
  }, z.core.$strip>;
11061
+ export declare const zSlackUninstallQuery: z.ZodObject<{
11062
+ scope: z.ZodOptional<z.ZodEnum<{
11063
+ user: "user";
11064
+ }>>;
11065
+ }, z.core.$strip>;
11066
+ /**
11067
+ * Removed
11068
+ */
11069
+ export declare const zSlackUninstallResponse: z.ZodVoid;
11070
+ export declare const zSlackInstallQuery: z.ZodObject<{
11071
+ scope: z.ZodOptional<z.ZodEnum<{
11072
+ user: "user";
11073
+ }>>;
11074
+ returnTo: z.ZodOptional<z.ZodString>;
11075
+ }, z.core.$strip>;
11076
+ /**
11077
+ * Authorization URL for the user to visit
11078
+ */
11079
+ export declare const zSlackInstallResponse: z.ZodObject<{
11080
+ url: z.ZodURL;
11081
+ }, z.core.$strip>;
11053
11082
  export declare const zSlackStatusQuery: z.ZodObject<{
11054
11083
  scope: z.ZodOptional<z.ZodEnum<{
11055
11084
  user: "user";
@@ -11068,33 +11097,12 @@ export declare const zSlackStatusResponse: z.ZodObject<{
11068
11097
  teamName: z.ZodNullable<z.ZodString>;
11069
11098
  botUserId: z.ZodString;
11070
11099
  scope: z.ZodString;
11071
- channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
11072
- channelName: z.ZodNullable<z.ZodString>;
11073
- projectId: z.ZodString;
11074
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11075
- fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11076
- }, z.core.$strip>>;
11077
11100
  createdAt: z.ZodISODateTime;
11078
11101
  updatedAt: z.ZodISODateTime;
11079
11102
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
11080
11103
  }, z.core.$strip>>;
11081
11104
  }, z.core.$strip>;
11082
- export declare const zSlackInstallationRemovePath: z.ZodObject<{
11083
- id: z.ZodString;
11084
- }, z.core.$strip>;
11085
- export declare const zSlackInstallationRemoveQuery: z.ZodObject<{
11086
- scope: z.ZodOptional<z.ZodEnum<{
11087
- user: "user";
11088
- }>>;
11089
- }, z.core.$strip>;
11090
- /**
11091
- * Removed
11092
- */
11093
- export declare const zSlackInstallationRemoveResponse: z.ZodVoid;
11094
- export declare const zSlackInstallationChannelListPath: z.ZodObject<{
11095
- id: z.ZodString;
11096
- }, z.core.$strip>;
11097
- export declare const zSlackInstallationChannelListQuery: z.ZodObject<{
11105
+ export declare const zSlackChannelListQuery: z.ZodObject<{
11098
11106
  scope: z.ZodOptional<z.ZodEnum<{
11099
11107
  user: "user";
11100
11108
  }>>;
@@ -11102,15 +11110,18 @@ export declare const zSlackInstallationChannelListQuery: z.ZodObject<{
11102
11110
  /**
11103
11111
  * Channels visible to the Ren bot
11104
11112
  */
11105
- export declare const zSlackInstallationChannelListResponse: z.ZodArray<z.ZodObject<{
11113
+ export declare const zSlackChannelListResponse: z.ZodArray<z.ZodObject<{
11106
11114
  id: z.ZodString;
11107
11115
  name: z.ZodString;
11116
+ projectId: z.ZodNullable<z.ZodString>;
11117
+ defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11118
+ fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11119
+ projectName: z.ZodNullable<z.ZodString>;
11108
11120
  }, z.core.$strip>>;
11109
- export declare const zSlackInstallationChannelRemovePath: z.ZodObject<{
11110
- id: z.ZodString;
11121
+ export declare const zSlackChannelUnsetPath: z.ZodObject<{
11111
11122
  channelId: z.ZodString;
11112
11123
  }, z.core.$strip>;
11113
- export declare const zSlackInstallationChannelRemoveQuery: z.ZodObject<{
11124
+ export declare const zSlackChannelUnsetQuery: z.ZodObject<{
11114
11125
  scope: z.ZodOptional<z.ZodEnum<{
11115
11126
  user: "user";
11116
11127
  }>>;
@@ -11118,7 +11129,7 @@ export declare const zSlackInstallationChannelRemoveQuery: z.ZodObject<{
11118
11129
  /**
11119
11130
  * Updated installation
11120
11131
  */
11121
- export declare const zSlackInstallationChannelRemoveResponse: z.ZodObject<{
11132
+ export declare const zSlackChannelUnsetResponse: z.ZodObject<{
11122
11133
  id: z.ZodString;
11123
11134
  orgId: z.ZodString;
11124
11135
  installedById: z.ZodString;
@@ -11126,27 +11137,19 @@ export declare const zSlackInstallationChannelRemoveResponse: z.ZodObject<{
11126
11137
  teamName: z.ZodNullable<z.ZodString>;
11127
11138
  botUserId: z.ZodString;
11128
11139
  scope: z.ZodString;
11129
- channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
11130
- channelName: z.ZodNullable<z.ZodString>;
11131
- projectId: z.ZodString;
11132
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11133
- fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11134
- }, z.core.$strip>>;
11135
11140
  createdAt: z.ZodISODateTime;
11136
11141
  updatedAt: z.ZodISODateTime;
11137
11142
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
11138
11143
  }, z.core.$strip>;
11139
- export declare const zSlackInstallationChannelSetBody: z.ZodObject<{
11140
- channelName: z.ZodNullable<z.ZodString>;
11144
+ export declare const zSlackChannelSetBody: z.ZodObject<{
11141
11145
  projectId: z.ZodString;
11142
11146
  defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11143
11147
  fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11144
11148
  }, z.core.$strip>;
11145
- export declare const zSlackInstallationChannelSetPath: z.ZodObject<{
11146
- id: z.ZodString;
11149
+ export declare const zSlackChannelSetPath: z.ZodObject<{
11147
11150
  channelId: z.ZodString;
11148
11151
  }, z.core.$strip>;
11149
- export declare const zSlackInstallationChannelSetQuery: z.ZodObject<{
11152
+ export declare const zSlackChannelSetQuery: z.ZodObject<{
11150
11153
  scope: z.ZodOptional<z.ZodEnum<{
11151
11154
  user: "user";
11152
11155
  }>>;
@@ -11154,7 +11157,7 @@ export declare const zSlackInstallationChannelSetQuery: z.ZodObject<{
11154
11157
  /**
11155
11158
  * Updated installation
11156
11159
  */
11157
- export declare const zSlackInstallationChannelSetResponse: z.ZodObject<{
11160
+ export declare const zSlackChannelSetResponse: z.ZodObject<{
11158
11161
  id: z.ZodString;
11159
11162
  orgId: z.ZodString;
11160
11163
  installedById: z.ZodString;
@@ -11162,12 +11165,6 @@ export declare const zSlackInstallationChannelSetResponse: z.ZodObject<{
11162
11165
  teamName: z.ZodNullable<z.ZodString>;
11163
11166
  botUserId: z.ZodString;
11164
11167
  scope: z.ZodString;
11165
- channelMappings: z.ZodRecord<z.ZodString, z.ZodObject<{
11166
- channelName: z.ZodNullable<z.ZodString>;
11167
- projectId: z.ZodString;
11168
- defaultProjectAgentId: z.ZodNullable<z.ZodString>;
11169
- fallbackSenderUserId: z.ZodNullable<z.ZodString>;
11170
- }, z.core.$strip>>;
11171
11168
  createdAt: z.ZodISODateTime;
11172
11169
  updatedAt: z.ZodISODateTime;
11173
11170
  archivedAt: z.ZodNullable<z.ZodISODateTime>;
@@ -11731,6 +11728,8 @@ export declare const zRegistryAgentListResponse: z.ZodArray<z.ZodObject<{
11731
11728
  agentId: z.ZodString;
11732
11729
  version: z.ZodString;
11733
11730
  description: z.ZodNullable<z.ZodString>;
11731
+ prompt: z.ZodNullable<z.ZodString>;
11732
+ model: z.ZodNullable<z.ZodString>;
11734
11733
  skills: z.ZodArray<z.ZodObject<{
11735
11734
  skillId: z.ZodString;
11736
11735
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
@@ -11788,6 +11787,8 @@ export declare const zRegistryAgentGetResponse: z.ZodObject<{
11788
11787
  agentId: z.ZodString;
11789
11788
  version: z.ZodString;
11790
11789
  description: z.ZodNullable<z.ZodString>;
11790
+ prompt: z.ZodNullable<z.ZodString>;
11791
+ model: z.ZodNullable<z.ZodString>;
11791
11792
  skills: z.ZodArray<z.ZodObject<{
11792
11793
  skillId: z.ZodString;
11793
11794
  skillVersionId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;