@atproto/lex-builder 0.0.11 → 0.0.13

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.
@@ -17,6 +17,729 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
17
17
  id: `${string}.${string}.${string}`;
18
18
  defs: {
19
19
  [x: string]: {
20
+ type: "permission-set";
21
+ permissions: {
22
+ [x: string]: string | number | boolean | (string | number | boolean)[];
23
+ type: "permission";
24
+ resource: string;
25
+ }[];
26
+ title?: string | undefined;
27
+ 'title:lang'?: Record<string, string> | undefined;
28
+ detail?: string | undefined;
29
+ 'detail:lang'?: Record<string, string> | undefined;
30
+ description?: string | undefined;
31
+ } | {
32
+ type: "procedure";
33
+ parameters?: {
34
+ type: "params";
35
+ properties: Record<string, {
36
+ type: "boolean";
37
+ default?: boolean | undefined;
38
+ const?: boolean | undefined;
39
+ description?: string | undefined;
40
+ } | {
41
+ type: "integer";
42
+ default?: number | undefined;
43
+ minimum?: number | undefined;
44
+ maximum?: number | undefined;
45
+ enum?: number[] | undefined;
46
+ const?: number | undefined;
47
+ description?: string | undefined;
48
+ } | {
49
+ type: "string";
50
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
51
+ default?: string | undefined;
52
+ minLength?: number | undefined;
53
+ maxLength?: number | undefined;
54
+ minGraphemes?: number | undefined;
55
+ maxGraphemes?: number | undefined;
56
+ enum?: string[] | undefined;
57
+ const?: string | undefined;
58
+ knownValues?: string[] | undefined;
59
+ description?: string | undefined;
60
+ } | {
61
+ type: "array";
62
+ items: {
63
+ type: "boolean";
64
+ default?: boolean | undefined;
65
+ const?: boolean | undefined;
66
+ description?: string | undefined;
67
+ } | {
68
+ type: "integer";
69
+ default?: number | undefined;
70
+ minimum?: number | undefined;
71
+ maximum?: number | undefined;
72
+ enum?: number[] | undefined;
73
+ const?: number | undefined;
74
+ description?: string | undefined;
75
+ } | {
76
+ type: "string";
77
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
78
+ default?: string | undefined;
79
+ minLength?: number | undefined;
80
+ maxLength?: number | undefined;
81
+ minGraphemes?: number | undefined;
82
+ maxGraphemes?: number | undefined;
83
+ enum?: string[] | undefined;
84
+ const?: string | undefined;
85
+ knownValues?: string[] | undefined;
86
+ description?: string | undefined;
87
+ };
88
+ minLength?: number | undefined;
89
+ maxLength?: number | undefined;
90
+ description?: string | undefined;
91
+ }>;
92
+ required?: string[] | undefined;
93
+ description?: string | undefined;
94
+ } | undefined;
95
+ input?: {
96
+ encoding: string;
97
+ schema?: {
98
+ type: "ref";
99
+ ref: string;
100
+ description?: string | undefined;
101
+ } | {
102
+ type: "union";
103
+ refs: string[];
104
+ closed?: boolean | undefined;
105
+ description?: string | undefined;
106
+ } | {
107
+ type: "object";
108
+ properties: Record<string, {
109
+ type: "boolean";
110
+ default?: boolean | undefined;
111
+ const?: boolean | undefined;
112
+ description?: string | undefined;
113
+ } | {
114
+ type: "integer";
115
+ default?: number | undefined;
116
+ minimum?: number | undefined;
117
+ maximum?: number | undefined;
118
+ enum?: number[] | undefined;
119
+ const?: number | undefined;
120
+ description?: string | undefined;
121
+ } | {
122
+ type: "string";
123
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
124
+ default?: string | undefined;
125
+ minLength?: number | undefined;
126
+ maxLength?: number | undefined;
127
+ minGraphemes?: number | undefined;
128
+ maxGraphemes?: number | undefined;
129
+ enum?: string[] | undefined;
130
+ const?: string | undefined;
131
+ knownValues?: string[] | undefined;
132
+ description?: string | undefined;
133
+ } | {
134
+ type: "bytes";
135
+ maxLength?: number | undefined;
136
+ minLength?: number | undefined;
137
+ description?: string | undefined;
138
+ } | {
139
+ type: "cid-link";
140
+ description?: string | undefined;
141
+ } | {
142
+ type: "blob";
143
+ accept?: string[] | undefined;
144
+ maxSize?: number | undefined;
145
+ description?: string | undefined;
146
+ } | {
147
+ type: "unknown";
148
+ description?: string | undefined;
149
+ } | {
150
+ type: "ref";
151
+ ref: string;
152
+ description?: string | undefined;
153
+ } | {
154
+ type: "union";
155
+ refs: string[];
156
+ closed?: boolean | undefined;
157
+ description?: string | undefined;
158
+ } | {
159
+ type: "array";
160
+ items: {
161
+ type: "boolean";
162
+ default?: boolean | undefined;
163
+ const?: boolean | undefined;
164
+ description?: string | undefined;
165
+ } | {
166
+ type: "integer";
167
+ default?: number | undefined;
168
+ minimum?: number | undefined;
169
+ maximum?: number | undefined;
170
+ enum?: number[] | undefined;
171
+ const?: number | undefined;
172
+ description?: string | undefined;
173
+ } | {
174
+ type: "string";
175
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
176
+ default?: string | undefined;
177
+ minLength?: number | undefined;
178
+ maxLength?: number | undefined;
179
+ minGraphemes?: number | undefined;
180
+ maxGraphemes?: number | undefined;
181
+ enum?: string[] | undefined;
182
+ const?: string | undefined;
183
+ knownValues?: string[] | undefined;
184
+ description?: string | undefined;
185
+ } | {
186
+ type: "bytes";
187
+ maxLength?: number | undefined;
188
+ minLength?: number | undefined;
189
+ description?: string | undefined;
190
+ } | {
191
+ type: "cid-link";
192
+ description?: string | undefined;
193
+ } | {
194
+ type: "blob";
195
+ accept?: string[] | undefined;
196
+ maxSize?: number | undefined;
197
+ description?: string | undefined;
198
+ } | {
199
+ type: "unknown";
200
+ description?: string | undefined;
201
+ } | {
202
+ type: "ref";
203
+ ref: string;
204
+ description?: string | undefined;
205
+ } | {
206
+ type: "union";
207
+ refs: string[];
208
+ closed?: boolean | undefined;
209
+ description?: string | undefined;
210
+ };
211
+ minLength?: number | undefined;
212
+ maxLength?: number | undefined;
213
+ description?: string | undefined;
214
+ }>;
215
+ required?: string[] | undefined;
216
+ nullable?: string[] | undefined;
217
+ description?: string | undefined;
218
+ } | undefined;
219
+ description?: string | undefined;
220
+ } | undefined;
221
+ output?: {
222
+ encoding: string;
223
+ schema?: {
224
+ type: "ref";
225
+ ref: string;
226
+ description?: string | undefined;
227
+ } | {
228
+ type: "union";
229
+ refs: string[];
230
+ closed?: boolean | undefined;
231
+ description?: string | undefined;
232
+ } | {
233
+ type: "object";
234
+ properties: Record<string, {
235
+ type: "boolean";
236
+ default?: boolean | undefined;
237
+ const?: boolean | undefined;
238
+ description?: string | undefined;
239
+ } | {
240
+ type: "integer";
241
+ default?: number | undefined;
242
+ minimum?: number | undefined;
243
+ maximum?: number | undefined;
244
+ enum?: number[] | undefined;
245
+ const?: number | undefined;
246
+ description?: string | undefined;
247
+ } | {
248
+ type: "string";
249
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
250
+ default?: string | undefined;
251
+ minLength?: number | undefined;
252
+ maxLength?: number | undefined;
253
+ minGraphemes?: number | undefined;
254
+ maxGraphemes?: number | undefined;
255
+ enum?: string[] | undefined;
256
+ const?: string | undefined;
257
+ knownValues?: string[] | undefined;
258
+ description?: string | undefined;
259
+ } | {
260
+ type: "bytes";
261
+ maxLength?: number | undefined;
262
+ minLength?: number | undefined;
263
+ description?: string | undefined;
264
+ } | {
265
+ type: "cid-link";
266
+ description?: string | undefined;
267
+ } | {
268
+ type: "blob";
269
+ accept?: string[] | undefined;
270
+ maxSize?: number | undefined;
271
+ description?: string | undefined;
272
+ } | {
273
+ type: "unknown";
274
+ description?: string | undefined;
275
+ } | {
276
+ type: "ref";
277
+ ref: string;
278
+ description?: string | undefined;
279
+ } | {
280
+ type: "union";
281
+ refs: string[];
282
+ closed?: boolean | undefined;
283
+ description?: string | undefined;
284
+ } | {
285
+ type: "array";
286
+ items: {
287
+ type: "boolean";
288
+ default?: boolean | undefined;
289
+ const?: boolean | undefined;
290
+ description?: string | undefined;
291
+ } | {
292
+ type: "integer";
293
+ default?: number | undefined;
294
+ minimum?: number | undefined;
295
+ maximum?: number | undefined;
296
+ enum?: number[] | undefined;
297
+ const?: number | undefined;
298
+ description?: string | undefined;
299
+ } | {
300
+ type: "string";
301
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
302
+ default?: string | undefined;
303
+ minLength?: number | undefined;
304
+ maxLength?: number | undefined;
305
+ minGraphemes?: number | undefined;
306
+ maxGraphemes?: number | undefined;
307
+ enum?: string[] | undefined;
308
+ const?: string | undefined;
309
+ knownValues?: string[] | undefined;
310
+ description?: string | undefined;
311
+ } | {
312
+ type: "bytes";
313
+ maxLength?: number | undefined;
314
+ minLength?: number | undefined;
315
+ description?: string | undefined;
316
+ } | {
317
+ type: "cid-link";
318
+ description?: string | undefined;
319
+ } | {
320
+ type: "blob";
321
+ accept?: string[] | undefined;
322
+ maxSize?: number | undefined;
323
+ description?: string | undefined;
324
+ } | {
325
+ type: "unknown";
326
+ description?: string | undefined;
327
+ } | {
328
+ type: "ref";
329
+ ref: string;
330
+ description?: string | undefined;
331
+ } | {
332
+ type: "union";
333
+ refs: string[];
334
+ closed?: boolean | undefined;
335
+ description?: string | undefined;
336
+ };
337
+ minLength?: number | undefined;
338
+ maxLength?: number | undefined;
339
+ description?: string | undefined;
340
+ }>;
341
+ required?: string[] | undefined;
342
+ nullable?: string[] | undefined;
343
+ description?: string | undefined;
344
+ } | undefined;
345
+ description?: string | undefined;
346
+ } | undefined;
347
+ errors?: {
348
+ name: string;
349
+ description?: string | undefined;
350
+ }[] | undefined;
351
+ description?: string | undefined;
352
+ } | {
353
+ type: "query";
354
+ parameters?: {
355
+ type: "params";
356
+ properties: Record<string, {
357
+ type: "boolean";
358
+ default?: boolean | undefined;
359
+ const?: boolean | undefined;
360
+ description?: string | undefined;
361
+ } | {
362
+ type: "integer";
363
+ default?: number | undefined;
364
+ minimum?: number | undefined;
365
+ maximum?: number | undefined;
366
+ enum?: number[] | undefined;
367
+ const?: number | undefined;
368
+ description?: string | undefined;
369
+ } | {
370
+ type: "string";
371
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
372
+ default?: string | undefined;
373
+ minLength?: number | undefined;
374
+ maxLength?: number | undefined;
375
+ minGraphemes?: number | undefined;
376
+ maxGraphemes?: number | undefined;
377
+ enum?: string[] | undefined;
378
+ const?: string | undefined;
379
+ knownValues?: string[] | undefined;
380
+ description?: string | undefined;
381
+ } | {
382
+ type: "array";
383
+ items: {
384
+ type: "boolean";
385
+ default?: boolean | undefined;
386
+ const?: boolean | undefined;
387
+ description?: string | undefined;
388
+ } | {
389
+ type: "integer";
390
+ default?: number | undefined;
391
+ minimum?: number | undefined;
392
+ maximum?: number | undefined;
393
+ enum?: number[] | undefined;
394
+ const?: number | undefined;
395
+ description?: string | undefined;
396
+ } | {
397
+ type: "string";
398
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
399
+ default?: string | undefined;
400
+ minLength?: number | undefined;
401
+ maxLength?: number | undefined;
402
+ minGraphemes?: number | undefined;
403
+ maxGraphemes?: number | undefined;
404
+ enum?: string[] | undefined;
405
+ const?: string | undefined;
406
+ knownValues?: string[] | undefined;
407
+ description?: string | undefined;
408
+ };
409
+ minLength?: number | undefined;
410
+ maxLength?: number | undefined;
411
+ description?: string | undefined;
412
+ }>;
413
+ required?: string[] | undefined;
414
+ description?: string | undefined;
415
+ } | undefined;
416
+ output?: {
417
+ encoding: string;
418
+ schema?: {
419
+ type: "ref";
420
+ ref: string;
421
+ description?: string | undefined;
422
+ } | {
423
+ type: "union";
424
+ refs: string[];
425
+ closed?: boolean | undefined;
426
+ description?: string | undefined;
427
+ } | {
428
+ type: "object";
429
+ properties: Record<string, {
430
+ type: "boolean";
431
+ default?: boolean | undefined;
432
+ const?: boolean | undefined;
433
+ description?: string | undefined;
434
+ } | {
435
+ type: "integer";
436
+ default?: number | undefined;
437
+ minimum?: number | undefined;
438
+ maximum?: number | undefined;
439
+ enum?: number[] | undefined;
440
+ const?: number | undefined;
441
+ description?: string | undefined;
442
+ } | {
443
+ type: "string";
444
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
445
+ default?: string | undefined;
446
+ minLength?: number | undefined;
447
+ maxLength?: number | undefined;
448
+ minGraphemes?: number | undefined;
449
+ maxGraphemes?: number | undefined;
450
+ enum?: string[] | undefined;
451
+ const?: string | undefined;
452
+ knownValues?: string[] | undefined;
453
+ description?: string | undefined;
454
+ } | {
455
+ type: "bytes";
456
+ maxLength?: number | undefined;
457
+ minLength?: number | undefined;
458
+ description?: string | undefined;
459
+ } | {
460
+ type: "cid-link";
461
+ description?: string | undefined;
462
+ } | {
463
+ type: "blob";
464
+ accept?: string[] | undefined;
465
+ maxSize?: number | undefined;
466
+ description?: string | undefined;
467
+ } | {
468
+ type: "unknown";
469
+ description?: string | undefined;
470
+ } | {
471
+ type: "ref";
472
+ ref: string;
473
+ description?: string | undefined;
474
+ } | {
475
+ type: "union";
476
+ refs: string[];
477
+ closed?: boolean | undefined;
478
+ description?: string | undefined;
479
+ } | {
480
+ type: "array";
481
+ items: {
482
+ type: "boolean";
483
+ default?: boolean | undefined;
484
+ const?: boolean | undefined;
485
+ description?: string | undefined;
486
+ } | {
487
+ type: "integer";
488
+ default?: number | undefined;
489
+ minimum?: number | undefined;
490
+ maximum?: number | undefined;
491
+ enum?: number[] | undefined;
492
+ const?: number | undefined;
493
+ description?: string | undefined;
494
+ } | {
495
+ type: "string";
496
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
497
+ default?: string | undefined;
498
+ minLength?: number | undefined;
499
+ maxLength?: number | undefined;
500
+ minGraphemes?: number | undefined;
501
+ maxGraphemes?: number | undefined;
502
+ enum?: string[] | undefined;
503
+ const?: string | undefined;
504
+ knownValues?: string[] | undefined;
505
+ description?: string | undefined;
506
+ } | {
507
+ type: "bytes";
508
+ maxLength?: number | undefined;
509
+ minLength?: number | undefined;
510
+ description?: string | undefined;
511
+ } | {
512
+ type: "cid-link";
513
+ description?: string | undefined;
514
+ } | {
515
+ type: "blob";
516
+ accept?: string[] | undefined;
517
+ maxSize?: number | undefined;
518
+ description?: string | undefined;
519
+ } | {
520
+ type: "unknown";
521
+ description?: string | undefined;
522
+ } | {
523
+ type: "ref";
524
+ ref: string;
525
+ description?: string | undefined;
526
+ } | {
527
+ type: "union";
528
+ refs: string[];
529
+ closed?: boolean | undefined;
530
+ description?: string | undefined;
531
+ };
532
+ minLength?: number | undefined;
533
+ maxLength?: number | undefined;
534
+ description?: string | undefined;
535
+ }>;
536
+ required?: string[] | undefined;
537
+ nullable?: string[] | undefined;
538
+ description?: string | undefined;
539
+ } | undefined;
540
+ description?: string | undefined;
541
+ } | undefined;
542
+ errors?: {
543
+ name: string;
544
+ description?: string | undefined;
545
+ }[] | undefined;
546
+ description?: string | undefined;
547
+ } | {
548
+ type: "record";
549
+ record: {
550
+ type: "object";
551
+ properties: Record<string, {
552
+ type: "boolean";
553
+ default?: boolean | undefined;
554
+ const?: boolean | undefined;
555
+ description?: string | undefined;
556
+ } | {
557
+ type: "integer";
558
+ default?: number | undefined;
559
+ minimum?: number | undefined;
560
+ maximum?: number | undefined;
561
+ enum?: number[] | undefined;
562
+ const?: number | undefined;
563
+ description?: string | undefined;
564
+ } | {
565
+ type: "string";
566
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
567
+ default?: string | undefined;
568
+ minLength?: number | undefined;
569
+ maxLength?: number | undefined;
570
+ minGraphemes?: number | undefined;
571
+ maxGraphemes?: number | undefined;
572
+ enum?: string[] | undefined;
573
+ const?: string | undefined;
574
+ knownValues?: string[] | undefined;
575
+ description?: string | undefined;
576
+ } | {
577
+ type: "bytes";
578
+ maxLength?: number | undefined;
579
+ minLength?: number | undefined;
580
+ description?: string | undefined;
581
+ } | {
582
+ type: "cid-link";
583
+ description?: string | undefined;
584
+ } | {
585
+ type: "blob";
586
+ accept?: string[] | undefined;
587
+ maxSize?: number | undefined;
588
+ description?: string | undefined;
589
+ } | {
590
+ type: "unknown";
591
+ description?: string | undefined;
592
+ } | {
593
+ type: "ref";
594
+ ref: string;
595
+ description?: string | undefined;
596
+ } | {
597
+ type: "union";
598
+ refs: string[];
599
+ closed?: boolean | undefined;
600
+ description?: string | undefined;
601
+ } | {
602
+ type: "array";
603
+ items: {
604
+ type: "boolean";
605
+ default?: boolean | undefined;
606
+ const?: boolean | undefined;
607
+ description?: string | undefined;
608
+ } | {
609
+ type: "integer";
610
+ default?: number | undefined;
611
+ minimum?: number | undefined;
612
+ maximum?: number | undefined;
613
+ enum?: number[] | undefined;
614
+ const?: number | undefined;
615
+ description?: string | undefined;
616
+ } | {
617
+ type: "string";
618
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
619
+ default?: string | undefined;
620
+ minLength?: number | undefined;
621
+ maxLength?: number | undefined;
622
+ minGraphemes?: number | undefined;
623
+ maxGraphemes?: number | undefined;
624
+ enum?: string[] | undefined;
625
+ const?: string | undefined;
626
+ knownValues?: string[] | undefined;
627
+ description?: string | undefined;
628
+ } | {
629
+ type: "bytes";
630
+ maxLength?: number | undefined;
631
+ minLength?: number | undefined;
632
+ description?: string | undefined;
633
+ } | {
634
+ type: "cid-link";
635
+ description?: string | undefined;
636
+ } | {
637
+ type: "blob";
638
+ accept?: string[] | undefined;
639
+ maxSize?: number | undefined;
640
+ description?: string | undefined;
641
+ } | {
642
+ type: "unknown";
643
+ description?: string | undefined;
644
+ } | {
645
+ type: "ref";
646
+ ref: string;
647
+ description?: string | undefined;
648
+ } | {
649
+ type: "union";
650
+ refs: string[];
651
+ closed?: boolean | undefined;
652
+ description?: string | undefined;
653
+ };
654
+ minLength?: number | undefined;
655
+ maxLength?: number | undefined;
656
+ description?: string | undefined;
657
+ }>;
658
+ required?: string[] | undefined;
659
+ nullable?: string[] | undefined;
660
+ description?: string | undefined;
661
+ };
662
+ key: import("@atproto/lex-schema").LexiconRecordKey;
663
+ description?: string | undefined;
664
+ } | {
665
+ type: "subscription";
666
+ message: {
667
+ schema: {
668
+ type: "union";
669
+ refs: string[];
670
+ closed?: boolean | undefined;
671
+ description?: string | undefined;
672
+ };
673
+ description?: string | undefined;
674
+ };
675
+ description?: string | undefined;
676
+ parameters?: {
677
+ type: "params";
678
+ properties: Record<string, {
679
+ type: "boolean";
680
+ default?: boolean | undefined;
681
+ const?: boolean | undefined;
682
+ description?: string | undefined;
683
+ } | {
684
+ type: "integer";
685
+ default?: number | undefined;
686
+ minimum?: number | undefined;
687
+ maximum?: number | undefined;
688
+ enum?: number[] | undefined;
689
+ const?: number | undefined;
690
+ description?: string | undefined;
691
+ } | {
692
+ type: "string";
693
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
694
+ default?: string | undefined;
695
+ minLength?: number | undefined;
696
+ maxLength?: number | undefined;
697
+ minGraphemes?: number | undefined;
698
+ maxGraphemes?: number | undefined;
699
+ enum?: string[] | undefined;
700
+ const?: string | undefined;
701
+ knownValues?: string[] | undefined;
702
+ description?: string | undefined;
703
+ } | {
704
+ type: "array";
705
+ items: {
706
+ type: "boolean";
707
+ default?: boolean | undefined;
708
+ const?: boolean | undefined;
709
+ description?: string | undefined;
710
+ } | {
711
+ type: "integer";
712
+ default?: number | undefined;
713
+ minimum?: number | undefined;
714
+ maximum?: number | undefined;
715
+ enum?: number[] | undefined;
716
+ const?: number | undefined;
717
+ description?: string | undefined;
718
+ } | {
719
+ type: "string";
720
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
721
+ default?: string | undefined;
722
+ minLength?: number | undefined;
723
+ maxLength?: number | undefined;
724
+ minGraphemes?: number | undefined;
725
+ maxGraphemes?: number | undefined;
726
+ enum?: string[] | undefined;
727
+ const?: string | undefined;
728
+ knownValues?: string[] | undefined;
729
+ description?: string | undefined;
730
+ };
731
+ minLength?: number | undefined;
732
+ maxLength?: number | undefined;
733
+ description?: string | undefined;
734
+ }>;
735
+ required?: string[] | undefined;
736
+ description?: string | undefined;
737
+ } | undefined;
738
+ errors?: {
739
+ name: string;
740
+ description?: string | undefined;
741
+ }[] | undefined;
742
+ } | {
20
743
  type: "boolean";
21
744
  default?: boolean | undefined;
22
745
  const?: boolean | undefined;
@@ -31,7 +754,7 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
31
754
  description?: string | undefined;
32
755
  } | {
33
756
  type: "string";
34
- format?: "datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key" | undefined;
757
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
35
758
  default?: string | undefined;
36
759
  minLength?: number | undefined;
37
760
  maxLength?: number | undefined;
@@ -54,9 +777,215 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
54
777
  accept?: string[] | undefined;
55
778
  maxSize?: number | undefined;
56
779
  description?: string | undefined;
780
+ } | {
781
+ type: "array";
782
+ items: {
783
+ type: "boolean";
784
+ default?: boolean | undefined;
785
+ const?: boolean | undefined;
786
+ description?: string | undefined;
787
+ } | {
788
+ type: "integer";
789
+ default?: number | undefined;
790
+ minimum?: number | undefined;
791
+ maximum?: number | undefined;
792
+ enum?: number[] | undefined;
793
+ const?: number | undefined;
794
+ description?: string | undefined;
795
+ } | {
796
+ type: "string";
797
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
798
+ default?: string | undefined;
799
+ minLength?: number | undefined;
800
+ maxLength?: number | undefined;
801
+ minGraphemes?: number | undefined;
802
+ maxGraphemes?: number | undefined;
803
+ enum?: string[] | undefined;
804
+ const?: string | undefined;
805
+ knownValues?: string[] | undefined;
806
+ description?: string | undefined;
807
+ } | {
808
+ type: "bytes";
809
+ maxLength?: number | undefined;
810
+ minLength?: number | undefined;
811
+ description?: string | undefined;
812
+ } | {
813
+ type: "cid-link";
814
+ description?: string | undefined;
815
+ } | {
816
+ type: "blob";
817
+ accept?: string[] | undefined;
818
+ maxSize?: number | undefined;
819
+ description?: string | undefined;
820
+ } | {
821
+ type: "unknown";
822
+ description?: string | undefined;
823
+ } | {
824
+ type: "ref";
825
+ ref: string;
826
+ description?: string | undefined;
827
+ } | {
828
+ type: "union";
829
+ refs: string[];
830
+ closed?: boolean | undefined;
831
+ description?: string | undefined;
832
+ };
833
+ minLength?: number | undefined;
834
+ maxLength?: number | undefined;
835
+ description?: string | undefined;
836
+ } | {
837
+ type: "object";
838
+ properties: Record<string, {
839
+ type: "boolean";
840
+ default?: boolean | undefined;
841
+ const?: boolean | undefined;
842
+ description?: string | undefined;
843
+ } | {
844
+ type: "integer";
845
+ default?: number | undefined;
846
+ minimum?: number | undefined;
847
+ maximum?: number | undefined;
848
+ enum?: number[] | undefined;
849
+ const?: number | undefined;
850
+ description?: string | undefined;
851
+ } | {
852
+ type: "string";
853
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
854
+ default?: string | undefined;
855
+ minLength?: number | undefined;
856
+ maxLength?: number | undefined;
857
+ minGraphemes?: number | undefined;
858
+ maxGraphemes?: number | undefined;
859
+ enum?: string[] | undefined;
860
+ const?: string | undefined;
861
+ knownValues?: string[] | undefined;
862
+ description?: string | undefined;
863
+ } | {
864
+ type: "bytes";
865
+ maxLength?: number | undefined;
866
+ minLength?: number | undefined;
867
+ description?: string | undefined;
868
+ } | {
869
+ type: "cid-link";
870
+ description?: string | undefined;
871
+ } | {
872
+ type: "blob";
873
+ accept?: string[] | undefined;
874
+ maxSize?: number | undefined;
875
+ description?: string | undefined;
876
+ } | {
877
+ type: "unknown";
878
+ description?: string | undefined;
879
+ } | {
880
+ type: "ref";
881
+ ref: string;
882
+ description?: string | undefined;
883
+ } | {
884
+ type: "union";
885
+ refs: string[];
886
+ closed?: boolean | undefined;
887
+ description?: string | undefined;
888
+ } | {
889
+ type: "array";
890
+ items: {
891
+ type: "boolean";
892
+ default?: boolean | undefined;
893
+ const?: boolean | undefined;
894
+ description?: string | undefined;
895
+ } | {
896
+ type: "integer";
897
+ default?: number | undefined;
898
+ minimum?: number | undefined;
899
+ maximum?: number | undefined;
900
+ enum?: number[] | undefined;
901
+ const?: number | undefined;
902
+ description?: string | undefined;
903
+ } | {
904
+ type: "string";
905
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
906
+ default?: string | undefined;
907
+ minLength?: number | undefined;
908
+ maxLength?: number | undefined;
909
+ minGraphemes?: number | undefined;
910
+ maxGraphemes?: number | undefined;
911
+ enum?: string[] | undefined;
912
+ const?: string | undefined;
913
+ knownValues?: string[] | undefined;
914
+ description?: string | undefined;
915
+ } | {
916
+ type: "bytes";
917
+ maxLength?: number | undefined;
918
+ minLength?: number | undefined;
919
+ description?: string | undefined;
920
+ } | {
921
+ type: "cid-link";
922
+ description?: string | undefined;
923
+ } | {
924
+ type: "blob";
925
+ accept?: string[] | undefined;
926
+ maxSize?: number | undefined;
927
+ description?: string | undefined;
928
+ } | {
929
+ type: "unknown";
930
+ description?: string | undefined;
931
+ } | {
932
+ type: "ref";
933
+ ref: string;
934
+ description?: string | undefined;
935
+ } | {
936
+ type: "union";
937
+ refs: string[];
938
+ closed?: boolean | undefined;
939
+ description?: string | undefined;
940
+ };
941
+ minLength?: number | undefined;
942
+ maxLength?: number | undefined;
943
+ description?: string | undefined;
944
+ }>;
945
+ required?: string[] | undefined;
946
+ nullable?: string[] | undefined;
947
+ description?: string | undefined;
57
948
  } | {
58
949
  type: "token";
59
950
  description?: string | undefined;
951
+ } | {
952
+ type: "boolean";
953
+ default?: boolean | undefined;
954
+ const?: boolean | undefined;
955
+ description?: string | undefined;
956
+ } | {
957
+ type: "integer";
958
+ default?: number | undefined;
959
+ minimum?: number | undefined;
960
+ maximum?: number | undefined;
961
+ enum?: number[] | undefined;
962
+ const?: number | undefined;
963
+ description?: string | undefined;
964
+ } | {
965
+ type: "string";
966
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
967
+ default?: string | undefined;
968
+ minLength?: number | undefined;
969
+ maxLength?: number | undefined;
970
+ minGraphemes?: number | undefined;
971
+ maxGraphemes?: number | undefined;
972
+ enum?: string[] | undefined;
973
+ const?: string | undefined;
974
+ knownValues?: string[] | undefined;
975
+ description?: string | undefined;
976
+ } | {
977
+ type: "bytes";
978
+ maxLength?: number | undefined;
979
+ minLength?: number | undefined;
980
+ description?: string | undefined;
981
+ } | {
982
+ type: "cid-link";
983
+ description?: string | undefined;
984
+ } | {
985
+ type: "blob";
986
+ accept?: string[] | undefined;
987
+ maxSize?: number | undefined;
988
+ description?: string | undefined;
60
989
  } | {
61
990
  type: "array";
62
991
  items: {
@@ -74,7 +1003,7 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
74
1003
  description?: string | undefined;
75
1004
  } | {
76
1005
  type: "string";
77
- format?: "datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key" | undefined;
1006
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
78
1007
  default?: string | undefined;
79
1008
  minLength?: number | undefined;
80
1009
  maxLength?: number | undefined;
@@ -115,298 +1044,197 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
115
1044
  description?: string | undefined;
116
1045
  } | {
117
1046
  type: "object";
118
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
119
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
120
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
121
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
122
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
123
- }>, import("@atproto/lex-schema").ObjectSchema<{
124
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
125
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
126
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
127
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
128
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
129
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
130
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
131
- }>, import("@atproto/lex-schema").ObjectSchema<{
132
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
133
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
134
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
135
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
136
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
137
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
138
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
139
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
140
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
141
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
142
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
143
- }>, import("@atproto/lex-schema").ObjectSchema<{
144
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
145
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
146
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
147
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
148
- }>, import("@atproto/lex-schema").ObjectSchema<{
149
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
150
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
151
- }>, import("@atproto/lex-schema").ObjectSchema<{
152
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
153
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
154
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
155
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
156
- }>, import("@atproto/lex-schema").ObjectSchema<{
157
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
158
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
159
- }>, import("@atproto/lex-schema").ObjectSchema<{
160
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
161
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
162
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
163
- }>, import("@atproto/lex-schema").ObjectSchema<{
164
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
165
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
166
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
167
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
168
- }>, import("@atproto/lex-schema").ObjectSchema<{
169
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
170
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
171
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
172
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
173
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
174
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
175
- }>, import("@atproto/lex-schema").ObjectSchema<{
176
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
177
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
178
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
179
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
180
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
181
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
182
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
183
- }>, import("@atproto/lex-schema").ObjectSchema<{
184
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
185
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
186
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
187
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
188
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
189
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
190
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
191
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
192
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
193
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
194
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
195
- }>, import("@atproto/lex-schema").ObjectSchema<{
196
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
197
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
198
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
199
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
200
- }>, import("@atproto/lex-schema").ObjectSchema<{
201
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
202
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
203
- }>, import("@atproto/lex-schema").ObjectSchema<{
204
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
205
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
206
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
207
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
208
- }>, import("@atproto/lex-schema").ObjectSchema<{
209
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
210
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
211
- }>, import("@atproto/lex-schema").ObjectSchema<{
212
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
213
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
214
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
215
- }>, import("@atproto/lex-schema").ObjectSchema<{
216
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
217
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
218
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
219
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
220
- }>]>;
221
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
222
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
223
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
224
- }>]>>;
1047
+ properties: Record<string, {
1048
+ type: "boolean";
1049
+ default?: boolean | undefined;
1050
+ const?: boolean | undefined;
1051
+ description?: string | undefined;
1052
+ } | {
1053
+ type: "integer";
1054
+ default?: number | undefined;
1055
+ minimum?: number | undefined;
1056
+ maximum?: number | undefined;
1057
+ enum?: number[] | undefined;
1058
+ const?: number | undefined;
1059
+ description?: string | undefined;
1060
+ } | {
1061
+ type: "string";
1062
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1063
+ default?: string | undefined;
1064
+ minLength?: number | undefined;
1065
+ maxLength?: number | undefined;
1066
+ minGraphemes?: number | undefined;
1067
+ maxGraphemes?: number | undefined;
1068
+ enum?: string[] | undefined;
1069
+ const?: string | undefined;
1070
+ knownValues?: string[] | undefined;
1071
+ description?: string | undefined;
1072
+ } | {
1073
+ type: "bytes";
1074
+ maxLength?: number | undefined;
1075
+ minLength?: number | undefined;
1076
+ description?: string | undefined;
1077
+ } | {
1078
+ type: "cid-link";
1079
+ description?: string | undefined;
1080
+ } | {
1081
+ type: "blob";
1082
+ accept?: string[] | undefined;
1083
+ maxSize?: number | undefined;
1084
+ description?: string | undefined;
1085
+ } | {
1086
+ type: "unknown";
1087
+ description?: string | undefined;
1088
+ } | {
1089
+ type: "ref";
1090
+ ref: string;
1091
+ description?: string | undefined;
1092
+ } | {
1093
+ type: "union";
1094
+ refs: string[];
1095
+ closed?: boolean | undefined;
1096
+ description?: string | undefined;
1097
+ } | {
1098
+ type: "array";
1099
+ items: {
1100
+ type: "boolean";
1101
+ default?: boolean | undefined;
1102
+ const?: boolean | undefined;
1103
+ description?: string | undefined;
1104
+ } | {
1105
+ type: "integer";
1106
+ default?: number | undefined;
1107
+ minimum?: number | undefined;
1108
+ maximum?: number | undefined;
1109
+ enum?: number[] | undefined;
1110
+ const?: number | undefined;
1111
+ description?: string | undefined;
1112
+ } | {
1113
+ type: "string";
1114
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1115
+ default?: string | undefined;
1116
+ minLength?: number | undefined;
1117
+ maxLength?: number | undefined;
1118
+ minGraphemes?: number | undefined;
1119
+ maxGraphemes?: number | undefined;
1120
+ enum?: string[] | undefined;
1121
+ const?: string | undefined;
1122
+ knownValues?: string[] | undefined;
1123
+ description?: string | undefined;
1124
+ } | {
1125
+ type: "bytes";
1126
+ maxLength?: number | undefined;
1127
+ minLength?: number | undefined;
1128
+ description?: string | undefined;
1129
+ } | {
1130
+ type: "cid-link";
1131
+ description?: string | undefined;
1132
+ } | {
1133
+ type: "blob";
1134
+ accept?: string[] | undefined;
1135
+ maxSize?: number | undefined;
1136
+ description?: string | undefined;
1137
+ } | {
1138
+ type: "unknown";
1139
+ description?: string | undefined;
1140
+ } | {
1141
+ type: "ref";
1142
+ ref: string;
1143
+ description?: string | undefined;
1144
+ } | {
1145
+ type: "union";
1146
+ refs: string[];
1147
+ closed?: boolean | undefined;
1148
+ description?: string | undefined;
1149
+ };
1150
+ minLength?: number | undefined;
1151
+ maxLength?: number | undefined;
1152
+ description?: string | undefined;
1153
+ }>;
225
1154
  required?: string[] | undefined;
