@numa-tech/numa 1.12.11 → 1.13.1

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.
Files changed (59) hide show
  1. package/README.md +111 -4
  2. package/dist/application-onboarding/client.d.ts +83 -8
  3. package/dist/application-onboarding/client.js +23 -1
  4. package/dist/application-onboarding/client.js.map +1 -1
  5. package/dist/application-onboarding/commands.js +72 -6
  6. package/dist/application-onboarding/commands.js.map +1 -1
  7. package/dist/application-onboarding/schemas.d.ts +301 -58
  8. package/dist/application-onboarding/schemas.js +134 -8
  9. package/dist/application-onboarding/schemas.js.map +1 -1
  10. package/dist/application-onboarding/tui-model.d.ts +20 -0
  11. package/dist/application-onboarding/tui-model.js +362 -20
  12. package/dist/application-onboarding/tui-model.js.map +1 -1
  13. package/dist/application-onboarding/tui.d.ts +6 -1
  14. package/dist/application-onboarding/tui.js +104 -7
  15. package/dist/application-onboarding/tui.js.map +1 -1
  16. package/dist/cli.js +50 -8
  17. package/dist/cli.js.map +1 -1
  18. package/dist/clusters/client.d.ts +436 -0
  19. package/dist/clusters/client.js +207 -0
  20. package/dist/clusters/client.js.map +1 -0
  21. package/dist/clusters/commands.d.ts +11 -0
  22. package/dist/clusters/commands.js +373 -0
  23. package/dist/clusters/commands.js.map +1 -0
  24. package/dist/clusters/errors.d.ts +10 -0
  25. package/dist/clusters/errors.js +61 -0
  26. package/dist/clusters/errors.js.map +1 -0
  27. package/dist/clusters/kubeconfig-discovery.d.ts +48 -0
  28. package/dist/clusters/kubeconfig-discovery.js +280 -0
  29. package/dist/clusters/kubeconfig-discovery.js.map +1 -0
  30. package/dist/clusters/schemas.d.ts +510 -0
  31. package/dist/clusters/schemas.js +201 -0
  32. package/dist/clusters/schemas.js.map +1 -0
  33. package/dist/command-catalog.js +370 -1
  34. package/dist/command-catalog.js.map +1 -1
  35. package/dist/gitops/client.d.ts +499 -0
  36. package/dist/gitops/client.js +163 -0
  37. package/dist/gitops/client.js.map +1 -0
  38. package/dist/gitops/commands.d.ts +11 -0
  39. package/dist/gitops/commands.js +367 -0
  40. package/dist/gitops/commands.js.map +1 -0
  41. package/dist/gitops/errors.d.ts +10 -0
  42. package/dist/gitops/errors.js +59 -0
  43. package/dist/gitops/errors.js.map +1 -0
  44. package/dist/gitops/schemas.d.ts +1712 -0
  45. package/dist/gitops/schemas.js +360 -0
  46. package/dist/gitops/schemas.js.map +1 -0
  47. package/dist/repositories/client.d.ts +558 -0
  48. package/dist/repositories/client.js +215 -0
  49. package/dist/repositories/client.js.map +1 -0
  50. package/dist/repositories/commands.d.ts +13 -0
  51. package/dist/repositories/commands.js +368 -0
  52. package/dist/repositories/commands.js.map +1 -0
  53. package/dist/repositories/errors.d.ts +10 -0
  54. package/dist/repositories/errors.js +60 -0
  55. package/dist/repositories/errors.js.map +1 -0
  56. package/dist/repositories/schemas.d.ts +1724 -0
  57. package/dist/repositories/schemas.js +261 -0
  58. package/dist/repositories/schemas.js.map +1 -0
  59. package/package.json +4 -4
