@bsb/registry 1.0.4 → 1.1.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 (38) hide show
  1. package/README.md +1 -1
  2. package/lib/.bsb/clients/service-bsb-registry.d.ts +348 -982
  3. package/lib/.bsb/clients/service-bsb-registry.d.ts.map +1 -1
  4. package/lib/.bsb/clients/service-bsb-registry.js +287 -291
  5. package/lib/.bsb/clients/service-bsb-registry.js.map +1 -1
  6. package/lib/plugins/service-bsb-registry/auth.d.ts +2 -2
  7. package/lib/plugins/service-bsb-registry/auth.d.ts.map +1 -1
  8. package/lib/plugins/service-bsb-registry/auth.js +5 -9
  9. package/lib/plugins/service-bsb-registry/auth.js.map +1 -1
  10. package/lib/plugins/service-bsb-registry/db/file.d.ts +2 -2
  11. package/lib/plugins/service-bsb-registry/db/file.d.ts.map +1 -1
  12. package/lib/plugins/service-bsb-registry/db/file.js +3 -40
  13. package/lib/plugins/service-bsb-registry/db/file.js.map +1 -1
  14. package/lib/plugins/service-bsb-registry/db/index.d.ts +1 -1
  15. package/lib/plugins/service-bsb-registry/db/index.d.ts.map +1 -1
  16. package/lib/plugins/service-bsb-registry/db/index.js +3 -6
  17. package/lib/plugins/service-bsb-registry/db/index.js.map +1 -1
  18. package/lib/plugins/service-bsb-registry/index.d.ts +377 -1020
  19. package/lib/plugins/service-bsb-registry/index.d.ts.map +1 -1
  20. package/lib/plugins/service-bsb-registry/index.js +58 -95
  21. package/lib/plugins/service-bsb-registry/index.js.map +1 -1
  22. package/lib/plugins/service-bsb-registry/types.d.ts +197 -517
  23. package/lib/plugins/service-bsb-registry/types.d.ts.map +1 -1
  24. package/lib/plugins/service-bsb-registry/types.js +164 -167
  25. package/lib/plugins/service-bsb-registry/types.js.map +1 -1
  26. package/lib/plugins/service-bsb-registry-ui/http-server.d.ts +2 -2
  27. package/lib/plugins/service-bsb-registry-ui/http-server.d.ts.map +1 -1
  28. package/lib/plugins/service-bsb-registry-ui/http-server.js +229 -181
  29. package/lib/plugins/service-bsb-registry-ui/http-server.js.map +1 -1
  30. package/lib/plugins/service-bsb-registry-ui/index.d.ts +27 -27
  31. package/lib/plugins/service-bsb-registry-ui/index.d.ts.map +1 -1
  32. package/lib/plugins/service-bsb-registry-ui/index.js +22 -26
  33. package/lib/plugins/service-bsb-registry-ui/index.js.map +1 -1
  34. package/lib/schemas/service-bsb-registry-ui.json +1 -46
  35. package/lib/schemas/service-bsb-registry-ui.plugin.json +2 -47
  36. package/lib/schemas/service-bsb-registry.json +1903 -1693
  37. package/lib/schemas/service-bsb-registry.plugin.json +1 -47
  38. package/package.json +4 -7
@@ -5,1031 +5,397 @@
5
5
  */
6
6
  import { ServiceClient, BSBService } from "@bsb/base";
7
7
  import type { Observable, BSBServiceClientDefinition, EventInputType, EventOutputType } from "@bsb/base";