226
1155
  nullable?: string[] | undefined;
227
1156
  description?: string | undefined;
228
1157
  } | {
229
- type: "record";
230
- record: {
231
- type: "object";
232
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
233
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
234
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
235
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
236
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
237
- }>, import("@atproto/lex-schema").ObjectSchema<{
238
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
239
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
240
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
241
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
242
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
243
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
244
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
245
- }>, import("@atproto/lex-schema").ObjectSchema<{
246
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
247
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
248
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
249
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
250
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
251
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
252
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
253
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
254
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
255
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
256
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
257
- }>, import("@atproto/lex-schema").ObjectSchema<{
258
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
259
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
260
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
261
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
262
- }>, import("@atproto/lex-schema").ObjectSchema<{
263
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
264
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
265
- }>, import("@atproto/lex-schema").ObjectSchema<{
266
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
267
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
268
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
269
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
270
- }>, import("@atproto/lex-schema").ObjectSchema<{
271
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
272
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
273
- }>, import("@atproto/lex-schema").ObjectSchema<{
274
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
275
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
276
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
277
- }>, import("@atproto/lex-schema").ObjectSchema<{
278
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
279
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
280
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
281
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
282
- }>, import("@atproto/lex-schema").ObjectSchema<{
283
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
284
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
285
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
286
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
287
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
288
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
289
- }>, import("@atproto/lex-schema").ObjectSchema<{
290
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
291
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
292
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
293
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
294
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
295
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
296
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
297
- }>, import("@atproto/lex-schema").ObjectSchema<{
298
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
299
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
300
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
301
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
302
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
303
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
304
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
305
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
306
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
307
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
308
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
309
- }>, import("@atproto/lex-schema").ObjectSchema<{
310
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
311
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
312
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
313
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
314
- }>, import("@atproto/lex-schema").ObjectSchema<{
315
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
316
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
317
- }>, import("@atproto/lex-schema").ObjectSchema<{
318
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
319
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
320
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
321
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
322
- }>, import("@atproto/lex-schema").ObjectSchema<{
323
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
324
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
325
- }>, import("@atproto/lex-schema").ObjectSchema<{
326
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
327
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
328
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
329
- }>, import("@atproto/lex-schema").ObjectSchema<{
330
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
331
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
332
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
333
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
334
- }>]>;
335
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
336
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
337
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
338
- }>]>>;
339
- required?: string[] | undefined;
340
- nullable?: string[] | undefined;
341
- description?: string | undefined;
342
- };
343
- key: import("@atproto/lex-schema").LexiconRecordKey;
1158
+ type: "token";
1159
+ description?: string | undefined;
1160
+ } | undefined;
1161
+ main?: {
1162
+ type: "permission-set";
1163
+ permissions: {
1164
+ [x: string]: string | number | boolean | (string | number | boolean)[];
1165
+ type: "permission";
1166
+ resource: string;
1167
+ }[];
1168
+ title?: string | undefined;
1169
+ 'title:lang'?: Record<string, string> | undefined;
1170
+ detail?: string | undefined;
1171
+ 'detail:lang'?: Record<string, string> | undefined;
344
1172
  description?: string | undefined;
345
1173
  } | {
346
- type: "query";
1174
+ type: "procedure";
347
1175
  parameters?: {
348
1176
  type: "params";
349
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
350
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
351
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
352
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
353
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
354
- }>, import("@atproto/lex-schema").ObjectSchema<{
355
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
356
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
357
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
358
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
359
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
360
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
361
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
362
- }>, import("@atproto/lex-schema").ObjectSchema<{
363
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
364
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
365
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
366
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
367
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
368
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
369
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
370
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
371
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
372
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
373
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
374
- }>, import("@atproto/lex-schema").ObjectSchema<{
375
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
376
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
377
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
378
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
379
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
380
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
381
- }>, import("@atproto/lex-schema").ObjectSchema<{
382
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
383
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
384
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
385
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
386
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
387
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
388
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
389
- }>, import("@atproto/lex-schema").ObjectSchema<{
390
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
391
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
392
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
393
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
394
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
395
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
396
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
397
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
398
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
399
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
400
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
401
- }>]>;
402
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
403
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
404
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
405
- }>]>>;
1177
+ properties: Record<string, {
1178
+ type: "boolean";
1179
+ default?: boolean | undefined;
1180
+ const?: boolean | undefined;
1181
+ description?: string | undefined;
1182
+ } | {
1183
+ type: "integer";
1184
+ default?: number | undefined;
1185
+ minimum?: number | undefined;
1186
+ maximum?: number | undefined;
1187
+ enum?: number[] | undefined;
1188
+ const?: number | undefined;
1189
+ description?: string | undefined;
1190
+ } | {
1191
+ type: "string";
1192
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1193
+ default?: string | undefined;
1194
+ minLength?: number | undefined;
1195
+ maxLength?: number | undefined;
1196
+ minGraphemes?: number | undefined;
1197
+ maxGraphemes?: number | undefined;
1198
+ enum?: string[] | undefined;
1199
+ const?: string | undefined;
1200
+ knownValues?: string[] | undefined;
1201
+ description?: string | undefined;
1202
+ } | {
1203
+ type: "array";
1204
+ items: {
1205
+ type: "boolean";
1206
+ default?: boolean | undefined;
1207
+ const?: boolean | undefined;
1208
+ description?: string | undefined;
1209
+ } | {
1210
+ type: "integer";
1211
+ default?: number | undefined;
1212
+ minimum?: number | undefined;
1213
+ maximum?: number | undefined;
1214
+ enum?: number[] | undefined;
1215
+ const?: number | undefined;
1216
+ description?: string | undefined;
1217
+ } | {
1218
+ type: "string";
1219
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1220
+ default?: string | undefined;
1221
+ minLength?: number | undefined;
1222
+ maxLength?: number | undefined;
1223
+ minGraphemes?: number | undefined;
1224
+ maxGraphemes?: number | undefined;
1225
+ enum?: string[] | undefined;
1226
+ const?: string | undefined;
1227
+ knownValues?: string[] | undefined;
1228
+ description?: string | undefined;
1229
+ };
1230
+ minLength?: number | undefined;
1231
+ maxLength?: number | undefined;
1232
+ description?: string | undefined;
1233
+ }>;
406
1234
  required?: string[] | undefined;