@@ -0,0 +1,1724 @@
1
+ import { z } from "zod";
2
+ export declare const RepositoryOperationSchema: z.ZodEnum<{
3
+ CREATE: "CREATE";
4
+ DISABLE: "DISABLE";
5
+ REGISTER_EXISTING: "REGISTER_EXISTING";
6
+ USE_EXISTING: "USE_EXISTING";
7
+ }>;
8
+ export declare const RepositoryConsumerTypeSchema: z.ZodEnum<{
9
+ APPLICATION_ONBOARDING: "APPLICATION_ONBOARDING";
10
+ GITOPS: "GITOPS";
11
+ STANDALONE: "STANDALONE";
12
+ }>;
13
+ export declare const RepositoryVisibilitySchema: z.ZodEnum<{
14
+ INTERNAL: "INTERNAL";
15
+ PRIVATE: "PRIVATE";
16
+ PUBLIC: "PUBLIC";
17
+ }>;
18
+ export declare const RepositoryInitializationSchema: z.ZodEnum<{
19
+ EMPTY: "EMPTY";
20
+ README: "README";
21
+ }>;
22
+ export declare const RepositoryRunStateSchema: z.ZodEnum<{
23
+ CANCELLED: "CANCELLED";
24
+ FAILED: "FAILED";
25
+ PENDING: "PENDING";
26
+ QUEUED: "QUEUED";
27
+ RETRYING: "RETRYING";
28
+ RUNNING: "RUNNING";
29
+ SUCCEEDED: "SUCCEEDED";
30
+ UNKNOWN: "UNKNOWN";
31
+ WAITING: "WAITING";
32
+ }>;
33
+ export declare const ScmConnectionSummarySchema: z.ZodObject<{
34
+ code: z.ZodString;
35
+ name: z.ZodString;
36
+ provider: z.ZodString;
37
+ status: z.ZodString;
38
+ capabilities: z.ZodDefault<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
39
+ code: z.ZodString;
40
+ supported: z.ZodBoolean;
41
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
42
+ }, z.core.$strip>>, z.ZodRecord<z.ZodString, z.ZodBoolean>]>>;
43
+ lastCheckedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
44
+ }, z.core.$strip>;
45
+ export declare const RepositoryNamespaceSchema: z.ZodObject<{
46
+ externalId: z.ZodString;
47
+ name: z.ZodString;
48
+ fullPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
+ parentExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
51
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
52
+ }, z.core.$strip>;
53
+ export declare const RemoteRepositorySchema: z.ZodPipe<z.ZodObject<{
54
+ externalId: z.ZodString;
55
+ namespace: z.ZodOptional<z.ZodNullable<z.ZodString>>;
56
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
57
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
58
+ name: z.ZodString;
59
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
61
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
62
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63
+ headRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
64
+ archived: z.ZodOptional<z.ZodBoolean>;
65
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
66
+ httpUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
67
+ sshUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
68
+ httpCloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
69
+ sshCloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
70
+ }, z.core.$strip>, z.ZodTransform<{
71
+ externalId: string;
72
+ namespace?: string | null | undefined;
73
+ namespaceExternalId?: string | null | undefined;
74
+ name: string;
75
+ fullName?: string | null | undefined;
76
+ description?: string | null | undefined;
77
+ visibility?: string | null | undefined;
78
+ defaultBranch?: string | null | undefined;
79
+ headRevision?: string | null | undefined;
80
+ archived?: boolean | undefined;
81
+ webUrl?: string | null | undefined;
82
+ httpCloneUrl?: string | null | undefined;
83
+ sshCloneUrl?: string | null | undefined;
84
+ namespacePath: string | null | undefined;
85
+ httpUrl: string | null | undefined;
86
+ sshUrl: string | null | undefined;
87
+ }, {
88
+ externalId: string;
89
+ namespace?: string | null | undefined;
90
+ namespaceExternalId?: string | null | undefined;
91
+ namespacePath?: string | null | undefined;
92
+ name: string;
93
+ fullName?: string | null | undefined;
94
+ description?: string | null | undefined;
95
+ visibility?: string | null | undefined;
96
+ defaultBranch?: string | null | undefined;
97
+ headRevision?: string | null | undefined;
98
+ archived?: boolean | undefined;
99
+ webUrl?: string | null | undefined;
100
+ httpUrl?: string | null | undefined;
101
+ sshUrl?: string | null | undefined;
102
+ httpCloneUrl?: string | null | undefined;
103
+ sshCloneUrl?: string | null | undefined;
104
+ }>>;
105
+ export declare const SourceRepositorySchema: z.ZodPipe<z.ZodObject<{
106
+ repositoryKey: z.ZodString;
107
+ id: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
108
+ repositoryId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
109
+ connectionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
110
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
111
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
112
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
113
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
114
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
116
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
117
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
118
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
119
+ lastObservedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
120
+ observedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
122
+ cloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
123
+ managementMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
124
+ status: z.ZodString;
125
+ ownerTeamId: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>>;
126
+ lastReconciledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
127
+ version: z.ZodOptional<z.ZodNumber>;
128
+ }, z.core.$strip>, z.ZodTransform<{
129
+ repositoryKey: string;
130
+ id?: string | undefined;
131
+ connectionCode?: string | null | undefined;
132
+ provider?: string | null | undefined;
133
+ externalId?: string | null | undefined;
134
+ namespaceExternalId?: string | null | undefined;
135
+ namespacePath?: string | null | undefined;
136
+ name?: string | null | undefined;
137
+ fullName?: string | null | undefined;
138
+ description?: string | null | undefined;
139
+ visibility?: string | null | undefined;
140
+ defaultBranch?: string | null | undefined;
141
+ lastObservedRevision?: string | null | undefined;
142
+ webUrl?: string | null | undefined;
143
+ cloneUrl?: string | null | undefined;
144
+ managementMode?: string | null | undefined;
145
+ status: string;
146
+ ownerTeamId?: string | null | undefined;
147
+ lastReconciledAt?: string | null | undefined;
148
+ version?: number | undefined;
149
+ repositoryId: string | undefined;
150
+ observedRevision: string | null | undefined;
151
+ migrationRequired: boolean;
152
+ migrationIssues: string[];
153
+ }, {
154
+ repositoryKey: string;
155
+ id?: string | undefined;
156
+ repositoryId?: string | undefined;
157
+ connectionCode?: string | null | undefined;
158
+ provider?: string | null | undefined;
159
+ externalId?: string | null | undefined;
160
+ namespaceExternalId?: string | null | undefined;
161
+ namespacePath?: string | null | undefined;
162
+ name?: string | null | undefined;
163
+ fullName?: string | null | undefined;
164
+ description?: string | null | undefined;
165
+ visibility?: string | null | undefined;
166
+ defaultBranch?: string | null | undefined;
167
+ lastObservedRevision?: string | null | undefined;
168
+ observedRevision?: string | null | undefined;
169
+ webUrl?: string | null | undefined;
170
+ cloneUrl?: string | null | undefined;
171
+ managementMode?: string | null | undefined;
172
+ status: string;
173
+ ownerTeamId?: string | null | undefined;
174
+ lastReconciledAt?: string | null | undefined;
175
+ version?: number | undefined;
176
+ }>>;
177
+ export declare const RepositoryCapabilityConstraintsSchema: z.ZodObject<{
178
+ supportedVisibilities: z.ZodDefault<z.ZodArray<z.ZodString>>;
179
+ supportedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
180
+ CREATE: "CREATE";
181
+ DISABLE: "DISABLE";
182
+ REGISTER_EXISTING: "REGISTER_EXISTING";
183
+ USE_EXISTING: "USE_EXISTING";
184
+ }>>>;
185
+ defaultVisibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
186
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
187
+ namePattern: z.ZodOptional<z.ZodNullable<z.ZodString>>;
188
+ nameMaxLength: z.ZodOptional<z.ZodNumber>;
189
+ namespaceRequired: z.ZodOptional<z.ZodBoolean>;
190
+ }, z.core.$strip>;
191
+ export declare const RepositoryCapabilitiesSchema: z.ZodObject<{
192
+ contractVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
193
+ connection: z.ZodObject<{
194
+ code: z.ZodString;
195
+ name: z.ZodString;
196
+ provider: z.ZodString;
197
+ status: z.ZodString;
198
+ capabilities: z.ZodDefault<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
199
+ code: z.ZodString;
200
+ supported: z.ZodBoolean;
201
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
202
+ }, z.core.$strip>>, z.ZodRecord<z.ZodString, z.ZodBoolean>]>>;
203
+ lastCheckedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
204
+ }, z.core.$strip>;
205
+ providerCapabilities: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
206
+ allowedActions: z.ZodDefault<z.ZodArray<z.ZodString>>;
207
+ constraints: z.ZodDefault<z.ZodObject<{
208
+ supportedVisibilities: z.ZodDefault<z.ZodArray<z.ZodString>>;
209
+ supportedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<{
210
+ CREATE: "CREATE";
211
+ DISABLE: "DISABLE";
212
+ REGISTER_EXISTING: "REGISTER_EXISTING";
213
+ USE_EXISTING: "USE_EXISTING";
214
+ }>>>;
215
+ defaultVisibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
216
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
217
+ namePattern: z.ZodOptional<z.ZodNullable<z.ZodString>>;
218
+ nameMaxLength: z.ZodOptional<z.ZodNumber>;
219
+ namespaceRequired: z.ZodOptional<z.ZodBoolean>;
220
+ }, z.core.$strip>>;
221
+ }, z.core.$strip>;
222
+ export declare const RepositoryPlanRequestSchema: z.ZodObject<{
223
+ operation: z.ZodEnum<{
224
+ CREATE: "CREATE";
225
+ DISABLE: "DISABLE";
226
+ REGISTER_EXISTING: "REGISTER_EXISTING";
227
+ USE_EXISTING: "USE_EXISTING";
228
+ }>;
229
+ consumerType: z.ZodOptional<z.ZodEnum<{
230
+ APPLICATION_ONBOARDING: "APPLICATION_ONBOARDING";
231
+ GITOPS: "GITOPS";
232
+ STANDALONE: "STANDALONE";
233
+ }>>;
234
+ consumerRef: z.ZodOptional<z.ZodString>;
235
+ ownerTeamId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
236
+ connectionCode: z.ZodOptional<z.ZodString>;
237
+ namespaceExternalId: z.ZodOptional<z.ZodString>;
238
+ name: z.ZodOptional<z.ZodString>;
239
+ description: z.ZodOptional<z.ZodString>;
240
+ visibility: z.ZodOptional<z.ZodEnum<{
241
+ INTERNAL: "INTERNAL";
242
+ PRIVATE: "PRIVATE";
243
+ PUBLIC: "PUBLIC";
244
+ }>>;
245
+ defaultBranch: z.ZodOptional<z.ZodString>;
246
+ initialization: z.ZodOptional<z.ZodEnum<{
247
+ EMPTY: "EMPTY";
248
+ README: "README";
249
+ }>>;
250
+ externalId: z.ZodOptional<z.ZodString>;
251
+ repositoryKey: z.ZodOptional<z.ZodString>;
252
+ }, z.core.$strict>;
253
+ export declare const RepositoryPlanSchema: z.ZodObject<{
254
+ planNo: z.ZodString;
255
+ operation: z.ZodEnum<{
256
+ CREATE: "CREATE";
257
+ DISABLE: "DISABLE";
258
+ REGISTER_EXISTING: "REGISTER_EXISTING";
259
+ USE_EXISTING: "USE_EXISTING";
260
+ }>;
261
+ state: z.ZodString;
262
+ planHash: z.ZodString;
263
+ normalizedSpec: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
264
+ sideEffects: z.ZodDefault<z.ZodArray<z.ZodUnknown>>;
265
+ warnings: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
266
+ path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
267
+ code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
268
+ message: z.ZodString;
269
+ }, z.core.$strip>]>>>;
270
+ blockers: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
271
+ path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
272
+ code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
273
+ message: z.ZodString;
274
+ }, z.core.$strip>]>>>;
275
+ expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
276
+ }, z.core.$strip>;
277
+ export declare const RepositoryRunCreateSchema: z.ZodObject<{
278
+ planNo: z.ZodString;
279
+ planHash: z.ZodString;
280
+ clientRequestId: z.ZodString;
281
+ }, z.core.$strict>;
282
+ export declare const RepositoryRunSchema: z.ZodObject<{
283
+ runNo: z.ZodString;
284
+ planNo: z.ZodString;
285
+ state: z.ZodUnion<[z.ZodEnum<{
286
+ CANCELLED: "CANCELLED";
287
+ FAILED: "FAILED";
288
+ PENDING: "PENDING";
289
+ QUEUED: "QUEUED";
290
+ RETRYING: "RETRYING";
291
+ RUNNING: "RUNNING";
292
+ SUCCEEDED: "SUCCEEDED";
293
+ UNKNOWN: "UNKNOWN";
294
+ WAITING: "WAITING";
295
+ }>, z.ZodString]>;
296
+ stepCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
297
+ repository: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodObject<{
298
+ repositoryKey: z.ZodString;
299
+ id: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
300
+ repositoryId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
301
+ connectionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
302
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
303
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
304
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
305
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
306
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
307
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
308
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
309
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
310
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
311
+ lastObservedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
312
+ observedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
313
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
314
+ cloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
315
+ managementMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
316
+ status: z.ZodString;
317
+ ownerTeamId: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>>;
318
+ lastReconciledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
319
+ version: z.ZodOptional<z.ZodNumber>;
320
+ }, z.core.$strip>, z.ZodTransform<{
321
+ repositoryKey: string;
322
+ id?: string | undefined;
323
+ connectionCode?: string | null | undefined;
324
+ provider?: string | null | undefined;
325
+ externalId?: string | null | undefined;
326
+ namespaceExternalId?: string | null | undefined;
327
+ namespacePath?: string | null | undefined;
328
+ name?: string | null | undefined;
329
+ fullName?: string | null | undefined;
330
+ description?: string | null | undefined;
331
+ visibility?: string | null | undefined;
332
+ defaultBranch?: string | null | undefined;
333
+ lastObservedRevision?: string | null | undefined;
334
+ webUrl?: string | null | undefined;
335
+ cloneUrl?: string | null | undefined;
336
+ managementMode?: string | null | undefined;
337
+ status: string;
338
+ ownerTeamId?: string | null | undefined;
339
+ lastReconciledAt?: string | null | undefined;
340
+ version?: number | undefined;
341
+ repositoryId: string | undefined;
342
+ observedRevision: string | null | undefined;
343
+ migrationRequired: boolean;
344
+ migrationIssues: string[];
345
+ }, {
346
+ repositoryKey: string;
347
+ id?: string | undefined;
348
+ repositoryId?: string | undefined;
349
+ connectionCode?: string | null | undefined;
350
+ provider?: string | null | undefined;
351
+ externalId?: string | null | undefined;
352
+ namespaceExternalId?: string | null | undefined;
353
+ namespacePath?: string | null | undefined;
354
+ name?: string | null | undefined;
355
+ fullName?: string | null | undefined;
356
+ description?: string | null | undefined;
357
+ visibility?: string | null | undefined;
358
+ defaultBranch?: string | null | undefined;
359
+ lastObservedRevision?: string | null | undefined;
360
+ observedRevision?: string | null | undefined;
361
+ webUrl?: string | null | undefined;
362
+ cloneUrl?: string | null | undefined;
363
+ managementMode?: string | null | undefined;
364
+ status: string;
365
+ ownerTeamId?: string | null | undefined;
366
+ lastReconciledAt?: string | null | undefined;
367
+ version?: number | undefined;
368
+ }>>>>;
369
+ retryable: z.ZodDefault<z.ZodBoolean>;
370
+ errorCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
371
+ errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
372
+ clientRequestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
373
+ createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
374
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
375
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
376
+ finishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
377
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
378
+ }, z.core.$strip>;
379
+ export declare const RepositoryRunEventSchema: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
380
+ sequenceNo: z.ZodNumber;
381
+ eventType: z.ZodString;
382
+ state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
383
+ stepCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
384
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
385
+ errorCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
386
+ retryable: z.ZodOptional<z.ZodBoolean>;
387
+ occurredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
388
+ }, z.core.$strip>, z.ZodTransform<{
389
+ sequenceNo: number;
390
+ eventType: string;
391
+ state?: string | null | undefined;
392
+ stepCode?: string | null | undefined;
393
+ message?: string | null | undefined;
394
+ errorCode?: string | null | undefined;
395
+ retryable?: boolean | undefined;
396
+ occurredAt?: string | null | undefined;
397
+ sequence: number;
398
+ type: undefined;
399
+ createdAt: string | null | undefined;
400
+ }, {
401
+ sequenceNo: number;
402
+ eventType: string;
403
+ state?: string | null | undefined;
404
+ stepCode?: string | null | undefined;
405
+ message?: string | null | undefined;
406
+ errorCode?: string | null | undefined;
407
+ retryable?: boolean | undefined;
408
+ occurredAt?: string | null | undefined;
409
+ }>>, z.ZodObject<{
410
+ sequence: z.ZodNumber;
411
+ eventType: z.ZodOptional<z.ZodString>;
412
+ type: z.ZodOptional<z.ZodString>;
413
+ state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
414
+ stepCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
415
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
416
+ createdAt: z.ZodString;
417
+ details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
418
+ }, z.core.$strip>]>;
419
+ export declare const RepositoryRunEventListSchema: z.ZodObject<{
420
+ items: z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
421
+ sequenceNo: z.ZodNumber;
422
+ eventType: z.ZodString;
423
+ state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
424
+ stepCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
425
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
426
+ errorCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
427
+ retryable: z.ZodOptional<z.ZodBoolean>;
428
+ occurredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
429
+ }, z.core.$strip>, z.ZodTransform<{
430
+ sequenceNo: number;
431
+ eventType: string;
432
+ state?: string | null | undefined;
433
+ stepCode?: string | null | undefined;
434
+ message?: string | null | undefined;
435
+ errorCode?: string | null | undefined;
436
+ retryable?: boolean | undefined;
437
+ occurredAt?: string | null | undefined;
438
+ sequence: number;
439
+ type: undefined;
440
+ createdAt: string | null | undefined;
441
+ }, {
442
+ sequenceNo: number;
443
+ eventType: string;
444
+ state?: string | null | undefined;
445
+ stepCode?: string | null | undefined;
446
+ message?: string | null | undefined;
447
+ errorCode?: string | null | undefined;
448
+ retryable?: boolean | undefined;
449
+ occurredAt?: string | null | undefined;
450
+ }>>, z.ZodObject<{
451
+ sequence: z.ZodNumber;
452
+ eventType: z.ZodOptional<z.ZodString>;
453
+ type: z.ZodOptional<z.ZodString>;
454
+ state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
455
+ stepCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
456
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
457
+ createdAt: z.ZodString;
458
+ details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
459
+ }, z.core.$strip>]>>;
460
+ nextSequence: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
461
+ }, z.core.$strip>;
462
+ export declare const ScmConnectionListSchema: z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
463
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
464
+ code: z.ZodString;
465
+ name: z.ZodString;
466
+ provider: z.ZodString;
467
+ status: z.ZodString;
468
+ capabilities: z.ZodDefault<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
469
+ code: z.ZodString;
470
+ supported: z.ZodBoolean;
471
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
472
+ }, z.core.$strip>>, z.ZodRecord<z.ZodString, z.ZodBoolean>]>>;
473
+ lastCheckedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
474
+ }, z.core.$strip>>>;
475
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
476
+ code: z.ZodString;
477
+ name: z.ZodString;
478
+ provider: z.ZodString;
479
+ status: z.ZodString;
480
+ capabilities: z.ZodDefault<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
481
+ code: z.ZodString;
482
+ supported: z.ZodBoolean;
483
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
484
+ }, z.core.$strip>>, z.ZodRecord<z.ZodString, z.ZodBoolean>]>>;
485
+ lastCheckedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
486
+ }, z.core.$strip>>>;
487
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
488
+ hasMore: z.ZodOptional<z.ZodBoolean>;
489
+ total: z.ZodOptional<z.ZodNumber>;
490
+ page: z.ZodOptional<z.ZodNumber>;
491
+ size: z.ZodOptional<z.ZodNumber>;
492
+ }, z.core.$loose>, z.ZodArray<z.ZodObject<{
493
+ code: z.ZodString;
494
+ name: z.ZodString;
495
+ provider: z.ZodString;
496
+ status: z.ZodString;
497
+ capabilities: z.ZodDefault<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodArray<z.ZodObject<{
498
+ code: z.ZodString;
499
+ supported: z.ZodBoolean;
500
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
501
+ }, z.core.$strip>>, z.ZodRecord<z.ZodString, z.ZodBoolean>]>>;
502
+ lastCheckedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
503
+ }, z.core.$strip>>]>, z.ZodTransform<{
504
+ items: {
505
+ code: string;
506
+ name: string;
507
+ provider: string;
508
+ status: string;
509
+ capabilities: string[] | {
510
+ code: string;
511
+ supported: boolean;
512
+ reason?: string | null | undefined;
513
+ }[] | Record<string, boolean>;
514
+ lastCheckedAt?: string | null | undefined;
515
+ }[];
516
+ nextCursor: string | null;
517
+ hasMore: boolean;
518
+ total?: number | undefined;
519
+ page?: number | undefined;
520
+ size?: number | undefined;
521
+ }, {
522
+ code: string;
523
+ name: string;
524
+ provider: string;
525
+ status: string;
526
+ capabilities: string[] | {
527
+ code: string;
528
+ supported: boolean;
529
+ reason?: string | null | undefined;
530
+ }[] | Record<string, boolean>;
531
+ lastCheckedAt?: string | null | undefined;
532
+ }[] | {
533
+ [x: string]: unknown;
534
+ items?: {
535
+ code: string;
536
+ name: string;
537
+ provider: string;
538
+ status: string;
539
+ capabilities: string[] | {
540
+ code: string;
541
+ supported: boolean;
542
+ reason?: string | null | undefined;
543
+ }[] | Record<string, boolean>;
544
+ lastCheckedAt?: string | null | undefined;
545
+ }[] | undefined;
546
+ content?: {
547
+ code: string;
548
+ name: string;
549
+ provider: string;
550
+ status: string;
551
+ capabilities: string[] | {
552
+ code: string;
553
+ supported: boolean;
554
+ reason?: string | null | undefined;
555
+ }[] | Record<string, boolean>;
556
+ lastCheckedAt?: string | null | undefined;
557
+ }[] | undefined;
558
+ nextCursor?: string | null | undefined;
559
+ hasMore?: boolean | undefined;
560
+ total?: number | undefined;
561
+ page?: number | undefined;
562
+ size?: number | undefined;
563
+ }>>;
564
+ export declare const RepositoryNamespaceListSchema: z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
565
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
566
+ externalId: z.ZodString;
567
+ name: z.ZodString;
568
+ fullPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
569
+ parentExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
570
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
571
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
572
+ }, z.core.$strip>>>;
573
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
574
+ externalId: z.ZodString;
575
+ name: z.ZodString;
576
+ fullPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
577
+ parentExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
578
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
579
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
580
+ }, z.core.$strip>>>;
581
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
582
+ hasMore: z.ZodOptional<z.ZodBoolean>;
583
+ total: z.ZodOptional<z.ZodNumber>;
584
+ page: z.ZodOptional<z.ZodNumber>;
585
+ size: z.ZodOptional<z.ZodNumber>;
586
+ }, z.core.$loose>, z.ZodArray<z.ZodObject<{
587
+ externalId: z.ZodString;
588
+ name: z.ZodString;
589
+ fullPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
590
+ parentExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
591
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
592
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
593
+ }, z.core.$strip>>]>, z.ZodTransform<{
594
+ items: {
595
+ externalId: string;
596
+ name: string;
597
+ fullPath?: string | null | undefined;
598
+ parentExternalId?: string | null | undefined;
599
+ visibility?: string | null | undefined;
600
+ webUrl?: string | null | undefined;
601
+ }[];
602
+ nextCursor: string | null;
603
+ hasMore: boolean;
604
+ total?: number | undefined;
605
+ page?: number | undefined;
606
+ size?: number | undefined;
607
+ }, {
608
+ externalId: string;
609
+ name: string;
610
+ fullPath?: string | null | undefined;
611
+ parentExternalId?: string | null | undefined;
612
+ visibility?: string | null | undefined;
613
+ webUrl?: string | null | undefined;
614
+ }[] | {
615
+ [x: string]: unknown;
616
+ items?: {
617
+ externalId: string;
618
+ name: string;
619
+ fullPath?: string | null | undefined;
620
+ parentExternalId?: string | null | undefined;
621
+ visibility?: string | null | undefined;
622
+ webUrl?: string | null | undefined;
623
+ }[] | undefined;
624
+ content?: {
625
+ externalId: string;
626
+ name: string;
627
+ fullPath?: string | null | undefined;
628
+ parentExternalId?: string | null | undefined;
629
+ visibility?: string | null | undefined;
630
+ webUrl?: string | null | undefined;
631
+ }[] | undefined;
632
+ nextCursor?: string | null | undefined;
633
+ hasMore?: boolean | undefined;
634
+ total?: number | undefined;
635
+ page?: number | undefined;
636
+ size?: number | undefined;
637
+ }>>;
638
+ export declare const RemoteRepositoryListSchema: z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
639
+ items: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodObject<{
640
+ externalId: z.ZodString;
641
+ namespace: z.ZodOptional<z.ZodNullable<z.ZodString>>;
642
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
643
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
644
+ name: z.ZodString;
645
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
646
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
647
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
648
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
649
+ headRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
650
+ archived: z.ZodOptional<z.ZodBoolean>;
651
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
652
+ httpUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
653
+ sshUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
654
+ httpCloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
655
+ sshCloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
656
+ }, z.core.$strip>, z.ZodTransform<{
657
+ externalId: string;
658
+ namespace?: string | null | undefined;
659
+ namespaceExternalId?: string | null | undefined;
660
+ name: string;
661
+ fullName?: string | null | undefined;
662
+ description?: string | null | undefined;
663
+ visibility?: string | null | undefined;
664
+ defaultBranch?: string | null | undefined;
665
+ headRevision?: string | null | undefined;
666
+ archived?: boolean | undefined;
667
+ webUrl?: string | null | undefined;
668
+ httpCloneUrl?: string | null | undefined;
669
+ sshCloneUrl?: string | null | undefined;
670
+ namespacePath: string | null | undefined;
671
+ httpUrl: string | null | undefined;
672
+ sshUrl: string | null | undefined;
673
+ }, {
674
+ externalId: string;
675
+ namespace?: string | null | undefined;
676
+ namespaceExternalId?: string | null | undefined;
677
+ namespacePath?: string | null | undefined;
678
+ name: string;
679
+ fullName?: string | null | undefined;
680
+ description?: string | null | undefined;
681
+ visibility?: string | null | undefined;
682
+ defaultBranch?: string | null | undefined;
683
+ headRevision?: string | null | undefined;
684
+ archived?: boolean | undefined;
685
+ webUrl?: string | null | undefined;
686
+ httpUrl?: string | null | undefined;
687
+ sshUrl?: string | null | undefined;
688
+ httpCloneUrl?: string | null | undefined;
689
+ sshCloneUrl?: string | null | undefined;
690
+ }>>>>;
691
+ content: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodObject<{
692
+ externalId: z.ZodString;
693
+ namespace: z.ZodOptional<z.ZodNullable<z.ZodString>>;
694
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
695
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
696
+ name: z.ZodString;
697
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
698
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
699
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
700
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
701
+ headRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
702
+ archived: z.ZodOptional<z.ZodBoolean>;
703
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
704
+ httpUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
705
+ sshUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
706
+ httpCloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
707
+ sshCloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
708
+ }, z.core.$strip>, z.ZodTransform<{
709
+ externalId: string;
710
+ namespace?: string | null | undefined;
711
+ namespaceExternalId?: string | null | undefined;
712
+ name: string;
713
+ fullName?: string | null | undefined;
714
+ description?: string | null | undefined;
715
+ visibility?: string | null | undefined;
716
+ defaultBranch?: string | null | undefined;
717
+ headRevision?: string | null | undefined;
718
+ archived?: boolean | undefined;
719
+ webUrl?: string | null | undefined;
720
+ httpCloneUrl?: string | null | undefined;
721
+ sshCloneUrl?: string | null | undefined;
722
+ namespacePath: string | null | undefined;
723
+ httpUrl: string | null | undefined;
724
+ sshUrl: string | null | undefined;
725
+ }, {
726
+ externalId: string;
727
+ namespace?: string | null | undefined;
728
+ namespaceExternalId?: string | null | undefined;
729
+ namespacePath?: string | null | undefined;
730
+ name: string;
731
+ fullName?: string | null | undefined;
732
+ description?: string | null | undefined;
733
+ visibility?: string | null | undefined;
734
+ defaultBranch?: string | null | undefined;
735
+ headRevision?: string | null | undefined;
736
+ archived?: boolean | undefined;
737
+ webUrl?: string | null | undefined;
738
+ httpUrl?: string | null | undefined;
739
+ sshUrl?: string | null | undefined;
740
+ httpCloneUrl?: string | null | undefined;
741
+ sshCloneUrl?: string | null | undefined;
742
+ }>>>>;
743
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
744
+ hasMore: z.ZodOptional<z.ZodBoolean>;
745
+ total: z.ZodOptional<z.ZodNumber>;
746
+ page: z.ZodOptional<z.ZodNumber>;
747
+ size: z.ZodOptional<z.ZodNumber>;
748
+ }, z.core.$loose>, z.ZodArray<z.ZodPipe<z.ZodObject<{
749
+ externalId: z.ZodString;
750
+ namespace: z.ZodOptional<z.ZodNullable<z.ZodString>>;
751
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
752
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
753
+ name: z.ZodString;
754
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
755
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
756
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
757
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
758
+ headRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
759
+ archived: z.ZodOptional<z.ZodBoolean>;
760
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
761
+ httpUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
762
+ sshUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
763
+ httpCloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
764
+ sshCloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
765
+ }, z.core.$strip>, z.ZodTransform<{
766
+ externalId: string;
767
+ namespace?: string | null | undefined;
768
+ namespaceExternalId?: string | null | undefined;
769
+ name: string;
770
+ fullName?: string | null | undefined;
771
+ description?: string | null | undefined;
772
+ visibility?: string | null | undefined;
773
+ defaultBranch?: string | null | undefined;
774
+ headRevision?: string | null | undefined;
775
+ archived?: boolean | undefined;
776
+ webUrl?: string | null | undefined;
777
+ httpCloneUrl?: string | null | undefined;
778
+ sshCloneUrl?: string | null | undefined;
779
+ namespacePath: string | null | undefined;
780
+ httpUrl: string | null | undefined;
781
+ sshUrl: string | null | undefined;
782
+ }, {
783
+ externalId: string;
784
+ namespace?: string | null | undefined;
785
+ namespaceExternalId?: string | null | undefined;
786
+ namespacePath?: string | null | undefined;
787
+ name: string;
788
+ fullName?: string | null | undefined;
789
+ description?: string | null | undefined;
790
+ visibility?: string | null | undefined;
791
+ defaultBranch?: string | null | undefined;
792
+ headRevision?: string | null | undefined;
793
+ archived?: boolean | undefined;
794
+ webUrl?: string | null | undefined;
795
+ httpUrl?: string | null | undefined;
796
+ sshUrl?: string | null | undefined;
797
+ httpCloneUrl?: string | null | undefined;
798
+ sshCloneUrl?: string | null | undefined;
799
+ }>>>]>, z.ZodTransform<{
800
+ items: {
801
+ externalId: string;
802
+ namespace?: string | null | undefined;
803
+ namespaceExternalId?: string | null | undefined;
804
+ name: string;
805
+ fullName?: string | null | undefined;
806
+ description?: string | null | undefined;
807
+ visibility?: string | null | undefined;
808
+ defaultBranch?: string | null | undefined;
809
+ headRevision?: string | null | undefined;
810
+ archived?: boolean | undefined;
811
+ webUrl?: string | null | undefined;
812
+ httpCloneUrl?: string | null | undefined;
813
+ sshCloneUrl?: string | null | undefined;
814
+ namespacePath: string | null | undefined;
815
+ httpUrl: string | null | undefined;
816
+ sshUrl: string | null | undefined;
817
+ }[];
818
+ nextCursor: string | null;
819
+ hasMore: boolean;
820
+ total?: number | undefined;
821
+ page?: number | undefined;
822
+ size?: number | undefined;
823
+ }, {
824
+ externalId: string;
825
+ namespace?: string | null | undefined;
826
+ namespaceExternalId?: string | null | undefined;
827
+ name: string;
828
+ fullName?: string | null | undefined;
829
+ description?: string | null | undefined;
830
+ visibility?: string | null | undefined;
831
+ defaultBranch?: string | null | undefined;
832
+ headRevision?: string | null | undefined;
833
+ archived?: boolean | undefined;
834
+ webUrl?: string | null | undefined;
835
+ httpCloneUrl?: string | null | undefined;
836
+ sshCloneUrl?: string | null | undefined;
837
+ namespacePath: string | null | undefined;
838
+ httpUrl: string | null | undefined;
839
+ sshUrl: string | null | undefined;
840
+ }[] | {
841
+ [x: string]: unknown;
842
+ items?: {
843
+ externalId: string;
844
+ namespace?: string | null | undefined;
845
+ namespaceExternalId?: string | null | undefined;
846
+ name: string;
847
+ fullName?: string | null | undefined;
848
+ description?: string | null | undefined;
849
+ visibility?: string | null | undefined;
850
+ defaultBranch?: string | null | undefined;
851
+ headRevision?: string | null | undefined;
852
+ archived?: boolean | undefined;
853
+ webUrl?: string | null | undefined;
854
+ httpCloneUrl?: string | null | undefined;
855
+ sshCloneUrl?: string | null | undefined;
856
+ namespacePath: string | null | undefined;
857
+ httpUrl: string | null | undefined;
858
+ sshUrl: string | null | undefined;
859
+ }[] | undefined;
860
+ content?: {
861
+ externalId: string;
862
+ namespace?: string | null | undefined;
863
+ namespaceExternalId?: string | null | undefined;
864
+ name: string;
865
+ fullName?: string | null | undefined;
866
+ description?: string | null | undefined;
867
+ visibility?: string | null | undefined;
868
+ defaultBranch?: string | null | undefined;
869
+ headRevision?: string | null | undefined;
870
+ archived?: boolean | undefined;
871
+ webUrl?: string | null | undefined;
872
+ httpCloneUrl?: string | null | undefined;
873
+ sshCloneUrl?: string | null | undefined;
874
+ namespacePath: string | null | undefined;
875
+ httpUrl: string | null | undefined;
876
+ sshUrl: string | null | undefined;
877
+ }[] | undefined;
878
+ nextCursor?: string | null | undefined;
879
+ hasMore?: boolean | undefined;
880
+ total?: number | undefined;
881
+ page?: number | undefined;
882
+ size?: number | undefined;
883
+ }>>;
884
+ export declare const SourceRepositoryListSchema: z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
885
+ items: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodObject<{
886
+ repositoryKey: z.ZodString;
887
+ id: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
888
+ repositoryId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
889
+ connectionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
890
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
891
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
892
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
893
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
894
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
895
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
896
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
897
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
898
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
899
+ lastObservedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
900
+ observedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
901
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
902
+ cloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
903
+ managementMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
904
+ status: z.ZodString;
905
+ ownerTeamId: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>>;
906
+ lastReconciledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
907
+ version: z.ZodOptional<z.ZodNumber>;
908
+ }, z.core.$strip>, z.ZodTransform<{
909
+ repositoryKey: string;
910
+ id?: string | undefined;
911
+ connectionCode?: string | null | undefined;
912
+ provider?: string | null | undefined;
913
+ externalId?: string | null | undefined;
914
+ namespaceExternalId?: string | null | undefined;
915
+ namespacePath?: string | null | undefined;
916
+ name?: string | null | undefined;
917
+ fullName?: string | null | undefined;
918
+ description?: string | null | undefined;
919
+ visibility?: string | null | undefined;
920
+ defaultBranch?: string | null | undefined;
921
+ lastObservedRevision?: string | null | undefined;
922
+ webUrl?: string | null | undefined;
923
+ cloneUrl?: string | null | undefined;
924
+ managementMode?: string | null | undefined;
925
+ status: string;
926
+ ownerTeamId?: string | null | undefined;
927
+ lastReconciledAt?: string | null | undefined;
928
+ version?: number | undefined;
929
+ repositoryId: string | undefined;
930
+ observedRevision: string | null | undefined;
931
+ migrationRequired: boolean;
932
+ migrationIssues: string[];
933
+ }, {
934
+ repositoryKey: string;
935
+ id?: string | undefined;
936
+ repositoryId?: string | undefined;
937
+ connectionCode?: string | null | undefined;
938
+ provider?: string | null | undefined;
939
+ externalId?: string | null | undefined;
940
+ namespaceExternalId?: string | null | undefined;
941
+ namespacePath?: string | null | undefined;
942
+ name?: string | null | undefined;
943
+ fullName?: string | null | undefined;
944
+ description?: string | null | undefined;
945
+ visibility?: string | null | undefined;
946
+ defaultBranch?: string | null | undefined;
947
+ lastObservedRevision?: string | null | undefined;
948
+ observedRevision?: string | null | undefined;
949
+ webUrl?: string | null | undefined;
950
+ cloneUrl?: string | null | undefined;
951
+ managementMode?: string | null | undefined;
952
+ status: string;
953
+ ownerTeamId?: string | null | undefined;
954
+ lastReconciledAt?: string | null | undefined;
955
+ version?: number | undefined;
956
+ }>>>>;
957
+ content: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodObject<{
958
+ repositoryKey: z.ZodString;
959
+ id: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
960
+ repositoryId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
961
+ connectionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
962
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
963
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
964
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
965
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
966
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
967
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
968
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
969
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
970
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
971
+ lastObservedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
972
+ observedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
973
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
974
+ cloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
975
+ managementMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
976
+ status: z.ZodString;
977
+ ownerTeamId: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>>;
978
+ lastReconciledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
979
+ version: z.ZodOptional<z.ZodNumber>;
980
+ }, z.core.$strip>, z.ZodTransform<{
981
+ repositoryKey: string;
982
+ id?: string | undefined;
983
+ connectionCode?: string | null | undefined;
984
+ provider?: string | null | undefined;
985
+ externalId?: string | null | undefined;
986
+ namespaceExternalId?: string | null | undefined;
987
+ namespacePath?: string | null | undefined;
988
+ name?: string | null | undefined;
989
+ fullName?: string | null | undefined;
990
+ description?: string | null | undefined;
991
+ visibility?: string | null | undefined;
992
+ defaultBranch?: string | null | undefined;
993
+ lastObservedRevision?: string | null | undefined;
994
+ webUrl?: string | null | undefined;
995
+ cloneUrl?: string | null | undefined;
996
+ managementMode?: string | null | undefined;
997
+ status: string;
998
+ ownerTeamId?: string | null | undefined;
999
+ lastReconciledAt?: string | null | undefined;
1000
+ version?: number | undefined;
1001
+ repositoryId: string | undefined;
1002
+ observedRevision: string | null | undefined;
1003
+ migrationRequired: boolean;
1004
+ migrationIssues: string[];
1005
+ }, {
1006
+ repositoryKey: string;
1007
+ id?: string | undefined;
1008
+ repositoryId?: string | undefined;
1009
+ connectionCode?: string | null | undefined;
1010
+ provider?: string | null | undefined;
1011
+ externalId?: string | null | undefined;
1012
+ namespaceExternalId?: string | null | undefined;
1013
+ namespacePath?: string | null | undefined;
1014
+ name?: string | null | undefined;
1015
+ fullName?: string | null | undefined;
1016
+ description?: string | null | undefined;
1017
+ visibility?: string | null | undefined;
1018
+ defaultBranch?: string | null | undefined;
1019
+ lastObservedRevision?: string | null | undefined;
1020
+ observedRevision?: string | null | undefined;
1021
+ webUrl?: string | null | undefined;
1022
+ cloneUrl?: string | null | undefined;
1023
+ managementMode?: string | null | undefined;
1024
+ status: string;
1025
+ ownerTeamId?: string | null | undefined;
1026
+ lastReconciledAt?: string | null | undefined;
1027
+ version?: number | undefined;
1028
+ }>>>>;
1029
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1030
+ hasMore: z.ZodOptional<z.ZodBoolean>;
1031
+ total: z.ZodOptional<z.ZodNumber>;
1032
+ page: z.ZodOptional<z.ZodNumber>;
1033
+ size: z.ZodOptional<z.ZodNumber>;
1034
+ }, z.core.$loose>, z.ZodArray<z.ZodPipe<z.ZodObject<{
1035
+ repositoryKey: z.ZodString;
1036
+ id: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
1037
+ repositoryId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
1038
+ connectionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1039
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1040
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1041
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1042
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1043
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1044
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1045
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1046
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1047
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1048
+ lastObservedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1049
+ observedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1050
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1051
+ cloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1052
+ managementMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1053
+ status: z.ZodString;
1054
+ ownerTeamId: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>>;
1055
+ lastReconciledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1056
+ version: z.ZodOptional<z.ZodNumber>;
1057
+ }, z.core.$strip>, z.ZodTransform<{
1058
+ repositoryKey: string;
1059
+ id?: string | undefined;
1060
+ connectionCode?: string | null | undefined;
1061
+ provider?: string | null | undefined;
1062
+ externalId?: string | null | undefined;
1063
+ namespaceExternalId?: string | null | undefined;
1064
+ namespacePath?: string | null | undefined;
1065
+ name?: string | null | undefined;
1066
+ fullName?: string | null | undefined;
1067
+ description?: string | null | undefined;
1068
+ visibility?: string | null | undefined;
1069
+ defaultBranch?: string | null | undefined;
1070
+ lastObservedRevision?: string | null | undefined;
1071
+ webUrl?: string | null | undefined;
1072
+ cloneUrl?: string | null | undefined;
1073
+ managementMode?: string | null | undefined;
1074
+ status: string;
1075
+ ownerTeamId?: string | null | undefined;
1076
+ lastReconciledAt?: string | null | undefined;
1077
+ version?: number | undefined;
1078
+ repositoryId: string | undefined;
1079
+ observedRevision: string | null | undefined;
1080
+ migrationRequired: boolean;
1081
+ migrationIssues: string[];
1082
+ }, {
1083
+ repositoryKey: string;
1084
+ id?: string | undefined;
1085
+ repositoryId?: string | undefined;
1086
+ connectionCode?: string | null | undefined;
1087
+ provider?: string | null | undefined;
1088
+ externalId?: string | null | undefined;
1089
+ namespaceExternalId?: string | null | undefined;
1090
+ namespacePath?: string | null | undefined;
1091
+ name?: string | null | undefined;
1092
+ fullName?: string | null | undefined;
1093
+ description?: string | null | undefined;
1094
+ visibility?: string | null | undefined;
1095
+ defaultBranch?: string | null | undefined;
1096
+ lastObservedRevision?: string | null | undefined;
1097
+ observedRevision?: string | null | undefined;
1098
+ webUrl?: string | null | undefined;
1099
+ cloneUrl?: string | null | undefined;
1100
+ managementMode?: string | null | undefined;
1101
+ status: string;
1102
+ ownerTeamId?: string | null | undefined;
1103
+ lastReconciledAt?: string | null | undefined;
1104
+ version?: number | undefined;
1105
+ }>>>]>, z.ZodTransform<{
1106
+ items: {
1107
+ repositoryKey: string;
1108
+ id?: string | undefined;
1109
+ connectionCode?: string | null | undefined;
1110
+ provider?: string | null | undefined;
1111
+ externalId?: string | null | undefined;
1112
+ namespaceExternalId?: string | null | undefined;
1113
+ namespacePath?: string | null | undefined;
1114
+ name?: string | null | undefined;
1115
+ fullName?: string | null | undefined;
1116
+ description?: string | null | undefined;
1117
+ visibility?: string | null | undefined;
1118
+ defaultBranch?: string | null | undefined;
1119
+ lastObservedRevision?: string | null | undefined;
1120
+ webUrl?: string | null | undefined;
1121
+ cloneUrl?: string | null | undefined;
1122
+ managementMode?: string | null | undefined;
1123
+ status: string;
1124
+ ownerTeamId?: string | null | undefined;
1125
+ lastReconciledAt?: string | null | undefined;
1126
+ version?: number | undefined;
1127
+ repositoryId: string | undefined;
1128
+ observedRevision: string | null | undefined;
1129
+ migrationRequired: boolean;
1130
+ migrationIssues: string[];
1131
+ }[];
1132
+ nextCursor: string | null;
1133
+ hasMore: boolean;
1134
+ total?: number | undefined;
1135
+ page?: number | undefined;
1136
+ size?: number | undefined;
1137
+ }, {
1138
+ repositoryKey: string;
1139
+ id?: string | undefined;
1140
+ connectionCode?: string | null | undefined;
1141
+ provider?: string | null | undefined;
1142
+ externalId?: string | null | undefined;
1143
+ namespaceExternalId?: string | null | undefined;
1144
+ namespacePath?: string | null | undefined;
1145
+ name?: string | null | undefined;
1146
+ fullName?: string | null | undefined;
1147
+ description?: string | null | undefined;
1148
+ visibility?: string | null | undefined;
1149
+ defaultBranch?: string | null | undefined;
1150
+ lastObservedRevision?: string | null | undefined;
1151
+ webUrl?: string | null | undefined;
1152
+ cloneUrl?: string | null | undefined;
1153
+ managementMode?: string | null | undefined;
1154
+ status: string;
1155
+ ownerTeamId?: string | null | undefined;
1156
+ lastReconciledAt?: string | null | undefined;
1157
+ version?: number | undefined;
1158
+ repositoryId: string | undefined;
1159
+ observedRevision: string | null | undefined;
1160
+ migrationRequired: boolean;
1161
+ migrationIssues: string[];
1162
+ }[] | {
1163
+ [x: string]: unknown;
1164
+ items?: {
1165
+ repositoryKey: string;
1166
+ id?: string | undefined;
1167
+ connectionCode?: string | null | undefined;
1168
+ provider?: string | null | undefined;
1169
+ externalId?: string | null | undefined;
1170
+ namespaceExternalId?: string | null | undefined;
1171
+ namespacePath?: string | null | undefined;
1172
+ name?: string | null | undefined;
1173
+ fullName?: string | null | undefined;
1174
+ description?: string | null | undefined;
1175
+ visibility?: string | null | undefined;
1176
+ defaultBranch?: string | null | undefined;
1177
+ lastObservedRevision?: string | null | undefined;
1178
+ webUrl?: string | null | undefined;
1179
+ cloneUrl?: string | null | undefined;
1180
+ managementMode?: string | null | undefined;
1181
+ status: string;
1182
+ ownerTeamId?: string | null | undefined;
1183
+ lastReconciledAt?: string | null | undefined;
1184
+ version?: number | undefined;
1185
+ repositoryId: string | undefined;
1186
+ observedRevision: string | null | undefined;
1187
+ migrationRequired: boolean;
1188
+ migrationIssues: string[];
1189
+ }[] | undefined;
1190
+ content?: {
1191
+ repositoryKey: string;
1192
+ id?: string | undefined;
1193
+ connectionCode?: string | null | undefined;
1194
+ provider?: string | null | undefined;
1195
+ externalId?: string | null | undefined;
1196
+ namespaceExternalId?: string | null | undefined;
1197
+ namespacePath?: string | null | undefined;
1198
+ name?: string | null | undefined;
1199
+ fullName?: string | null | undefined;
1200
+ description?: string | null | undefined;
1201
+ visibility?: string | null | undefined;
1202
+ defaultBranch?: string | null | undefined;
1203
+ lastObservedRevision?: string | null | undefined;
1204
+ webUrl?: string | null | undefined;
1205
+ cloneUrl?: string | null | undefined;
1206
+ managementMode?: string | null | undefined;
1207
+ status: string;
1208
+ ownerTeamId?: string | null | undefined;
1209
+ lastReconciledAt?: string | null | undefined;
1210
+ version?: number | undefined;
1211
+ repositoryId: string | undefined;
1212
+ observedRevision: string | null | undefined;
1213
+ migrationRequired: boolean;
1214
+ migrationIssues: string[];
1215
+ }[] | undefined;
1216
+ nextCursor?: string | null | undefined;
1217
+ hasMore?: boolean | undefined;
1218
+ total?: number | undefined;
1219
+ page?: number | undefined;
1220
+ size?: number | undefined;
1221
+ }>>;
1222
+ export declare const RepositoryRunListSchema: z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
1223
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1224
+ runNo: z.ZodString;
1225
+ planNo: z.ZodString;
1226
+ state: z.ZodUnion<[z.ZodEnum<{
1227
+ CANCELLED: "CANCELLED";
1228
+ FAILED: "FAILED";
1229
+ PENDING: "PENDING";
1230
+ QUEUED: "QUEUED";
1231
+ RETRYING: "RETRYING";
1232
+ RUNNING: "RUNNING";
1233
+ SUCCEEDED: "SUCCEEDED";
1234
+ UNKNOWN: "UNKNOWN";
1235
+ WAITING: "WAITING";
1236
+ }>, z.ZodString]>;
1237
+ stepCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1238
+ repository: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodObject<{
1239
+ repositoryKey: z.ZodString;
1240
+ id: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
1241
+ repositoryId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
1242
+ connectionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1243
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1244
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1245
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1246
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1247
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1248
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1249
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1250
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1251
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1252
+ lastObservedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1253
+ observedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1254
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1255
+ cloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1256
+ managementMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1257
+ status: z.ZodString;
1258
+ ownerTeamId: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>>;
1259
+ lastReconciledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1260
+ version: z.ZodOptional<z.ZodNumber>;
1261
+ }, z.core.$strip>, z.ZodTransform<{
1262
+ repositoryKey: string;
1263
+ id?: string | undefined;
1264
+ connectionCode?: string | null | undefined;
1265
+ provider?: string | null | undefined;
1266
+ externalId?: string | null | undefined;
1267
+ namespaceExternalId?: string | null | undefined;
1268
+ namespacePath?: string | null | undefined;
1269
+ name?: string | null | undefined;
1270
+ fullName?: string | null | undefined;
1271
+ description?: string | null | undefined;
1272
+ visibility?: string | null | undefined;
1273
+ defaultBranch?: string | null | undefined;
1274
+ lastObservedRevision?: string | null | undefined;
1275
+ webUrl?: string | null | undefined;
1276
+ cloneUrl?: string | null | undefined;
1277
+ managementMode?: string | null | undefined;
1278
+ status: string;
1279
+ ownerTeamId?: string | null | undefined;
1280
+ lastReconciledAt?: string | null | undefined;
1281
+ version?: number | undefined;
1282
+ repositoryId: string | undefined;
1283
+ observedRevision: string | null | undefined;
1284
+ migrationRequired: boolean;
1285
+ migrationIssues: string[];
1286
+ }, {
1287
+ repositoryKey: string;
1288
+ id?: string | undefined;
1289
+ repositoryId?: string | undefined;
1290
+ connectionCode?: string | null | undefined;
1291
+ provider?: string | null | undefined;
1292
+ externalId?: string | null | undefined;
1293
+ namespaceExternalId?: string | null | undefined;
1294
+ namespacePath?: string | null | undefined;
1295
+ name?: string | null | undefined;
1296
+ fullName?: string | null | undefined;
1297
+ description?: string | null | undefined;
1298
+ visibility?: string | null | undefined;
1299
+ defaultBranch?: string | null | undefined;
1300
+ lastObservedRevision?: string | null | undefined;
1301
+ observedRevision?: string | null | undefined;
1302
+ webUrl?: string | null | undefined;
1303
+ cloneUrl?: string | null | undefined;
1304
+ managementMode?: string | null | undefined;
1305
+ status: string;
1306
+ ownerTeamId?: string | null | undefined;
1307
+ lastReconciledAt?: string | null | undefined;
1308
+ version?: number | undefined;
1309
+ }>>>>;
1310
+ retryable: z.ZodDefault<z.ZodBoolean>;
1311
+ errorCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1312
+ errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1313
+ clientRequestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1314
+ createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1315
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1316
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1317
+ finishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1318
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1319
+ }, z.core.$strip>>>;
1320
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
1321
+ runNo: z.ZodString;
1322
+ planNo: z.ZodString;
1323
+ state: z.ZodUnion<[z.ZodEnum<{
1324
+ CANCELLED: "CANCELLED";
1325
+ FAILED: "FAILED";
1326
+ PENDING: "PENDING";
1327
+ QUEUED: "QUEUED";
1328
+ RETRYING: "RETRYING";
1329
+ RUNNING: "RUNNING";
1330
+ SUCCEEDED: "SUCCEEDED";
1331
+ UNKNOWN: "UNKNOWN";
1332
+ WAITING: "WAITING";
1333
+ }>, z.ZodString]>;
1334
+ stepCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1335
+ repository: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodObject<{
1336
+ repositoryKey: z.ZodString;
1337
+ id: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
1338
+ repositoryId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
1339
+ connectionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1340
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1341
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1342
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1343
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1344
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1345
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1346
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1347
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1348
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1349
+ lastObservedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1350
+ observedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1351
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1352
+ cloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1353
+ managementMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1354
+ status: z.ZodString;
1355
+ ownerTeamId: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>>;
1356
+ lastReconciledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1357
+ version: z.ZodOptional<z.ZodNumber>;
1358
+ }, z.core.$strip>, z.ZodTransform<{
1359
+ repositoryKey: string;
1360
+ id?: string | undefined;
1361
+ connectionCode?: string | null | undefined;
1362
+ provider?: string | null | undefined;
1363
+ externalId?: string | null | undefined;
1364
+ namespaceExternalId?: string | null | undefined;
1365
+ namespacePath?: string | null | undefined;
1366
+ name?: string | null | undefined;
1367
+ fullName?: string | null | undefined;
1368
+ description?: string | null | undefined;
1369
+ visibility?: string | null | undefined;
1370
+ defaultBranch?: string | null | undefined;
1371
+ lastObservedRevision?: string | null | undefined;
1372
+ webUrl?: string | null | undefined;
1373
+ cloneUrl?: string | null | undefined;
1374
+ managementMode?: string | null | undefined;
1375
+ status: string;
1376
+ ownerTeamId?: string | null | undefined;
1377
+ lastReconciledAt?: string | null | undefined;
1378
+ version?: number | undefined;
1379
+ repositoryId: string | undefined;
1380
+ observedRevision: string | null | undefined;
1381
+ migrationRequired: boolean;
1382
+ migrationIssues: string[];
1383
+ }, {
1384
+ repositoryKey: string;
1385
+ id?: string | undefined;
1386
+ repositoryId?: string | undefined;
1387
+ connectionCode?: string | null | undefined;
1388
+ provider?: string | null | undefined;
1389
+ externalId?: string | null | undefined;
1390
+ namespaceExternalId?: string | null | undefined;
1391
+ namespacePath?: string | null | undefined;
1392
+ name?: string | null | undefined;
1393
+ fullName?: string | null | undefined;
1394
+ description?: string | null | undefined;
1395
+ visibility?: string | null | undefined;
1396
+ defaultBranch?: string | null | undefined;
1397
+ lastObservedRevision?: string | null | undefined;
1398
+ observedRevision?: string | null | undefined;
1399
+ webUrl?: string | null | undefined;
1400
+ cloneUrl?: string | null | undefined;
1401
+ managementMode?: string | null | undefined;
1402
+ status: string;
1403
+ ownerTeamId?: string | null | undefined;
1404
+ lastReconciledAt?: string | null | undefined;
1405
+ version?: number | undefined;
1406
+ }>>>>;
1407
+ retryable: z.ZodDefault<z.ZodBoolean>;
1408
+ errorCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1409
+ errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1410
+ clientRequestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1411
+ createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1412
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1413
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1414
+ finishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1415
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1416
+ }, z.core.$strip>>>;
1417
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1418
+ hasMore: z.ZodOptional<z.ZodBoolean>;
1419
+ total: z.ZodOptional<z.ZodNumber>;
1420
+ page: z.ZodOptional<z.ZodNumber>;
1421
+ size: z.ZodOptional<z.ZodNumber>;
1422
+ }, z.core.$loose>, z.ZodArray<z.ZodObject<{
1423
+ runNo: z.ZodString;
1424
+ planNo: z.ZodString;
1425
+ state: z.ZodUnion<[z.ZodEnum<{
1426
+ CANCELLED: "CANCELLED";
1427
+ FAILED: "FAILED";
1428
+ PENDING: "PENDING";
1429
+ QUEUED: "QUEUED";
1430
+ RETRYING: "RETRYING";
1431
+ RUNNING: "RUNNING";
1432
+ SUCCEEDED: "SUCCEEDED";
1433
+ UNKNOWN: "UNKNOWN";
1434
+ WAITING: "WAITING";
1435
+ }>, z.ZodString]>;
1436
+ stepCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1437
+ repository: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodObject<{
1438
+ repositoryKey: z.ZodString;
1439
+ id: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
1440
+ repositoryId: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>;
1441
+ connectionCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1442
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1443
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1444
+ namespaceExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1445
+ namespacePath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1446
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1447
+ fullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1448
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1449
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1450
+ defaultBranch: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1451
+ lastObservedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1452
+ observedRevision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1453
+ webUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1454
+ cloneUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1455
+ managementMode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1456
+ status: z.ZodString;
1457
+ ownerTeamId: z.ZodOptional<z.ZodNullable<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<string, string | number>>>>;
1458
+ lastReconciledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1459
+ version: z.ZodOptional<z.ZodNumber>;
1460
+ }, z.core.$strip>, z.ZodTransform<{
1461
+ repositoryKey: string;
1462
+ id?: string | undefined;
1463
+ connectionCode?: string | null | undefined;
1464
+ provider?: string | null | undefined;
1465
+ externalId?: string | null | undefined;
1466
+ namespaceExternalId?: string | null | undefined;
1467
+ namespacePath?: string | null | undefined;
1468
+ name?: string | null | undefined;
1469
+ fullName?: string | null | undefined;
1470
+ description?: string | null | undefined;
1471
+ visibility?: string | null | undefined;
1472
+ defaultBranch?: string | null | undefined;
1473
+ lastObservedRevision?: string | null | undefined;
1474
+ webUrl?: string | null | undefined;
1475
+ cloneUrl?: string | null | undefined;
1476
+ managementMode?: string | null | undefined;
1477
+ status: string;
1478
+ ownerTeamId?: string | null | undefined;
1479
+ lastReconciledAt?: string | null | undefined;
1480
+ version?: number | undefined;
1481
+ repositoryId: string | undefined;
1482
+ observedRevision: string | null | undefined;
1483
+ migrationRequired: boolean;
1484
+ migrationIssues: string[];
1485
+ }, {
1486
+ repositoryKey: string;
1487
+ id?: string | undefined;
1488
+ repositoryId?: string | undefined;
1489
+ connectionCode?: string | null | undefined;
1490
+ provider?: string | null | undefined;
1491
+ externalId?: string | null | undefined;
1492
+ namespaceExternalId?: string | null | undefined;
1493
+ namespacePath?: string | null | undefined;
1494
+ name?: string | null | undefined;
1495
+ fullName?: string | null | undefined;
1496
+ description?: string | null | undefined;
1497
+ visibility?: string | null | undefined;
1498
+ defaultBranch?: string | null | undefined;
1499
+ lastObservedRevision?: string | null | undefined;
1500
+ observedRevision?: string | null | undefined;
1501
+ webUrl?: string | null | undefined;
1502
+ cloneUrl?: string | null | undefined;
1503
+ managementMode?: string | null | undefined;
1504
+ status: string;
1505
+ ownerTeamId?: string | null | undefined;
1506
+ lastReconciledAt?: string | null | undefined;
1507
+ version?: number | undefined;
1508
+ }>>>>;
1509
+ retryable: z.ZodDefault<z.ZodBoolean>;
1510
+ errorCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1511
+ errorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1512
+ clientRequestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1513
+ createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1514
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1515
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1516
+ finishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1517
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1518
+ }, z.core.$strip>>]>, z.ZodTransform<{
1519
+ items: {
1520
+ runNo: string;
1521
+ planNo: string;
1522
+ state: string;
1523
+ stepCode?: string | null | undefined;
1524
+ repository?: {
1525
+ repositoryKey: string;
1526
+ id?: string | undefined;
1527
+ connectionCode?: string | null | undefined;
1528
+ provider?: string | null | undefined;
1529
+ externalId?: string | null | undefined;
1530
+ namespaceExternalId?: string | null | undefined;
1531
+ namespacePath?: string | null | undefined;
1532
+ name?: string | null | undefined;
1533
+ fullName?: string | null | undefined;
1534
+ description?: string | null | undefined;
1535
+ visibility?: string | null | undefined;
1536
+ defaultBranch?: string | null | undefined;
1537
+ lastObservedRevision?: string | null | undefined;
1538
+ webUrl?: string | null | undefined;
1539
+ cloneUrl?: string | null | undefined;
1540
+ managementMode?: string | null | undefined;
1541
+ status: string;
1542
+ ownerTeamId?: string | null | undefined;
1543
+ lastReconciledAt?: string | null | undefined;
1544
+ version?: number | undefined;
1545
+ repositoryId: string | undefined;
1546
+ observedRevision: string | null | undefined;
1547
+ migrationRequired: boolean;
1548
+ migrationIssues: string[];
1549
+ } | null | undefined;
1550
+ retryable: boolean;
1551
+ errorCode?: string | null | undefined;
1552
+ errorMessage?: string | null | undefined;
1553
+ clientRequestId?: string | null | undefined;
1554
+ createdAt?: string | null | undefined;
1555
+ startedAt?: string | null | undefined;
1556
+ updatedAt?: string | null | undefined;
1557
+ finishedAt?: string | null | undefined;
1558
+ completedAt?: string | null | undefined;
1559
+ }[];
1560
+ nextCursor: string | null;
1561
+ hasMore: boolean;
1562
+ total?: number | undefined;
1563
+ page?: number | undefined;
1564
+ size?: number | undefined;
1565
+ }, {
1566
+ runNo: string;
1567
+ planNo: string;
1568
+ state: string;
1569
+ stepCode?: string | null | undefined;
1570
+ repository?: {
1571
+ repositoryKey: string;
1572
+ id?: string | undefined;
1573
+ connectionCode?: string | null | undefined;
1574
+ provider?: string | null | undefined;
1575
+ externalId?: string | null | undefined;
1576
+ namespaceExternalId?: string | null | undefined;
1577
+ namespacePath?: string | null | undefined;
1578
+ name?: string | null | undefined;
1579
+ fullName?: string | null | undefined;
1580
+ description?: string | null | undefined;
1581
+ visibility?: string | null | undefined;
1582
+ defaultBranch?: string | null | undefined;
1583
+ lastObservedRevision?: string | null | undefined;
1584
+ webUrl?: string | null | undefined;
1585
+ cloneUrl?: string | null | undefined;
1586
+ managementMode?: string | null | undefined;
1587
+ status: string;
1588
+ ownerTeamId?: string | null | undefined;
1589
+ lastReconciledAt?: string | null | undefined;
1590
+ version?: number | undefined;
1591
+ repositoryId: string | undefined;
1592
+ observedRevision: string | null | undefined;
1593
+ migrationRequired: boolean;
1594
+ migrationIssues: string[];
1595
+ } | null | undefined;
1596
+ retryable: boolean;
1597
+ errorCode?: string | null | undefined;
1598
+ errorMessage?: string | null | undefined;
1599
+ clientRequestId?: string | null | undefined;
1600
+ createdAt?: string | null | undefined;
1601
+ startedAt?: string | null | undefined;
1602
+ updatedAt?: string | null | undefined;
1603
+ finishedAt?: string | null | undefined;
1604
+ completedAt?: string | null | undefined;
1605
+ }[] | {
1606
+ [x: string]: unknown;
1607
+ items?: {
1608
+ runNo: string;
1609
+ planNo: string;
1610
+ state: string;
1611
+ stepCode?: string | null | undefined;
1612
+ repository?: {
1613
+ repositoryKey: string;
1614
+ id?: string | undefined;
1615
+ connectionCode?: string | null | undefined;
1616
+ provider?: string | null | undefined;
1617
+ externalId?: string | null | undefined;
1618
+ namespaceExternalId?: string | null | undefined;
1619
+ namespacePath?: string | null | undefined;
1620
+ name?: string | null | undefined;
1621
+ fullName?: string | null | undefined;
1622
+ description?: string | null | undefined;
1623
+ visibility?: string | null | undefined;
1624
+ defaultBranch?: string | null | undefined;
1625
+ lastObservedRevision?: string | null | undefined;
1626
+ webUrl?: string | null | undefined;
1627
+ cloneUrl?: string | null | undefined;
1628
+ managementMode?: string | null | undefined;
1629
+ status: string;
1630
+ ownerTeamId?: string | null | undefined;
1631
+ lastReconciledAt?: string | null | undefined;
1632
+ version?: number | undefined;
1633
+ repositoryId: string | undefined;
1634
+ observedRevision: string | null | undefined;
1635
+ migrationRequired: boolean;
1636
+ migrationIssues: string[];
1637
+ } | null | undefined;
1638
+ retryable: boolean;
1639
+ errorCode?: string | null | undefined;
1640
+ errorMessage?: string | null | undefined;
1641
+ clientRequestId?: string | null | undefined;
1642
+ createdAt?: string | null | undefined;
1643
+ startedAt?: string | null | undefined;
1644
+ updatedAt?: string | null | undefined;
1645
+ finishedAt?: string | null | undefined;
1646
+ completedAt?: string | null | undefined;
1647
+ }[] | undefined;
1648
+ content?: {
1649
+ runNo: string;
1650
+ planNo: string;
1651
+ state: string;
1652
+ stepCode?: string | null | undefined;
1653
+ repository?: {
1654
+ repositoryKey: string;
1655
+ id?: string | undefined;
1656
+ connectionCode?: string | null | undefined;
1657
+ provider?: string | null | undefined;
1658
+ externalId?: string | null | undefined;
1659
+ namespaceExternalId?: string | null | undefined;
1660
+ namespacePath?: string | null | undefined;
1661
+ name?: string | null | undefined;
1662
+ fullName?: string | null | undefined;
1663
+ description?: string | null | undefined;
1664
+ visibility?: string | null | undefined;
1665
+ defaultBranch?: string | null | undefined;
1666
+ lastObservedRevision?: string | null | undefined;
1667
+ webUrl?: string | null | undefined;
1668
+ cloneUrl?: string | null | undefined;
1669
+ managementMode?: string | null | undefined;
1670
+ status: string;
1671
+ ownerTeamId?: string | null | undefined;
1672
+ lastReconciledAt?: string | null | undefined;
1673
+ version?: number | undefined;
1674
+ repositoryId: string | undefined;
1675
+ observedRevision: string | null | undefined;
1676
+ migrationRequired: boolean;
1677
+ migrationIssues: string[];
1678
+ } | null | undefined;
1679
+ retryable: boolean;
1680
+ errorCode?: string | null | undefined;
1681
+ errorMessage?: string | null | undefined;
1682
+ clientRequestId?: string | null | undefined;
1683
+ createdAt?: string | null | undefined;
1684
+ startedAt?: string | null | undefined;
1685
+ updatedAt?: string | null | undefined;
1686
+ finishedAt?: string | null | undefined;
1687
+ completedAt?: string | null | undefined;
1688
+ }[] | undefined;
1689
+ nextCursor?: string | null | undefined;
1690
+ hasMore?: boolean | undefined;
1691
+ total?: number | undefined;
1692
+ page?: number | undefined;
1693
+ size?: number | undefined;
1694
+ }>>;
1695
+ export declare const RepositoryApiErrorSchema: z.ZodUnion<readonly [z.ZodPipe<z.ZodObject<{
1696
+ error: z.ZodObject<{
1697
+ code: z.ZodOptional<z.ZodString>;
1698
+ message: z.ZodOptional<z.ZodString>;
1699
+ requestId: z.ZodOptional<z.ZodString>;
1700
+ details: z.ZodOptional<z.ZodUnknown>;
1701
+ }, z.core.$strip>;
1702
+ }, z.core.$strip>, z.ZodTransform<{
1703
+ code?: string | undefined;
1704
+ message?: string | undefined;
1705
+ requestId?: string | undefined;
1706
+ details?: unknown;
1707
+ }, {
1708
+ error: {
1709
+ code?: string | undefined;
1710
+ message?: string | undefined;
1711
+ requestId?: string | undefined;
1712
+ details?: unknown;
1713
+ };
1714
+ }>>, z.ZodObject<{
1715
+ code: z.ZodOptional<z.ZodString>;
1716
+ message: z.ZodOptional<z.ZodString>;
1717
+ requestId: z.ZodOptional<z.ZodString>;
1718
+ details: z.ZodOptional<z.ZodUnknown>;
1719
+ }, z.core.$strip>]>;
1720
+ export type RepositoryOperation = z.infer<typeof RepositoryOperationSchema>;
1721
+ export type RepositoryConsumerType = z.infer<typeof RepositoryConsumerTypeSchema>;
1722
+ export type RepositoryPlanRequest = z.infer<typeof RepositoryPlanRequestSchema>;
1723
+ export type RepositoryRunCreate = z.infer<typeof RepositoryRunCreateSchema>;
1724
+ export type SourceRepository = z.infer<typeof SourceRepositorySchema>;