8
- declare const _registryPluginPublishSchema: {
9
- _bsb: "object";
10
- properties: {
11
- readonly org: import("@bsb/base").BSBStringType;
12
- readonly name: import("@bsb/base").BSBStringType;
13
- readonly version: import("@bsb/base").BSBStringType;
14
- readonly language: import("@bsb/base").BSBEnumType;
15
- readonly metadata: {
16
- _bsb: "object";
17
- properties: {
18
- readonly displayName: import("@bsb/base").BSBStringType;
19
- readonly description: import("@bsb/base").BSBStringType;
20
- readonly category: import("@bsb/base").BSBEnumType;
21
- readonly tags: import("@bsb/base").BSBArrayType;
22
- readonly author: import("@bsb/base").BSBUnionType & {
23
- optional: true;
24
- };
25
- readonly license: import("@bsb/base").BSBStringType & {
26
- optional: true;
27
- };
28
- readonly homepage: import("@bsb/base").BSBStringType & {
29
- optional: true;
30
- };
31
- readonly repository: import("@bsb/base").BSBStringType & {
32
- optional: true;
33
- };
34
- };
35
- required: string[];
36
- description?: string;
37
- optional?: boolean;
38
- nullable?: boolean;
39
- };
40
- readonly eventSchema: import("@bsb/base").BSBType;
41
- readonly capabilities: import("@bsb/base").BSBType & {
42
- optional: true;
43
- };
44
- readonly configSchema: import("@bsb/base").BSBType & {
45
- optional: true;
46
- };
47
- readonly typeDefinitions: {
48
- _bsb: "object";
49
- properties: {
50
- readonly nodejs: import("@bsb/base").BSBStringType & {
51
- optional: true;
52
- };
53
- readonly csharp: import("@bsb/base").BSBStringType & {
54
- optional: true;
55
- };
56
- readonly go: import("@bsb/base").BSBStringType & {
57
- optional: true;
58
- };
59
- readonly java: import("@bsb/base").BSBStringType & {
60
- optional: true;
61
- };
62
- };
63
- required: string[];
64
- description?: string;
65
- optional?: boolean;
66
- nullable?: boolean;
67
- } & {
68
- optional: true;
69
- };
70
- readonly documentation: import("@bsb/base").BSBArrayType;
71
- readonly dependencies: import("@bsb/base").BSBArrayType & {
72
- optional: true;
73
- };
74
- readonly package: {
75
- _bsb: "object";
76
- properties: {
77
- readonly nodejs: import("@bsb/base").BSBStringType & {
78
- optional: true;
79
- };
80
- readonly csharp: import("@bsb/base").BSBStringType & {
81
- optional: true;
82
- };
83
- readonly go: import("@bsb/base").BSBStringType & {
84
- optional: true;
85
- };
86
- readonly java: import("@bsb/base").BSBStringType & {
87
- optional: true;
88
- };
89
- readonly python: import("@bsb/base").BSBStringType & {
90
- optional: true;
91
- };
92
- };
93
- required: string[];
94
- description?: string;
95
- optional?: boolean;
96
- nullable?: boolean;
97
- } & {
98
- optional: true;
99
- };
100
- readonly runtime: {
101
- _bsb: "object";
102
- properties: {
103
- readonly nodejs: import("@bsb/base").BSBStringType & {
104
- optional: true;
105
- };
106
- readonly dotnet: import("@bsb/base").BSBStringType & {
107
- optional: true;
108
- };
109
- readonly go: import("@bsb/base").BSBStringType & {
110
- optional: true;
111
- };
112
- readonly java: import("@bsb/base").BSBStringType & {
113
- optional: true;
114
- };
115
- readonly python: import("@bsb/base").BSBStringType & {
116
- optional: true;
117
- };
118
- };
119
- required: string[];
120
- description?: string;
121
- optional?: boolean;
122
- nullable?: boolean;
123
- } & {
124
- optional: true;
125
- };
126
- readonly visibility: import("@bsb/base").BSBEnumType & {
127
- optional: true;
128
- };
129
- readonly publishedBy: import("@bsb/base").BSBStringType & {
130
- optional: true;
131
- };
132
- };
133
- required: string[];
134
- description?: string;
135
- optional?: boolean;
136
- nullable?: boolean;
137
- };
138
- declare const _registryPluginPublishOutputSchema: {
139
- _bsb: "object";
140
- properties: {
141
- readonly success: import("@bsb/base").BSBBooleanType;
142
- readonly pluginId: import("@bsb/base").BSBStringType;
143
- readonly version: import("@bsb/base").BSBStringType;
144
- readonly message: import("@bsb/base").BSBStringType & {
145
- optional: true;
146
- };
147
- };
148
- required: string[];
149
- description?: string;
150
- optional?: boolean;
151
- nullable?: boolean;
152
- };
153
- declare const _registryPluginGetSchema: {
154
- _bsb: "object";
155
- properties: {
156
- readonly org: import("@bsb/base").BSBStringType;
157
- readonly name: import("@bsb/base").BSBStringType;
158
- readonly version: import("@bsb/base").BSBStringType & {
159
- optional: true;
160
- };
161
- };
162
- required: string[];
163
- description?: string;
164
- optional?: boolean;
165
- nullable?: boolean;
166
- };
167
- declare const _registryPluginGetOutputSchema: {
168
- _bsb: "object";
169
- properties: {
170
- readonly id: import("@bsb/base").BSBStringType;
171
- readonly org: import("@bsb/base").BSBStringType;
172
- readonly name: import("@bsb/base").BSBStringType;
173
- readonly displayName: import("@bsb/base").BSBStringType;
174
- readonly description: import("@bsb/base").BSBStringType;
175
- readonly version: import("@bsb/base").BSBStringType;
176
- readonly majorMinor: import("@bsb/base").BSBStringType;
177
- readonly language: import("@bsb/base").BSBEnumType;
178
- readonly package: {
179
- _bsb: "object";
180
- properties: {
181
- readonly nodejs: import("@bsb/base").BSBStringType & {
182
- optional: true;
183
- };
184
- readonly csharp: import("@bsb/base").BSBStringType & {
185
- optional: true;
186
- };
187
- readonly go: import("@bsb/base").BSBStringType & {
188
- optional: true;
189
- };
190
- readonly java: import("@bsb/base").BSBStringType & {
191
- optional: true;
192
- };
193
- readonly python: import("@bsb/base").BSBStringType & {
194
- optional: true;
195
- };
196
- };
197
- required: string[];
198
- description?: string;
199
- optional?: boolean;
200
- nullable?: boolean;
201
- } & {
202
- optional: true;
203
- };
204
- readonly category: import("@bsb/base").BSBEnumType;
205
- readonly tags: import("@bsb/base").BSBArrayType;
206
- readonly author: import("@bsb/base").BSBUnionType & {
207
- optional: true;
208
- };
209
- readonly license: import("@bsb/base").BSBStringType & {
210
- optional: true;
211
- };
212
- readonly homepage: import("@bsb/base").BSBStringType & {
213
- optional: true;
214
- };
215
- readonly repository: import("@bsb/base").BSBStringType & {
216
- optional: true;
217
- };
218
- readonly visibility: import("@bsb/base").BSBEnumType;
219
- readonly eventSchema: import("@bsb/base").BSBType;
220
- readonly capabilities: import("@bsb/base").BSBType & {
221
- optional: true;
222
- };
223
- readonly configSchema: import("@bsb/base").BSBType & {
224
- optional: true;
225
- };
226
- readonly typeDefinitions: {
227
- _bsb: "object";
228
- properties: {
229
- readonly nodejs: import("@bsb/base").BSBStringType & {
230
- optional: true;
231
- };
232
- readonly csharp: import("@bsb/base").BSBStringType & {
233
- optional: true;
234
- };
235
- readonly go: import("@bsb/base").BSBStringType & {
236
- optional: true;
237
- };
238
- readonly java: import("@bsb/base").BSBStringType & {
239
- optional: true;
240
- };
241
- };
242
- required: string[];
243
- description?: string;
244
- optional?: boolean;
245
- nullable?: boolean;
246
- } & {
247
- optional: true;
248
- };
249
- readonly documentation: import("@bsb/base").BSBArrayType & {
250
- optional: true;
251
- };
252
- readonly dependencies: import("@bsb/base").BSBArrayType & {
253
- optional: true;
254
- };
255
- readonly permissions: import("@bsb/base").BSBArrayType & {
256
- optional: true;
257
- };
258
- readonly eventCount: import("@bsb/base").BSBNumberType;
259
- readonly emitEventCount: import("@bsb/base").BSBNumberType;
260
- readonly onEventCount: import("@bsb/base").BSBNumberType;
261
- readonly returnableEventCount: import("@bsb/base").BSBNumberType;
262
- readonly broadcastEventCount: import("@bsb/base").BSBNumberType;
263
- readonly publishedBy: import("@bsb/base").BSBStringType;
264
- readonly publishedAt: import("@bsb/base").BSBStringType;
265
- readonly updatedAt: import("@bsb/base").BSBStringType;
266
- readonly downloads: import("@bsb/base").BSBNumberType & {
267
- optional: true;
268
- };
269
- readonly runtime: {
270
- _bsb: "object";
271
- properties: {
272
- readonly nodejs: import("@bsb/base").BSBStringType & {
273
- optional: true;
274
- };
275
- readonly dotnet: import("@bsb/base").BSBStringType & {
276
- optional: true;
277
- };
278
- readonly go: import("@bsb/base").BSBStringType & {
279
- optional: true;
280
- };
281
- readonly java: import("@bsb/base").BSBStringType & {
282
- optional: true;
283
- };
284
- readonly python: import("@bsb/base").BSBStringType & {
285
- optional: true;
286
- };
287
- };
288
- required: string[];
289
- description?: string;
290
- optional?: boolean;
291
- nullable?: boolean;
292
- } & {
293
- optional: true;
294
- };
295
- };
296
- required: string[];
297
- description?: string;
298
- optional?: boolean;
299
- nullable?: boolean;
300
- };
301
- declare const _registryPluginListSchema: {
302
- _bsb: "object";
303
- properties: {
304
- readonly org: import("@bsb/base").BSBStringType & {
305
- optional: true;
306
- };
307
- readonly language: import("@bsb/base").BSBEnumType & {
308
- optional: true;
309
- };
310
- readonly category: import("@bsb/base").BSBEnumType & {
311
- optional: true;
312
- };
313
- readonly limit: import("@bsb/base").BSBNumberType & {
314
- optional: true;
315
- };
316
- readonly offset: import("@bsb/base").BSBNumberType & {
317
- optional: true;
318
- };
319
- };
320
- required: string[];
321
- description?: string;
322
- optional?: boolean;
323
- nullable?: boolean;
324
- };
325
- declare const _registryPluginListOutputSchema: {
326
- _bsb: "object";
327
- properties: {
328
- readonly results: import("@bsb/base").BSBArrayType;
329
- readonly total: import("@bsb/base").BSBNumberType;
330
- readonly page: import("@bsb/base").BSBNumberType;
331
- };
332
- required: string[];
333
- description?: string;
334
- optional?: boolean;
335
- nullable?: boolean;
336
- };
337
- declare const _registryPluginSearchSchema: {
338
- _bsb: "object";
339
- properties: {
340
- readonly query: import("@bsb/base").BSBStringType;
341
- readonly language: import("@bsb/base").BSBEnumType & {
342
- optional: true;
343
- };
344
- readonly category: import("@bsb/base").BSBEnumType & {
345
- optional: true;
346
- };
347
- readonly limit: import("@bsb/base").BSBNumberType & {
348
- optional: true;
349
- };
350
- readonly offset: import("@bsb/base").BSBNumberType & {
351
- optional: true;
352
- };
353
- };
354
- required: string[];
355
- description?: string;
356
- optional?: boolean;
357
- nullable?: boolean;
358
- };
359
- declare const _registryPluginSearchOutputSchema: {
360
- _bsb: "object";
361
- properties: {
362
- readonly results: import("@bsb/base").BSBArrayType;
363
- readonly total: import("@bsb/base").BSBNumberType;
364
- readonly query: import("@bsb/base").BSBStringType;
365
- };
366
- required: string[];
367
- description?: string;
368
- optional?: boolean;
369
- nullable?: boolean;
370
- };
371
- declare const _registryPluginDeleteSchema: {
372
- _bsb: "object";
373
- properties: {
374
- readonly org: import("@bsb/base").BSBStringType;
375
- readonly name: import("@bsb/base").BSBStringType;
376
- readonly version: import("@bsb/base").BSBStringType & {
377
- optional: true;
378
- };
379
- };
380
- required: string[];
381
- description?: string;
382
- optional?: boolean;
383
- nullable?: boolean;
384
- };
385
- declare const _registryPluginDeleteOutputSchema: {
386
- _bsb: "object";
387
- properties: {
388
- readonly success: import("@bsb/base").BSBBooleanType;
389
- readonly deleted: import("@bsb/base").BSBNumberType;
390
- };
391
- required: string[];
392
- description?: string;
393
- optional?: boolean;
394
- nullable?: boolean;
395
- };
396
- declare const _registryPluginVersionsSchema: {
397
- _bsb: "object";
398
- properties: {
399
- readonly org: import("@bsb/base").BSBStringType;
400
- readonly name: import("@bsb/base").BSBStringType;
401
- readonly majorMinor: import("@bsb/base").BSBStringType & {
402
- optional: true;
403
- };
404
- };
405
- required: string[];
406
- description?: string;
407
- optional?: boolean;
408
- nullable?: boolean;
409
- };
410
- declare const _registryPluginVersionsOutputSchema: {
411
- _bsb: "object";
412
- properties: {
413
- readonly versions: import("@bsb/base").BSBArrayType;
414
- readonly latest: import("@bsb/base").BSBStringType;
415
- readonly latestForMajorMinor: import("@bsb/base").BSBStringType;
416
- };
417
- required: string[];
418
- description?: string;
419
- optional?: boolean;
420
- nullable?: boolean;
421
- };
422
- declare const _registryStatsGetSchema: {
423
- _bsb: "object";
424
- properties: {};
425
- required: string[];
426
- description?: string;
427
- optional?: boolean;
428
- nullable?: boolean;
429
- };
430
- declare const _registryStatsGetOutputSchema: {
431
- _bsb: "object";
432
- properties: {
433
- readonly totalPlugins: import("@bsb/base").BSBNumberType;
434
- readonly byLanguage: import("@bsb/base").BSBStringType;
435
- readonly byCategory: import("@bsb/base").BSBStringType;
436
- readonly totalDownloads: import("@bsb/base").BSBNumberType;
437
- };
438
- required: string[];
439
- description?: string;
440
- optional?: boolean;
441
- nullable?: boolean;
442
- };
443
- declare const _registryAuthLoginSchema: {
444
- _bsb: "object";
445
- properties: {
446
- readonly username: import("@bsb/base").BSBStringType;
447
- readonly password: import("@bsb/base").BSBStringType;
448
- };
449
- required: string[];
450
- description?: string;
451
- optional?: boolean;
452
- nullable?: boolean;
453
- };
454
- declare const _registryAuthLoginOutputSchema: {
455
- _bsb: "object";
456
- properties: {
457
- readonly success: import("@bsb/base").BSBBooleanType;
458
- readonly token: import("@bsb/base").BSBStringType & {
459
- optional: true;
460
- };
461
- readonly expiresAt: import("@bsb/base").BSBStringType & {
462
- optional: true;
463
- };
464
- readonly message: import("@bsb/base").BSBStringType & {
465
- optional: true;
466
- };
467
- };
468
- required: string[];
469
- description?: string;
470
- optional?: boolean;
471
- nullable?: boolean;
472
- };
473
- declare const _registryAuthVerifySchema: {
474
- _bsb: "object";
475
- properties: {
476
- readonly token: import("@bsb/base").BSBStringType;
477
- };
478
- required: string[];
479
- description?: string;
480
- optional?: boolean;
481
- nullable?: boolean;
482
- };
483
- declare const _registryAuthVerifyOutputSchema: {
484
- _bsb: "object";
485
- properties: {
486
- readonly valid: import("@bsb/base").BSBBooleanType;
487
- readonly userId: import("@bsb/base").BSBStringType & {
488
- optional: true;
489
- };
490
- readonly permissions: import("@bsb/base").BSBArrayType & {
491
- optional: true;
492
- };
493
- };
494
- required: string[];
495
- description?: string;
496
- optional?: boolean;
497
- nullable?: boolean;
498
- };
8
+ declare const _registryPluginPublishSchema: import("@anyvali/js").ObjectSchema<{
9
+ org: import("@anyvali/js").StringSchema;
10
+ name: import("@anyvali/js").StringSchema;
11
+ version: import("@anyvali/js").StringSchema;
12
+ language: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
13
+ metadata: import("@anyvali/js").ObjectSchema<{
14
+ displayName: import("@anyvali/js").StringSchema;
15
+ description: import("@anyvali/js").StringSchema;
16
+ category: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
17
+ tags: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
18
+ author: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema | import("@anyvali/js").UnionSchema<[import("@bsb/base").BSBType, ...import("@bsb/base").BSBType[]]>>;
19
+ license: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
20
+ homepage: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
21
+ repository: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
22
+ }>;
23
+ eventSchema: import("@anyvali/js").UnknownSchema;
24
+ capabilities: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema>;
25
+ configSchema: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema>;
26
+ typeDefinitions: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
27
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
28
+ csharp: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
29
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
30
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
31
+ }>>;
32
+ documentation: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
33
+ dependencies: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
34
+ package: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
35
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
36
+ csharp: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
37
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
38
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
39
+ python: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
40
+ }>>;
41
+ runtime: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
42
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
43
+ dotnet: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
44
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
45
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
46
+ python: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
47
+ }>>;
48
+ visibility: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
49
+ publishedBy: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
50
+ }>;
51
+ declare const _registryPluginPublishOutputSchema: import("@anyvali/js").ObjectSchema<{
52
+ success: import("@anyvali/js").BoolSchema;
53
+ pluginId: import("@anyvali/js").StringSchema;
54
+ version: import("@anyvali/js").StringSchema;
55
+ message: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
56
+ }>;
57
+ declare const _registryPluginGetSchema: import("@anyvali/js").ObjectSchema<{
58
+ org: import("@anyvali/js").StringSchema;
59
+ name: import("@anyvali/js").StringSchema;
60
+ version: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
61
+ }>;
62
+ declare const _registryPluginGetOutputSchema: import("@anyvali/js").ObjectSchema<{
63
+ id: import("@anyvali/js").StringSchema;
64
+ org: import("@anyvali/js").StringSchema;
65
+ name: import("@anyvali/js").StringSchema;
66
+ displayName: import("@anyvali/js").StringSchema;
67
+ description: import("@anyvali/js").StringSchema;
68
+ version: import("@anyvali/js").StringSchema;
69
+ majorMinor: import("@anyvali/js").StringSchema;
70
+ language: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
71
+ package: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
72
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
73
+ csharp: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
74
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
75
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
76
+ python: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
77
+ }>>;
78
+ category: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
79
+ tags: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
80
+ author: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema | import("@anyvali/js").UnionSchema<[import("@bsb/base").BSBType, ...import("@bsb/base").BSBType[]]>>;
81
+ license: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
82
+ homepage: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
83
+ repository: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
84
+ visibility: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
85
+ eventSchema: import("@anyvali/js").UnknownSchema;
86
+ capabilities: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema>;
87
+ configSchema: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema>;
88
+ typeDefinitions: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
89
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
90
+ csharp: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
91
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
92
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
93
+ }>>;
94
+ documentation: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
95
+ dependencies: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
96
+ permissions: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
97
+ eventCount: import("@bsb/base").BSBType;
98
+ emitEventCount: import("@bsb/base").BSBType;
99
+ onEventCount: import("@bsb/base").BSBType;
100
+ returnableEventCount: import("@bsb/base").BSBType;
101
+ broadcastEventCount: import("@bsb/base").BSBType;
102
+ publishedBy: import("@anyvali/js").StringSchema;
103
+ publishedAt: import("@anyvali/js").StringSchema;
104
+ updatedAt: import("@anyvali/js").StringSchema;
105
+ downloads: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
106
+ runtime: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
107
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
108
+ dotnet: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
109
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
110
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
111
+ python: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
112
+ }>>;
113
+ }>;
114
+ declare const _registryPluginListSchema: import("@anyvali/js").ObjectSchema<{
115
+ org: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
116
+ language: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
117
+ category: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
118
+ limit: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
119
+ offset: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
120
+ }>;
121
+ declare const _registryPluginListOutputSchema: import("@anyvali/js").ObjectSchema<{
122
+ results: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
123
+ total: import("@bsb/base").BSBType;
124
+ page: import("@bsb/base").BSBType;
125
+ }>;
126
+ declare const _registryPluginSearchSchema: import("@anyvali/js").ObjectSchema<{
127
+ query: import("@anyvali/js").StringSchema;
128
+ language: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
129
+ category: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
130
+ limit: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
131
+ offset: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
132
+ }>;
133
+ declare const _registryPluginSearchOutputSchema: import("@anyvali/js").ObjectSchema<{
134
+ results: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
135
+ total: import("@bsb/base").BSBType;
136
+ query: import("@anyvali/js").StringSchema;
137
+ }>;
138
+ declare const _registryPluginDeleteSchema: import("@anyvali/js").ObjectSchema<{
139
+ org: import("@anyvali/js").StringSchema;
140
+ name: import("@anyvali/js").StringSchema;
141
+ version: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
142
+ }>;
143
+ declare const _registryPluginDeleteOutputSchema: import("@anyvali/js").ObjectSchema<{
144
+ success: import("@anyvali/js").BoolSchema;
145
+ deleted: import("@bsb/base").BSBType;
146
+ }>;
147
+ declare const _registryPluginVersionsSchema: import("@anyvali/js").ObjectSchema<{
148
+ org: import("@anyvali/js").StringSchema;
149
+ name: import("@anyvali/js").StringSchema;
150
+ majorMinor: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
151
+ }>;
152
+ declare const _registryPluginVersionsOutputSchema: import("@anyvali/js").ObjectSchema<{
153
+ versions: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
154
+ latest: import("@anyvali/js").StringSchema;
155
+ latestForMajorMinor: import("@anyvali/js").StringSchema;
156
+ }>;
157
+ declare const _registryStatsGetSchema: import("@anyvali/js").ObjectSchema<{}>;
158
+ declare const _registryStatsGetOutputSchema: import("@anyvali/js").ObjectSchema<{
159
+ totalPlugins: import("@bsb/base").BSBType;
160
+ byLanguage: import("@anyvali/js").StringSchema;
161
+ byCategory: import("@anyvali/js").StringSchema;
162
+ totalDownloads: import("@bsb/base").BSBType;
163
+ }>;
164
+ declare const _registryAuthLoginSchema: import("@anyvali/js").ObjectSchema<{
165
+ username: import("@anyvali/js").StringSchema;
166
+ password: import("@anyvali/js").StringSchema;
167
+ }>;
168
+ declare const _registryAuthLoginOutputSchema: import("@anyvali/js").ObjectSchema<{
169
+ success: import("@anyvali/js").BoolSchema;
170
+ token: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
171
+ expiresAt: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
172
+ message: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
173
+ }>;
174
+ declare const _registryAuthVerifySchema: import("@anyvali/js").ObjectSchema<{
175
+ token: import("@anyvali/js").StringSchema;
176
+ }>;
177
+ declare const _registryAuthVerifyOutputSchema: import("@anyvali/js").ObjectSchema<{
178
+ valid: import("@anyvali/js").BoolSchema;
179
+ userId: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
180
+ permissions: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
181
+ }>;
499
182
  declare const _EventSchemas: {
500
183
  readonly onReturnableEvents: {
501
184
  readonly 'registry.plugin.publish': {
502
- input: {
503
- _bsb: "object";
504
- properties: {
505
- readonly org: import("@bsb/base").BSBStringType;
506
- readonly name: import("@bsb/base").BSBStringType;
507
- readonly version: import("@bsb/base").BSBStringType;
508
- readonly language: import("@bsb/base").BSBEnumType;
509
- readonly metadata: {
510
- _bsb: "object";
511
- properties: {
512
- readonly displayName: import("@bsb/base").BSBStringType;
513
- readonly description: import("@bsb/base").BSBStringType;
514
- readonly category: import("@bsb/base").BSBEnumType;
515
- readonly tags: import("@bsb/base").BSBArrayType;
516
- readonly author: import("@bsb/base").BSBUnionType & {
517
- optional: true;
518
- };
519
- readonly license: import("@bsb/base").BSBStringType & {
520
- optional: true;
521
- };
522
- readonly homepage: import("@bsb/base").BSBStringType & {
523
- optional: true;
524
- };
525
- readonly repository: import("@bsb/base").BSBStringType & {
526
- optional: true;
527
- };
528
- };
529
- required: string[];
530
- description?: string;
531
- optional?: boolean;
532
- nullable?: boolean;
533
- };
534
- readonly eventSchema: import("@bsb/base").BSBType;
535
- readonly capabilities: import("@bsb/base").BSBType & {
536
- optional: true;
537
- };
538
- readonly configSchema: import("@bsb/base").BSBType & {
539
- optional: true;
540
- };
541
- readonly typeDefinitions: {
542
- _bsb: "object";
543
- properties: {
544
- readonly nodejs: import("@bsb/base").BSBStringType & {
545
- optional: true;
546
- };
547
- readonly csharp: import("@bsb/base").BSBStringType & {
548
- optional: true;
549
- };
550
- readonly go: import("@bsb/base").BSBStringType & {
551
- optional: true;
552
- };
553
- readonly java: import("@bsb/base").BSBStringType & {
554
- optional: true;
555
- };
556
- };
557
- required: string[];
558
- description?: string;
559
- optional?: boolean;
560
- nullable?: boolean;
561
- } & {
562
- optional: true;
563
- };
564
- readonly documentation: import("@bsb/base").BSBArrayType;
565
- readonly dependencies: import("@bsb/base").BSBArrayType & {
566
- optional: true;
567
- };
568
- readonly package: {
569
- _bsb: "object";
570
- properties: {
571
- readonly nodejs: import("@bsb/base").BSBStringType & {
572
- optional: true;
573
- };
574
- readonly csharp: import("@bsb/base").BSBStringType & {
575
- optional: true;
576
- };
577
- readonly go: import("@bsb/base").BSBStringType & {
578
- optional: true;
579
- };
580
- readonly java: import("@bsb/base").BSBStringType & {
581
- optional: true;
582
- };
583
- readonly python: import("@bsb/base").BSBStringType & {
584
- optional: true;
585
- };
586
- };
587
- required: string[];
588
- description?: string;
589
- optional?: boolean;
590
- nullable?: boolean;
591
- } & {
592
- optional: true;
593
- };
594
- readonly runtime: {
595
- _bsb: "object";
596
- properties: {
597
- readonly nodejs: import("@bsb/base").BSBStringType & {
598
- optional: true;
599
- };
600
- readonly dotnet: import("@bsb/base").BSBStringType & {
601
- optional: true;
602
- };
603
- readonly go: import("@bsb/base").BSBStringType & {
604
- optional: true;
605
- };
606
- readonly java: import("@bsb/base").BSBStringType & {
607
- optional: true;
608
- };
609
- readonly python: import("@bsb/base").BSBStringType & {
610
- optional: true;
611
- };
612
- };
613
- required: string[];
614
- description?: string;
615
- optional?: boolean;
616
- nullable?: boolean;
617
- } & {
618
- optional: true;
619
- };
620
- readonly visibility: import("@bsb/base").BSBEnumType & {
621
- optional: true;
622
- };
623
- readonly publishedBy: import("@bsb/base").BSBStringType & {
624
- optional: true;
625
- };
626
- };
627
- required: string[];
628
- description?: string;
629
- optional?: boolean;
630
- nullable?: boolean;
631
- };
632
- output: {
633
- _bsb: "object";
634
- properties: {
635
- readonly success: import("@bsb/base").BSBBooleanType;
636
- readonly pluginId: import("@bsb/base").BSBStringType;
637
- readonly version: import("@bsb/base").BSBStringType;
638
- readonly message: import("@bsb/base").BSBStringType & {
639
- optional: true;
640
- };
641
- };
642
- required: string[];
643
- description?: string;
644
- optional?: boolean;
645
- nullable?: boolean;
646
- };
185
+ input: import("@anyvali/js").ObjectSchema<{
186
+ org: import("@anyvali/js").StringSchema;
187
+ name: import("@anyvali/js").StringSchema;
188
+ version: import("@anyvali/js").StringSchema;
189
+ language: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
190
+ metadata: import("@anyvali/js").ObjectSchema<{
191
+ displayName: import("@anyvali/js").StringSchema;
192
+ description: import("@anyvali/js").StringSchema;
193
+ category: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
194
+ tags: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
195
+ author: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema | import("@anyvali/js").UnionSchema<[import("@bsb/base").BSBType, ...import("@bsb/base").BSBType[]]>>;
196
+ license: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
197
+ homepage: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
198
+ repository: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
199
+ }>;
200
+ eventSchema: import("@anyvali/js").UnknownSchema;
201
+ capabilities: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema>;
202
+ configSchema: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema>;
203
+ typeDefinitions: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
204
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
205
+ csharp: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
206
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
207
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
208
+ }>>;
209
+ documentation: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
210
+ dependencies: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
211
+ package: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
212
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
213
+ csharp: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
214
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
215
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
216
+ python: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
217
+ }>>;
218
+ runtime: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
219
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
220
+ dotnet: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
221
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
222
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
223
+ python: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
224
+ }>>;
225
+ visibility: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
226
+ publishedBy: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
227
+ }>;
228
+ output: import("@anyvali/js").ObjectSchema<{
229
+ success: import("@anyvali/js").BoolSchema;
230
+ pluginId: import("@anyvali/js").StringSchema;
231
+ version: import("@anyvali/js").StringSchema;
232
+ message: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
233
+ }>;
647
234
  description?: string;