407
1235
  description?: string | undefined;
408
1236
  } | undefined;
409
- output?: {
1237
+ input?: {
410
1238
  encoding: string;
411
1239
  schema?: {
412
1240
  type: "ref";
@@ -419,189 +1247,120 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
419
1247
  description?: string | undefined;
420
1248
  } | {
421
1249
  type: "object";
422
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
423
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
424
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
425
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
426
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
427
- }>, import("@atproto/lex-schema").ObjectSchema<{
428
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
429
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
430
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
431
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
432
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
433
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
434
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
435
- }>, import("@atproto/lex-schema").ObjectSchema<{
436
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
437
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
438
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
439
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
440
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
441
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
442
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
443
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
444
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
445
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
446
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
447
- }>, import("@atproto/lex-schema").ObjectSchema<{
448
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
449
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
450
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
451
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
452
- }>, import("@atproto/lex-schema").ObjectSchema<{
453
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
454
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
455
- }>, import("@atproto/lex-schema").ObjectSchema<{
456
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
457
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
458
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
459
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
460
- }>, import("@atproto/lex-schema").ObjectSchema<{
461
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
462
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
463
- }>, import("@atproto/lex-schema").ObjectSchema<{
464
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
465
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
466
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
467
- }>, import("@atproto/lex-schema").ObjectSchema<{
468
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
469
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
470
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
471
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
472
- }>, import("@atproto/lex-schema").ObjectSchema<{
473
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
474
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
475
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
476
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
477
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
478
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
479
- }>, import("@atproto/lex-schema").ObjectSchema<{
480
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
481
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
482
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
483
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
484
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
485
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
486
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
487
- }>, import("@atproto/lex-schema").ObjectSchema<{
488
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
489
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
490
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
491
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
492
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
493
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
494
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
495
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
496
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
497
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
498
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
499
- }>, import("@atproto/lex-schema").ObjectSchema<{
500
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
501
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
502
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
503
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
504
- }>, import("@atproto/lex-schema").ObjectSchema<{
505
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
506
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
507
- }>, import("@atproto/lex-schema").ObjectSchema<{
508
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
509
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
510
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
511
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
512
- }>, import("@atproto/lex-schema").ObjectSchema<{
513
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
514
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
515
- }>, import("@atproto/lex-schema").ObjectSchema<{
516
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
517
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
518
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
519
- }>, import("@atproto/lex-schema").ObjectSchema<{
520
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
521
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
522
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
523
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
524
- }>]>;
525
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
526
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
527
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
528
- }>]>>;
1250
+ properties: Record<string, {
1251
+ type: "boolean";
1252
+ default?: boolean | undefined;
1253
+ const?: boolean | undefined;
1254
+ description?: string | undefined;
1255
+ } | {
1256
+ type: "integer";
1257
+ default?: number | undefined;
1258
+ minimum?: number | undefined;
1259
+ maximum?: number | undefined;
1260
+ enum?: number[] | undefined;
1261
+ const?: number | undefined;
1262
+ description?: string | undefined;
1263
+ } | {
1264
+ type: "string";
1265
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1266
+ default?: string | undefined;
1267
+ minLength?: number | undefined;
1268
+ maxLength?: number | undefined;
1269
+ minGraphemes?: number | undefined;
1270
+ maxGraphemes?: number | undefined;
1271
+ enum?: string[] | undefined;
1272
+ const?: string | undefined;
1273
+ knownValues?: string[] | undefined;
1274
+ description?: string | undefined;
1275
+ } | {
1276
+ type: "bytes";
1277
+ maxLength?: number | undefined;
1278
+ minLength?: number | undefined;
1279
+ description?: string | undefined;
1280
+ } | {
1281
+ type: "cid-link";
1282
+ description?: string | undefined;
1283
+ } | {
1284
+ type: "blob";
1285
+ accept?: string[] | undefined;
1286
+ maxSize?: number | undefined;
1287
+ description?: string | undefined;
1288
+ } | {
1289
+ type: "unknown";
1290
+ description?: string | undefined;
1291
+ } | {
1292
+ type: "ref";
1293
+ ref: string;
1294
+ description?: string | undefined;
1295
+ } | {
1296
+ type: "union";
1297
+ refs: string[];
1298
+ closed?: boolean | undefined;
1299
+ description?: string | undefined;
1300
+ } | {
1301
+ type: "array";
1302
+ items: {
1303
+ type: "boolean";
1304
+ default?: boolean | undefined;
1305
+ const?: boolean | undefined;
1306
+ description?: string | undefined;
1307
+ } | {
1308
+ type: "integer";
1309
+ default?: number | undefined;
1310
+ minimum?: number | undefined;
1311
+ maximum?: number | undefined;
1312
+ enum?: number[] | undefined;
1313
+ const?: number | undefined;
1314
+ description?: string | undefined;
1315
+ } | {
1316
+ type: "string";
1317
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1318
+ default?: string | undefined;
1319
+ minLength?: number | undefined;
1320
+ maxLength?: number | undefined;
1321
+ minGraphemes?: number | undefined;
1322
+ maxGraphemes?: number | undefined;
1323
+ enum?: string[] | undefined;
1324
+ const?: string | undefined;
1325
+ knownValues?: string[] | undefined;
1326
+ description?: string | undefined;
1327
+ } | {
1328
+ type: "bytes";
1329
+ maxLength?: number | undefined;
1330
+ minLength?: number | undefined;
1331
+ description?: string | undefined;
1332
+ } | {
1333
+ type: "cid-link";
1334
+ description?: string | undefined;
1335
+ } | {
1336
+ type: "blob";
1337
+ accept?: string[] | undefined;
1338
+ maxSize?: number | undefined;
1339
+ description?: string | undefined;
1340
+ } | {
1341
+ type: "unknown";
1342
+ description?: string | undefined;
1343
+ } | {
1344
+ type: "ref";
1345
+ ref: string;
1346
+ description?: string | undefined;
1347
+ } | {
1348
+ type: "union";
1349
+ refs: string[];
1350
+ closed?: boolean | undefined;
1351
+ description?: string | undefined;
1352
+ };
1353
+ minLength?: number | undefined;
1354
+ maxLength?: number | undefined;
1355
+ description?: string | undefined;
1356
+ }>;
529
1357
  required?: string[] | undefined;
