@eventcatalog/linter 0.0.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 (78) hide show
  1. package/README.md +583 -0
  2. package/dist/cli/index.d.ts +3 -0
  3. package/dist/cli/index.d.ts.map +1 -0
  4. package/dist/cli/index.js +54 -0
  5. package/dist/cli/index.js.map +1 -0
  6. package/dist/index.d.ts +7 -0
  7. package/dist/index.d.ts.map +1 -0
  8. package/dist/index.js +23 -0
  9. package/dist/index.js.map +1 -0
  10. package/dist/parser/index.d.ts +17 -0
  11. package/dist/parser/index.d.ts.map +1 -0
  12. package/dist/parser/index.js +43 -0
  13. package/dist/parser/index.js.map +1 -0
  14. package/dist/reporters/index.d.ts +16 -0
  15. package/dist/reporters/index.d.ts.map +1 -0
  16. package/dist/reporters/index.js +151 -0
  17. package/dist/reporters/index.js.map +1 -0
  18. package/dist/scanner/index.d.ts +14 -0
  19. package/dist/scanner/index.d.ts.map +1 -0
  20. package/dist/scanner/index.js +99 -0
  21. package/dist/scanner/index.js.map +1 -0
  22. package/dist/schemas/channel.d.ts +389 -0
  23. package/dist/schemas/channel.d.ts.map +1 -0
  24. package/dist/schemas/channel.js +20 -0
  25. package/dist/schemas/channel.js.map +1 -0
  26. package/dist/schemas/common.d.ts +550 -0
  27. package/dist/schemas/common.d.ts.map +1 -0
  28. package/dist/schemas/common.js +144 -0
  29. package/dist/schemas/common.js.map +1 -0
  30. package/dist/schemas/domain.d.ts +381 -0
  31. package/dist/schemas/domain.d.ts.map +1 -0
  32. package/dist/schemas/domain.js +13 -0
  33. package/dist/schemas/domain.js.map +1 -0
  34. package/dist/schemas/entity.d.ts +382 -0
  35. package/dist/schemas/entity.d.ts.map +1 -0
  36. package/dist/schemas/entity.js +24 -0
  37. package/dist/schemas/entity.js.map +1 -0
  38. package/dist/schemas/flow.d.ts +733 -0
  39. package/dist/schemas/flow.d.ts.map +1 -0
  40. package/dist/schemas/flow.js +70 -0
  41. package/dist/schemas/flow.js.map +1 -0
  42. package/dist/schemas/index.d.ts +3432 -0
  43. package/dist/schemas/index.d.ts.map +1 -0
  44. package/dist/schemas/index.js +47 -0
  45. package/dist/schemas/index.js.map +1 -0
  46. package/dist/schemas/message.d.ts +1076 -0
  47. package/dist/schemas/message.d.ts.map +1 -0
  48. package/dist/schemas/message.js +17 -0
  49. package/dist/schemas/message.js.map +1 -0
  50. package/dist/schemas/service.d.ts +381 -0
  51. package/dist/schemas/service.d.ts.map +1 -0
  52. package/dist/schemas/service.js +13 -0
  53. package/dist/schemas/service.js.map +1 -0
  54. package/dist/schemas/team.d.ts +45 -0
  55. package/dist/schemas/team.d.ts.map +1 -0
  56. package/dist/schemas/team.js +20 -0
  57. package/dist/schemas/team.js.map +1 -0
  58. package/dist/schemas/user.d.ts +48 -0
  59. package/dist/schemas/user.d.ts.map +1 -0
  60. package/dist/schemas/user.js +21 -0
  61. package/dist/schemas/user.js.map +1 -0
  62. package/dist/types/index.d.ts +81 -0
  63. package/dist/types/index.d.ts.map +1 -0
  64. package/dist/types/index.js +3 -0
  65. package/dist/types/index.js.map +1 -0
  66. package/dist/validators/index.d.ts +6 -0
  67. package/dist/validators/index.d.ts.map +1 -0
  68. package/dist/validators/index.js +28 -0
  69. package/dist/validators/index.js.map +1 -0
  70. package/dist/validators/reference-validator.d.ts +11 -0
  71. package/dist/validators/reference-validator.d.ts.map +1 -0
  72. package/dist/validators/reference-validator.js +171 -0
  73. package/dist/validators/reference-validator.js.map +1 -0
  74. package/dist/validators/schema-validator.d.ts +5 -0
  75. package/dist/validators/schema-validator.d.ts.map +1 -0
  76. package/dist/validators/schema-validator.js +50 -0
  77. package/dist/validators/schema-validator.js.map +1 -0
  78. package/package.json +58 -0