648
235
  defaultTimeout?: number;
649
236
  readonly __brand: "returnable";
650
237
  };
651
238
  readonly 'registry.plugin.get': {
652
- input: {
653
- _bsb: "object";
654
- properties: {
655
- readonly org: import("@bsb/base").BSBStringType;
656
- readonly name: import("@bsb/base").BSBStringType;
657
- readonly version: import("@bsb/base").BSBStringType & {
658
- optional: true;
659
- };
660
- };
661
- required: string[];
662
- description?: string;
663
- optional?: boolean;
664
- nullable?: boolean;
665
- };
666
- output: {
667
- _bsb: "object";
668
- properties: {
669
- readonly id: import("@bsb/base").BSBStringType;
670
- readonly org: import("@bsb/base").BSBStringType;
671
- readonly name: import("@bsb/base").BSBStringType;
672
- readonly displayName: import("@bsb/base").BSBStringType;
673
- readonly description: import("@bsb/base").BSBStringType;
674
- readonly version: import("@bsb/base").BSBStringType;
675
- readonly majorMinor: import("@bsb/base").BSBStringType;
676
- readonly language: import("@bsb/base").BSBEnumType;
677
- readonly package: {
678
- _bsb: "object";
679
- properties: {
680
- readonly nodejs: import("@bsb/base").BSBStringType & {
681
- optional: true;
682
- };
683
- readonly csharp: import("@bsb/base").BSBStringType & {
684
- optional: true;
685
- };
686
- readonly go: import("@bsb/base").BSBStringType & {
687
- optional: true;
688
- };
689
- readonly java: import("@bsb/base").BSBStringType & {
690
- optional: true;
691
- };
692
- readonly python: import("@bsb/base").BSBStringType & {
693
- optional: true;
694
- };
695
- };
696
- required: string[];
697
- description?: string;
698
- optional?: boolean;
699
- nullable?: boolean;
700
- } & {
701
- optional: true;
702
- };
703
- readonly category: import("@bsb/base").BSBEnumType;
704
- readonly tags: import("@bsb/base").BSBArrayType;
705
- readonly author: import("@bsb/base").BSBUnionType & {
706
- optional: true;
707
- };
708
- readonly license: import("@bsb/base").BSBStringType & {
709
- optional: true;
710
- };
711
- readonly homepage: import("@bsb/base").BSBStringType & {
712
- optional: true;
713
- };
714
- readonly repository: import("@bsb/base").BSBStringType & {
715
- optional: true;
716
- };
717
- readonly visibility: import("@bsb/base").BSBEnumType;
718
- readonly eventSchema: import("@bsb/base").BSBType;
719
- readonly capabilities: import("@bsb/base").BSBType & {
720
- optional: true;
721
- };
722
- readonly configSchema: import("@bsb/base").BSBType & {
723
- optional: true;
724
- };
725
- readonly typeDefinitions: {
726
- _bsb: "object";
727
- properties: {
728
- readonly nodejs: import("@bsb/base").BSBStringType & {
729
- optional: true;
730
- };
731
- readonly csharp: import("@bsb/base").BSBStringType & {
732
- optional: true;
733
- };
734
- readonly go: import("@bsb/base").BSBStringType & {
735
- optional: true;
736
- };
737
- readonly java: import("@bsb/base").BSBStringType & {
738
- optional: true;
739
- };
740
- };
741
- required: string[];
742
- description?: string;
743
- optional?: boolean;
744
- nullable?: boolean;
745
- } & {
746
- optional: true;
747
- };
748
- readonly documentation: import("@bsb/base").BSBArrayType & {
749
- optional: true;
750
- };
751
- readonly dependencies: import("@bsb/base").BSBArrayType & {
752
- optional: true;
753
- };
754
- readonly permissions: import("@bsb/base").BSBArrayType & {
755
- optional: true;
756
- };
757
- readonly eventCount: import("@bsb/base").BSBNumberType;
758
- readonly emitEventCount: import("@bsb/base").BSBNumberType;
759
- readonly onEventCount: import("@bsb/base").BSBNumberType;
760
- readonly returnableEventCount: import("@bsb/base").BSBNumberType;
761
- readonly broadcastEventCount: import("@bsb/base").BSBNumberType;
762
- readonly publishedBy: import("@bsb/base").BSBStringType;
763
- readonly publishedAt: import("@bsb/base").BSBStringType;
764
- readonly updatedAt: import("@bsb/base").BSBStringType;
765
- readonly downloads: import("@bsb/base").BSBNumberType & {
766
- optional: true;
767
- };
768
- readonly runtime: {
769
- _bsb: "object";
770
- properties: {
771
- readonly nodejs: import("@bsb/base").BSBStringType & {
772
- optional: true;
773
- };
774
- readonly dotnet: import("@bsb/base").BSBStringType & {
775
- optional: true;
776
- };
777
- readonly go: import("@bsb/base").BSBStringType & {
778
- optional: true;
779
- };
780
- readonly java: import("@bsb/base").BSBStringType & {
781
- optional: true;
782
- };
783
- readonly python: import("@bsb/base").BSBStringType & {
784
- optional: true;
785
- };
786
- };
787
- required: string[];
788
- description?: string;
789
- optional?: boolean;
790
- nullable?: boolean;
791
- } & {
792
- optional: true;
793
- };
794
- };
795
- required: string[];
796
- description?: string;
797
- optional?: boolean;
798
- nullable?: boolean;
799
- };
239
+ input: import("@anyvali/js").ObjectSchema<{
240
+ org: import("@anyvali/js").StringSchema;
241
+ name: import("@anyvali/js").StringSchema;
242
+ version: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
243
+ }>;
244
+ output: import("@anyvali/js").ObjectSchema<{
245
+ id: import("@anyvali/js").StringSchema;
246
+ org: import("@anyvali/js").StringSchema;
247
+ name: import("@anyvali/js").StringSchema;
248
+ displayName: import("@anyvali/js").StringSchema;
249
+ description: import("@anyvali/js").StringSchema;
250
+ version: import("@anyvali/js").StringSchema;
251
+ majorMinor: import("@anyvali/js").StringSchema;
252
+ language: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
253
+ package: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
254
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
255
+ csharp: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
256
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
257
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
258
+ python: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
259
+ }>>;
260
+ category: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
261
+ tags: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
262
+ author: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema | import("@anyvali/js").UnionSchema<[import("@bsb/base").BSBType, ...import("@bsb/base").BSBType[]]>>;
263
+ license: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
264
+ homepage: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
265
+ repository: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
266
+ visibility: import("@anyvali/js").EnumSchema<readonly (string | number)[]>;
267
+ eventSchema: import("@anyvali/js").UnknownSchema;
268
+ capabilities: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema>;
269
+ configSchema: import("@anyvali/js").OptionalSchema<import("@anyvali/js").UnknownSchema>;
270
+ typeDefinitions: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
271
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
272
+ csharp: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
273
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
274
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
275
+ }>>;
276
+ documentation: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
277
+ dependencies: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
278
+ permissions: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
279
+ eventCount: import("@bsb/base").BSBType;
280
+ emitEventCount: import("@bsb/base").BSBType;
281
+ onEventCount: import("@bsb/base").BSBType;
282
+ returnableEventCount: import("@bsb/base").BSBType;
283
+ broadcastEventCount: import("@bsb/base").BSBType;
284
+ publishedBy: import("@anyvali/js").StringSchema;
285
+ publishedAt: import("@anyvali/js").StringSchema;
286
+ updatedAt: import("@anyvali/js").StringSchema;
287
+ downloads: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
288
+ runtime: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ObjectSchema<{
289
+ nodejs: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
290
+ dotnet: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
291
+ go: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
292
+ java: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
293
+ python: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
294
+ }>>;
295
+ }>;
800
296
  description?: string;