530
1358
  nullable?: string[] | undefined;
531
1359
  description?: string | undefined;
532
1360
  } | undefined;
533
1361
  description?: string | undefined;
534
1362
  } | undefined;
535
- errors?: {
536
- name: string;
537
- description?: string | undefined;
538
- }[] | undefined;
539
- description?: string | undefined;
540
- } | {
541
- type: "procedure";
542
- parameters?: {
543
- type: "params";
544
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
545
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
546
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
547
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
548
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
549
- }>, import("@atproto/lex-schema").ObjectSchema<{
550
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
551
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
552
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
553
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
554
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
555
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
556
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
557
- }>, import("@atproto/lex-schema").ObjectSchema<{
558
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
559
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
560
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
561
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
562
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
563
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
564
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
565
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
566
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
567
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
568
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
569
- }>, import("@atproto/lex-schema").ObjectSchema<{
570
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
571
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
572
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
573
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
574
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
575
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
576
- }>, import("@atproto/lex-schema").ObjectSchema<{
577
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
578
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
579
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
580
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
581
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
582
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
583
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
584
- }>, import("@atproto/lex-schema").ObjectSchema<{
585
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
586
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
587
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
588
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
589
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
590
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
591
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
592
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
593
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
594
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
595
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
596
- }>]>;
597
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
598
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
599
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
600
- }>]>>;
601
- required?: string[] | undefined;
602
- description?: string | undefined;
603
- } | undefined;
604
- input?: {
1363
+ output?: {
605
1364
  encoding: string;
606
1365
  schema?: {
607
1366
  type: "ref";
@@ -614,119 +1373,188 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
614
1373
  description?: string | undefined;
615
1374
  } | {
616
1375
  type: "object";
617
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
618
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
619
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
620
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
621
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
622
- }>, import("@atproto/lex-schema").ObjectSchema<{
623
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
624
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
625
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
626
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
627
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
628
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
629
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
630
- }>, import("@atproto/lex-schema").ObjectSchema<{
631
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
632
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
633
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
634
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
635
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
636
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
637
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
638
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
639
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
640
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
641
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
642
- }>, import("@atproto/lex-schema").ObjectSchema<{
643
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
644
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
645
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
646
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
647
- }>, import("@atproto/lex-schema").ObjectSchema<{
648
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
649
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
650
- }>, import("@atproto/lex-schema").ObjectSchema<{
651
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
652
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
653
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
654
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
655
- }>, import("@atproto/lex-schema").ObjectSchema<{
656
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
657
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
658
- }>, import("@atproto/lex-schema").ObjectSchema<{
659
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
660
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
661
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
662
- }>, import("@atproto/lex-schema").ObjectSchema<{
663
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
664
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
665
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
666
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
667
- }>, import("@atproto/lex-schema").ObjectSchema<{
668
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
669
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
670
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
671
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
672
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
673
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
674
- }>, import("@atproto/lex-schema").ObjectSchema<{
675
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
676
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
677
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
678
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
679
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
680
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
681
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
682
- }>, import("@atproto/lex-schema").ObjectSchema<{
683
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
684
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
685
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
686
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
687
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
688
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
689
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
690
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
691
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
692
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
693
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
694
- }>, import("@atproto/lex-schema").ObjectSchema<{
695
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
696
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
697
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
698
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
699
- }>, import("@atproto/lex-schema").ObjectSchema<{
700
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
701
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
702
- }>, import("@atproto/lex-schema").ObjectSchema<{
703
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
704
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
705
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
706
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
707
- }>, import("@atproto/lex-schema").ObjectSchema<{
708
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
709
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
710
- }>, import("@atproto/lex-schema").ObjectSchema<{
711
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
712
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
713
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
714
- }>, import("@atproto/lex-schema").ObjectSchema<{
715
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
716
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
717
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
718
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
719
- }>]>;
720
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
721
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
722
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
723
- }>]>>;
1376
+ properties: Record<string, {
1377
+ type: "boolean";
1378
+ default?: boolean | undefined;
1379
+ const?: boolean | undefined;
1380
+ description?: string | undefined;
1381
+ } | {
1382
+ type: "integer";
1383
+ default?: number | undefined;
1384
+ minimum?: number | undefined;
1385
+ maximum?: number | undefined;
1386
+ enum?: number[] | undefined;
1387
+ const?: number | undefined;
1388
+ description?: string | undefined;
1389
+ } | {
1390
+ type: "string";
1391
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1392
+ default?: string | undefined;
1393
+ minLength?: number | undefined;
1394
+ maxLength?: number | undefined;
1395
+ minGraphemes?: number | undefined;
1396
+ maxGraphemes?: number | undefined;
1397
+ enum?: string[] | undefined;
1398
+ const?: string | undefined;
1399
+ knownValues?: string[] | undefined;
1400
+ description?: string | undefined;
1401
+ } | {
1402
+ type: "bytes";
1403
+ maxLength?: number | undefined;
1404
+ minLength?: number | undefined;
1405
+ description?: string | undefined;
1406
+ } | {
1407
+ type: "cid-link";
1408
+ description?: string | undefined;
1409
+ } | {
1410
+ type: "blob";
1411
+ accept?: string[] | undefined;
1412
+ maxSize?: number | undefined;
1413
+ description?: string | undefined;
1414
+ } | {
1415
+ type: "unknown";
1416
+ description?: string | undefined;
1417
+ } | {
1418
+ type: "ref";
1419
+ ref: string;
1420
+ description?: string | undefined;
1421
+ } | {
1422
+ type: "union";
1423
+ refs: string[];
1424
+ closed?: boolean | undefined;
1425
+ description?: string | undefined;
1426
+ } | {
1427
+ type: "array";
1428
+ items: {
1429
+ type: "boolean";
1430
+ default?: boolean | undefined;
1431
+ const?: boolean | undefined;
1432
+ description?: string | undefined;
1433
+ } | {
1434
+ type: "integer";
1435
+ default?: number | undefined;
1436
+ minimum?: number | undefined;
1437
+ maximum?: number | undefined;
1438
+ enum?: number[] | undefined;
1439
+ const?: number | undefined;
1440
+ description?: string | undefined;
1441
+ } | {
1442
+ type: "string";
1443
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1444
+ default?: string | undefined;
1445
+ minLength?: number | undefined;
1446
+ maxLength?: number | undefined;
1447
+ minGraphemes?: number | undefined;
1448
+ maxGraphemes?: number | undefined;
1449
+ enum?: string[] | undefined;
1450
+ const?: string | undefined;
1451
+ knownValues?: string[] | undefined;
1452
+ description?: string | undefined;
1453
+ } | {
1454
+ type: "bytes";
1455
+ maxLength?: number | undefined;
1456
+ minLength?: number | undefined;
1457
+ description?: string | undefined;
1458
+ } | {
1459
+ type: "cid-link";
1460
+ description?: string | undefined;
1461
+ } | {
1462
+ type: "blob";
1463
+ accept?: string[] | undefined;
1464
+ maxSize?: number | undefined;
1465
+ description?: string | undefined;
1466
+ } | {
1467
+ type: "unknown";
1468
+ description?: string | undefined;
1469
+ } | {
1470
+ type: "ref";
1471
+ ref: string;
1472
+ description?: string | undefined;
1473
+ } | {
1474
+ type: "union";
1475
+ refs: string[];
1476
+ closed?: boolean | undefined;
1477
+ description?: string | undefined;
1478
+ };
1479
+ minLength?: number | undefined;
1480
+ maxLength?: number | undefined;
1481
+ description?: string | undefined;
1482
+ }>;
724
1483
  required?: string[] | undefined;
