@numa-tech/numa 1.12.10 → 1.13.0

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