801
297
  defaultTimeout?: number;
802
298
  readonly __brand: "returnable";
803
299
  };
804
300
  readonly 'registry.plugin.list': {
805
- input: {
806
- _bsb: "object";
807
- properties: {
808
- readonly org: import("@bsb/base").BSBStringType & {
809
- optional: true;
810
- };
811
- readonly language: import("@bsb/base").BSBEnumType & {
812
- optional: true;
813
- };
814
- readonly category: import("@bsb/base").BSBEnumType & {
815
- optional: true;
816
- };
817
- readonly limit: import("@bsb/base").BSBNumberType & {
818
- optional: true;
819
- };
820
- readonly offset: import("@bsb/base").BSBNumberType & {
821
- optional: true;
822
- };
823
- };
824
- required: string[];
825
- description?: string;
826
- optional?: boolean;
827
- nullable?: boolean;
828
- };
829
- output: {
830
- _bsb: "object";
831
- properties: {
832
- readonly results: import("@bsb/base").BSBArrayType;
833
- readonly total: import("@bsb/base").BSBNumberType;
834
- readonly page: import("@bsb/base").BSBNumberType;
835
- };
836
- required: string[];
837
- description?: string;
838
- optional?: boolean;
839
- nullable?: boolean;
840
- };
301
+ input: import("@anyvali/js").ObjectSchema<{
302
+ org: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
303
+ language: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
304
+ category: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
305
+ limit: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
306
+ offset: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
307
+ }>;
308
+ output: import("@anyvali/js").ObjectSchema<{
309
+ results: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
310
+ total: import("@bsb/base").BSBType;
311
+ page: import("@bsb/base").BSBType;
312
+ }>;
841
313
  description?: string;
842
314
  defaultTimeout?: number;
843
315
  readonly __brand: "returnable";
844
316
  };