725
1484
  nullable?: string[] | undefined;
726
1485
  description?: string | undefined;
727
1486
  } | undefined;
728
1487
  description?: string | undefined;
729
1488
  } | undefined;
1489
+ errors?: {
1490
+ name: string;
1491
+ description?: string | undefined;
1492
+ }[] | undefined;
1493
+ description?: string | undefined;
1494
+ } | {
1495
+ type: "query";
1496
+ parameters?: {
1497
+ type: "params";
1498
+ properties: Record<string, {
1499
+ type: "boolean";
1500
+ default?: boolean | undefined;
1501
+ const?: boolean | undefined;
1502
+ description?: string | undefined;
1503
+ } | {
1504
+ type: "integer";
1505
+ default?: number | undefined;
1506
+ minimum?: number | undefined;
1507
+ maximum?: number | undefined;
1508
+ enum?: number[] | undefined;
1509
+ const?: number | undefined;
1510
+ description?: string | undefined;
1511
+ } | {
1512
+ type: "string";
1513
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1514
+ default?: string | undefined;
1515
+ minLength?: number | undefined;
1516
+ maxLength?: number | undefined;
1517
+ minGraphemes?: number | undefined;
1518
+ maxGraphemes?: number | undefined;
1519
+ enum?: string[] | undefined;
1520
+ const?: string | undefined;
1521
+ knownValues?: string[] | undefined;
1522
+ description?: string | undefined;
1523
+ } | {
1524
+ type: "array";
1525
+ items: {
1526
+ type: "boolean";
1527
+ default?: boolean | undefined;
1528
+ const?: boolean | undefined;
1529
+ description?: string | undefined;
1530
+ } | {
1531
+ type: "integer";
1532
+ default?: number | undefined;
1533
+ minimum?: number | undefined;
1534
+ maximum?: number | undefined;
1535
+ enum?: number[] | undefined;
1536
+ const?: number | undefined;
1537
+ description?: string | undefined;
1538
+ } | {
1539
+ type: "string";
1540
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1541
+ default?: string | undefined;
1542
+ minLength?: number | undefined;
1543
+ maxLength?: number | undefined;
1544
+ minGraphemes?: number | undefined;
1545
+ maxGraphemes?: number | undefined;
1546
+ enum?: string[] | undefined;
1547
+ const?: string | undefined;
1548
+ knownValues?: string[] | undefined;
1549
+ description?: string | undefined;
1550
+ };
1551
+ minLength?: number | undefined;
1552
+ maxLength?: number | undefined;
1553
+ description?: string | undefined;
1554
+ }>;
1555
+ required?: string[] | undefined;
1556
+ description?: string | undefined;
1557
+ } | undefined;
730
1558
  output?: {
731
1559
  encoding: string;
732
1560
  schema?: {
@@ -740,113 +1568,113 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
740
1568
  description?: string | undefined;
741
1569
  } | {
742
1570
  type: "object";
743
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
744
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
745
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
746
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
747
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
748
- }>, import("@atproto/lex-schema").ObjectSchema<{
749
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
750
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
751
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
752
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
753
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
754
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
755
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
756
- }>, import("@atproto/lex-schema").ObjectSchema<{
757
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
758
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
759
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
760
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
761
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
762
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
763
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
764
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
765
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
766
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
767
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
768
- }>, import("@atproto/lex-schema").ObjectSchema<{
769
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
770
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
771
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
772
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
773
- }>, import("@atproto/lex-schema").ObjectSchema<{
774
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
775
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
776
- }>, import("@atproto/lex-schema").ObjectSchema<{
777
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
778
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
779
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
780
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
781
- }>, import("@atproto/lex-schema").ObjectSchema<{
782
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
783
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
784
- }>, import("@atproto/lex-schema").ObjectSchema<{
785
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
786
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
787
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
788
- }>, import("@atproto/lex-schema").ObjectSchema<{
789
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
790
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
791
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
792
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
793
- }>, import("@atproto/lex-schema").ObjectSchema<{
794
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
795
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
796
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
797
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
798
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
799
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
800
- }>, import("@atproto/lex-schema").ObjectSchema<{
801
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
802
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
803
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
804
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
805
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
806
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
807
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
808
- }>, import("@atproto/lex-schema").ObjectSchema<{
809
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
810
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
811
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
812
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
813
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
814
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
815
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
816
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
817
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
818
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
819
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
820
- }>, import("@atproto/lex-schema").ObjectSchema<{
821
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
822
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
823
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
824
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
825
- }>, import("@atproto/lex-schema").ObjectSchema<{
826
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
827
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
828
- }>, import("@atproto/lex-schema").ObjectSchema<{
829
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
830
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
831
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
832
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
833
- }>, import("@atproto/lex-schema").ObjectSchema<{
834
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
835
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
836
- }>, import("@atproto/lex-schema").ObjectSchema<{
837
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
838
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
839
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
840
- }>, import("@atproto/lex-schema").ObjectSchema<{
841
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
842
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
843
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
844
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
845
- }>]>;
846
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
847
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
848
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
849
- }>]>>;
1571
+ properties: Record<string, {
1572
+ type: "boolean";
1573
+ default?: boolean | undefined;
1574
+ const?: boolean | undefined;
1575
+ description?: string | undefined;
1576
+ } | {
1577
+ type: "integer";
1578
+ default?: number | undefined;
1579
+ minimum?: number | undefined;
1580
+ maximum?: number | undefined;
1581
+ enum?: number[] | undefined;
1582
+ const?: number | undefined;
1583
+ description?: string | undefined;
1584
+ } | {
1585
+ type: "string";
1586
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1587
+ default?: string | undefined;
1588
+ minLength?: number | undefined;
1589
+ maxLength?: number | undefined;
1590
+ minGraphemes?: number | undefined;
1591
+ maxGraphemes?: number | undefined;
1592
+ enum?: string[] | undefined;
1593
+ const?: string | undefined;
1594
+ knownValues?: string[] | undefined;
1595
+ description?: string | undefined;
1596
+ } | {
1597
+ type: "bytes";
1598
+ maxLength?: number | undefined;
1599
+ minLength?: number | undefined;
1600
+ description?: string | undefined;
1601
+ } | {
1602
+ type: "cid-link";
1603
+ description?: string | undefined;
1604
+ } | {
1605
+ type: "blob";
1606
+ accept?: string[] | undefined;
1607
+ maxSize?: number | undefined;
1608
+ description?: string | undefined;
1609
+ } | {
1610
+ type: "unknown";
1611
+ description?: string | undefined;
1612
+ } | {
1613
+ type: "ref";
1614
+ ref: string;
1615
+ description?: string | undefined;
1616
+ } | {
1617
+ type: "union";
1618
+ refs: string[];
1619
+ closed?: boolean | undefined;
1620
+ description?: string | undefined;
1621
+ } | {
1622
+ type: "array";
1623
+ items: {
1624
+ type: "boolean";
1625
+ default?: boolean | undefined;
1626
+ const?: boolean | undefined;
1627
+ description?: string | undefined;
1628
+ } | {
1629
+ type: "integer";
1630
+ default?: number | undefined;
1631
+ minimum?: number | undefined;
1632
+ maximum?: number | undefined;
1633
+ enum?: number[] | undefined;
1634
+ const?: number | undefined;
1635
+ description?: string | undefined;
1636
+ } | {
1637
+ type: "string";
1638
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1639
+ default?: string | undefined;
1640
+ minLength?: number | undefined;
1641
+ maxLength?: number | undefined;
1642
+ minGraphemes?: number | undefined;
1643
+ maxGraphemes?: number | undefined;
1644
+ enum?: string[] | undefined;
1645
+ const?: string | undefined;
1646
+ knownValues?: string[] | undefined;
1647
+ description?: string | undefined;
1648
+ } | {
1649
+ type: "bytes";
1650
+ maxLength?: number | undefined;
1651
+ minLength?: number | undefined;
1652
+ description?: string | undefined;
1653
+ } | {
1654
+ type: "cid-link";
1655
+ description?: string | undefined;
1656
+ } | {
1657
+ type: "blob";
1658
+ accept?: string[] | undefined;
1659
+ maxSize?: number | undefined;
1660
+ description?: string | undefined;
1661
+ } | {
1662
+ type: "unknown";
1663
+ description?: string | undefined;
1664
+ } | {
1665
+ type: "ref";
1666
+ ref: string;
1667
+ description?: string | undefined;
1668
+ } | {
1669
+ type: "union";
1670
+ refs: string[];
1671
+ closed?: boolean | undefined;
1672
+ description?: string | undefined;
1673
+ };
1674
+ minLength?: number | undefined;
1675
+ maxLength?: number | undefined;
1676
+ description?: string | undefined;
1677
+ }>;
850
1678
  required?: string[] | undefined;