@@ -0,0 +1,3432 @@
1
+ export * from './common';
2
+ export * from './domain';
3
+ export * from './service';
4
+ export * from './message';
5
+ export * from './channel';
6
+ export * from './flow';
7
+ export * from './entity';
8
+ export * from './user';
9
+ export * from './team';
10
+ export declare const schemas: {
11
+ readonly domain: import("zod").ZodObject<{
12
+ services: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
13
+ id: import("zod").ZodString;
14
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
15
+ }, "strip", import("zod").ZodTypeAny, {
16
+ id: string;
17
+ version: string;
18
+ }, {
19
+ id: string;
20
+ version?: string | undefined;
21
+ }>, "many">>;
22
+ domains: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
23
+ id: import("zod").ZodString;
24
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
25
+ }, "strip", import("zod").ZodTypeAny, {
26
+ id: string;
27
+ version: string;
28
+ }, {
29
+ id: string;
30
+ version?: string | undefined;
31
+ }>, "many">>;
32
+ entities: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
33
+ id: import("zod").ZodString;
34
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
35
+ }, "strip", import("zod").ZodTypeAny, {
36
+ id: string;
37
+ version: string;
38
+ }, {
39
+ id: string;
40
+ version?: string | undefined;
41
+ }>, "many">>;
42
+ } & {
43
+ id: import("zod").ZodString;
44
+ name: import("zod").ZodString;
45
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
46
+ version: import("zod").ZodEffects<import("zod").ZodString, string, string>;
47
+ draft: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
48
+ title: import("zod").ZodOptional<import("zod").ZodString>;
49
+ message: import("zod").ZodString;
50
+ }, "strip", import("zod").ZodTypeAny, {
51
+ message: string;
52
+ title?: string | undefined;
53
+ }, {
54
+ message: string;
55
+ title?: string | undefined;
56
+ }>]>>;
57
+ badges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
58
+ content: import("zod").ZodString;
59
+ backgroundColor: import("zod").ZodString;
60
+ textColor: import("zod").ZodString;
61
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
62
+ }, "strip", import("zod").ZodTypeAny, {
63
+ content: string;
64
+ backgroundColor: string;
65
+ textColor: string;
66
+ icon?: string | undefined;
67
+ }, {
68
+ content: string;
69
+ backgroundColor: string;
70
+ textColor: string;
71
+ icon?: string | undefined;
72
+ }>, "many">>;
73
+ owners: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
74
+ id: import("zod").ZodString;
75
+ collection: import("zod").ZodEnum<["users", "teams"]>;
76
+ }, "strip", import("zod").ZodTypeAny, {
77
+ id: string;
78
+ collection: "users" | "teams";
79
+ }, {
80
+ id: string;
81
+ collection: "users" | "teams";
82
+ }>]>, {
83
+ id: string;
84
+ }, string | {
85
+ id: string;
86
+ collection: "users" | "teams";
87
+ }>, "many">>;
88
+ schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
89
+ sidebar: import("zod").ZodOptional<import("zod").ZodObject<{
90
+ label: import("zod").ZodOptional<import("zod").ZodString>;
91
+ badge: import("zod").ZodOptional<import("zod").ZodString>;
92
+ }, "strip", import("zod").ZodTypeAny, {
93
+ label?: string | undefined;
94
+ badge?: string | undefined;
95
+ }, {
96
+ label?: string | undefined;
97
+ badge?: string | undefined;
98
+ }>>;
99
+ repository: import("zod").ZodOptional<import("zod").ZodObject<{
100
+ language: import("zod").ZodOptional<import("zod").ZodString>;
101
+ url: import("zod").ZodOptional<import("zod").ZodString>;
102
+ }, "strip", import("zod").ZodTypeAny, {
103
+ language?: string | undefined;
104
+ url?: string | undefined;
105
+ }, {
106
+ language?: string | undefined;
107
+ url?: string | undefined;
108
+ }>>;
109
+ specifications: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
110
+ openapiPath: import("zod").ZodOptional<import("zod").ZodString>;
111
+ asyncapiPath: import("zod").ZodOptional<import("zod").ZodString>;
112
+ }, "strip", import("zod").ZodTypeAny, {
113
+ openapiPath?: string | undefined;
114
+ asyncapiPath?: string | undefined;
115
+ }, {
116
+ openapiPath?: string | undefined;
117
+ asyncapiPath?: string | undefined;
118
+ }>, import("zod").ZodArray<import("zod").ZodObject<{
119
+ type: import("zod").ZodEnum<["openapi", "asyncapi"]>;
120
+ path: import("zod").ZodString;
121
+ name: import("zod").ZodOptional<import("zod").ZodString>;
122
+ }, "strip", import("zod").ZodTypeAny, {
123
+ path: string;
124
+ type: "asyncapi" | "openapi";
125
+ name?: string | undefined;
126
+ }, {
127
+ path: string;
128
+ type: "asyncapi" | "openapi";
129
+ name?: string | undefined;
130
+ }>, "many">]>>;
131
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
132
+ resourceGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
133
+ id: import("zod").ZodOptional<import("zod").ZodString>;
134
+ title: import("zod").ZodOptional<import("zod").ZodString>;
135
+ items: import("zod").ZodArray<import("zod").ZodObject<{
136
+ id: import("zod").ZodString;
137
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
138
+ type: import("zod").ZodEnum<["service", "event", "command", "query", "flow", "channel", "domain", "user", "team"]>;
139
+ }, "strip", import("zod").ZodTypeAny, {
140
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
141
+ id: string;
142
+ version: string;
143
+ }, {
144
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
145
+ id: string;
146
+ version?: string | undefined;
147
+ }>, "many">;
148
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
149
+ sidebar: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
150
+ }, "strip", import("zod").ZodTypeAny, {
151
+ items: {
152
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
153
+ id: string;
154
+ version: string;
155
+ }[];
156
+ limit: number;
157
+ sidebar: boolean;
158
+ id?: string | undefined;
159
+ title?: string | undefined;
160
+ }, {
161
+ items: {
162
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
163
+ id: string;
164
+ version?: string | undefined;
165
+ }[];
166
+ id?: string | undefined;
167
+ title?: string | undefined;
168
+ limit?: number | undefined;
169
+ sidebar?: boolean | undefined;
170
+ }>, "many">>;
171
+ styles: import("zod").ZodOptional<import("zod").ZodObject<{
172
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
173
+ node: import("zod").ZodOptional<import("zod").ZodObject<{
174
+ color: import("zod").ZodOptional<import("zod").ZodString>;
175
+ label: import("zod").ZodOptional<import("zod").ZodString>;
176
+ }, "strip", import("zod").ZodTypeAny, {
177
+ label?: string | undefined;
178
+ color?: string | undefined;
179
+ }, {
180
+ label?: string | undefined;
181
+ color?: string | undefined;
182
+ }>>;
183
+ }, "strip", import("zod").ZodTypeAny, {
184
+ icon?: string | undefined;
185
+ node?: {
186
+ label?: string | undefined;
187
+ color?: string | undefined;
188
+ } | undefined;
189
+ }, {
190
+ icon?: string | undefined;
191
+ node?: {
192
+ label?: string | undefined;
193
+ color?: string | undefined;
194
+ } | undefined;
195
+ }>>;
196
+ deprecated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
197
+ message: import("zod").ZodOptional<import("zod").ZodString>;
198
+ date: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
199
+ }, "strip", import("zod").ZodTypeAny, {
200
+ message?: string | undefined;
201
+ date?: string | Date | undefined;
202
+ }, {
203
+ message?: string | undefined;
204
+ date?: string | Date | undefined;
205
+ }>, import("zod").ZodOptional<import("zod").ZodBoolean>]>>;
206
+ visualiser: import("zod").ZodOptional<import("zod").ZodBoolean>;
207
+ versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
208
+ latestVersion: import("zod").ZodOptional<import("zod").ZodString>;
209
+ catalog: import("zod").ZodOptional<import("zod").ZodObject<{
210
+ path: import("zod").ZodString;
211
+ filePath: import("zod").ZodString;
212
+ astroContentFilePath: import("zod").ZodString;
213
+ publicPath: import("zod").ZodString;
214
+ type: import("zod").ZodString;
215
+ }, "strip", import("zod").ZodTypeAny, {
216
+ path: string;
217
+ type: string;
218
+ filePath: string;
219
+ astroContentFilePath: string;
220
+ publicPath: string;
221
+ }, {
222
+ path: string;
223
+ type: string;
224
+ filePath: string;
225
+ astroContentFilePath: string;
226
+ publicPath: string;
227
+ }>>;
228
+ }, "strip", import("zod").ZodTypeAny, {
229
+ id: string;
230
+ name: string;
231
+ version: string;
232
+ sidebar?: {
233
+ label?: string | undefined;
234
+ badge?: string | undefined;
235
+ } | undefined;
236
+ summary?: string | undefined;
237
+ draft?: boolean | {
238
+ message: string;
239
+ title?: string | undefined;
240
+ } | undefined;
241
+ badges?: {
242
+ content: string;
243
+ backgroundColor: string;
244
+ textColor: string;
245
+ icon?: string | undefined;
246
+ }[] | undefined;
247
+ owners?: {
248
+ id: string;
249
+ }[] | undefined;
250
+ schemaPath?: string | undefined;
251
+ repository?: {
252
+ language?: string | undefined;
253
+ url?: string | undefined;
254
+ } | undefined;
255
+ specifications?: {
256
+ openapiPath?: string | undefined;
257
+ asyncapiPath?: string | undefined;
258
+ } | {
259
+ path: string;
260
+ type: "asyncapi" | "openapi";
261
+ name?: string | undefined;
262
+ }[] | undefined;
263
+ hidden?: boolean | undefined;
264
+ resourceGroups?: {
265
+ items: {
266
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
267
+ id: string;
268
+ version: string;
269
+ }[];
270
+ limit: number;
271
+ sidebar: boolean;
272
+ id?: string | undefined;
273
+ title?: string | undefined;
274
+ }[] | undefined;
275
+ styles?: {
276
+ icon?: string | undefined;
277
+ node?: {
278
+ label?: string | undefined;
279
+ color?: string | undefined;
280
+ } | undefined;
281
+ } | undefined;
282
+ deprecated?: boolean | {
283
+ message?: string | undefined;
284
+ date?: string | Date | undefined;
285
+ } | undefined;
286
+ visualiser?: boolean | undefined;
287
+ versions?: string[] | undefined;
288
+ latestVersion?: string | undefined;
289
+ catalog?: {
290
+ path: string;
291
+ type: string;
292
+ filePath: string;
293
+ astroContentFilePath: string;
294
+ publicPath: string;
295
+ } | undefined;
296
+ services?: {
297
+ id: string;
298
+ version: string;
299
+ }[] | undefined;
300
+ domains?: {
301
+ id: string;
302
+ version: string;
303
+ }[] | undefined;
304
+ entities?: {
305
+ id: string;
306
+ version: string;
307
+ }[] | undefined;
308
+ }, {
309
+ id: string;
310
+ name: string;
311
+ version: string;
312
+ sidebar?: {
313
+ label?: string | undefined;
314
+ badge?: string | undefined;
315
+ } | undefined;
316
+ summary?: string | undefined;
317
+ draft?: boolean | {
318
+ message: string;
319
+ title?: string | undefined;
320
+ } | undefined;
321
+ badges?: {
322
+ content: string;
323
+ backgroundColor: string;
324
+ textColor: string;
325
+ icon?: string | undefined;
326
+ }[] | undefined;
327
+ owners?: (string | {
328
+ id: string;
329
+ collection: "users" | "teams";
330
+ })[] | undefined;
331
+ schemaPath?: string | undefined;
332
+ repository?: {
333
+ language?: string | undefined;
334
+ url?: string | undefined;
335
+ } | undefined;
336
+ specifications?: {
337
+ openapiPath?: string | undefined;
338
+ asyncapiPath?: string | undefined;
339
+ } | {
340
+ path: string;
341
+ type: "asyncapi" | "openapi";
342
+ name?: string | undefined;
343
+ }[] | undefined;
344
+ hidden?: boolean | undefined;
345
+ resourceGroups?: {
346
+ items: {
347
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
348
+ id: string;
349
+ version?: string | undefined;
350
+ }[];
351
+ id?: string | undefined;
352
+ title?: string | undefined;
353
+ limit?: number | undefined;
354
+ sidebar?: boolean | undefined;
355
+ }[] | undefined;
356
+ styles?: {
357
+ icon?: string | undefined;
358
+ node?: {
359
+ label?: string | undefined;
360
+ color?: string | undefined;
361
+ } | undefined;
362
+ } | undefined;
363
+ deprecated?: boolean | {
364
+ message?: string | undefined;
365
+ date?: string | Date | undefined;
366
+ } | undefined;
367
+ visualiser?: boolean | undefined;
368
+ versions?: string[] | undefined;
369
+ latestVersion?: string | undefined;
370
+ catalog?: {
371
+ path: string;
372
+ type: string;
373
+ filePath: string;
374
+ astroContentFilePath: string;
375
+ publicPath: string;
376
+ } | undefined;
377
+ services?: {
378
+ id: string;
379
+ version?: string | undefined;
380
+ }[] | undefined;
381
+ domains?: {
382
+ id: string;
383
+ version?: string | undefined;
384
+ }[] | undefined;
385
+ entities?: {
386
+ id: string;
387
+ version?: string | undefined;
388
+ }[] | undefined;
389
+ }>;
390
+ readonly service: import("zod").ZodObject<{
391
+ sends: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
392
+ id: import("zod").ZodString;
393
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
394
+ }, "strip", import("zod").ZodTypeAny, {
395
+ id: string;
396
+ version: string;
397
+ }, {
398
+ id: string;
399
+ version?: string | undefined;
400
+ }>, "many">>;
401
+ receives: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
402
+ id: import("zod").ZodString;
403
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
404
+ }, "strip", import("zod").ZodTypeAny, {
405
+ id: string;
406
+ version: string;
407
+ }, {
408
+ id: string;
409
+ version?: string | undefined;
410
+ }>, "many">>;
411
+ entities: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
412
+ id: import("zod").ZodString;
413
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
414
+ }, "strip", import("zod").ZodTypeAny, {
415
+ id: string;
416
+ version: string;
417
+ }, {
418
+ id: string;
419
+ version?: string | undefined;
420
+ }>, "many">>;
421
+ } & {
422
+ id: import("zod").ZodString;
423
+ name: import("zod").ZodString;
424
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
425
+ version: import("zod").ZodEffects<import("zod").ZodString, string, string>;
426
+ draft: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
427
+ title: import("zod").ZodOptional<import("zod").ZodString>;
428
+ message: import("zod").ZodString;
429
+ }, "strip", import("zod").ZodTypeAny, {
430
+ message: string;
431
+ title?: string | undefined;
432
+ }, {
433
+ message: string;
434
+ title?: string | undefined;
435
+ }>]>>;
436
+ badges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
437
+ content: import("zod").ZodString;
438
+ backgroundColor: import("zod").ZodString;
439
+ textColor: import("zod").ZodString;
440
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
441
+ }, "strip", import("zod").ZodTypeAny, {
442
+ content: string;
443
+ backgroundColor: string;
444
+ textColor: string;
445
+ icon?: string | undefined;
446
+ }, {
447
+ content: string;
448
+ backgroundColor: string;
449
+ textColor: string;
450
+ icon?: string | undefined;
451
+ }>, "many">>;
452
+ owners: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
453
+ id: import("zod").ZodString;
454
+ collection: import("zod").ZodEnum<["users", "teams"]>;
455
+ }, "strip", import("zod").ZodTypeAny, {
456
+ id: string;
457
+ collection: "users" | "teams";
458
+ }, {
459
+ id: string;
460
+ collection: "users" | "teams";
461
+ }>]>, {
462
+ id: string;
463
+ }, string | {
464
+ id: string;
465
+ collection: "users" | "teams";
466
+ }>, "many">>;
467
+ schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
468
+ sidebar: import("zod").ZodOptional<import("zod").ZodObject<{
469
+ label: import("zod").ZodOptional<import("zod").ZodString>;
470
+ badge: import("zod").ZodOptional<import("zod").ZodString>;
471
+ }, "strip", import("zod").ZodTypeAny, {
472
+ label?: string | undefined;
473
+ badge?: string | undefined;
474
+ }, {
475
+ label?: string | undefined;
476
+ badge?: string | undefined;
477
+ }>>;
478
+ repository: import("zod").ZodOptional<import("zod").ZodObject<{
479
+ language: import("zod").ZodOptional<import("zod").ZodString>;
480
+ url: import("zod").ZodOptional<import("zod").ZodString>;
481
+ }, "strip", import("zod").ZodTypeAny, {
482
+ language?: string | undefined;
483
+ url?: string | undefined;
484
+ }, {
485
+ language?: string | undefined;
486
+ url?: string | undefined;
487
+ }>>;
488
+ specifications: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
489
+ openapiPath: import("zod").ZodOptional<import("zod").ZodString>;
490
+ asyncapiPath: import("zod").ZodOptional<import("zod").ZodString>;
491
+ }, "strip", import("zod").ZodTypeAny, {
492
+ openapiPath?: string | undefined;
493
+ asyncapiPath?: string | undefined;
494
+ }, {
495
+ openapiPath?: string | undefined;
496
+ asyncapiPath?: string | undefined;
497
+ }>, import("zod").ZodArray<import("zod").ZodObject<{
498
+ type: import("zod").ZodEnum<["openapi", "asyncapi"]>;
499
+ path: import("zod").ZodString;
500
+ name: import("zod").ZodOptional<import("zod").ZodString>;
501
+ }, "strip", import("zod").ZodTypeAny, {
502
+ path: string;
503
+ type: "asyncapi" | "openapi";
504
+ name?: string | undefined;
505
+ }, {
506
+ path: string;
507
+ type: "asyncapi" | "openapi";
508
+ name?: string | undefined;
509
+ }>, "many">]>>;
510
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
511
+ resourceGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
512
+ id: import("zod").ZodOptional<import("zod").ZodString>;
513
+ title: import("zod").ZodOptional<import("zod").ZodString>;
514
+ items: import("zod").ZodArray<import("zod").ZodObject<{
515
+ id: import("zod").ZodString;
516
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
517
+ type: import("zod").ZodEnum<["service", "event", "command", "query", "flow", "channel", "domain", "user", "team"]>;
518
+ }, "strip", import("zod").ZodTypeAny, {
519
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
520
+ id: string;
521
+ version: string;
522
+ }, {
523
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
524
+ id: string;
525
+ version?: string | undefined;
526
+ }>, "many">;
527
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
528
+ sidebar: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
529
+ }, "strip", import("zod").ZodTypeAny, {
530
+ items: {
531
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
532
+ id: string;
533
+ version: string;
534
+ }[];
535
+ limit: number;
536
+ sidebar: boolean;
537
+ id?: string | undefined;
538
+ title?: string | undefined;
539
+ }, {
540
+ items: {
541
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
542
+ id: string;
543
+ version?: string | undefined;
544
+ }[];
545
+ id?: string | undefined;
546
+ title?: string | undefined;
547
+ limit?: number | undefined;
548
+ sidebar?: boolean | undefined;
549
+ }>, "many">>;
550
+ styles: import("zod").ZodOptional<import("zod").ZodObject<{
551
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
552
+ node: import("zod").ZodOptional<import("zod").ZodObject<{
553
+ color: import("zod").ZodOptional<import("zod").ZodString>;
554
+ label: import("zod").ZodOptional<import("zod").ZodString>;
555
+ }, "strip", import("zod").ZodTypeAny, {
556
+ label?: string | undefined;
557
+ color?: string | undefined;
558
+ }, {
559
+ label?: string | undefined;
560
+ color?: string | undefined;
561
+ }>>;
562
+ }, "strip", import("zod").ZodTypeAny, {
563
+ icon?: string | undefined;
564
+ node?: {
565
+ label?: string | undefined;
566
+ color?: string | undefined;
567
+ } | undefined;
568
+ }, {
569
+ icon?: string | undefined;
570
+ node?: {
571
+ label?: string | undefined;
572
+ color?: string | undefined;
573
+ } | undefined;
574
+ }>>;
575
+ deprecated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
576
+ message: import("zod").ZodOptional<import("zod").ZodString>;
577
+ date: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
578
+ }, "strip", import("zod").ZodTypeAny, {
579
+ message?: string | undefined;
580
+ date?: string | Date | undefined;
581
+ }, {
582
+ message?: string | undefined;
583
+ date?: string | Date | undefined;
584
+ }>, import("zod").ZodOptional<import("zod").ZodBoolean>]>>;
585
+ visualiser: import("zod").ZodOptional<import("zod").ZodBoolean>;
586
+ versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
587
+ latestVersion: import("zod").ZodOptional<import("zod").ZodString>;
588
+ catalog: import("zod").ZodOptional<import("zod").ZodObject<{
589
+ path: import("zod").ZodString;
590
+ filePath: import("zod").ZodString;
591
+ astroContentFilePath: import("zod").ZodString;
592
+ publicPath: import("zod").ZodString;
593
+ type: import("zod").ZodString;
594
+ }, "strip", import("zod").ZodTypeAny, {
595
+ path: string;
596
+ type: string;
597
+ filePath: string;
598
+ astroContentFilePath: string;
599
+ publicPath: string;
600
+ }, {
601
+ path: string;
602
+ type: string;
603
+ filePath: string;
604
+ astroContentFilePath: string;
605
+ publicPath: string;
606
+ }>>;
607
+ }, "strip", import("zod").ZodTypeAny, {
608
+ id: string;
609
+ name: string;
610
+ version: string;
611
+ sidebar?: {
612
+ label?: string | undefined;
613
+ badge?: string | undefined;
614
+ } | undefined;
615
+ summary?: string | undefined;
616
+ draft?: boolean | {
617
+ message: string;
618
+ title?: string | undefined;
619
+ } | undefined;
620
+ badges?: {
621
+ content: string;
622
+ backgroundColor: string;
623
+ textColor: string;
624
+ icon?: string | undefined;
625
+ }[] | undefined;
626
+ owners?: {
627
+ id: string;
628
+ }[] | undefined;
629
+ schemaPath?: string | undefined;
630
+ repository?: {
631
+ language?: string | undefined;
632
+ url?: string | undefined;
633
+ } | undefined;
634
+ specifications?: {
635
+ openapiPath?: string | undefined;
636
+ asyncapiPath?: string | undefined;
637
+ } | {
638
+ path: string;
639
+ type: "asyncapi" | "openapi";
640
+ name?: string | undefined;
641
+ }[] | undefined;
642
+ hidden?: boolean | undefined;
643
+ resourceGroups?: {
644
+ items: {
645
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
646
+ id: string;
647
+ version: string;
648
+ }[];
649
+ limit: number;
650
+ sidebar: boolean;
651
+ id?: string | undefined;
652
+ title?: string | undefined;
653
+ }[] | undefined;
654
+ styles?: {
655
+ icon?: string | undefined;
656
+ node?: {
657
+ label?: string | undefined;
658
+ color?: string | undefined;
659
+ } | undefined;
660
+ } | undefined;
661
+ deprecated?: boolean | {
662
+ message?: string | undefined;
663
+ date?: string | Date | undefined;
664
+ } | undefined;
665
+ visualiser?: boolean | undefined;
666
+ versions?: string[] | undefined;
667
+ latestVersion?: string | undefined;
668
+ catalog?: {
669
+ path: string;
670
+ type: string;
671
+ filePath: string;
672
+ astroContentFilePath: string;
673
+ publicPath: string;
674
+ } | undefined;
675
+ entities?: {
676
+ id: string;
677
+ version: string;
678
+ }[] | undefined;
679
+ sends?: {
680
+ id: string;
681
+ version: string;
682
+ }[] | undefined;
683
+ receives?: {
684
+ id: string;
685
+ version: string;
686
+ }[] | undefined;
687
+ }, {
688
+ id: string;
689
+ name: string;
690
+ version: string;
691
+ sidebar?: {
692
+ label?: string | undefined;
693
+ badge?: string | undefined;
694
+ } | undefined;
695
+ summary?: string | undefined;
696
+ draft?: boolean | {
697
+ message: string;
698
+ title?: string | undefined;
699
+ } | undefined;
700
+ badges?: {
701
+ content: string;
702
+ backgroundColor: string;
703
+ textColor: string;
704
+ icon?: string | undefined;
705
+ }[] | undefined;
706
+ owners?: (string | {
707
+ id: string;
708
+ collection: "users" | "teams";
709
+ })[] | undefined;
710
+ schemaPath?: string | undefined;
711
+ repository?: {
712
+ language?: string | undefined;
713
+ url?: string | undefined;
714
+ } | undefined;
715
+ specifications?: {
716
+ openapiPath?: string | undefined;
717
+ asyncapiPath?: string | undefined;
718
+ } | {
719
+ path: string;
720
+ type: "asyncapi" | "openapi";
721
+ name?: string | undefined;
722
+ }[] | undefined;
723
+ hidden?: boolean | undefined;
724
+ resourceGroups?: {
725
+ items: {
726
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
727
+ id: string;
728
+ version?: string | undefined;
729
+ }[];
730
+ id?: string | undefined;
731
+ title?: string | undefined;
732
+ limit?: number | undefined;
733
+ sidebar?: boolean | undefined;
734
+ }[] | undefined;
735
+ styles?: {
736
+ icon?: string | undefined;
737
+ node?: {
738
+ label?: string | undefined;
739
+ color?: string | undefined;
740
+ } | undefined;
741
+ } | undefined;
742
+ deprecated?: boolean | {
743
+ message?: string | undefined;
744
+ date?: string | Date | undefined;
745
+ } | undefined;
746
+ visualiser?: boolean | undefined;
747
+ versions?: string[] | undefined;
748
+ latestVersion?: string | undefined;
749
+ catalog?: {
750
+ path: string;
751
+ type: string;
752
+ filePath: string;
753
+ astroContentFilePath: string;
754
+ publicPath: string;
755
+ } | undefined;
756
+ entities?: {
757
+ id: string;
758
+ version?: string | undefined;
759
+ }[] | undefined;
760
+ sends?: {
761
+ id: string;
762
+ version?: string | undefined;
763
+ }[] | undefined;
764
+ receives?: {
765
+ id: string;
766
+ version?: string | undefined;
767
+ }[] | undefined;
768
+ }>;
769
+ readonly event: import("zod").ZodObject<{
770
+ producers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
771
+ consumers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
772
+ channels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
773
+ parameters: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
774
+ } & {
775
+ id: import("zod").ZodString;
776
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
777
+ }, "strip", import("zod").ZodTypeAny, {
778
+ id: string;
779
+ version: string;
780
+ parameters?: Record<string, string> | undefined;
781
+ }, {
782
+ id: string;
783
+ version?: string | undefined;
784
+ parameters?: Record<string, string> | undefined;
785
+ }>, "many">>;
786
+ messageChannels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
787
+ } & {
788
+ id: import("zod").ZodString;
789
+ name: import("zod").ZodString;
790
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
791
+ version: import("zod").ZodEffects<import("zod").ZodString, string, string>;
792
+ draft: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
793
+ title: import("zod").ZodOptional<import("zod").ZodString>;
794
+ message: import("zod").ZodString;
795
+ }, "strip", import("zod").ZodTypeAny, {
796
+ message: string;
797
+ title?: string | undefined;
798
+ }, {
799
+ message: string;
800
+ title?: string | undefined;
801
+ }>]>>;
802
+ badges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
803
+ content: import("zod").ZodString;
804
+ backgroundColor: import("zod").ZodString;
805
+ textColor: import("zod").ZodString;
806
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
807
+ }, "strip", import("zod").ZodTypeAny, {
808
+ content: string;
809
+ backgroundColor: string;
810
+ textColor: string;
811
+ icon?: string | undefined;
812
+ }, {
813
+ content: string;
814
+ backgroundColor: string;
815
+ textColor: string;
816
+ icon?: string | undefined;
817
+ }>, "many">>;
818
+ owners: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
819
+ id: import("zod").ZodString;
820
+ collection: import("zod").ZodEnum<["users", "teams"]>;
821
+ }, "strip", import("zod").ZodTypeAny, {
822
+ id: string;
823
+ collection: "users" | "teams";
824
+ }, {
825
+ id: string;
826
+ collection: "users" | "teams";
827
+ }>]>, {
828
+ id: string;
829
+ }, string | {
830
+ id: string;
831
+ collection: "users" | "teams";
832
+ }>, "many">>;
833
+ schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
834
+ sidebar: import("zod").ZodOptional<import("zod").ZodObject<{
835
+ label: import("zod").ZodOptional<import("zod").ZodString>;
836
+ badge: import("zod").ZodOptional<import("zod").ZodString>;
837
+ }, "strip", import("zod").ZodTypeAny, {
838
+ label?: string | undefined;
839
+ badge?: string | undefined;
840
+ }, {
841
+ label?: string | undefined;
842
+ badge?: string | undefined;
843
+ }>>;
844
+ repository: import("zod").ZodOptional<import("zod").ZodObject<{
845
+ language: import("zod").ZodOptional<import("zod").ZodString>;
846
+ url: import("zod").ZodOptional<import("zod").ZodString>;
847
+ }, "strip", import("zod").ZodTypeAny, {
848
+ language?: string | undefined;
849
+ url?: string | undefined;
850
+ }, {
851
+ language?: string | undefined;
852
+ url?: string | undefined;
853
+ }>>;
854
+ specifications: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
855
+ openapiPath: import("zod").ZodOptional<import("zod").ZodString>;
856
+ asyncapiPath: import("zod").ZodOptional<import("zod").ZodString>;
857
+ }, "strip", import("zod").ZodTypeAny, {
858
+ openapiPath?: string | undefined;
859
+ asyncapiPath?: string | undefined;
860
+ }, {
861
+ openapiPath?: string | undefined;
862
+ asyncapiPath?: string | undefined;
863
+ }>, import("zod").ZodArray<import("zod").ZodObject<{
864
+ type: import("zod").ZodEnum<["openapi", "asyncapi"]>;
865
+ path: import("zod").ZodString;
866
+ name: import("zod").ZodOptional<import("zod").ZodString>;
867
+ }, "strip", import("zod").ZodTypeAny, {
868
+ path: string;
869
+ type: "asyncapi" | "openapi";
870
+ name?: string | undefined;
871
+ }, {
872
+ path: string;
873
+ type: "asyncapi" | "openapi";
874
+ name?: string | undefined;
875
+ }>, "many">]>>;
876
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
877
+ resourceGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
878
+ id: import("zod").ZodOptional<import("zod").ZodString>;
879
+ title: import("zod").ZodOptional<import("zod").ZodString>;
880
+ items: import("zod").ZodArray<import("zod").ZodObject<{
881
+ id: import("zod").ZodString;
882
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
883
+ type: import("zod").ZodEnum<["service", "event", "command", "query", "flow", "channel", "domain", "user", "team"]>;
884
+ }, "strip", import("zod").ZodTypeAny, {
885
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
886
+ id: string;
887
+ version: string;
888
+ }, {
889
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
890
+ id: string;
891
+ version?: string | undefined;
892
+ }>, "many">;
893
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
894
+ sidebar: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
895
+ }, "strip", import("zod").ZodTypeAny, {
896
+ items: {
897
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
898
+ id: string;
899
+ version: string;
900
+ }[];
901
+ limit: number;
902
+ sidebar: boolean;
903
+ id?: string | undefined;
904
+ title?: string | undefined;
905
+ }, {
906
+ items: {
907
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
908
+ id: string;
909
+ version?: string | undefined;
910
+ }[];
911
+ id?: string | undefined;
912
+ title?: string | undefined;
913
+ limit?: number | undefined;
914
+ sidebar?: boolean | undefined;
915
+ }>, "many">>;
916
+ styles: import("zod").ZodOptional<import("zod").ZodObject<{
917
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
918
+ node: import("zod").ZodOptional<import("zod").ZodObject<{
919
+ color: import("zod").ZodOptional<import("zod").ZodString>;
920
+ label: import("zod").ZodOptional<import("zod").ZodString>;
921
+ }, "strip", import("zod").ZodTypeAny, {
922
+ label?: string | undefined;
923
+ color?: string | undefined;
924
+ }, {
925
+ label?: string | undefined;
926
+ color?: string | undefined;
927
+ }>>;
928
+ }, "strip", import("zod").ZodTypeAny, {
929
+ icon?: string | undefined;
930
+ node?: {
931
+ label?: string | undefined;
932
+ color?: string | undefined;
933
+ } | undefined;
934
+ }, {
935
+ icon?: string | undefined;
936
+ node?: {
937
+ label?: string | undefined;
938
+ color?: string | undefined;
939
+ } | undefined;
940
+ }>>;
941
+ deprecated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
942
+ message: import("zod").ZodOptional<import("zod").ZodString>;
943
+ date: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
944
+ }, "strip", import("zod").ZodTypeAny, {
945
+ message?: string | undefined;
946
+ date?: string | Date | undefined;
947
+ }, {
948
+ message?: string | undefined;
949
+ date?: string | Date | undefined;
950
+ }>, import("zod").ZodOptional<import("zod").ZodBoolean>]>>;
951
+ visualiser: import("zod").ZodOptional<import("zod").ZodBoolean>;
952
+ versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
953
+ latestVersion: import("zod").ZodOptional<import("zod").ZodString>;
954
+ catalog: import("zod").ZodOptional<import("zod").ZodObject<{
955
+ path: import("zod").ZodString;
956
+ filePath: import("zod").ZodString;
957
+ astroContentFilePath: import("zod").ZodString;
958
+ publicPath: import("zod").ZodString;
959
+ type: import("zod").ZodString;
960
+ }, "strip", import("zod").ZodTypeAny, {
961
+ path: string;
962
+ type: string;
963
+ filePath: string;
964
+ astroContentFilePath: string;
965
+ publicPath: string;
966
+ }, {
967
+ path: string;
968
+ type: string;
969
+ filePath: string;
970
+ astroContentFilePath: string;
971
+ publicPath: string;
972
+ }>>;
973
+ }, "strip", import("zod").ZodTypeAny, {
974
+ id: string;
975
+ name: string;
976
+ version: string;
977
+ sidebar?: {
978
+ label?: string | undefined;
979
+ badge?: string | undefined;
980
+ } | undefined;
981
+ summary?: string | undefined;
982
+ draft?: boolean | {
983
+ message: string;
984
+ title?: string | undefined;
985
+ } | undefined;
986
+ badges?: {
987
+ content: string;
988
+ backgroundColor: string;
989
+ textColor: string;
990
+ icon?: string | undefined;
991
+ }[] | undefined;
992
+ owners?: {
993
+ id: string;
994
+ }[] | undefined;
995
+ schemaPath?: string | undefined;
996
+ repository?: {
997
+ language?: string | undefined;
998
+ url?: string | undefined;
999
+ } | undefined;
1000
+ specifications?: {
1001
+ openapiPath?: string | undefined;
1002
+ asyncapiPath?: string | undefined;
1003
+ } | {
1004
+ path: string;
1005
+ type: "asyncapi" | "openapi";
1006
+ name?: string | undefined;
1007
+ }[] | undefined;
1008
+ hidden?: boolean | undefined;
1009
+ resourceGroups?: {
1010
+ items: {
1011
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1012
+ id: string;
1013
+ version: string;
1014
+ }[];
1015
+ limit: number;
1016
+ sidebar: boolean;
1017
+ id?: string | undefined;
1018
+ title?: string | undefined;
1019
+ }[] | undefined;
1020
+ styles?: {
1021
+ icon?: string | undefined;
1022
+ node?: {
1023
+ label?: string | undefined;
1024
+ color?: string | undefined;
1025
+ } | undefined;
1026
+ } | undefined;
1027
+ deprecated?: boolean | {
1028
+ message?: string | undefined;
1029
+ date?: string | Date | undefined;
1030
+ } | undefined;
1031
+ visualiser?: boolean | undefined;
1032
+ versions?: string[] | undefined;
1033
+ latestVersion?: string | undefined;
1034
+ catalog?: {
1035
+ path: string;
1036
+ type: string;
1037
+ filePath: string;
1038
+ astroContentFilePath: string;
1039
+ publicPath: string;
1040
+ } | undefined;
1041
+ producers?: any[] | undefined;
1042
+ consumers?: any[] | undefined;
1043
+ channels?: {
1044
+ id: string;
1045
+ version: string;
1046
+ parameters?: Record<string, string> | undefined;
1047
+ }[] | undefined;
1048
+ messageChannels?: any[] | undefined;
1049
+ }, {
1050
+ id: string;
1051
+ name: string;
1052
+ version: string;
1053
+ sidebar?: {
1054
+ label?: string | undefined;
1055
+ badge?: string | undefined;
1056
+ } | undefined;
1057
+ summary?: string | undefined;
1058
+ draft?: boolean | {
1059
+ message: string;
1060
+ title?: string | undefined;
1061
+ } | undefined;
1062
+ badges?: {
1063
+ content: string;
1064
+ backgroundColor: string;
1065
+ textColor: string;
1066
+ icon?: string | undefined;
1067
+ }[] | undefined;
1068
+ owners?: (string | {
1069
+ id: string;
1070
+ collection: "users" | "teams";
1071
+ })[] | undefined;
1072
+ schemaPath?: string | undefined;
1073
+ repository?: {
1074
+ language?: string | undefined;
1075
+ url?: string | undefined;
1076
+ } | undefined;
1077
+ specifications?: {
1078
+ openapiPath?: string | undefined;
1079
+ asyncapiPath?: string | undefined;
1080
+ } | {
1081
+ path: string;
1082
+ type: "asyncapi" | "openapi";
1083
+ name?: string | undefined;
1084
+ }[] | undefined;
1085
+ hidden?: boolean | undefined;
1086
+ resourceGroups?: {
1087
+ items: {
1088
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1089
+ id: string;
1090
+ version?: string | undefined;
1091
+ }[];
1092
+ id?: string | undefined;
1093
+ title?: string | undefined;
1094
+ limit?: number | undefined;
1095
+ sidebar?: boolean | undefined;
1096
+ }[] | undefined;
1097
+ styles?: {
1098
+ icon?: string | undefined;
1099
+ node?: {
1100
+ label?: string | undefined;
1101
+ color?: string | undefined;
1102
+ } | undefined;
1103
+ } | undefined;
1104
+ deprecated?: boolean | {
1105
+ message?: string | undefined;
1106
+ date?: string | Date | undefined;
1107
+ } | undefined;
1108
+ visualiser?: boolean | undefined;
1109
+ versions?: string[] | undefined;
1110
+ latestVersion?: string | undefined;
1111
+ catalog?: {
1112
+ path: string;
1113
+ type: string;
1114
+ filePath: string;
1115
+ astroContentFilePath: string;
1116
+ publicPath: string;
1117
+ } | undefined;
1118
+ producers?: any[] | undefined;
1119
+ consumers?: any[] | undefined;
1120
+ channels?: {
1121
+ id: string;
1122
+ version?: string | undefined;
1123
+ parameters?: Record<string, string> | undefined;
1124
+ }[] | undefined;
1125
+ messageChannels?: any[] | undefined;
1126
+ }>;
1127
+ readonly command: import("zod").ZodObject<{
1128
+ producers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
1129
+ consumers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
1130
+ channels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1131
+ parameters: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
1132
+ } & {
1133
+ id: import("zod").ZodString;
1134
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
1135
+ }, "strip", import("zod").ZodTypeAny, {
1136
+ id: string;
1137
+ version: string;
1138
+ parameters?: Record<string, string> | undefined;
1139
+ }, {
1140
+ id: string;
1141
+ version?: string | undefined;
1142
+ parameters?: Record<string, string> | undefined;
1143
+ }>, "many">>;
1144
+ messageChannels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
1145
+ } & {
1146
+ id: import("zod").ZodString;
1147
+ name: import("zod").ZodString;
1148
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
1149
+ version: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1150
+ draft: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
1151
+ title: import("zod").ZodOptional<import("zod").ZodString>;
1152
+ message: import("zod").ZodString;
1153
+ }, "strip", import("zod").ZodTypeAny, {
1154
+ message: string;
1155
+ title?: string | undefined;
1156
+ }, {
1157
+ message: string;
1158
+ title?: string | undefined;
1159
+ }>]>>;
1160
+ badges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1161
+ content: import("zod").ZodString;
1162
+ backgroundColor: import("zod").ZodString;
1163
+ textColor: import("zod").ZodString;
1164
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
1165
+ }, "strip", import("zod").ZodTypeAny, {
1166
+ content: string;
1167
+ backgroundColor: string;
1168
+ textColor: string;
1169
+ icon?: string | undefined;
1170
+ }, {
1171
+ content: string;
1172
+ backgroundColor: string;
1173
+ textColor: string;
1174
+ icon?: string | undefined;
1175
+ }>, "many">>;
1176
+ owners: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
1177
+ id: import("zod").ZodString;
1178
+ collection: import("zod").ZodEnum<["users", "teams"]>;
1179
+ }, "strip", import("zod").ZodTypeAny, {
1180
+ id: string;
1181
+ collection: "users" | "teams";
1182
+ }, {
1183
+ id: string;
1184
+ collection: "users" | "teams";
1185
+ }>]>, {
1186
+ id: string;
1187
+ }, string | {
1188
+ id: string;
1189
+ collection: "users" | "teams";
1190
+ }>, "many">>;
1191
+ schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
1192
+ sidebar: import("zod").ZodOptional<import("zod").ZodObject<{
1193
+ label: import("zod").ZodOptional<import("zod").ZodString>;
1194
+ badge: import("zod").ZodOptional<import("zod").ZodString>;
1195
+ }, "strip", import("zod").ZodTypeAny, {
1196
+ label?: string | undefined;
1197
+ badge?: string | undefined;
1198
+ }, {
1199
+ label?: string | undefined;
1200
+ badge?: string | undefined;
1201
+ }>>;
1202
+ repository: import("zod").ZodOptional<import("zod").ZodObject<{
1203
+ language: import("zod").ZodOptional<import("zod").ZodString>;
1204
+ url: import("zod").ZodOptional<import("zod").ZodString>;
1205
+ }, "strip", import("zod").ZodTypeAny, {
1206
+ language?: string | undefined;
1207
+ url?: string | undefined;
1208
+ }, {
1209
+ language?: string | undefined;
1210
+ url?: string | undefined;
1211
+ }>>;
1212
+ specifications: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
1213
+ openapiPath: import("zod").ZodOptional<import("zod").ZodString>;
1214
+ asyncapiPath: import("zod").ZodOptional<import("zod").ZodString>;
1215
+ }, "strip", import("zod").ZodTypeAny, {
1216
+ openapiPath?: string | undefined;
1217
+ asyncapiPath?: string | undefined;
1218
+ }, {
1219
+ openapiPath?: string | undefined;
1220
+ asyncapiPath?: string | undefined;
1221
+ }>, import("zod").ZodArray<import("zod").ZodObject<{
1222
+ type: import("zod").ZodEnum<["openapi", "asyncapi"]>;
1223
+ path: import("zod").ZodString;
1224
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1225
+ }, "strip", import("zod").ZodTypeAny, {
1226
+ path: string;
1227
+ type: "asyncapi" | "openapi";
1228
+ name?: string | undefined;
1229
+ }, {
1230
+ path: string;
1231
+ type: "asyncapi" | "openapi";
1232
+ name?: string | undefined;
1233
+ }>, "many">]>>;
1234
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1235
+ resourceGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1236
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1237
+ title: import("zod").ZodOptional<import("zod").ZodString>;
1238
+ items: import("zod").ZodArray<import("zod").ZodObject<{
1239
+ id: import("zod").ZodString;
1240
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
1241
+ type: import("zod").ZodEnum<["service", "event", "command", "query", "flow", "channel", "domain", "user", "team"]>;
1242
+ }, "strip", import("zod").ZodTypeAny, {
1243
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1244
+ id: string;
1245
+ version: string;
1246
+ }, {
1247
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1248
+ id: string;
1249
+ version?: string | undefined;
1250
+ }>, "many">;
1251
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
1252
+ sidebar: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
1253
+ }, "strip", import("zod").ZodTypeAny, {
1254
+ items: {
1255
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1256
+ id: string;
1257
+ version: string;
1258
+ }[];
1259
+ limit: number;
1260
+ sidebar: boolean;
1261
+ id?: string | undefined;
1262
+ title?: string | undefined;
1263
+ }, {
1264
+ items: {
1265
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1266
+ id: string;
1267
+ version?: string | undefined;
1268
+ }[];
1269
+ id?: string | undefined;
1270
+ title?: string | undefined;
1271
+ limit?: number | undefined;
1272
+ sidebar?: boolean | undefined;
1273
+ }>, "many">>;
1274
+ styles: import("zod").ZodOptional<import("zod").ZodObject<{
1275
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
1276
+ node: import("zod").ZodOptional<import("zod").ZodObject<{
1277
+ color: import("zod").ZodOptional<import("zod").ZodString>;
1278
+ label: import("zod").ZodOptional<import("zod").ZodString>;
1279
+ }, "strip", import("zod").ZodTypeAny, {
1280
+ label?: string | undefined;
1281
+ color?: string | undefined;
1282
+ }, {
1283
+ label?: string | undefined;
1284
+ color?: string | undefined;
1285
+ }>>;
1286
+ }, "strip", import("zod").ZodTypeAny, {
1287
+ icon?: string | undefined;
1288
+ node?: {
1289
+ label?: string | undefined;
1290
+ color?: string | undefined;
1291
+ } | undefined;
1292
+ }, {
1293
+ icon?: string | undefined;
1294
+ node?: {
1295
+ label?: string | undefined;
1296
+ color?: string | undefined;
1297
+ } | undefined;
1298
+ }>>;
1299
+ deprecated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
1300
+ message: import("zod").ZodOptional<import("zod").ZodString>;
1301
+ date: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
1302
+ }, "strip", import("zod").ZodTypeAny, {
1303
+ message?: string | undefined;
1304
+ date?: string | Date | undefined;
1305
+ }, {
1306
+ message?: string | undefined;
1307
+ date?: string | Date | undefined;
1308
+ }>, import("zod").ZodOptional<import("zod").ZodBoolean>]>>;
1309
+ visualiser: import("zod").ZodOptional<import("zod").ZodBoolean>;
1310
+ versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1311
+ latestVersion: import("zod").ZodOptional<import("zod").ZodString>;
1312
+ catalog: import("zod").ZodOptional<import("zod").ZodObject<{
1313
+ path: import("zod").ZodString;
1314
+ filePath: import("zod").ZodString;
1315
+ astroContentFilePath: import("zod").ZodString;
1316
+ publicPath: import("zod").ZodString;
1317
+ type: import("zod").ZodString;
1318
+ }, "strip", import("zod").ZodTypeAny, {
1319
+ path: string;
1320
+ type: string;
1321
+ filePath: string;
1322
+ astroContentFilePath: string;
1323
+ publicPath: string;
1324
+ }, {
1325
+ path: string;
1326
+ type: string;
1327
+ filePath: string;
1328
+ astroContentFilePath: string;
1329
+ publicPath: string;
1330
+ }>>;
1331
+ }, "strip", import("zod").ZodTypeAny, {
1332
+ id: string;
1333
+ name: string;
1334
+ version: string;
1335
+ sidebar?: {
1336
+ label?: string | undefined;
1337
+ badge?: string | undefined;
1338
+ } | undefined;
1339
+ summary?: string | undefined;
1340
+ draft?: boolean | {
1341
+ message: string;
1342
+ title?: string | undefined;
1343
+ } | undefined;
1344
+ badges?: {
1345
+ content: string;
1346
+ backgroundColor: string;
1347
+ textColor: string;
1348
+ icon?: string | undefined;
1349
+ }[] | undefined;
1350
+ owners?: {
1351
+ id: string;
1352
+ }[] | undefined;
1353
+ schemaPath?: string | undefined;
1354
+ repository?: {
1355
+ language?: string | undefined;
1356
+ url?: string | undefined;
1357
+ } | undefined;
1358
+ specifications?: {
1359
+ openapiPath?: string | undefined;
1360
+ asyncapiPath?: string | undefined;
1361
+ } | {
1362
+ path: string;
1363
+ type: "asyncapi" | "openapi";
1364
+ name?: string | undefined;
1365
+ }[] | undefined;
1366
+ hidden?: boolean | undefined;
1367
+ resourceGroups?: {
1368
+ items: {
1369
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1370
+ id: string;
1371
+ version: string;
1372
+ }[];
1373
+ limit: number;
1374
+ sidebar: boolean;
1375
+ id?: string | undefined;
1376
+ title?: string | undefined;
1377
+ }[] | undefined;
1378
+ styles?: {
1379
+ icon?: string | undefined;
1380
+ node?: {
1381
+ label?: string | undefined;
1382
+ color?: string | undefined;
1383
+ } | undefined;
1384
+ } | undefined;
1385
+ deprecated?: boolean | {
1386
+ message?: string | undefined;
1387
+ date?: string | Date | undefined;
1388
+ } | undefined;
1389
+ visualiser?: boolean | undefined;
1390
+ versions?: string[] | undefined;
1391
+ latestVersion?: string | undefined;
1392
+ catalog?: {
1393
+ path: string;
1394
+ type: string;
1395
+ filePath: string;
1396
+ astroContentFilePath: string;
1397
+ publicPath: string;
1398
+ } | undefined;
1399
+ producers?: any[] | undefined;
1400
+ consumers?: any[] | undefined;
1401
+ channels?: {
1402
+ id: string;
1403
+ version: string;
1404
+ parameters?: Record<string, string> | undefined;
1405
+ }[] | undefined;
1406
+ messageChannels?: any[] | undefined;
1407
+ }, {
1408
+ id: string;
1409
+ name: string;
1410
+ version: string;
1411
+ sidebar?: {
1412
+ label?: string | undefined;
1413
+ badge?: string | undefined;
1414
+ } | undefined;
1415
+ summary?: string | undefined;
1416
+ draft?: boolean | {
1417
+ message: string;
1418
+ title?: string | undefined;
1419
+ } | undefined;
1420
+ badges?: {
1421
+ content: string;
1422
+ backgroundColor: string;
1423
+ textColor: string;
1424
+ icon?: string | undefined;
1425
+ }[] | undefined;
1426
+ owners?: (string | {
1427
+ id: string;
1428
+ collection: "users" | "teams";
1429
+ })[] | undefined;
1430
+ schemaPath?: string | undefined;
1431
+ repository?: {
1432
+ language?: string | undefined;
1433
+ url?: string | undefined;
1434
+ } | undefined;
1435
+ specifications?: {
1436
+ openapiPath?: string | undefined;
1437
+ asyncapiPath?: string | undefined;
1438
+ } | {
1439
+ path: string;
1440
+ type: "asyncapi" | "openapi";
1441
+ name?: string | undefined;
1442
+ }[] | undefined;
1443
+ hidden?: boolean | undefined;
1444
+ resourceGroups?: {
1445
+ items: {
1446
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1447
+ id: string;
1448
+ version?: string | undefined;
1449
+ }[];
1450
+ id?: string | undefined;
1451
+ title?: string | undefined;
1452
+ limit?: number | undefined;
1453
+ sidebar?: boolean | undefined;
1454
+ }[] | undefined;
1455
+ styles?: {
1456
+ icon?: string | undefined;
1457
+ node?: {
1458
+ label?: string | undefined;
1459
+ color?: string | undefined;
1460
+ } | undefined;
1461
+ } | undefined;
1462
+ deprecated?: boolean | {
1463
+ message?: string | undefined;
1464
+ date?: string | Date | undefined;
1465
+ } | undefined;
1466
+ visualiser?: boolean | undefined;
1467
+ versions?: string[] | undefined;
1468
+ latestVersion?: string | undefined;
1469
+ catalog?: {
1470
+ path: string;
1471
+ type: string;
1472
+ filePath: string;
1473
+ astroContentFilePath: string;
1474
+ publicPath: string;
1475
+ } | undefined;
1476
+ producers?: any[] | undefined;
1477
+ consumers?: any[] | undefined;
1478
+ channels?: {
1479
+ id: string;
1480
+ version?: string | undefined;
1481
+ parameters?: Record<string, string> | undefined;
1482
+ }[] | undefined;
1483
+ messageChannels?: any[] | undefined;
1484
+ }>;
1485
+ readonly query: import("zod").ZodObject<{
1486
+ producers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
1487
+ consumers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
1488
+ channels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1489
+ parameters: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
1490
+ } & {
1491
+ id: import("zod").ZodString;
1492
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
1493
+ }, "strip", import("zod").ZodTypeAny, {
1494
+ id: string;
1495
+ version: string;
1496
+ parameters?: Record<string, string> | undefined;
1497
+ }, {
1498
+ id: string;
1499
+ version?: string | undefined;
1500
+ parameters?: Record<string, string> | undefined;
1501
+ }>, "many">>;
1502
+ messageChannels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
1503
+ } & {
1504
+ id: import("zod").ZodString;
1505
+ name: import("zod").ZodString;
1506
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
1507
+ version: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1508
+ draft: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
1509
+ title: import("zod").ZodOptional<import("zod").ZodString>;
1510
+ message: import("zod").ZodString;
1511
+ }, "strip", import("zod").ZodTypeAny, {
1512
+ message: string;
1513
+ title?: string | undefined;
1514
+ }, {
1515
+ message: string;
1516
+ title?: string | undefined;
1517
+ }>]>>;
1518
+ badges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1519
+ content: import("zod").ZodString;
1520
+ backgroundColor: import("zod").ZodString;
1521
+ textColor: import("zod").ZodString;
1522
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
1523
+ }, "strip", import("zod").ZodTypeAny, {
1524
+ content: string;
1525
+ backgroundColor: string;
1526
+ textColor: string;
1527
+ icon?: string | undefined;
1528
+ }, {
1529
+ content: string;
1530
+ backgroundColor: string;
1531
+ textColor: string;
1532
+ icon?: string | undefined;
1533
+ }>, "many">>;
1534
+ owners: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
1535
+ id: import("zod").ZodString;
1536
+ collection: import("zod").ZodEnum<["users", "teams"]>;
1537
+ }, "strip", import("zod").ZodTypeAny, {
1538
+ id: string;
1539
+ collection: "users" | "teams";
1540
+ }, {
1541
+ id: string;
1542
+ collection: "users" | "teams";
1543
+ }>]>, {
1544
+ id: string;
1545
+ }, string | {
1546
+ id: string;
1547
+ collection: "users" | "teams";
1548
+ }>, "many">>;
1549
+ schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
1550
+ sidebar: import("zod").ZodOptional<import("zod").ZodObject<{
1551
+ label: import("zod").ZodOptional<import("zod").ZodString>;
1552
+ badge: import("zod").ZodOptional<import("zod").ZodString>;
1553
+ }, "strip", import("zod").ZodTypeAny, {
1554
+ label?: string | undefined;
1555
+ badge?: string | undefined;
1556
+ }, {
1557
+ label?: string | undefined;
1558
+ badge?: string | undefined;
1559
+ }>>;
1560
+ repository: import("zod").ZodOptional<import("zod").ZodObject<{
1561
+ language: import("zod").ZodOptional<import("zod").ZodString>;
1562
+ url: import("zod").ZodOptional<import("zod").ZodString>;
1563
+ }, "strip", import("zod").ZodTypeAny, {
1564
+ language?: string | undefined;
1565
+ url?: string | undefined;
1566
+ }, {
1567
+ language?: string | undefined;
1568
+ url?: string | undefined;
1569
+ }>>;
1570
+ specifications: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
1571
+ openapiPath: import("zod").ZodOptional<import("zod").ZodString>;
1572
+ asyncapiPath: import("zod").ZodOptional<import("zod").ZodString>;
1573
+ }, "strip", import("zod").ZodTypeAny, {
1574
+ openapiPath?: string | undefined;
1575
+ asyncapiPath?: string | undefined;
1576
+ }, {
1577
+ openapiPath?: string | undefined;
1578
+ asyncapiPath?: string | undefined;
1579
+ }>, import("zod").ZodArray<import("zod").ZodObject<{
1580
+ type: import("zod").ZodEnum<["openapi", "asyncapi"]>;
1581
+ path: import("zod").ZodString;
1582
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1583
+ }, "strip", import("zod").ZodTypeAny, {
1584
+ path: string;
1585
+ type: "asyncapi" | "openapi";
1586
+ name?: string | undefined;
1587
+ }, {
1588
+ path: string;
1589
+ type: "asyncapi" | "openapi";
1590
+ name?: string | undefined;
1591
+ }>, "many">]>>;
1592
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1593
+ resourceGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1594
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1595
+ title: import("zod").ZodOptional<import("zod").ZodString>;
1596
+ items: import("zod").ZodArray<import("zod").ZodObject<{
1597
+ id: import("zod").ZodString;
1598
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
1599
+ type: import("zod").ZodEnum<["service", "event", "command", "query", "flow", "channel", "domain", "user", "team"]>;
1600
+ }, "strip", import("zod").ZodTypeAny, {
1601
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1602
+ id: string;
1603
+ version: string;
1604
+ }, {
1605
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1606
+ id: string;
1607
+ version?: string | undefined;
1608
+ }>, "many">;
1609
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
1610
+ sidebar: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
1611
+ }, "strip", import("zod").ZodTypeAny, {
1612
+ items: {
1613
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1614
+ id: string;
1615
+ version: string;
1616
+ }[];
1617
+ limit: number;
1618
+ sidebar: boolean;
1619
+ id?: string | undefined;
1620
+ title?: string | undefined;
1621
+ }, {
1622
+ items: {
1623
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1624
+ id: string;
1625
+ version?: string | undefined;
1626
+ }[];
1627
+ id?: string | undefined;
1628
+ title?: string | undefined;
1629
+ limit?: number | undefined;
1630
+ sidebar?: boolean | undefined;
1631
+ }>, "many">>;
1632
+ styles: import("zod").ZodOptional<import("zod").ZodObject<{
1633
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
1634
+ node: import("zod").ZodOptional<import("zod").ZodObject<{
1635
+ color: import("zod").ZodOptional<import("zod").ZodString>;
1636
+ label: import("zod").ZodOptional<import("zod").ZodString>;
1637
+ }, "strip", import("zod").ZodTypeAny, {
1638
+ label?: string | undefined;
1639
+ color?: string | undefined;
1640
+ }, {
1641
+ label?: string | undefined;
1642
+ color?: string | undefined;
1643
+ }>>;
1644
+ }, "strip", import("zod").ZodTypeAny, {
1645
+ icon?: string | undefined;
1646
+ node?: {
1647
+ label?: string | undefined;
1648
+ color?: string | undefined;
1649
+ } | undefined;
1650
+ }, {
1651
+ icon?: string | undefined;
1652
+ node?: {
1653
+ label?: string | undefined;
1654
+ color?: string | undefined;
1655
+ } | undefined;
1656
+ }>>;
1657
+ deprecated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
1658
+ message: import("zod").ZodOptional<import("zod").ZodString>;
1659
+ date: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
1660
+ }, "strip", import("zod").ZodTypeAny, {
1661
+ message?: string | undefined;
1662
+ date?: string | Date | undefined;
1663
+ }, {
1664
+ message?: string | undefined;
1665
+ date?: string | Date | undefined;
1666
+ }>, import("zod").ZodOptional<import("zod").ZodBoolean>]>>;
1667
+ visualiser: import("zod").ZodOptional<import("zod").ZodBoolean>;
1668
+ versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1669
+ latestVersion: import("zod").ZodOptional<import("zod").ZodString>;
1670
+ catalog: import("zod").ZodOptional<import("zod").ZodObject<{
1671
+ path: import("zod").ZodString;
1672
+ filePath: import("zod").ZodString;
1673
+ astroContentFilePath: import("zod").ZodString;
1674
+ publicPath: import("zod").ZodString;
1675
+ type: import("zod").ZodString;
1676
+ }, "strip", import("zod").ZodTypeAny, {
1677
+ path: string;
1678
+ type: string;
1679
+ filePath: string;
1680
+ astroContentFilePath: string;
1681
+ publicPath: string;
1682
+ }, {
1683
+ path: string;
1684
+ type: string;
1685
+ filePath: string;
1686
+ astroContentFilePath: string;
1687
+ publicPath: string;
1688
+ }>>;
1689
+ }, "strip", import("zod").ZodTypeAny, {
1690
+ id: string;
1691
+ name: string;
1692
+ version: string;
1693
+ sidebar?: {
1694
+ label?: string | undefined;
1695
+ badge?: string | undefined;
1696
+ } | undefined;
1697
+ summary?: string | undefined;
1698
+ draft?: boolean | {
1699
+ message: string;
1700
+ title?: string | undefined;
1701
+ } | undefined;
1702
+ badges?: {
1703
+ content: string;
1704
+ backgroundColor: string;
1705
+ textColor: string;
1706
+ icon?: string | undefined;
1707
+ }[] | undefined;
1708
+ owners?: {
1709
+ id: string;
1710
+ }[] | undefined;
1711
+ schemaPath?: string | undefined;
1712
+ repository?: {
1713
+ language?: string | undefined;
1714
+ url?: string | undefined;
1715
+ } | undefined;
1716
+ specifications?: {
1717
+ openapiPath?: string | undefined;
1718
+ asyncapiPath?: string | undefined;
1719
+ } | {
1720
+ path: string;
1721
+ type: "asyncapi" | "openapi";
1722
+ name?: string | undefined;
1723
+ }[] | undefined;
1724
+ hidden?: boolean | undefined;
1725
+ resourceGroups?: {
1726
+ items: {
1727
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1728
+ id: string;
1729
+ version: string;
1730
+ }[];
1731
+ limit: number;
1732
+ sidebar: boolean;
1733
+ id?: string | undefined;
1734
+ title?: string | undefined;
1735
+ }[] | undefined;
1736
+ styles?: {
1737
+ icon?: string | undefined;
1738
+ node?: {
1739
+ label?: string | undefined;
1740
+ color?: string | undefined;
1741
+ } | undefined;
1742
+ } | undefined;
1743
+ deprecated?: boolean | {
1744
+ message?: string | undefined;
1745
+ date?: string | Date | undefined;
1746
+ } | undefined;
1747
+ visualiser?: boolean | undefined;
1748
+ versions?: string[] | undefined;
1749
+ latestVersion?: string | undefined;
1750
+ catalog?: {
1751
+ path: string;
1752
+ type: string;
1753
+ filePath: string;
1754
+ astroContentFilePath: string;
1755
+ publicPath: string;
1756
+ } | undefined;
1757
+ producers?: any[] | undefined;
1758
+ consumers?: any[] | undefined;
1759
+ channels?: {
1760
+ id: string;
1761
+ version: string;
1762
+ parameters?: Record<string, string> | undefined;
1763
+ }[] | undefined;
1764
+ messageChannels?: any[] | undefined;
1765
+ }, {
1766
+ id: string;
1767
+ name: string;
1768
+ version: string;
1769
+ sidebar?: {
1770
+ label?: string | undefined;
1771
+ badge?: string | undefined;
1772
+ } | undefined;
1773
+ summary?: string | undefined;
1774
+ draft?: boolean | {
1775
+ message: string;
1776
+ title?: string | undefined;
1777
+ } | undefined;
1778
+ badges?: {
1779
+ content: string;
1780
+ backgroundColor: string;
1781
+ textColor: string;
1782
+ icon?: string | undefined;
1783
+ }[] | undefined;
1784
+ owners?: (string | {
1785
+ id: string;
1786
+ collection: "users" | "teams";
1787
+ })[] | undefined;
1788
+ schemaPath?: string | undefined;
1789
+ repository?: {
1790
+ language?: string | undefined;
1791
+ url?: string | undefined;
1792
+ } | undefined;
1793
+ specifications?: {
1794
+ openapiPath?: string | undefined;
1795
+ asyncapiPath?: string | undefined;
1796
+ } | {
1797
+ path: string;
1798
+ type: "asyncapi" | "openapi";
1799
+ name?: string | undefined;
1800
+ }[] | undefined;
1801
+ hidden?: boolean | undefined;
1802
+ resourceGroups?: {
1803
+ items: {
1804
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1805
+ id: string;
1806
+ version?: string | undefined;
1807
+ }[];
1808
+ id?: string | undefined;
1809
+ title?: string | undefined;
1810
+ limit?: number | undefined;
1811
+ sidebar?: boolean | undefined;
1812
+ }[] | undefined;
1813
+ styles?: {
1814
+ icon?: string | undefined;
1815
+ node?: {
1816
+ label?: string | undefined;
1817
+ color?: string | undefined;
1818
+ } | undefined;
1819
+ } | undefined;
1820
+ deprecated?: boolean | {
1821
+ message?: string | undefined;
1822
+ date?: string | Date | undefined;
1823
+ } | undefined;
1824
+ visualiser?: boolean | undefined;
1825
+ versions?: string[] | undefined;
1826
+ latestVersion?: string | undefined;
1827
+ catalog?: {
1828
+ path: string;
1829
+ type: string;
1830
+ filePath: string;
1831
+ astroContentFilePath: string;
1832
+ publicPath: string;
1833
+ } | undefined;
1834
+ producers?: any[] | undefined;
1835
+ consumers?: any[] | undefined;
1836
+ channels?: {
1837
+ id: string;
1838
+ version?: string | undefined;
1839
+ parameters?: Record<string, string> | undefined;
1840
+ }[] | undefined;
1841
+ messageChannels?: any[] | undefined;
1842
+ }>;
1843
+ readonly channel: import("zod").ZodObject<{
1844
+ address: import("zod").ZodOptional<import("zod").ZodString>;
1845
+ protocols: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1846
+ parameters: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
1847
+ enum: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1848
+ default: import("zod").ZodOptional<import("zod").ZodString>;
1849
+ examples: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1850
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1851
+ }, "strip", import("zod").ZodTypeAny, {
1852
+ enum?: string[] | undefined;
1853
+ default?: string | undefined;
1854
+ examples?: string[] | undefined;
1855
+ description?: string | undefined;
1856
+ }, {
1857
+ enum?: string[] | undefined;
1858
+ default?: string | undefined;
1859
+ examples?: string[] | undefined;
1860
+ description?: string | undefined;
1861
+ }>>>;
1862
+ messages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1863
+ id: import("zod").ZodString;
1864
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
1865
+ collection: import("zod").ZodString;
1866
+ name: import("zod").ZodString;
1867
+ }, "strip", import("zod").ZodTypeAny, {
1868
+ id: string;
1869
+ collection: string;
1870
+ name: string;
1871
+ version: string;
1872
+ }, {
1873
+ id: string;
1874
+ collection: string;
1875
+ name: string;
1876
+ version?: string | undefined;
1877
+ }>, "many">>;
1878
+ } & {
1879
+ id: import("zod").ZodString;
1880
+ name: import("zod").ZodString;
1881
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
1882
+ version: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1883
+ draft: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
1884
+ title: import("zod").ZodOptional<import("zod").ZodString>;
1885
+ message: import("zod").ZodString;
1886
+ }, "strip", import("zod").ZodTypeAny, {
1887
+ message: string;
1888
+ title?: string | undefined;
1889
+ }, {
1890
+ message: string;
1891
+ title?: string | undefined;
1892
+ }>]>>;
1893
+ badges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1894
+ content: import("zod").ZodString;
1895
+ backgroundColor: import("zod").ZodString;
1896
+ textColor: import("zod").ZodString;
1897
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
1898
+ }, "strip", import("zod").ZodTypeAny, {
1899
+ content: string;
1900
+ backgroundColor: string;
1901
+ textColor: string;
1902
+ icon?: string | undefined;
1903
+ }, {
1904
+ content: string;
1905
+ backgroundColor: string;
1906
+ textColor: string;
1907
+ icon?: string | undefined;
1908
+ }>, "many">>;
1909
+ owners: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
1910
+ id: import("zod").ZodString;
1911
+ collection: import("zod").ZodEnum<["users", "teams"]>;
1912
+ }, "strip", import("zod").ZodTypeAny, {
1913
+ id: string;
1914
+ collection: "users" | "teams";
1915
+ }, {
1916
+ id: string;
1917
+ collection: "users" | "teams";
1918
+ }>]>, {
1919
+ id: string;
1920
+ }, string | {
1921
+ id: string;
1922
+ collection: "users" | "teams";
1923
+ }>, "many">>;
1924
+ schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
1925
+ sidebar: import("zod").ZodOptional<import("zod").ZodObject<{
1926
+ label: import("zod").ZodOptional<import("zod").ZodString>;
1927
+ badge: import("zod").ZodOptional<import("zod").ZodString>;
1928
+ }, "strip", import("zod").ZodTypeAny, {
1929
+ label?: string | undefined;
1930
+ badge?: string | undefined;
1931
+ }, {
1932
+ label?: string | undefined;
1933
+ badge?: string | undefined;
1934
+ }>>;
1935
+ repository: import("zod").ZodOptional<import("zod").ZodObject<{
1936
+ language: import("zod").ZodOptional<import("zod").ZodString>;
1937
+ url: import("zod").ZodOptional<import("zod").ZodString>;
1938
+ }, "strip", import("zod").ZodTypeAny, {
1939
+ language?: string | undefined;
1940
+ url?: string | undefined;
1941
+ }, {
1942
+ language?: string | undefined;
1943
+ url?: string | undefined;
1944
+ }>>;
1945
+ specifications: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
1946
+ openapiPath: import("zod").ZodOptional<import("zod").ZodString>;
1947
+ asyncapiPath: import("zod").ZodOptional<import("zod").ZodString>;
1948
+ }, "strip", import("zod").ZodTypeAny, {
1949
+ openapiPath?: string | undefined;
1950
+ asyncapiPath?: string | undefined;
1951
+ }, {
1952
+ openapiPath?: string | undefined;
1953
+ asyncapiPath?: string | undefined;
1954
+ }>, import("zod").ZodArray<import("zod").ZodObject<{
1955
+ type: import("zod").ZodEnum<["openapi", "asyncapi"]>;
1956
+ path: import("zod").ZodString;
1957
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1958
+ }, "strip", import("zod").ZodTypeAny, {
1959
+ path: string;
1960
+ type: "asyncapi" | "openapi";
1961
+ name?: string | undefined;
1962
+ }, {
1963
+ path: string;
1964
+ type: "asyncapi" | "openapi";
1965
+ name?: string | undefined;
1966
+ }>, "many">]>>;
1967
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1968
+ resourceGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1969
+ id: import("zod").ZodOptional<import("zod").ZodString>;
1970
+ title: import("zod").ZodOptional<import("zod").ZodString>;
1971
+ items: import("zod").ZodArray<import("zod").ZodObject<{
1972
+ id: import("zod").ZodString;
1973
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
1974
+ type: import("zod").ZodEnum<["service", "event", "command", "query", "flow", "channel", "domain", "user", "team"]>;
1975
+ }, "strip", import("zod").ZodTypeAny, {
1976
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1977
+ id: string;
1978
+ version: string;
1979
+ }, {
1980
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1981
+ id: string;
1982
+ version?: string | undefined;
1983
+ }>, "many">;
1984
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
1985
+ sidebar: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
1986
+ }, "strip", import("zod").ZodTypeAny, {
1987
+ items: {
1988
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1989
+ id: string;
1990
+ version: string;
1991
+ }[];
1992
+ limit: number;
1993
+ sidebar: boolean;
1994
+ id?: string | undefined;
1995
+ title?: string | undefined;
1996
+ }, {
1997
+ items: {
1998
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
1999
+ id: string;
2000
+ version?: string | undefined;
2001
+ }[];
2002
+ id?: string | undefined;
2003
+ title?: string | undefined;
2004
+ limit?: number | undefined;
2005
+ sidebar?: boolean | undefined;
2006
+ }>, "many">>;
2007
+ styles: import("zod").ZodOptional<import("zod").ZodObject<{
2008
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
2009
+ node: import("zod").ZodOptional<import("zod").ZodObject<{
2010
+ color: import("zod").ZodOptional<import("zod").ZodString>;
2011
+ label: import("zod").ZodOptional<import("zod").ZodString>;
2012
+ }, "strip", import("zod").ZodTypeAny, {
2013
+ label?: string | undefined;
2014
+ color?: string | undefined;
2015
+ }, {
2016
+ label?: string | undefined;
2017
+ color?: string | undefined;
2018
+ }>>;
2019
+ }, "strip", import("zod").ZodTypeAny, {
2020
+ icon?: string | undefined;
2021
+ node?: {
2022
+ label?: string | undefined;
2023
+ color?: string | undefined;
2024
+ } | undefined;
2025
+ }, {
2026
+ icon?: string | undefined;
2027
+ node?: {
2028
+ label?: string | undefined;
2029
+ color?: string | undefined;
2030
+ } | undefined;
2031
+ }>>;
2032
+ deprecated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
2033
+ message: import("zod").ZodOptional<import("zod").ZodString>;
2034
+ date: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
2035
+ }, "strip", import("zod").ZodTypeAny, {
2036
+ message?: string | undefined;
2037
+ date?: string | Date | undefined;
2038
+ }, {
2039
+ message?: string | undefined;
2040
+ date?: string | Date | undefined;
2041
+ }>, import("zod").ZodOptional<import("zod").ZodBoolean>]>>;
2042
+ visualiser: import("zod").ZodOptional<import("zod").ZodBoolean>;
2043
+ versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
2044
+ latestVersion: import("zod").ZodOptional<import("zod").ZodString>;
2045
+ catalog: import("zod").ZodOptional<import("zod").ZodObject<{
2046
+ path: import("zod").ZodString;
2047
+ filePath: import("zod").ZodString;
2048
+ astroContentFilePath: import("zod").ZodString;
2049
+ publicPath: import("zod").ZodString;
2050
+ type: import("zod").ZodString;
2051
+ }, "strip", import("zod").ZodTypeAny, {
2052
+ path: string;
2053
+ type: string;
2054
+ filePath: string;
2055
+ astroContentFilePath: string;
2056
+ publicPath: string;
2057
+ }, {
2058
+ path: string;
2059
+ type: string;
2060
+ filePath: string;
2061
+ astroContentFilePath: string;
2062
+ publicPath: string;
2063
+ }>>;
2064
+ }, "strip", import("zod").ZodTypeAny, {
2065
+ id: string;
2066
+ name: string;
2067
+ version: string;
2068
+ parameters?: Record<string, {
2069
+ enum?: string[] | undefined;
2070
+ default?: string | undefined;
2071
+ examples?: string[] | undefined;
2072
+ description?: string | undefined;
2073
+ }> | undefined;
2074
+ sidebar?: {
2075
+ label?: string | undefined;
2076
+ badge?: string | undefined;
2077
+ } | undefined;
2078
+ summary?: string | undefined;
2079
+ draft?: boolean | {
2080
+ message: string;
2081
+ title?: string | undefined;
2082
+ } | undefined;
2083
+ badges?: {
2084
+ content: string;
2085
+ backgroundColor: string;
2086
+ textColor: string;
2087
+ icon?: string | undefined;
2088
+ }[] | undefined;
2089
+ owners?: {
2090
+ id: string;
2091
+ }[] | undefined;
2092
+ schemaPath?: string | undefined;
2093
+ repository?: {
2094
+ language?: string | undefined;
2095
+ url?: string | undefined;
2096
+ } | undefined;
2097
+ specifications?: {
2098
+ openapiPath?: string | undefined;
2099
+ asyncapiPath?: string | undefined;
2100
+ } | {
2101
+ path: string;
2102
+ type: "asyncapi" | "openapi";
2103
+ name?: string | undefined;
2104
+ }[] | undefined;
2105
+ hidden?: boolean | undefined;
2106
+ resourceGroups?: {
2107
+ items: {
2108
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
2109
+ id: string;
2110
+ version: string;
2111
+ }[];
2112
+ limit: number;
2113
+ sidebar: boolean;
2114
+ id?: string | undefined;
2115
+ title?: string | undefined;
2116
+ }[] | undefined;
2117
+ styles?: {
2118
+ icon?: string | undefined;
2119
+ node?: {
2120
+ label?: string | undefined;
2121
+ color?: string | undefined;
2122
+ } | undefined;
2123
+ } | undefined;
2124
+ deprecated?: boolean | {
2125
+ message?: string | undefined;
2126
+ date?: string | Date | undefined;
2127
+ } | undefined;
2128
+ visualiser?: boolean | undefined;
2129
+ versions?: string[] | undefined;
2130
+ latestVersion?: string | undefined;
2131
+ catalog?: {
2132
+ path: string;
2133
+ type: string;
2134
+ filePath: string;
2135
+ astroContentFilePath: string;
2136
+ publicPath: string;
2137
+ } | undefined;
2138
+ address?: string | undefined;
2139
+ protocols?: string[] | undefined;
2140
+ messages?: {
2141
+ id: string;
2142
+ collection: string;
2143
+ name: string;
2144
+ version: string;
2145
+ }[] | undefined;
2146
+ }, {
2147
+ id: string;
2148
+ name: string;
2149
+ version: string;
2150
+ parameters?: Record<string, {
2151
+ enum?: string[] | undefined;
2152
+ default?: string | undefined;
2153
+ examples?: string[] | undefined;
2154
+ description?: string | undefined;
2155
+ }> | undefined;
2156
+ sidebar?: {
2157
+ label?: string | undefined;
2158
+ badge?: string | undefined;
2159
+ } | undefined;
2160
+ summary?: string | undefined;
2161
+ draft?: boolean | {
2162
+ message: string;
2163
+ title?: string | undefined;
2164
+ } | undefined;
2165
+ badges?: {
2166
+ content: string;
2167
+ backgroundColor: string;
2168
+ textColor: string;
2169
+ icon?: string | undefined;
2170
+ }[] | undefined;
2171
+ owners?: (string | {
2172
+ id: string;
2173
+ collection: "users" | "teams";
2174
+ })[] | undefined;
2175
+ schemaPath?: string | undefined;
2176
+ repository?: {
2177
+ language?: string | undefined;
2178
+ url?: string | undefined;
2179
+ } | undefined;
2180
+ specifications?: {
2181
+ openapiPath?: string | undefined;
2182
+ asyncapiPath?: string | undefined;
2183
+ } | {
2184
+ path: string;
2185
+ type: "asyncapi" | "openapi";
2186
+ name?: string | undefined;
2187
+ }[] | undefined;
2188
+ hidden?: boolean | undefined;
2189
+ resourceGroups?: {
2190
+ items: {
2191
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
2192
+ id: string;
2193
+ version?: string | undefined;
2194
+ }[];
2195
+ id?: string | undefined;
2196
+ title?: string | undefined;
2197
+ limit?: number | undefined;
2198
+ sidebar?: boolean | undefined;
2199
+ }[] | undefined;
2200
+ styles?: {
2201
+ icon?: string | undefined;
2202
+ node?: {
2203
+ label?: string | undefined;
2204
+ color?: string | undefined;
2205
+ } | undefined;
2206
+ } | undefined;
2207
+ deprecated?: boolean | {
2208
+ message?: string | undefined;
2209
+ date?: string | Date | undefined;
2210
+ } | undefined;
2211
+ visualiser?: boolean | undefined;
2212
+ versions?: string[] | undefined;
2213
+ latestVersion?: string | undefined;
2214
+ catalog?: {
2215
+ path: string;
2216
+ type: string;
2217
+ filePath: string;
2218
+ astroContentFilePath: string;
2219
+ publicPath: string;
2220
+ } | undefined;
2221
+ address?: string | undefined;
2222
+ protocols?: string[] | undefined;
2223
+ messages?: {
2224
+ id: string;
2225
+ collection: string;
2226
+ name: string;
2227
+ version?: string | undefined;
2228
+ }[] | undefined;
2229
+ }>;
2230
+ readonly flow: import("zod").ZodObject<{
2231
+ steps: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
2232
+ id: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>;
2233
+ type: import("zod").ZodOptional<import("zod").ZodEnum<["node", "message", "user", "actor"]>>;
2234
+ title: import("zod").ZodString;
2235
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
2236
+ message: import("zod").ZodOptional<import("zod").ZodObject<{
2237
+ id: import("zod").ZodString;
2238
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
2239
+ }, "strip", import("zod").ZodTypeAny, {
2240
+ id: string;
2241
+ version: string;
2242
+ }, {
2243
+ id: string;
2244
+ version?: string | undefined;
2245
+ }>>;
2246
+ service: import("zod").ZodOptional<import("zod").ZodObject<{
2247
+ id: import("zod").ZodString;
2248
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
2249
+ }, "strip", import("zod").ZodTypeAny, {
2250
+ id: string;
2251
+ version: string;
2252
+ }, {
2253
+ id: string;
2254
+ version?: string | undefined;
2255
+ }>>;
2256
+ flow: import("zod").ZodOptional<import("zod").ZodObject<{
2257
+ id: import("zod").ZodString;
2258
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
2259
+ }, "strip", import("zod").ZodTypeAny, {
2260
+ id: string;
2261
+ version: string;
2262
+ }, {
2263
+ id: string;
2264
+ version?: string | undefined;
2265
+ }>>;
2266
+ actor: import("zod").ZodOptional<import("zod").ZodObject<{
2267
+ name: import("zod").ZodString;
2268
+ }, "strip", import("zod").ZodTypeAny, {
2269
+ name: string;
2270
+ }, {
2271
+ name: string;
2272
+ }>>;
2273
+ custom: import("zod").ZodOptional<import("zod").ZodObject<{
2274
+ title: import("zod").ZodString;
2275
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
2276
+ type: import("zod").ZodOptional<import("zod").ZodString>;
2277
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
2278
+ url: import("zod").ZodOptional<import("zod").ZodString>;
2279
+ color: import("zod").ZodOptional<import("zod").ZodString>;
2280
+ properties: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>>;
2281
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
2282
+ menu: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2283
+ label: import("zod").ZodString;
2284
+ url: import("zod").ZodOptional<import("zod").ZodString>;
2285
+ }, "strip", import("zod").ZodTypeAny, {
2286
+ label: string;
2287
+ url?: string | undefined;
2288
+ }, {
2289
+ label: string;
2290
+ url?: string | undefined;
2291
+ }>, "many">>;
2292
+ }, "strip", import("zod").ZodTypeAny, {
2293
+ title: string;
2294
+ icon?: string | undefined;
2295
+ type?: string | undefined;
2296
+ url?: string | undefined;
2297
+ color?: string | undefined;
2298
+ summary?: string | undefined;
2299
+ properties?: Record<string, string | number> | undefined;
2300
+ height?: number | undefined;
2301
+ menu?: {
2302
+ label: string;
2303
+ url?: string | undefined;
2304
+ }[] | undefined;
2305
+ }, {
2306
+ title: string;
2307
+ icon?: string | undefined;
2308
+ type?: string | undefined;
2309
+ url?: string | undefined;
2310
+ color?: string | undefined;
2311
+ summary?: string | undefined;
2312
+ properties?: Record<string, string | number> | undefined;
2313
+ height?: number | undefined;
2314
+ menu?: {
2315
+ label: string;
2316
+ url?: string | undefined;
2317
+ }[] | undefined;
2318
+ }>>;
2319
+ externalSystem: import("zod").ZodOptional<import("zod").ZodObject<{
2320
+ name: import("zod").ZodString;
2321
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
2322
+ url: import("zod").ZodOptional<import("zod").ZodString>;
2323
+ }, "strip", import("zod").ZodTypeAny, {
2324
+ name: string;
2325
+ url?: string | undefined;
2326
+ summary?: string | undefined;
2327
+ }, {
2328
+ name: string;
2329
+ url?: string | undefined;
2330
+ summary?: string | undefined;
2331
+ }>>;
2332
+ next_step: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodOptional<import("zod").ZodObject<{
2333
+ id: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>;
2334
+ label: import("zod").ZodOptional<import("zod").ZodString>;
2335
+ }, "strip", import("zod").ZodTypeAny, {
2336
+ id: string | number;
2337
+ label?: string | undefined;
2338
+ }, {
2339
+ id: string | number;
2340
+ label?: string | undefined;
2341
+ }>>]>>;
2342
+ next_steps: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodOptional<import("zod").ZodObject<{
2343
+ id: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>;
2344
+ label: import("zod").ZodOptional<import("zod").ZodString>;
2345
+ }, "strip", import("zod").ZodTypeAny, {
2346
+ id: string | number;
2347
+ label?: string | undefined;
2348
+ }, {
2349
+ id: string | number;
2350
+ label?: string | undefined;
2351
+ }>>]>>, "many">>;
2352
+ }, "strip", import("zod").ZodTypeAny, {
2353
+ id: string | number;
2354
+ title: string;
2355
+ message?: {
2356
+ id: string;
2357
+ version: string;
2358
+ } | undefined;
2359
+ type?: "message" | "user" | "node" | "actor" | undefined;
2360
+ custom?: {
2361
+ title: string;
2362
+ icon?: string | undefined;
2363
+ type?: string | undefined;
2364
+ url?: string | undefined;
2365
+ color?: string | undefined;
2366
+ summary?: string | undefined;
2367
+ properties?: Record<string, string | number> | undefined;
2368
+ height?: number | undefined;
2369
+ menu?: {
2370
+ label: string;
2371
+ url?: string | undefined;
2372
+ }[] | undefined;
2373
+ } | undefined;
2374
+ service?: {
2375
+ id: string;
2376
+ version: string;
2377
+ } | undefined;
2378
+ flow?: {
2379
+ id: string;
2380
+ version: string;
2381
+ } | undefined;
2382
+ summary?: string | undefined;
2383
+ actor?: {
2384
+ name: string;
2385
+ } | undefined;
2386
+ externalSystem?: {
2387
+ name: string;
2388
+ url?: string | undefined;
2389
+ summary?: string | undefined;
2390
+ } | undefined;
2391
+ next_step?: string | number | {
2392
+ id: string | number;
2393
+ label?: string | undefined;
2394
+ } | undefined;
2395
+ next_steps?: (string | number | {
2396
+ id: string | number;
2397
+ label?: string | undefined;
2398
+ } | undefined)[] | undefined;
2399
+ }, {
2400
+ id: string | number;
2401
+ title: string;
2402
+ message?: {
2403
+ id: string;
2404
+ version?: string | undefined;
2405
+ } | undefined;
2406
+ type?: "message" | "user" | "node" | "actor" | undefined;
2407
+ custom?: {
2408
+ title: string;
2409
+ icon?: string | undefined;
2410
+ type?: string | undefined;
2411
+ url?: string | undefined;
2412
+ color?: string | undefined;
2413
+ summary?: string | undefined;
2414
+ properties?: Record<string, string | number> | undefined;
2415
+ height?: number | undefined;
2416
+ menu?: {
2417
+ label: string;
2418
+ url?: string | undefined;
2419
+ }[] | undefined;
2420
+ } | undefined;
2421
+ service?: {
2422
+ id: string;
2423
+ version?: string | undefined;
2424
+ } | undefined;
2425
+ flow?: {
2426
+ id: string;
2427
+ version?: string | undefined;
2428
+ } | undefined;
2429
+ summary?: string | undefined;
2430
+ actor?: {
2431
+ name: string;
2432
+ } | undefined;
2433
+ externalSystem?: {
2434
+ name: string;
2435
+ url?: string | undefined;
2436
+ summary?: string | undefined;
2437
+ } | undefined;
2438
+ next_step?: string | number | {
2439
+ id: string | number;
2440
+ label?: string | undefined;
2441
+ } | undefined;
2442
+ next_steps?: (string | number | {
2443
+ id: string | number;
2444
+ label?: string | undefined;
2445
+ } | undefined)[] | undefined;
2446
+ }>, {
2447
+ id: string | number;
2448
+ title: string;
2449
+ message?: {
2450
+ id: string;
2451
+ version: string;
2452
+ } | undefined;
2453
+ type?: "message" | "user" | "node" | "actor" | undefined;
2454
+ custom?: {
2455
+ title: string;
2456
+ icon?: string | undefined;
2457
+ type?: string | undefined;
2458
+ url?: string | undefined;
2459
+ color?: string | undefined;
2460
+ summary?: string | undefined;
2461
+ properties?: Record<string, string | number> | undefined;
2462
+ height?: number | undefined;
2463
+ menu?: {
2464
+ label: string;
2465
+ url?: string | undefined;
2466
+ }[] | undefined;
2467
+ } | undefined;
2468
+ service?: {
2469
+ id: string;
2470
+ version: string;
2471
+ } | undefined;
2472
+ flow?: {
2473
+ id: string;
2474
+ version: string;
2475
+ } | undefined;
2476
+ summary?: string | undefined;
2477
+ actor?: {
2478
+ name: string;
2479
+ } | undefined;
2480
+ externalSystem?: {
2481
+ name: string;
2482
+ url?: string | undefined;
2483
+ summary?: string | undefined;
2484
+ } | undefined;
2485
+ next_step?: string | number | {
2486
+ id: string | number;
2487
+ label?: string | undefined;
2488
+ } | undefined;
2489
+ next_steps?: (string | number | {
2490
+ id: string | number;
2491
+ label?: string | undefined;
2492
+ } | undefined)[] | undefined;
2493
+ }, {
2494
+ id: string | number;
2495
+ title: string;
2496
+ message?: {
2497
+ id: string;
2498
+ version?: string | undefined;
2499
+ } | undefined;
2500
+ type?: "message" | "user" | "node" | "actor" | undefined;
2501
+ custom?: {
2502
+ title: string;
2503
+ icon?: string | undefined;
2504
+ type?: string | undefined;
2505
+ url?: string | undefined;
2506
+ color?: string | undefined;
2507
+ summary?: string | undefined;
2508
+ properties?: Record<string, string | number> | undefined;
2509
+ height?: number | undefined;
2510
+ menu?: {
2511
+ label: string;
2512
+ url?: string | undefined;
2513
+ }[] | undefined;
2514
+ } | undefined;
2515
+ service?: {
2516
+ id: string;
2517
+ version?: string | undefined;
2518
+ } | undefined;
2519
+ flow?: {
2520
+ id: string;
2521
+ version?: string | undefined;
2522
+ } | undefined;
2523
+ summary?: string | undefined;
2524
+ actor?: {
2525
+ name: string;
2526
+ } | undefined;
2527
+ externalSystem?: {
2528
+ name: string;
2529
+ url?: string | undefined;
2530
+ summary?: string | undefined;
2531
+ } | undefined;
2532
+ next_step?: string | number | {
2533
+ id: string | number;
2534
+ label?: string | undefined;
2535
+ } | undefined;
2536
+ next_steps?: (string | number | {
2537
+ id: string | number;
2538
+ label?: string | undefined;
2539
+ } | undefined)[] | undefined;
2540
+ }>, "many">;
2541
+ } & {
2542
+ id: import("zod").ZodString;
2543
+ name: import("zod").ZodString;
2544
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
2545
+ version: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2546
+ draft: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
2547
+ title: import("zod").ZodOptional<import("zod").ZodString>;
2548
+ message: import("zod").ZodString;
2549
+ }, "strip", import("zod").ZodTypeAny, {
2550
+ message: string;
2551
+ title?: string | undefined;
2552
+ }, {
2553
+ message: string;
2554
+ title?: string | undefined;
2555
+ }>]>>;
2556
+ badges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2557
+ content: import("zod").ZodString;
2558
+ backgroundColor: import("zod").ZodString;
2559
+ textColor: import("zod").ZodString;
2560
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
2561
+ }, "strip", import("zod").ZodTypeAny, {
2562
+ content: string;
2563
+ backgroundColor: string;
2564
+ textColor: string;
2565
+ icon?: string | undefined;
2566
+ }, {
2567
+ content: string;
2568
+ backgroundColor: string;
2569
+ textColor: string;
2570
+ icon?: string | undefined;
2571
+ }>, "many">>;
2572
+ owners: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2573
+ id: import("zod").ZodString;
2574
+ collection: import("zod").ZodEnum<["users", "teams"]>;
2575
+ }, "strip", import("zod").ZodTypeAny, {
2576
+ id: string;
2577
+ collection: "users" | "teams";
2578
+ }, {
2579
+ id: string;
2580
+ collection: "users" | "teams";
2581
+ }>]>, {
2582
+ id: string;
2583
+ }, string | {
2584
+ id: string;
2585
+ collection: "users" | "teams";
2586
+ }>, "many">>;
2587
+ schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
2588
+ sidebar: import("zod").ZodOptional<import("zod").ZodObject<{
2589
+ label: import("zod").ZodOptional<import("zod").ZodString>;
2590
+ badge: import("zod").ZodOptional<import("zod").ZodString>;
2591
+ }, "strip", import("zod").ZodTypeAny, {
2592
+ label?: string | undefined;
2593
+ badge?: string | undefined;
2594
+ }, {
2595
+ label?: string | undefined;
2596
+ badge?: string | undefined;
2597
+ }>>;
2598
+ repository: import("zod").ZodOptional<import("zod").ZodObject<{
2599
+ language: import("zod").ZodOptional<import("zod").ZodString>;
2600
+ url: import("zod").ZodOptional<import("zod").ZodString>;
2601
+ }, "strip", import("zod").ZodTypeAny, {
2602
+ language?: string | undefined;
2603
+ url?: string | undefined;
2604
+ }, {
2605
+ language?: string | undefined;
2606
+ url?: string | undefined;
2607
+ }>>;
2608
+ specifications: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
2609
+ openapiPath: import("zod").ZodOptional<import("zod").ZodString>;
2610
+ asyncapiPath: import("zod").ZodOptional<import("zod").ZodString>;
2611
+ }, "strip", import("zod").ZodTypeAny, {
2612
+ openapiPath?: string | undefined;
2613
+ asyncapiPath?: string | undefined;
2614
+ }, {
2615
+ openapiPath?: string | undefined;
2616
+ asyncapiPath?: string | undefined;
2617
+ }>, import("zod").ZodArray<import("zod").ZodObject<{
2618
+ type: import("zod").ZodEnum<["openapi", "asyncapi"]>;
2619
+ path: import("zod").ZodString;
2620
+ name: import("zod").ZodOptional<import("zod").ZodString>;
2621
+ }, "strip", import("zod").ZodTypeAny, {
2622
+ path: string;
2623
+ type: "asyncapi" | "openapi";
2624
+ name?: string | undefined;
2625
+ }, {
2626
+ path: string;
2627
+ type: "asyncapi" | "openapi";
2628
+ name?: string | undefined;
2629
+ }>, "many">]>>;
2630
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2631
+ resourceGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2632
+ id: import("zod").ZodOptional<import("zod").ZodString>;
2633
+ title: import("zod").ZodOptional<import("zod").ZodString>;
2634
+ items: import("zod").ZodArray<import("zod").ZodObject<{
2635
+ id: import("zod").ZodString;
2636
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
2637
+ type: import("zod").ZodEnum<["service", "event", "command", "query", "flow", "channel", "domain", "user", "team"]>;
2638
+ }, "strip", import("zod").ZodTypeAny, {
2639
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
2640
+ id: string;
2641
+ version: string;
2642
+ }, {
2643
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
2644
+ id: string;
2645
+ version?: string | undefined;
2646
+ }>, "many">;
2647
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
2648
+ sidebar: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
2649
+ }, "strip", import("zod").ZodTypeAny, {
2650
+ items: {
2651
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
2652
+ id: string;
2653
+ version: string;
2654
+ }[];
2655
+ limit: number;
2656
+ sidebar: boolean;
2657
+ id?: string | undefined;
2658
+ title?: string | undefined;
2659
+ }, {
2660
+ items: {
2661
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
2662
+ id: string;
2663
+ version?: string | undefined;
2664
+ }[];
2665
+ id?: string | undefined;
2666
+ title?: string | undefined;
2667
+ limit?: number | undefined;
2668
+ sidebar?: boolean | undefined;
2669
+ }>, "many">>;
2670
+ styles: import("zod").ZodOptional<import("zod").ZodObject<{
2671
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
2672
+ node: import("zod").ZodOptional<import("zod").ZodObject<{
2673
+ color: import("zod").ZodOptional<import("zod").ZodString>;
2674
+ label: import("zod").ZodOptional<import("zod").ZodString>;
2675
+ }, "strip", import("zod").ZodTypeAny, {
2676
+ label?: string | undefined;
2677
+ color?: string | undefined;
2678
+ }, {
2679
+ label?: string | undefined;
2680
+ color?: string | undefined;
2681
+ }>>;
2682
+ }, "strip", import("zod").ZodTypeAny, {
2683
+ icon?: string | undefined;
2684
+ node?: {
2685
+ label?: string | undefined;
2686
+ color?: string | undefined;
2687
+ } | undefined;
2688
+ }, {
2689
+ icon?: string | undefined;
2690
+ node?: {
2691
+ label?: string | undefined;
2692
+ color?: string | undefined;
2693
+ } | undefined;
2694
+ }>>;
2695
+ deprecated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
2696
+ message: import("zod").ZodOptional<import("zod").ZodString>;
2697
+ date: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
2698
+ }, "strip", import("zod").ZodTypeAny, {
2699
+ message?: string | undefined;
2700
+ date?: string | Date | undefined;
2701
+ }, {
2702
+ message?: string | undefined;
2703
+ date?: string | Date | undefined;
2704
+ }>, import("zod").ZodOptional<import("zod").ZodBoolean>]>>;
2705
+ visualiser: import("zod").ZodOptional<import("zod").ZodBoolean>;
2706
+ versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
2707
+ latestVersion: import("zod").ZodOptional<import("zod").ZodString>;
2708
+ catalog: import("zod").ZodOptional<import("zod").ZodObject<{
2709
+ path: import("zod").ZodString;
2710
+ filePath: import("zod").ZodString;
2711
+ astroContentFilePath: import("zod").ZodString;
2712
+ publicPath: import("zod").ZodString;
2713
+ type: import("zod").ZodString;
2714
+ }, "strip", import("zod").ZodTypeAny, {
2715
+ path: string;
2716
+ type: string;
2717
+ filePath: string;
2718
+ astroContentFilePath: string;
2719
+ publicPath: string;
2720
+ }, {
2721
+ path: string;
2722
+ type: string;
2723
+ filePath: string;
2724
+ astroContentFilePath: string;
2725
+ publicPath: string;
2726
+ }>>;
2727
+ }, "strip", import("zod").ZodTypeAny, {
2728
+ id: string;
2729
+ name: string;
2730
+ version: string;
2731
+ steps: {
2732
+ id: string | number;
2733
+ title: string;
2734
+ message?: {
2735
+ id: string;
2736
+ version: string;
2737
+ } | undefined;
2738
+ type?: "message" | "user" | "node" | "actor" | undefined;
2739
+ custom?: {
2740
+ title: string;
2741
+ icon?: string | undefined;
2742
+ type?: string | undefined;
2743
+ url?: string | undefined;
2744
+ color?: string | undefined;
2745
+ summary?: string | undefined;
2746
+ properties?: Record<string, string | number> | undefined;
2747
+ height?: number | undefined;
2748
+ menu?: {
2749
+ label: string;
2750
+ url?: string | undefined;
2751
+ }[] | undefined;
2752
+ } | undefined;
2753
+ service?: {
2754
+ id: string;
2755
+ version: string;
2756
+ } | undefined;
2757
+ flow?: {
2758
+ id: string;
2759
+ version: string;
2760
+ } | undefined;
2761
+ summary?: string | undefined;
2762
+ actor?: {
2763
+ name: string;
2764
+ } | undefined;
2765
+ externalSystem?: {
2766
+ name: string;
2767
+ url?: string | undefined;
2768
+ summary?: string | undefined;
2769
+ } | undefined;
2770
+ next_step?: string | number | {
2771
+ id: string | number;
2772
+ label?: string | undefined;
2773
+ } | undefined;
2774
+ next_steps?: (string | number | {
2775
+ id: string | number;
2776
+ label?: string | undefined;
2777
+ } | undefined)[] | undefined;
2778
+ }[];
2779
+ sidebar?: {
2780
+ label?: string | undefined;
2781
+ badge?: string | undefined;
2782
+ } | undefined;
2783
+ summary?: string | undefined;
2784
+ draft?: boolean | {
2785
+ message: string;
2786
+ title?: string | undefined;
2787
+ } | undefined;
2788
+ badges?: {
2789
+ content: string;
2790
+ backgroundColor: string;
2791
+ textColor: string;
2792
+ icon?: string | undefined;
2793
+ }[] | undefined;
2794
+ owners?: {
2795
+ id: string;
2796
+ }[] | undefined;
2797
+ schemaPath?: string | undefined;
2798
+ repository?: {
2799
+ language?: string | undefined;
2800
+ url?: string | undefined;
2801
+ } | undefined;
2802
+ specifications?: {
2803
+ openapiPath?: string | undefined;
2804
+ asyncapiPath?: string | undefined;
2805
+ } | {
2806
+ path: string;
2807
+ type: "asyncapi" | "openapi";
2808
+ name?: string | undefined;
2809
+ }[] | undefined;
2810
+ hidden?: boolean | undefined;
2811
+ resourceGroups?: {
2812
+ items: {
2813
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
2814
+ id: string;
2815
+ version: string;
2816
+ }[];
2817
+ limit: number;
2818
+ sidebar: boolean;
2819
+ id?: string | undefined;
2820
+ title?: string | undefined;
2821
+ }[] | undefined;
2822
+ styles?: {
2823
+ icon?: string | undefined;
2824
+ node?: {
2825
+ label?: string | undefined;
2826
+ color?: string | undefined;
2827
+ } | undefined;
2828
+ } | undefined;
2829
+ deprecated?: boolean | {
2830
+ message?: string | undefined;
2831
+ date?: string | Date | undefined;
2832
+ } | undefined;
2833
+ visualiser?: boolean | undefined;
2834
+ versions?: string[] | undefined;
2835
+ latestVersion?: string | undefined;
2836
+ catalog?: {
2837
+ path: string;
2838
+ type: string;
2839
+ filePath: string;
2840
+ astroContentFilePath: string;
2841
+ publicPath: string;
2842
+ } | undefined;
2843
+ }, {
2844
+ id: string;
2845
+ name: string;
2846
+ version: string;
2847
+ steps: {
2848
+ id: string | number;
2849
+ title: string;
2850
+ message?: {
2851
+ id: string;
2852
+ version?: string | undefined;
2853
+ } | undefined;
2854
+ type?: "message" | "user" | "node" | "actor" | undefined;
2855
+ custom?: {
2856
+ title: string;
2857
+ icon?: string | undefined;
2858
+ type?: string | undefined;
2859
+ url?: string | undefined;
2860
+ color?: string | undefined;
2861
+ summary?: string | undefined;
2862
+ properties?: Record<string, string | number> | undefined;
2863
+ height?: number | undefined;
2864
+ menu?: {
2865
+ label: string;
2866
+ url?: string | undefined;
2867
+ }[] | undefined;
2868
+ } | undefined;
2869
+ service?: {
2870
+ id: string;
2871
+ version?: string | undefined;
2872
+ } | undefined;
2873
+ flow?: {
2874
+ id: string;
2875
+ version?: string | undefined;
2876
+ } | undefined;
2877
+ summary?: string | undefined;
2878
+ actor?: {
2879
+ name: string;
2880
+ } | undefined;
2881
+ externalSystem?: {
2882
+ name: string;
2883
+ url?: string | undefined;
2884
+ summary?: string | undefined;
2885
+ } | undefined;
2886
+ next_step?: string | number | {
2887
+ id: string | number;
2888
+ label?: string | undefined;
2889
+ } | undefined;
2890
+ next_steps?: (string | number | {
2891
+ id: string | number;
2892
+ label?: string | undefined;
2893
+ } | undefined)[] | undefined;
2894
+ }[];
2895
+ sidebar?: {
2896
+ label?: string | undefined;
2897
+ badge?: string | undefined;
2898
+ } | undefined;
2899
+ summary?: string | undefined;
2900
+ draft?: boolean | {
2901
+ message: string;
2902
+ title?: string | undefined;
2903
+ } | undefined;
2904
+ badges?: {
2905
+ content: string;
2906
+ backgroundColor: string;
2907
+ textColor: string;
2908
+ icon?: string | undefined;
2909
+ }[] | undefined;
2910
+ owners?: (string | {
2911
+ id: string;
2912
+ collection: "users" | "teams";
2913
+ })[] | undefined;
2914
+ schemaPath?: string | undefined;
2915
+ repository?: {
2916
+ language?: string | undefined;
2917
+ url?: string | undefined;
2918
+ } | undefined;
2919
+ specifications?: {
2920
+ openapiPath?: string | undefined;
2921
+ asyncapiPath?: string | undefined;
2922
+ } | {
2923
+ path: string;
2924
+ type: "asyncapi" | "openapi";
2925
+ name?: string | undefined;
2926
+ }[] | undefined;
2927
+ hidden?: boolean | undefined;
2928
+ resourceGroups?: {
2929
+ items: {
2930
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
2931
+ id: string;
2932
+ version?: string | undefined;
2933
+ }[];
2934
+ id?: string | undefined;
2935
+ title?: string | undefined;
2936
+ limit?: number | undefined;
2937
+ sidebar?: boolean | undefined;
2938
+ }[] | undefined;
2939
+ styles?: {
2940
+ icon?: string | undefined;
2941
+ node?: {
2942
+ label?: string | undefined;
2943
+ color?: string | undefined;
2944
+ } | undefined;
2945
+ } | undefined;
2946
+ deprecated?: boolean | {
2947
+ message?: string | undefined;
2948
+ date?: string | Date | undefined;
2949
+ } | undefined;
2950
+ visualiser?: boolean | undefined;
2951
+ versions?: string[] | undefined;
2952
+ latestVersion?: string | undefined;
2953
+ catalog?: {
2954
+ path: string;
2955
+ type: string;
2956
+ filePath: string;
2957
+ astroContentFilePath: string;
2958
+ publicPath: string;
2959
+ } | undefined;
2960
+ }>;
2961
+ readonly entity: import("zod").ZodObject<{
2962
+ aggregateRoot: import("zod").ZodOptional<import("zod").ZodBoolean>;
2963
+ identifier: import("zod").ZodOptional<import("zod").ZodString>;
2964
+ properties: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2965
+ name: import("zod").ZodString;
2966
+ type: import("zod").ZodString;
2967
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
2968
+ description: import("zod").ZodOptional<import("zod").ZodString>;
2969
+ references: import("zod").ZodOptional<import("zod").ZodString>;
2970
+ referencesIdentifier: import("zod").ZodOptional<import("zod").ZodString>;
2971
+ relationType: import("zod").ZodOptional<import("zod").ZodString>;
2972
+ }, "strip", import("zod").ZodTypeAny, {
2973
+ type: string;
2974
+ name: string;
2975
+ description?: string | undefined;
2976
+ required?: boolean | undefined;
2977
+ references?: string | undefined;
2978
+ referencesIdentifier?: string | undefined;
2979
+ relationType?: string | undefined;
2980
+ }, {
2981
+ type: string;
2982
+ name: string;
2983
+ description?: string | undefined;
2984
+ required?: boolean | undefined;
2985
+ references?: string | undefined;
2986
+ referencesIdentifier?: string | undefined;
2987
+ relationType?: string | undefined;
2988
+ }>, "many">>;
2989
+ services: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
2990
+ domains: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
2991
+ } & {
2992
+ id: import("zod").ZodString;
2993
+ name: import("zod").ZodString;
2994
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
2995
+ version: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2996
+ draft: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
2997
+ title: import("zod").ZodOptional<import("zod").ZodString>;
2998
+ message: import("zod").ZodString;
2999
+ }, "strip", import("zod").ZodTypeAny, {
3000
+ message: string;
3001
+ title?: string | undefined;
3002
+ }, {
3003
+ message: string;
3004
+ title?: string | undefined;
3005
+ }>]>>;
3006
+ badges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
3007
+ content: import("zod").ZodString;
3008
+ backgroundColor: import("zod").ZodString;
3009
+ textColor: import("zod").ZodString;
3010
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
3011
+ }, "strip", import("zod").ZodTypeAny, {
3012
+ content: string;
3013
+ backgroundColor: string;
3014
+ textColor: string;
3015
+ icon?: string | undefined;
3016
+ }, {
3017
+ content: string;
3018
+ backgroundColor: string;
3019
+ textColor: string;
3020
+ icon?: string | undefined;
3021
+ }>, "many">>;
3022
+ owners: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3023
+ id: import("zod").ZodString;
3024
+ collection: import("zod").ZodEnum<["users", "teams"]>;
3025
+ }, "strip", import("zod").ZodTypeAny, {
3026
+ id: string;
3027
+ collection: "users" | "teams";
3028
+ }, {
3029
+ id: string;
3030
+ collection: "users" | "teams";
3031
+ }>]>, {
3032
+ id: string;
3033
+ }, string | {
3034
+ id: string;
3035
+ collection: "users" | "teams";
3036
+ }>, "many">>;
3037
+ schemaPath: import("zod").ZodOptional<import("zod").ZodString>;
3038
+ sidebar: import("zod").ZodOptional<import("zod").ZodObject<{
3039
+ label: import("zod").ZodOptional<import("zod").ZodString>;
3040
+ badge: import("zod").ZodOptional<import("zod").ZodString>;
3041
+ }, "strip", import("zod").ZodTypeAny, {
3042
+ label?: string | undefined;
3043
+ badge?: string | undefined;
3044
+ }, {
3045
+ label?: string | undefined;
3046
+ badge?: string | undefined;
3047
+ }>>;
3048
+ repository: import("zod").ZodOptional<import("zod").ZodObject<{
3049
+ language: import("zod").ZodOptional<import("zod").ZodString>;
3050
+ url: import("zod").ZodOptional<import("zod").ZodString>;
3051
+ }, "strip", import("zod").ZodTypeAny, {
3052
+ language?: string | undefined;
3053
+ url?: string | undefined;
3054
+ }, {
3055
+ language?: string | undefined;
3056
+ url?: string | undefined;
3057
+ }>>;
3058
+ specifications: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
3059
+ openapiPath: import("zod").ZodOptional<import("zod").ZodString>;
3060
+ asyncapiPath: import("zod").ZodOptional<import("zod").ZodString>;
3061
+ }, "strip", import("zod").ZodTypeAny, {
3062
+ openapiPath?: string | undefined;
3063
+ asyncapiPath?: string | undefined;
3064
+ }, {
3065
+ openapiPath?: string | undefined;
3066
+ asyncapiPath?: string | undefined;
3067
+ }>, import("zod").ZodArray<import("zod").ZodObject<{
3068
+ type: import("zod").ZodEnum<["openapi", "asyncapi"]>;
3069
+ path: import("zod").ZodString;
3070
+ name: import("zod").ZodOptional<import("zod").ZodString>;
3071
+ }, "strip", import("zod").ZodTypeAny, {
3072
+ path: string;
3073
+ type: "asyncapi" | "openapi";
3074
+ name?: string | undefined;
3075
+ }, {
3076
+ path: string;
3077
+ type: "asyncapi" | "openapi";
3078
+ name?: string | undefined;
3079
+ }>, "many">]>>;
3080
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
3081
+ resourceGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
3082
+ id: import("zod").ZodOptional<import("zod").ZodString>;
3083
+ title: import("zod").ZodOptional<import("zod").ZodString>;
3084
+ items: import("zod").ZodArray<import("zod").ZodObject<{
3085
+ id: import("zod").ZodString;
3086
+ version: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
3087
+ type: import("zod").ZodEnum<["service", "event", "command", "query", "flow", "channel", "domain", "user", "team"]>;
3088
+ }, "strip", import("zod").ZodTypeAny, {
3089
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
3090
+ id: string;
3091
+ version: string;
3092
+ }, {
3093
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
3094
+ id: string;
3095
+ version?: string | undefined;
3096
+ }>, "many">;
3097
+ limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
3098
+ sidebar: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
3099
+ }, "strip", import("zod").ZodTypeAny, {
3100
+ items: {
3101
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
3102
+ id: string;
3103
+ version: string;
3104
+ }[];
3105
+ limit: number;
3106
+ sidebar: boolean;
3107
+ id?: string | undefined;
3108
+ title?: string | undefined;
3109
+ }, {
3110
+ items: {
3111
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
3112
+ id: string;
3113
+ version?: string | undefined;
3114
+ }[];
3115
+ id?: string | undefined;
3116
+ title?: string | undefined;
3117
+ limit?: number | undefined;
3118
+ sidebar?: boolean | undefined;
3119
+ }>, "many">>;
3120
+ styles: import("zod").ZodOptional<import("zod").ZodObject<{
3121
+ icon: import("zod").ZodOptional<import("zod").ZodString>;
3122
+ node: import("zod").ZodOptional<import("zod").ZodObject<{
3123
+ color: import("zod").ZodOptional<import("zod").ZodString>;
3124
+ label: import("zod").ZodOptional<import("zod").ZodString>;
3125
+ }, "strip", import("zod").ZodTypeAny, {
3126
+ label?: string | undefined;
3127
+ color?: string | undefined;
3128
+ }, {
3129
+ label?: string | undefined;
3130
+ color?: string | undefined;
3131
+ }>>;
3132
+ }, "strip", import("zod").ZodTypeAny, {
3133
+ icon?: string | undefined;
3134
+ node?: {
3135
+ label?: string | undefined;
3136
+ color?: string | undefined;
3137
+ } | undefined;
3138
+ }, {
3139
+ icon?: string | undefined;
3140
+ node?: {
3141
+ label?: string | undefined;
3142
+ color?: string | undefined;
3143
+ } | undefined;
3144
+ }>>;
3145
+ deprecated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodObject<{
3146
+ message: import("zod").ZodOptional<import("zod").ZodString>;
3147
+ date: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
3148
+ }, "strip", import("zod").ZodTypeAny, {
3149
+ message?: string | undefined;
3150
+ date?: string | Date | undefined;
3151
+ }, {
3152
+ message?: string | undefined;
3153
+ date?: string | Date | undefined;
3154
+ }>, import("zod").ZodOptional<import("zod").ZodBoolean>]>>;
3155
+ visualiser: import("zod").ZodOptional<import("zod").ZodBoolean>;
3156
+ versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
3157
+ latestVersion: import("zod").ZodOptional<import("zod").ZodString>;
3158
+ catalog: import("zod").ZodOptional<import("zod").ZodObject<{
3159
+ path: import("zod").ZodString;
3160
+ filePath: import("zod").ZodString;
3161
+ astroContentFilePath: import("zod").ZodString;
3162
+ publicPath: import("zod").ZodString;
3163
+ type: import("zod").ZodString;
3164
+ }, "strip", import("zod").ZodTypeAny, {
3165
+ path: string;
3166
+ type: string;
3167
+ filePath: string;
3168
+ astroContentFilePath: string;
3169
+ publicPath: string;
3170
+ }, {
3171
+ path: string;
3172
+ type: string;
3173
+ filePath: string;
3174
+ astroContentFilePath: string;
3175
+ publicPath: string;
3176
+ }>>;
3177
+ }, "strip", import("zod").ZodTypeAny, {
3178
+ id: string;
3179
+ name: string;
3180
+ version: string;
3181
+ sidebar?: {
3182
+ label?: string | undefined;
3183
+ badge?: string | undefined;
3184
+ } | undefined;
3185
+ summary?: string | undefined;
3186
+ draft?: boolean | {
3187
+ message: string;
3188
+ title?: string | undefined;
3189
+ } | undefined;
3190
+ badges?: {
3191
+ content: string;
3192
+ backgroundColor: string;
3193
+ textColor: string;
3194
+ icon?: string | undefined;
3195
+ }[] | undefined;
3196
+ owners?: {
3197
+ id: string;
3198
+ }[] | undefined;
3199
+ schemaPath?: string | undefined;
3200
+ repository?: {
3201
+ language?: string | undefined;
3202
+ url?: string | undefined;
3203
+ } | undefined;
3204
+ specifications?: {
3205
+ openapiPath?: string | undefined;
3206
+ asyncapiPath?: string | undefined;
3207
+ } | {
3208
+ path: string;
3209
+ type: "asyncapi" | "openapi";
3210
+ name?: string | undefined;
3211
+ }[] | undefined;
3212
+ hidden?: boolean | undefined;
3213
+ resourceGroups?: {
3214
+ items: {
3215
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
3216
+ id: string;
3217
+ version: string;
3218
+ }[];
3219
+ limit: number;
3220
+ sidebar: boolean;
3221
+ id?: string | undefined;
3222
+ title?: string | undefined;
3223
+ }[] | undefined;
3224
+ styles?: {
3225
+ icon?: string | undefined;
3226
+ node?: {
3227
+ label?: string | undefined;
3228
+ color?: string | undefined;
3229
+ } | undefined;
3230
+ } | undefined;
3231
+ deprecated?: boolean | {
3232
+ message?: string | undefined;
3233
+ date?: string | Date | undefined;
3234
+ } | undefined;
3235
+ visualiser?: boolean | undefined;
3236
+ versions?: string[] | undefined;
3237
+ latestVersion?: string | undefined;
3238
+ catalog?: {
3239
+ path: string;
3240
+ type: string;
3241
+ filePath: string;
3242
+ astroContentFilePath: string;
3243
+ publicPath: string;
3244
+ } | undefined;
3245
+ services?: any[] | undefined;
3246
+ domains?: any[] | undefined;
3247
+ properties?: {
3248
+ type: string;
3249
+ name: string;
3250
+ description?: string | undefined;
3251
+ required?: boolean | undefined;
3252
+ references?: string | undefined;
3253
+ referencesIdentifier?: string | undefined;
3254
+ relationType?: string | undefined;
3255
+ }[] | undefined;
3256
+ aggregateRoot?: boolean | undefined;
3257
+ identifier?: string | undefined;
3258
+ }, {
3259
+ id: string;
3260
+ name: string;
3261
+ version: string;
3262
+ sidebar?: {
3263
+ label?: string | undefined;
3264
+ badge?: string | undefined;
3265
+ } | undefined;
3266
+ summary?: string | undefined;
3267
+ draft?: boolean | {
3268
+ message: string;
3269
+ title?: string | undefined;
3270
+ } | undefined;
3271
+ badges?: {
3272
+ content: string;
3273
+ backgroundColor: string;
3274
+ textColor: string;
3275
+ icon?: string | undefined;
3276
+ }[] | undefined;
3277
+ owners?: (string | {
3278
+ id: string;
3279
+ collection: "users" | "teams";
3280
+ })[] | undefined;
3281
+ schemaPath?: string | undefined;
3282
+ repository?: {
3283
+ language?: string | undefined;
3284
+ url?: string | undefined;
3285
+ } | undefined;
3286
+ specifications?: {
3287
+ openapiPath?: string | undefined;
3288
+ asyncapiPath?: string | undefined;
3289
+ } | {
3290
+ path: string;
3291
+ type: "asyncapi" | "openapi";
3292
+ name?: string | undefined;
3293
+ }[] | undefined;
3294
+ hidden?: boolean | undefined;
3295
+ resourceGroups?: {
3296
+ items: {
3297
+ type: "service" | "event" | "command" | "query" | "flow" | "channel" | "domain" | "user" | "team";
3298
+ id: string;
3299
+ version?: string | undefined;
3300
+ }[];
3301
+ id?: string | undefined;
3302
+ title?: string | undefined;
3303
+ limit?: number | undefined;
3304
+ sidebar?: boolean | undefined;
3305
+ }[] | undefined;
3306
+ styles?: {
3307
+ icon?: string | undefined;
3308
+ node?: {
3309
+ label?: string | undefined;
3310
+ color?: string | undefined;
3311
+ } | undefined;
3312
+ } | undefined;
3313
+ deprecated?: boolean | {
3314
+ message?: string | undefined;
3315
+ date?: string | Date | undefined;
3316
+ } | undefined;
3317
+ visualiser?: boolean | undefined;
3318
+ versions?: string[] | undefined;
3319
+ latestVersion?: string | undefined;
3320
+ catalog?: {
3321
+ path: string;
3322
+ type: string;
3323
+ filePath: string;
3324
+ astroContentFilePath: string;
3325
+ publicPath: string;
3326
+ } | undefined;
3327
+ services?: any[] | undefined;
3328
+ domains?: any[] | undefined;
3329
+ properties?: {
3330
+ type: string;
3331
+ name: string;
3332
+ description?: string | undefined;
3333
+ required?: boolean | undefined;
3334
+ references?: string | undefined;
3335
+ referencesIdentifier?: string | undefined;
3336
+ relationType?: string | undefined;
3337
+ }[] | undefined;
3338
+ aggregateRoot?: boolean | undefined;
3339
+ identifier?: string | undefined;
3340
+ }>;
3341
+ readonly user: import("zod").ZodObject<{
3342
+ id: import("zod").ZodString;
3343
+ name: import("zod").ZodString;
3344
+ avatarUrl: import("zod").ZodString;
3345
+ role: import("zod").ZodOptional<import("zod").ZodString>;
3346
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
3347
+ email: import("zod").ZodOptional<import("zod").ZodString>;
3348
+ slackDirectMessageUrl: import("zod").ZodOptional<import("zod").ZodString>;
3349
+ msTeamsDirectMessageUrl: import("zod").ZodOptional<import("zod").ZodString>;
3350
+ ownedDomains: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3351
+ ownedServices: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3352
+ ownedEvents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3353
+ ownedCommands: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3354
+ ownedQueries: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3355
+ associatedTeams: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3356
+ }, "strip", import("zod").ZodTypeAny, {
3357
+ id: string;
3358
+ name: string;
3359
+ avatarUrl: string;
3360
+ hidden?: boolean | undefined;
3361
+ role?: string | undefined;
3362
+ email?: string | undefined;
3363
+ slackDirectMessageUrl?: string | undefined;
3364
+ msTeamsDirectMessageUrl?: string | undefined;
3365
+ ownedDomains?: any[] | undefined;
3366
+ ownedServices?: any[] | undefined;
3367
+ ownedEvents?: any[] | undefined;
3368
+ ownedCommands?: any[] | undefined;
3369
+ ownedQueries?: any[] | undefined;
3370
+ associatedTeams?: any[] | undefined;
3371
+ }, {
3372
+ id: string;
3373
+ name: string;
3374
+ avatarUrl: string;
3375
+ hidden?: boolean | undefined;
3376
+ role?: string | undefined;
3377
+ email?: string | undefined;
3378
+ slackDirectMessageUrl?: string | undefined;
3379
+ msTeamsDirectMessageUrl?: string | undefined;
3380
+ ownedDomains?: any[] | undefined;
3381
+ ownedServices?: any[] | undefined;
3382
+ ownedEvents?: any[] | undefined;
3383
+ ownedCommands?: any[] | undefined;
3384
+ ownedQueries?: any[] | undefined;
3385
+ associatedTeams?: any[] | undefined;
3386
+ }>;
3387
+ readonly team: import("zod").ZodObject<{
3388
+ id: import("zod").ZodString;
3389
+ name: import("zod").ZodString;
3390
+ summary: import("zod").ZodOptional<import("zod").ZodString>;
3391
+ email: import("zod").ZodOptional<import("zod").ZodString>;
3392
+ hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
3393
+ slackDirectMessageUrl: import("zod").ZodOptional<import("zod").ZodString>;
3394
+ msTeamsDirectMessageUrl: import("zod").ZodOptional<import("zod").ZodString>;
3395
+ members: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3396
+ ownedCommands: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3397
+ ownedQueries: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3398
+ ownedDomains: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3399
+ ownedServices: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3400
+ ownedEvents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodAny, "many">>;
3401
+ }, "strip", import("zod").ZodTypeAny, {
3402
+ id: string;
3403
+ name: string;
3404
+ summary?: string | undefined;
3405
+ hidden?: boolean | undefined;
3406
+ email?: string | undefined;
3407
+ slackDirectMessageUrl?: string | undefined;
3408
+ msTeamsDirectMessageUrl?: string | undefined;
3409
+ ownedDomains?: any[] | undefined;
3410
+ ownedServices?: any[] | undefined;
3411
+ ownedEvents?: any[] | undefined;
3412
+ ownedCommands?: any[] | undefined;
3413
+ ownedQueries?: any[] | undefined;
3414
+ members?: any[] | undefined;
3415
+ }, {
3416
+ id: string;
3417
+ name: string;
3418
+ summary?: string | undefined;
3419
+ hidden?: boolean | undefined;
3420
+ email?: string | undefined;
3421
+ slackDirectMessageUrl?: string | undefined;
3422
+ msTeamsDirectMessageUrl?: string | undefined;
3423
+ ownedDomains?: any[] | undefined;
3424
+ ownedServices?: any[] | undefined;
3425
+ ownedEvents?: any[] | undefined;
3426
+ ownedCommands?: any[] | undefined;
3427
+ ownedQueries?: any[] | undefined;
3428
+ members?: any[] | undefined;
3429
+ }>;
3430
+ };
3431
+ export type ResourceType = keyof typeof schemas;
3432
+ //# sourceMappingURL=index.d.ts.map