845
317
  readonly 'registry.plugin.search': {
846
- input: {
847
- _bsb: "object";
848
- properties: {
849
- readonly query: import("@bsb/base").BSBStringType;
850
- readonly language: import("@bsb/base").BSBEnumType & {
851
- optional: true;
852
- };
853
- readonly category: import("@bsb/base").BSBEnumType & {
854
- optional: true;
855
- };
856
- readonly limit: import("@bsb/base").BSBNumberType & {
857
- optional: true;
858
- };
859
- readonly offset: import("@bsb/base").BSBNumberType & {
860
- optional: true;
861
- };
862
- };
863
- required: string[];
864
- description?: string;
865
- optional?: boolean;
866
- nullable?: boolean;
867
- };
868
- output: {
869
- _bsb: "object";
870
- properties: {
871
- readonly results: import("@bsb/base").BSBArrayType;
872
- readonly total: import("@bsb/base").BSBNumberType;
873
- readonly query: import("@bsb/base").BSBStringType;
874
- };
875
- required: string[];
876
- description?: string;
877
- optional?: boolean;
878
- nullable?: boolean;
879
- };
318
+ input: import("@anyvali/js").ObjectSchema<{
319
+ query: import("@anyvali/js").StringSchema;
320
+ language: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
321
+ category: import("@anyvali/js").OptionalSchema<import("@anyvali/js").EnumSchema<readonly (string | number)[]>>;
322
+ limit: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
323
+ offset: import("@anyvali/js").OptionalSchema<import("@bsb/base").BSBType>;
324
+ }>;
325
+ output: import("@anyvali/js").ObjectSchema<{
326
+ results: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
327
+ total: import("@bsb/base").BSBType;
328
+ query: import("@anyvali/js").StringSchema;
329
+ }>;
880
330
  description?: string;
881
331
  defaultTimeout?: number;
882
332
  readonly __brand: "returnable";
883
333
  };