851
1679
  nullable?: string[] | undefined;
852
1680
  description?: string | undefined;
@@ -858,6 +1686,123 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
858
1686
  description?: string | undefined;
859
1687
  }[] | undefined;
860
1688
  description?: string | undefined;
1689
+ } | {
1690
+ type: "record";
1691
+ record: {
1692
+ type: "object";
1693
+ properties: Record<string, {
1694
+ type: "boolean";
1695
+ default?: boolean | undefined;
1696
+ const?: boolean | undefined;
1697
+ description?: string | undefined;
1698
+ } | {
1699
+ type: "integer";
1700
+ default?: number | undefined;
1701
+ minimum?: number | undefined;
1702
+ maximum?: number | undefined;
1703
+ enum?: number[] | undefined;
1704
+ const?: number | undefined;
1705
+ description?: string | undefined;
1706
+ } | {
1707
+ type: "string";
1708
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1709
+ default?: string | undefined;
1710
+ minLength?: number | undefined;
1711
+ maxLength?: number | undefined;
1712
+ minGraphemes?: number | undefined;
1713
+ maxGraphemes?: number | undefined;
1714
+ enum?: string[] | undefined;
1715
+ const?: string | undefined;
1716
+ knownValues?: string[] | undefined;
1717
+ description?: string | undefined;
1718
+ } | {
1719
+ type: "bytes";
1720
+ maxLength?: number | undefined;
1721
+ minLength?: number | undefined;
1722
+ description?: string | undefined;
1723
+ } | {
1724
+ type: "cid-link";
1725
+ description?: string | undefined;
1726
+ } | {
1727
+ type: "blob";
1728
+ accept?: string[] | undefined;
1729
+ maxSize?: number | undefined;
1730
+ description?: string | undefined;
1731
+ } | {
1732
+ type: "unknown";
1733
+ description?: string | undefined;
1734
+ } | {
1735
+ type: "ref";
1736
+ ref: string;
1737
+ description?: string | undefined;
1738
+ } | {
1739
+ type: "union";
1740
+ refs: string[];
1741
+ closed?: boolean | undefined;
1742
+ description?: string | undefined;
1743
+ } | {
1744
+ type: "array";
1745
+ items: {
1746
+ type: "boolean";
1747
+ default?: boolean | undefined;
1748
+ const?: boolean | undefined;
1749
+ description?: string | undefined;
1750
+ } | {
1751
+ type: "integer";
1752
+ default?: number | undefined;
1753
+ minimum?: number | undefined;
1754
+ maximum?: number | undefined;
1755
+ enum?: number[] | undefined;
1756
+ const?: number | undefined;
1757
+ description?: string | undefined;
1758
+ } | {
1759
+ type: "string";
1760
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1761
+ default?: string | undefined;
1762
+ minLength?: number | undefined;
1763
+ maxLength?: number | undefined;
1764
+ minGraphemes?: number | undefined;
1765
+ maxGraphemes?: number | undefined;
1766
+ enum?: string[] | undefined;
1767
+ const?: string | undefined;
1768
+ knownValues?: string[] | undefined;
1769
+ description?: string | undefined;
1770
+ } | {
1771
+ type: "bytes";
1772
+ maxLength?: number | undefined;
1773
+ minLength?: number | undefined;
1774
+ description?: string | undefined;
1775
+ } | {
1776
+ type: "cid-link";
1777
+ description?: string | undefined;
1778
+ } | {
1779
+ type: "blob";
1780
+ accept?: string[] | undefined;
1781
+ maxSize?: number | undefined;
1782
+ description?: string | undefined;
1783
+ } | {
1784
+ type: "unknown";
1785
+ description?: string | undefined;
1786
+ } | {
1787
+ type: "ref";
1788
+ ref: string;
1789
+ description?: string | undefined;
1790
+ } | {
1791
+ type: "union";
1792
+ refs: string[];
1793
+ closed?: boolean | undefined;
1794
+ description?: string | undefined;
1795
+ };
1796
+ minLength?: number | undefined;
1797
+ maxLength?: number | undefined;
1798
+ description?: string | undefined;
1799
+ }>;
1800
+ required?: string[] | undefined;
1801
+ nullable?: string[] | undefined;
1802
+ description?: string | undefined;
1803
+ };
1804
+ key: import("@atproto/lex-schema").LexiconRecordKey;
1805
+ description?: string | undefined;
861
1806
  } | {
862
1807
  type: "subscription";
863
1808
  message: {
@@ -872,63 +1817,63 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
872
1817
  description?: string | undefined;
873
1818
  parameters?: {
874
1819
  type: "params";
875
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
876
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
877
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
878
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
879
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
880
- }>, import("@atproto/lex-schema").ObjectSchema<{
881
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
882
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
883
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
884
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
885
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
886
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
887
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
888
- }>, import("@atproto/lex-schema").ObjectSchema<{
889
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
890
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
891
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
892
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
893
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
894
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
895
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
896
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
897
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
898
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
899
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
900
- }>, import("@atproto/lex-schema").ObjectSchema<{
901
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
902
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
903
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
904
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
905
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
906
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
907
- }>, import("@atproto/lex-schema").ObjectSchema<{
908
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
909
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
910
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
911
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
912
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
913
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
914
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
915
- }>, import("@atproto/lex-schema").ObjectSchema<{
916
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
917
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
918
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
919
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
920
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
921
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
922
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
923
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
924
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
925
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
926
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
927
- }>]>;
928
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
929
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
930
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
931
- }>]>>;
1820
+ properties: Record<string, {
1821
+ type: "boolean";
1822
+ default?: boolean | undefined;
1823
+ const?: boolean | undefined;
1824
+ description?: string | undefined;
1825
+ } | {
1826
+ type: "integer";
1827
+ default?: number | undefined;
1828
+ minimum?: number | undefined;
1829
+ maximum?: number | undefined;
1830
+ enum?: number[] | undefined;
1831
+ const?: number | undefined;
1832
+ description?: string | undefined;
1833
+ } | {
1834
+ type: "string";
1835
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1836
+ default?: string | undefined;
1837
+ minLength?: number | undefined;
1838
+ maxLength?: number | undefined;
1839
+ minGraphemes?: number | undefined;
1840
+ maxGraphemes?: number | undefined;
1841
+ enum?: string[] | undefined;
1842
+ const?: string | undefined;
1843
+ knownValues?: string[] | undefined;
1844
+ description?: string | undefined;
1845
+ } | {
1846
+ type: "array";
1847
+ items: {
1848
+ type: "boolean";
1849
+ default?: boolean | undefined;
1850
+ const?: boolean | undefined;
1851
+ description?: string | undefined;
1852
+ } | {
1853
+ type: "integer";
1854
+ default?: number | undefined;
1855
+ minimum?: number | undefined;
1856
+ maximum?: number | undefined;
1857
+ enum?: number[] | undefined;
1858
+ const?: number | undefined;
1859
+ description?: string | undefined;
1860
+ } | {
1861
+ type: "string";
1862
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1863
+ default?: string | undefined;
1864
+ minLength?: number | undefined;
1865
+ maxLength?: number | undefined;
1866
+ minGraphemes?: number | undefined;
1867
+ maxGraphemes?: number | undefined;
1868
+ enum?: string[] | undefined;
1869
+ const?: string | undefined;
1870
+ knownValues?: string[] | undefined;
1871
+ description?: string | undefined;
1872
+ };
1873
+ minLength?: number | undefined;
1874
+ maxLength?: number | undefined;
1875
+ description?: string | undefined;
1876
+ }>;
932
1877
  required?: string[] | undefined;
933
1878
  description?: string | undefined;
934
1879
  } | undefined;
@@ -936,22 +1881,6 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
936
1881
  name: string;
937
1882
  description?: string | undefined;
938
1883
  }[] | undefined;