884
334
  readonly 'registry.plugin.delete': {
885
- input: {
886
- _bsb: "object";
887
- properties: {
888
- readonly org: import("@bsb/base").BSBStringType;
889
- readonly name: import("@bsb/base").BSBStringType;
890
- readonly version: import("@bsb/base").BSBStringType & {
891
- optional: true;
892
- };
893
- };
894
- required: string[];
895
- description?: string;
896
- optional?: boolean;
897
- nullable?: boolean;
898
- };
899
- output: {
900
- _bsb: "object";
901
- properties: {
902
- readonly success: import("@bsb/base").BSBBooleanType;
903
- readonly deleted: import("@bsb/base").BSBNumberType;
904
- };
905
- required: string[];
906
- description?: string;
907
- optional?: boolean;
908
- nullable?: boolean;
909
- };
335
+ input: import("@anyvali/js").ObjectSchema<{
336
+ org: import("@anyvali/js").StringSchema;
337
+ name: import("@anyvali/js").StringSchema;
338
+ version: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
339
+ }>;
340
+ output: import("@anyvali/js").ObjectSchema<{
341
+ success: import("@anyvali/js").BoolSchema;
342
+ deleted: import("@bsb/base").BSBType;
343
+ }>;
910
344
  description?: string;
911
345
  defaultTimeout?: number;
912
346
  readonly __brand: "returnable";
913
347
  };
914
348
  readonly 'registry.plugin.versions': {
915
- input: {
916
- _bsb: "object";
917
- properties: {
918
- readonly org: import("@bsb/base").BSBStringType;
919
- readonly name: import("@bsb/base").BSBStringType;
920
- readonly majorMinor: import("@bsb/base").BSBStringType & {
921
- optional: true;
922
- };
923
- };
924
- required: string[];
925
- description?: string;
926
- optional?: boolean;
927
- nullable?: boolean;
928
- };
929
- output: {
930
- _bsb: "object";
931
- properties: {
932
- readonly versions: import("@bsb/base").BSBArrayType;
933
- readonly latest: import("@bsb/base").BSBStringType;
934
- readonly latestForMajorMinor: import("@bsb/base").BSBStringType;
935
- };
936
- required: string[];
937
- description?: string;
938
- optional?: boolean;
939
- nullable?: boolean;
940
- };
349
+ input: import("@anyvali/js").ObjectSchema<{
350
+ org: import("@anyvali/js").StringSchema;
351
+ name: import("@anyvali/js").StringSchema;
352
+ majorMinor: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
353
+ }>;
354
+ output: import("@anyvali/js").ObjectSchema<{
355
+ versions: import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>;
356
+ latest: import("@anyvali/js").StringSchema;
357
+ latestForMajorMinor: import("@anyvali/js").StringSchema;
358
+ }>;
941
359
  description?: string;
942
360
  defaultTimeout?: number;
943
361
  readonly __brand: "returnable";
944
362
  };