939
- } | {
940
- type: "permission-set";
941
- permissions: {
942
- [x: string]: string | number | boolean | (string | number | boolean)[];
943
- type: "permission";
944
- resource: string;
945
- }[];
946
- title?: string | undefined;
947
- 'title:lang'?: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{
948
- readonly format: "language";
949
- }>, import("@atproto/lex-schema").StringSchema<{}>> | undefined;
950
- detail?: string | undefined;
951
- 'detail:lang'?: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{
952
- readonly format: "language";
953
- }>, import("@atproto/lex-schema").StringSchema<{}>> | undefined;
954
- description?: string | undefined;
955
1884
  } | {
956
1885
  type: "boolean";
957
1886
  default?: boolean | undefined;
@@ -967,7 +1896,7 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
967
1896
  description?: string | undefined;
968
1897
  } | {
969
1898
  type: "string";
970
- format?: "datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key" | undefined;
1899
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
971
1900
  default?: string | undefined;
972
1901
  minLength?: number | undefined;
973
1902
  maxLength?: number | undefined;
@@ -1007,7 +1936,7 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
1007
1936
  description?: string | undefined;
1008
1937
  } | {
1009
1938
  type: "string";
1010
- format?: "datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key" | undefined;
1939
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1011
1940
  default?: string | undefined;
1012
1941
  minLength?: number | undefined;
1013
1942
  maxLength?: number | undefined;
@@ -1048,164 +1977,7 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
1048
1977
  description?: string | undefined;
1049
1978
  } | {
1050
1979
  type: "object";
1051
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1052
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1053
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1054
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1055
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1056
- }>, import("@atproto/lex-schema").ObjectSchema<{
1057
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1058
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1059
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1060
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1061
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1062
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1063
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1064
- }>, import("@atproto/lex-schema").ObjectSchema<{
1065
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1066
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1067
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1068
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1069
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1070
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1071
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1072
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1073
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1074
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1075
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1076
- }>, import("@atproto/lex-schema").ObjectSchema<{
1077
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1078
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1079
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1080
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1081
- }>, import("@atproto/lex-schema").ObjectSchema<{
1082
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1083
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1084
- }>, import("@atproto/lex-schema").ObjectSchema<{
1085
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1086
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1087
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1088
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1089
- }>, import("@atproto/lex-schema").ObjectSchema<{
1090
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1091
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1092
- }>, import("@atproto/lex-schema").ObjectSchema<{
1093
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1094
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1095
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1096
- }>, import("@atproto/lex-schema").ObjectSchema<{
1097
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1098
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1099
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1100
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1101
- }>, import("@atproto/lex-schema").ObjectSchema<{
1102
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
1103
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1104
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1105
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1106
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1107
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1108
- }>, import("@atproto/lex-schema").ObjectSchema<{
1109
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1110
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1111
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1112
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1113
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1114
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1115
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1116
- }>, import("@atproto/lex-schema").ObjectSchema<{
1117
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1118
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1119
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1120
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1121
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1122
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1123
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1124
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1125
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1126
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1127
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1128
- }>, import("@atproto/lex-schema").ObjectSchema<{
1129
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1130
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1131
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1132
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1133
- }>, import("@atproto/lex-schema").ObjectSchema<{
1134
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1135
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1136
- }>, import("@atproto/lex-schema").ObjectSchema<{
1137
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1138
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1139
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1140
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1141
- }>, import("@atproto/lex-schema").ObjectSchema<{
1142
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1143
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1144
- }>, import("@atproto/lex-schema").ObjectSchema<{
1145
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1146
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1147
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1148
- }>, import("@atproto/lex-schema").ObjectSchema<{
1149
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1150
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1151
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1152
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1153
- }>]>;
1154
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1155
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1156
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1157
- }>]>>;
1158
- required?: string[] | undefined;
1159
- nullable?: string[] | undefined;
1160
- description?: string | undefined;
1161
- } | {
1162
- type: "token";
1163
- description?: string | undefined;
1164
- } | undefined;
1165
- main?: {
1166
- type: "boolean";
1167
- default?: boolean | undefined;
1168
- const?: boolean | undefined;
1169
- description?: string | undefined;
1170
- } | {
1171
- type: "integer";
1172
- default?: number | undefined;
1173
- minimum?: number | undefined;
1174
- maximum?: number | undefined;
1175
- enum?: number[] | undefined;
1176
- const?: number | undefined;
1177
- description?: string | undefined;
1178
- } | {
1179
- type: "string";
1180
- format?: "datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key" | undefined;
1181
- default?: string | undefined;
1182
- minLength?: number | undefined;
1183
- maxLength?: number | undefined;
1184
- minGraphemes?: number | undefined;
1185
- maxGraphemes?: number | undefined;
1186
- enum?: string[] | undefined;
1187
- const?: string | undefined;
1188
- knownValues?: string[] | undefined;
1189
- description?: string | undefined;
1190
- } | {
1191
- type: "bytes";
1192
- maxLength?: number | undefined;
1193
- minLength?: number | undefined;
1194
- description?: string | undefined;
1195
- } | {
1196
- type: "cid-link";
1197
- description?: string | undefined;
1198
- } | {
1199
- type: "blob";
1200
- accept?: string[] | undefined;
1201
- maxSize?: number | undefined;
1202
- description?: string | undefined;
1203
- } | {
1204
- type: "token";
1205
- description?: string | undefined;
1206
- } | {
1207
- type: "array";
1208
- items: {
1980
+ properties: Record<string, {
1209
1981
  type: "boolean";
1210
1982
  default?: boolean | undefined;
1211
1983
  const?: boolean | undefined;
@@ -1220,7 +1992,7 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
1220
1992
  description?: string | undefined;
1221
1993
  } | {
1222
1994
  type: "string";
1223
- format?: "datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key" | undefined;
1995
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
1224
1996
  default?: string | undefined;
1225
1997
  minLength?: number | undefined;
1226
1998
  maxLength?: number | undefined;
@@ -1255,848 +2027,68 @@ export declare class FilteredIndexer implements LexiconIndexer, AsyncDisposable
1255
2027
  refs: string[];
1256
2028
  closed?: boolean | undefined;
1257
2029
  description?: string | undefined;
1258
- };
1259
- minLength?: number | undefined;
1260
- maxLength?: number | undefined;
1261
- description?: string | undefined;
1262
- } | {
1263
- type: "object";
1264
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1265
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1266
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1267
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1268
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1269
- }>, import("@atproto/lex-schema").ObjectSchema<{
1270
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1271
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1272
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1273
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1274
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1275
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1276
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1277
- }>, import("@atproto/lex-schema").ObjectSchema<{
1278
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1279
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1280
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1281
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1282
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1283
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1284
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1285
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1286
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1287
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1288
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1289
- }>, import("@atproto/lex-schema").ObjectSchema<{
1290
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1291
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1292
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1293
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1294
- }>, import("@atproto/lex-schema").ObjectSchema<{
1295
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1296
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1297
- }>, import("@atproto/lex-schema").ObjectSchema<{
1298
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1299
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1300
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1301
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1302
- }>, import("@atproto/lex-schema").ObjectSchema<{
1303
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1304
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1305
- }>, import("@atproto/lex-schema").ObjectSchema<{
1306
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1307
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1308
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1309
- }>, import("@atproto/lex-schema").ObjectSchema<{
1310
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1311
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1312
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1313
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1314
- }>, import("@atproto/lex-schema").ObjectSchema<{
1315
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
1316
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1317
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1318
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1319
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1320
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1321
- }>, import("@atproto/lex-schema").ObjectSchema<{
1322
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1323
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1324
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1325
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1326
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1327
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1328
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1329
- }>, import("@atproto/lex-schema").ObjectSchema<{
1330
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1331
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1332
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1333
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1334
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1335
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1336
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1337
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1338
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1339
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1340
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1341
- }>, import("@atproto/lex-schema").ObjectSchema<{
1342
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1343
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1344
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1345
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1346
- }>, import("@atproto/lex-schema").ObjectSchema<{
1347
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1348
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1349
- }>, import("@atproto/lex-schema").ObjectSchema<{
1350
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1351
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1352
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1353
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1354
- }>, import("@atproto/lex-schema").ObjectSchema<{
1355
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1356
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1357
- }>, import("@atproto/lex-schema").ObjectSchema<{
1358
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1359
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1360
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1361
- }>, import("@atproto/lex-schema").ObjectSchema<{
1362
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1363
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1364
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1365
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1366
- }>]>;
1367
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1368
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1369
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1370
- }>]>>;
1371
- required?: string[] | undefined;
1372
- nullable?: string[] | undefined;
1373
- description?: string | undefined;
1374
- } | {
1375
- type: "record";
1376
- record: {
1377
- type: "object";
1378
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1379
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1380
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1381
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1382
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1383
- }>, import("@atproto/lex-schema").ObjectSchema<{
1384
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1385
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1386
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1387
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1388
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1389
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1390
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1391
- }>, import("@atproto/lex-schema").ObjectSchema<{
1392
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1393
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1394
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1395
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1396
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1397
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1398
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1399
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1400
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1401
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1402
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1403
- }>, import("@atproto/lex-schema").ObjectSchema<{
1404
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1405
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1406
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1407
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1408
- }>, import("@atproto/lex-schema").ObjectSchema<{
1409
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1410
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1411
- }>, import("@atproto/lex-schema").ObjectSchema<{
1412
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1413
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1414
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1415
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1416
- }>, import("@atproto/lex-schema").ObjectSchema<{
1417
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1418
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1419
- }>, import("@atproto/lex-schema").ObjectSchema<{
1420
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1421
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1422
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1423
- }>, import("@atproto/lex-schema").ObjectSchema<{
1424
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1425
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1426
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1427
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1428
- }>, import("@atproto/lex-schema").ObjectSchema<{
1429
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
1430
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1431
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1432
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1433
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1434
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1435
- }>, import("@atproto/lex-schema").ObjectSchema<{
1436
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1437
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1438
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1439
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1440
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1441
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1442
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1443
- }>, import("@atproto/lex-schema").ObjectSchema<{
1444
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1445
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1446
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1447
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1448
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1449
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1450
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1451
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1452
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1453
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1454
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1455
- }>, import("@atproto/lex-schema").ObjectSchema<{
1456
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1457
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1458
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1459
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1460
- }>, import("@atproto/lex-schema").ObjectSchema<{
1461
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1462
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1463
- }>, import("@atproto/lex-schema").ObjectSchema<{
1464
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1465
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1466
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1467
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1468
- }>, import("@atproto/lex-schema").ObjectSchema<{
1469
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1470
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1471
- }>, import("@atproto/lex-schema").ObjectSchema<{
1472
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1473
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1474
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1475
- }>, import("@atproto/lex-schema").ObjectSchema<{
1476
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1477
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1478
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1479
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1480
- }>]>;
1481
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1482
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1483
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1484
- }>]>>;
1485
- required?: string[] | undefined;
1486
- nullable?: string[] | undefined;
1487
- description?: string | undefined;
1488
- };
1489
- key: import("@atproto/lex-schema").LexiconRecordKey;
1490
- description?: string | undefined;
1491
- } | {
1492
- type: "query";
1493
- parameters?: {
1494
- type: "params";
1495
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1496
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1497
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1498
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1499
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1500
- }>, import("@atproto/lex-schema").ObjectSchema<{
1501
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1502
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1503
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1504
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1505
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1506
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1507
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1508
- }>, import("@atproto/lex-schema").ObjectSchema<{
1509
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1510
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1511
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1512
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1513
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1514
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1515
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1516
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1517
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1518
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1519
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1520
- }>, import("@atproto/lex-schema").ObjectSchema<{
1521
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
1522
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1523
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1524
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1525
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1526
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1527
- }>, import("@atproto/lex-schema").ObjectSchema<{
1528
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1529
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1530
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1531
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1532
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1533
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1534
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1535
- }>, import("@atproto/lex-schema").ObjectSchema<{
1536
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1537
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1538
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1539
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1540
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1541
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1542
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1543
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1544
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1545
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1546
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1547
- }>]>;
1548
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1549
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1550
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1551
- }>]>>;
1552
- required?: string[] | undefined;
1553
- description?: string | undefined;
1554
- } | undefined;
1555
- output?: {
1556
- encoding: string;
1557
- schema?: {
1558
- type: "ref";
1559
- ref: string;
2030
+ } | {
2031
+ type: "array";
2032
+ items: {
2033
+ type: "boolean";
2034
+ default?: boolean | undefined;
2035
+ const?: boolean | undefined;
1560
2036
  description?: string | undefined;
1561
2037
  } | {
1562
- type: "union";
1563
- refs: string[];
1564
- closed?: boolean | undefined;
2038
+ type: "integer";
2039
+ default?: number | undefined;
2040
+ minimum?: number | undefined;
2041
+ maximum?: number | undefined;
2042
+ enum?: number[] | undefined;
2043
+ const?: number | undefined;
1565
2044
  description?: string | undefined;
1566
2045
  } | {
1567
- type: "object";
1568
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1569
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1570
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1571
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1572
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1573
- }>, import("@atproto/lex-schema").ObjectSchema<{
1574
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1575
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1576
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1577
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1578
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1579
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1580
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1581
- }>, import("@atproto/lex-schema").ObjectSchema<{
1582
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1583
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1584
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1585
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1586
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1587
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1588
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1589
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1590
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1591
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1592
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1593
- }>, import("@atproto/lex-schema").ObjectSchema<{
1594
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1595
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1596
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1597
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1598
- }>, import("@atproto/lex-schema").ObjectSchema<{
1599
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1600
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1601
- }>, import("@atproto/lex-schema").ObjectSchema<{
1602
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1603
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1604
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1605
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1606
- }>, import("@atproto/lex-schema").ObjectSchema<{
1607
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1608
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1609
- }>, import("@atproto/lex-schema").ObjectSchema<{
1610
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1611
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1612
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1613
- }>, import("@atproto/lex-schema").ObjectSchema<{
1614
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1615
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1616
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1617
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1618
- }>, import("@atproto/lex-schema").ObjectSchema<{
1619
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
1620
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1621
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1622
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1623
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1624
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1625
- }>, import("@atproto/lex-schema").ObjectSchema<{
1626
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1627
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1628
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1629
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1630
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1631
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1632
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1633
- }>, import("@atproto/lex-schema").ObjectSchema<{
1634
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1635
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1636
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1637
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1638
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1639
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1640
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1641
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1642
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1643
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1644
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1645
- }>, import("@atproto/lex-schema").ObjectSchema<{
1646
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1647
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1648
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1649
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1650
- }>, import("@atproto/lex-schema").ObjectSchema<{
1651
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1652
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1653
- }>, import("@atproto/lex-schema").ObjectSchema<{
1654
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1655
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1656
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1657
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1658
- }>, import("@atproto/lex-schema").ObjectSchema<{
1659
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1660
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1661
- }>, import("@atproto/lex-schema").ObjectSchema<{
1662
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1663
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1664
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1665
- }>, import("@atproto/lex-schema").ObjectSchema<{
1666
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1667
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1668
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1669
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1670
- }>]>;
1671
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1672
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1673
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1674
- }>]>>;
1675
- required?: string[] | undefined;
1676
- nullable?: string[] | undefined;
1677
- description?: string | undefined;
1678
- } | undefined;
1679
- description?: string | undefined;
1680
- } | undefined;
1681
- errors?: {
1682
- name: string;
1683
- description?: string | undefined;
1684
- }[] | undefined;
1685
- description?: string | undefined;
1686
- } | {
1687
- type: "procedure";
1688
- parameters?: {
1689
- type: "params";
1690
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1691
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1692
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1693
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1694
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1695
- }>, import("@atproto/lex-schema").ObjectSchema<{
1696
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1697
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1698
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1699
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1700
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1701
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1702
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1703
- }>, import("@atproto/lex-schema").ObjectSchema<{
1704
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1705
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1706
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1707
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1708
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1709
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1710
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1711
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1712
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1713
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1714
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1715
- }>, import("@atproto/lex-schema").ObjectSchema<{
1716
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
1717
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1718
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1719
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1720
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1721
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1722
- }>, import("@atproto/lex-schema").ObjectSchema<{
1723
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1724
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1725
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1726
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1727
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1728
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1729
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1730
- }>, import("@atproto/lex-schema").ObjectSchema<{
1731
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1732
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1733
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1734
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1735
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1736
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1737
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1738
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1739
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1740
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1741
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1742
- }>]>;
1743
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1744
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1745
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1746
- }>]>>;
1747
- required?: string[] | undefined;
1748
- description?: string | undefined;
1749
- } | undefined;
1750
- input?: {
1751
- encoding: string;
1752
- schema?: {
1753
- type: "ref";
1754
- ref: string;
2046
+ type: "string";
2047
+ format?: import("@atproto/lex-schema").StringFormat | undefined;
2048
+ default?: string | undefined;
2049
+ minLength?: number | undefined;
2050
+ maxLength?: number | undefined;
2051
+ minGraphemes?: number | undefined;
2052
+ maxGraphemes?: number | undefined;
2053
+ enum?: string[] | undefined;
2054
+ const?: string | undefined;
2055
+ knownValues?: string[] | undefined;
1755
2056
  description?: string | undefined;
1756
2057
  } | {
1757
- type: "union";
1758
- refs: string[];
1759
- closed?: boolean | undefined;
2058
+ type: "bytes";
2059
+ maxLength?: number | undefined;
2060
+ minLength?: number | undefined;
1760
2061
  description?: string | undefined;
1761
2062
  } | {
1762
- type: "object";
1763
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1764
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1765
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1766
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1767
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1768
- }>, import("@atproto/lex-schema").ObjectSchema<{
1769
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1770
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1771
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1772
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1773
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1774
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1775
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1776
- }>, import("@atproto/lex-schema").ObjectSchema<{
1777
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1778
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1779
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1780
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1781
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1782
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1783
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1784
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1785
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1786
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1787
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1788
- }>, import("@atproto/lex-schema").ObjectSchema<{
1789
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1790
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1791
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1792
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1793
- }>, import("@atproto/lex-schema").ObjectSchema<{
1794
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1795
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1796
- }>, import("@atproto/lex-schema").ObjectSchema<{
1797
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1798
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1799
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1800
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1801
- }>, import("@atproto/lex-schema").ObjectSchema<{
1802
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1803
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1804
- }>, import("@atproto/lex-schema").ObjectSchema<{
1805
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1806
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1807
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1808
- }>, import("@atproto/lex-schema").ObjectSchema<{
1809
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1810
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1811
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1812
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1813
- }>, import("@atproto/lex-schema").ObjectSchema<{
1814
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
1815
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1816
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1817
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1818
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1819
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1820
- }>, import("@atproto/lex-schema").ObjectSchema<{
1821
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1822
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1823
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1824
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1825
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1826
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1827
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1828
- }>, import("@atproto/lex-schema").ObjectSchema<{
1829
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1830
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1831
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1832
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1833
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1834
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1835
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1836
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1837
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1838
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1839
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1840
- }>, import("@atproto/lex-schema").ObjectSchema<{
1841
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1842
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1843
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1844
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1845
- }>, import("@atproto/lex-schema").ObjectSchema<{
1846
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1847
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1848
- }>, import("@atproto/lex-schema").ObjectSchema<{
1849
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1850
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1851
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1852
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1853
- }>, import("@atproto/lex-schema").ObjectSchema<{
1854
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1855
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1856
- }>, import("@atproto/lex-schema").ObjectSchema<{
1857
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1858
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1859
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1860
- }>, import("@atproto/lex-schema").ObjectSchema<{
1861
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1862
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1863
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1864
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1865
- }>]>;
1866
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1867
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1868
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1869
- }>]>>;
1870
- required?: string[] | undefined;
1871
- nullable?: string[] | undefined;
2063
+ type: "cid-link";
1872
2064
  description?: string | undefined;
1873
- } | undefined;
1874
- description?: string | undefined;
1875
- } | undefined;
1876
- output?: {
1877
- encoding: string;
1878
- schema?: {
1879
- type: "ref";
1880
- ref: string;
2065
+ } | {
2066
+ type: "blob";
2067
+ accept?: string[] | undefined;
2068
+ maxSize?: number | undefined;
1881
2069
  description?: string | undefined;
1882
2070
  } | {
1883
- type: "union";
1884
- refs: string[];
1885
- closed?: boolean | undefined;
2071
+ type: "unknown";
1886
2072
  description?: string | undefined;
1887
2073
  } | {
1888
- type: "object";
1889
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1890
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1891
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1892
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1893
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1894
- }>, import("@atproto/lex-schema").ObjectSchema<{
1895
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1896
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1897
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1898
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1899
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1900
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1901
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1902
- }>, import("@atproto/lex-schema").ObjectSchema<{
1903
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1904
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1905
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1906
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1907
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1908
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1909
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1910
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1911
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1912
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1913
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1914
- }>, import("@atproto/lex-schema").ObjectSchema<{
1915
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1916
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1917
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1918
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1919
- }>, import("@atproto/lex-schema").ObjectSchema<{
1920
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1921
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1922
- }>, import("@atproto/lex-schema").ObjectSchema<{
1923
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1924
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1925
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1926
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1927
- }>, import("@atproto/lex-schema").ObjectSchema<{
1928
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1929
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1930
- }>, import("@atproto/lex-schema").ObjectSchema<{
1931
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1932
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1933
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1934
- }>, import("@atproto/lex-schema").ObjectSchema<{
1935
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1936
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1937
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1938
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1939
- }>, import("@atproto/lex-schema").ObjectSchema<{
1940
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
1941
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
1942
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
1943
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
1944
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
1945
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1946
- }>, import("@atproto/lex-schema").ObjectSchema<{
1947
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
1948
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
1949
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
1950
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
1951
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
1952
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
1953
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1954
- }>, import("@atproto/lex-schema").ObjectSchema<{
1955
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
1956
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
1957
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
1958
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1959
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1960
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1961
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
1962
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
1963
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
1964
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
1965
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1966
- }>, import("@atproto/lex-schema").ObjectSchema<{
1967
- readonly type: import("@atproto/lex-schema").LiteralSchema<"bytes">;
1968
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1969
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1970
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1971
- }>, import("@atproto/lex-schema").ObjectSchema<{
1972
- readonly type: import("@atproto/lex-schema").LiteralSchema<"cid-link">;
1973
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1974
- }>, import("@atproto/lex-schema").ObjectSchema<{
1975
- readonly type: import("@atproto/lex-schema").LiteralSchema<"blob">;
1976
- readonly accept: import("@atproto/lex-schema").OptionalSchema<string[]>;
1977
- readonly maxSize: import("@atproto/lex-schema").OptionalSchema<number>;
1978
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1979
- }>, import("@atproto/lex-schema").ObjectSchema<{
1980
- readonly type: import("@atproto/lex-schema").LiteralSchema<"unknown">;
1981
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1982
- }>, import("@atproto/lex-schema").ObjectSchema<{
1983
- readonly type: import("@atproto/lex-schema").LiteralSchema<"ref">;
1984
- readonly ref: import("@atproto/lex-schema").StringSchema<{}>;
1985
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1986
- }>, import("@atproto/lex-schema").ObjectSchema<{
1987
- readonly type: import("@atproto/lex-schema").LiteralSchema<"union">;
1988
- readonly refs: import("@atproto/lex-schema").ArraySchema<import("@atproto/lex-schema").StringSchema<{}>>;
1989
- readonly closed: import("@atproto/lex-schema").OptionalSchema<boolean>;
1990
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1991
- }>]>;
1992
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
1993
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
1994
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
1995
- }>]>>;
1996
- required?: string[] | undefined;
1997
- nullable?: string[] | undefined;
2074
+ type: "ref";
2075
+ ref: string;
1998
2076
  description?: string | undefined;
1999
- } | undefined;
2000
- description?: string | undefined;
2001
- } | undefined;
2002
- errors?: {
2003
- name: string;
2004
- description?: string | undefined;
2005
- }[] | undefined;
2006
- description?: string | undefined;
2007
- } | {
2008
- type: "subscription";
2009
- message: {
2010
- schema: {
2077
+ } | {
2011
2078
  type: "union";
2012
2079
  refs: string[];
2013
2080
  closed?: boolean | undefined;
2014
2081
  description?: string | undefined;
2015
2082
  };
2083
+ minLength?: number | undefined;
2084
+ maxLength?: number | undefined;
2016
2085
  description?: string | undefined;
2017
- };
2086
+ }>;
2087
+ required?: string[] | undefined;
2088
+ nullable?: string[] | undefined;
2018
2089
  description?: string | undefined;
2019
- parameters?: {
2020
- type: "params";
2021
- properties: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{}>, import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
2022
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
2023
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
2024
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
2025
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
2026
- }>, import("@atproto/lex-schema").ObjectSchema<{
2027
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
2028
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
2029
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
2030
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
2031
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
2032
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
2033
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
2034
- }>, import("@atproto/lex-schema").ObjectSchema<{
2035
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
2036
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
2037
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
2038
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
2039
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
2040
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
2041
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
2042
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
2043
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
2044
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
2045
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
2046
- }>, import("@atproto/lex-schema").ObjectSchema<{
2047
- readonly type: import("@atproto/lex-schema").LiteralSchema<"array">;
2048
- readonly items: import("@atproto/lex-schema").DiscriminatedUnionSchema<"type", readonly [import("@atproto/lex-schema").ObjectSchema<{
2049
- readonly type: import("@atproto/lex-schema").LiteralSchema<"boolean">;
2050
- readonly default: import("@atproto/lex-schema").OptionalSchema<boolean>;
2051
- readonly const: import("@atproto/lex-schema").OptionalSchema<boolean>;
2052
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
2053
- }>, import("@atproto/lex-schema").ObjectSchema<{
2054
- readonly type: import("@atproto/lex-schema").LiteralSchema<"integer">;
2055
- readonly default: import("@atproto/lex-schema").OptionalSchema<number>;
2056
- readonly minimum: import("@atproto/lex-schema").OptionalSchema<number>;
2057
- readonly maximum: import("@atproto/lex-schema").OptionalSchema<number>;
2058
- readonly enum: import("@atproto/lex-schema").OptionalSchema<number[]>;
2059
- readonly const: import("@atproto/lex-schema").OptionalSchema<number>;
2060
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
2061
- }>, import("@atproto/lex-schema").ObjectSchema<{
2062
- readonly type: import("@atproto/lex-schema").LiteralSchema<"string">;
2063
- readonly format: import("@atproto/lex-schema").OptionalSchema<"datetime" | "uri" | "at-uri" | "did" | "handle" | "at-identifier" | "nsid" | "cid" | "language" | "tid" | "record-key">;
2064
- readonly default: import("@atproto/lex-schema").OptionalSchema<string>;
2065
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
2066
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
2067
- readonly minGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
2068
- readonly maxGraphemes: import("@atproto/lex-schema").OptionalSchema<number>;
2069
- readonly enum: import("@atproto/lex-schema").OptionalSchema<string[]>;
2070
- readonly const: import("@atproto/lex-schema").OptionalSchema<string>;
2071
- readonly knownValues: import("@atproto/lex-schema").OptionalSchema<string[]>;
2072
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
2073
- }>]>;
2074
- readonly minLength: import("@atproto/lex-schema").OptionalSchema<number>;
2075
- readonly maxLength: import("@atproto/lex-schema").OptionalSchema<number>;
2076
- readonly description: import("@atproto/lex-schema").OptionalSchema<string>;
2077
- }>]>>;
2078
- required?: string[] | undefined;
2079
- description?: string | undefined;
2080
- } | undefined;
2081
- errors?: {
2082
- name: string;
2083
- description?: string | undefined;
2084
- }[] | undefined;
2085
2090
  } | {
2086
- type: "permission-set";
2087
- permissions: {
2088
- [x: string]: string | number | boolean | (string | number | boolean)[];
2089
- type: "permission";
2090
- resource: string;
2091
- }[];
2092
- title?: string | undefined;
2093
- 'title:lang'?: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{
2094
- readonly format: "language";
2095
- }>, import("@atproto/lex-schema").StringSchema<{}>> | undefined;
2096
- detail?: string | undefined;
2097
- 'detail:lang'?: import("@atproto/lex-schema").DictSchemaOutput<import("@atproto/lex-schema").StringSchema<{
2098
- readonly format: "language";
2099
- }>, import("@atproto/lex-schema").StringSchema<{}>> | undefined;
2091
+ type: "token";
2100
2092
  description?: string | undefined;
2101
2093
  } | undefined;
2102
2094
  };