945
363
  readonly 'registry.stats.get': {
946
- input: {
947
- _bsb: "object";
948
- properties: {};
949
- required: string[];
950
- description?: string;
951
- optional?: boolean;
952
- nullable?: boolean;
953
- };
954
- output: {
955
- _bsb: "object";
956
- properties: {
957
- readonly totalPlugins: import("@bsb/base").BSBNumberType;
958
- readonly byLanguage: import("@bsb/base").BSBStringType;
959
- readonly byCategory: import("@bsb/base").BSBStringType;
960
- readonly totalDownloads: import("@bsb/base").BSBNumberType;
961
- };
962
- required: string[];
963
- description?: string;
964
- optional?: boolean;
965
- nullable?: boolean;
966
- };
364
+ input: import("@anyvali/js").ObjectSchema<{}>;
365
+ output: import("@anyvali/js").ObjectSchema<{
366
+ totalPlugins: import("@bsb/base").BSBType;
367
+ byLanguage: import("@anyvali/js").StringSchema;
368
+ byCategory: import("@anyvali/js").StringSchema;
369
+ totalDownloads: import("@bsb/base").BSBType;
370
+ }>;
967
371
  description?: string;
968
372
  defaultTimeout?: number;
969
373
  readonly __brand: "returnable";
970
374
  };
971
375
  readonly 'registry.auth.login': {
972
- input: {
973
- _bsb: "object";
974
- properties: {
975
- readonly username: import("@bsb/base").BSBStringType;
976
- readonly password: import("@bsb/base").BSBStringType;
977
- };
978
- required: string[];
979
- description?: string;
980
- optional?: boolean;
981
- nullable?: boolean;
982
- };
983
- output: {
984
- _bsb: "object";
985
- properties: {
986
- readonly success: import("@bsb/base").BSBBooleanType;
987
- readonly token: import("@bsb/base").BSBStringType & {
988
- optional: true;
989
- };
990
- readonly expiresAt: import("@bsb/base").BSBStringType & {
991
- optional: true;
992
- };
993
- readonly message: import("@bsb/base").BSBStringType & {
994
- optional: true;
995
- };
996
- };
997
- required: string[];
998
- description?: string;
999
- optional?: boolean;
1000
- nullable?: boolean;
1001
- };
376
+ input: import("@anyvali/js").ObjectSchema<{
377
+ username: import("@anyvali/js").StringSchema;
378
+ password: import("@anyvali/js").StringSchema;
379
+ }>;
380
+ output: import("@anyvali/js").ObjectSchema<{
381
+ success: import("@anyvali/js").BoolSchema;
382
+ token: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
383
+ expiresAt: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
384
+ message: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
385
+ }>;
1002
386
  description?: string;
1003
387
  defaultTimeout?: number;
1004
388
  readonly __brand: "returnable";
1005
389
  };
1006
390
  readonly 'registry.auth.verify': {
1007
- input: {
1008
- _bsb: "object";
1009
- properties: {
1010
- readonly token: import("@bsb/base").BSBStringType;
1011
- };
1012
- required: string[];
1013
- description?: string;
1014
- optional?: boolean;
1015
- nullable?: boolean;
1016
- };
1017
- output: {
1018
- _bsb: "object";
1019
- properties: {
1020
- readonly valid: import("@bsb/base").BSBBooleanType;
1021
- readonly userId: import("@bsb/base").BSBStringType & {
1022
- optional: true;
1023
- };
1024
- readonly permissions: import("@bsb/base").BSBArrayType & {
1025
- optional: true;
1026
- };
1027
- };
1028
- required: string[];
1029
- description?: string;
1030
- optional?: boolean;
1031
- nullable?: boolean;
1032
- };
391
+ input: import("@anyvali/js").ObjectSchema<{
392
+ token: import("@anyvali/js").StringSchema;
393
+ }>;
394
+ output: import("@anyvali/js").ObjectSchema<{
395
+ valid: import("@anyvali/js").BoolSchema;
396
+ userId: import("@anyvali/js").OptionalSchema<import("@anyvali/js").StringSchema>;
397
+ permissions: import("@anyvali/js").OptionalSchema<import("@anyvali/js").ArraySchema<import("@bsb/base").BSBType>>;
398
+ }>;
1033
399
  description?: string;
1034
400
  defaultTimeout?: number;
1035
401
  readonly __brand: "returnable";