@extentos/mcp-server 0.0.60 → 0.0.62
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.
- package/dist/tools/data/capabilities.d.ts +152 -0
- package/dist/tools/data/capabilities.d.ts.map +1 -1
- package/dist/tools/data/capabilities.js +162 -8
- package/dist/tools/data/capabilities.js.map +1 -1
- package/dist/tools/definitions.d.ts.map +1 -1
- package/dist/tools/definitions.js +6 -1
- package/dist/tools/definitions.js.map +1 -1
- package/dist/tools/handlers/generateConnectionModule.d.ts.map +1 -1
- package/dist/tools/handlers/generateConnectionModule.js +88 -10
- package/dist/tools/handlers/generateConnectionModule.js.map +1 -1
- package/dist/tools/handlers/getPermissions.d.ts.map +1 -1
- package/dist/tools/handlers/getPermissions.js +9 -3
- package/dist/tools/handlers/getPermissions.js.map +1 -1
- package/dist/tools/handlers/getPlatformInfo.d.ts.map +1 -1
- package/dist/tools/handlers/getPlatformInfo.js +77 -59
- package/dist/tools/handlers/getPlatformInfo.js.map +1 -1
- package/dist/tools/handlers/getProductionChecklist.js +5 -4
- package/dist/tools/handlers/getProductionChecklist.js.map +1 -1
- package/dist/tools/templates/androidBootstrap.d.ts +8 -1
- package/dist/tools/templates/androidBootstrap.d.ts.map +1 -1
- package/dist/tools/templates/androidBootstrap.js +137 -14
- package/dist/tools/templates/androidBootstrap.js.map +1 -1
- package/dist/tools/util/permissions.d.ts +1 -0
- package/dist/tools/util/permissions.d.ts.map +1 -1
- package/dist/tools/util/permissions.js +14 -2
- package/dist/tools/util/permissions.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,13 +1,20 @@
|
|
|
1
|
+
export declare const TIER_DESCRIPTIONS: Record<string, string>;
|
|
1
2
|
export declare const META_RAYBAN_CAPABILITIES: {
|
|
2
3
|
model: string;
|
|
3
4
|
datVersion: {
|
|
4
5
|
android: string;
|
|
5
6
|
ios: string;
|
|
6
7
|
};
|
|
8
|
+
tierDescriptions: Record<string, string>;
|
|
7
9
|
blocks: ({
|
|
8
10
|
type: string;
|
|
9
11
|
tier: string;
|
|
10
12
|
confidence: string;
|
|
13
|
+
description: string;
|
|
14
|
+
sdkPath: {
|
|
15
|
+
kotlin: string;
|
|
16
|
+
swift: string;
|
|
17
|
+
};
|
|
11
18
|
params: {
|
|
12
19
|
resolution: string[];
|
|
13
20
|
format: string[];
|
|
@@ -32,6 +39,11 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
32
39
|
type: string;
|
|
33
40
|
tier: string;
|
|
34
41
|
confidence: string;
|
|
42
|
+
description: string;
|
|
43
|
+
sdkPath: {
|
|
44
|
+
kotlin: string;
|
|
45
|
+
swift: string;
|
|
46
|
+
};
|
|
35
47
|
params: {
|
|
36
48
|
resolution: string[];
|
|
37
49
|
max_duration_seconds: {
|
|
@@ -66,6 +78,11 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
66
78
|
type: string;
|
|
67
79
|
tier: string;
|
|
68
80
|
confidence: string;
|
|
81
|
+
description: string;
|
|
82
|
+
sdkPath: {
|
|
83
|
+
kotlin: string;
|
|
84
|
+
swift: string;
|
|
85
|
+
};
|
|
69
86
|
params: {
|
|
70
87
|
max_duration_seconds: {
|
|
71
88
|
max: number;
|
|
@@ -101,6 +118,11 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
101
118
|
streams: ({
|
|
102
119
|
type: string;
|
|
103
120
|
tier: string;
|
|
121
|
+
description: string;
|
|
122
|
+
sdkPath: {
|
|
123
|
+
kotlin: string;
|
|
124
|
+
swift: string;
|
|
125
|
+
};
|
|
104
126
|
config: {
|
|
105
127
|
resolution: string[];
|
|
106
128
|
frame_rate: number[];
|
|
@@ -111,9 +133,15 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
111
133
|
min_partial_confidence?: undefined;
|
|
112
134
|
};
|
|
113
135
|
batteryGuidance: string;
|
|
136
|
+
direction?: undefined;
|
|
114
137
|
} | {
|
|
115
138
|
type: string;
|
|
116
139
|
tier: string;
|
|
140
|
+
description: string;
|
|
141
|
+
sdkPath: {
|
|
142
|
+
kotlin: string;
|
|
143
|
+
swift: string;
|
|
144
|
+
};
|
|
117
145
|
config: {
|
|
118
146
|
chunk_millis: {
|
|
119
147
|
default: number;
|
|
@@ -126,9 +154,15 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
126
154
|
min_partial_confidence?: undefined;
|
|
127
155
|
};
|
|
128
156
|
batteryGuidance: string;
|
|
157
|
+
direction?: undefined;
|
|
129
158
|
} | {
|
|
130
159
|
type: string;
|
|
131
160
|
tier: string;
|
|
161
|
+
description: string;
|
|
162
|
+
sdkPath: {
|
|
163
|
+
kotlin: string;
|
|
164
|
+
swift: string;
|
|
165
|
+
};
|
|
132
166
|
config: {
|
|
133
167
|
language: string;
|
|
134
168
|
min_partial_confidence: {
|
|
@@ -141,9 +175,16 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
141
175
|
chunk_millis?: undefined;
|
|
142
176
|
};
|
|
143
177
|
batteryGuidance: string;
|
|
178
|
+
direction?: undefined;
|
|
144
179
|
} | {
|
|
145
180
|
type: string;
|
|
146
181
|
tier: string;
|
|
182
|
+
description: string;
|
|
183
|
+
direction: string;
|
|
184
|
+
sdkPath: {
|
|
185
|
+
kotlin: string;
|
|
186
|
+
swift: string;
|
|
187
|
+
};
|
|
147
188
|
config: {
|
|
148
189
|
chunk_millis: {
|
|
149
190
|
default: number;
|
|
@@ -159,6 +200,12 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
159
200
|
} | {
|
|
160
201
|
type: string;
|
|
161
202
|
tier: string;
|
|
203
|
+
description: string;
|
|
204
|
+
direction: string;
|
|
205
|
+
sdkPath: {
|
|
206
|
+
kotlin: string;
|
|
207
|
+
swift: string;
|
|
208
|
+
};
|
|
162
209
|
config: {
|
|
163
210
|
resolution: string[];
|
|
164
211
|
frame_rate: number[];
|
|
@@ -173,6 +220,11 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
173
220
|
triggers: ({
|
|
174
221
|
type: string;
|
|
175
222
|
tier: string;
|
|
223
|
+
description: string;
|
|
224
|
+
sdkPath: {
|
|
225
|
+
kotlin: string;
|
|
226
|
+
swift: string;
|
|
227
|
+
};
|
|
176
228
|
params: {
|
|
177
229
|
phrase: string;
|
|
178
230
|
match_mode: string[];
|
|
@@ -210,6 +262,11 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
210
262
|
} | {
|
|
211
263
|
type: string;
|
|
212
264
|
tier: string;
|
|
265
|
+
description: string;
|
|
266
|
+
sdkPath: {
|
|
267
|
+
kotlin: string;
|
|
268
|
+
swift: string;
|
|
269
|
+
};
|
|
213
270
|
params: {
|
|
214
271
|
phrase: string;
|
|
215
272
|
match_mode?: undefined;
|
|
@@ -226,6 +283,11 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
226
283
|
} | {
|
|
227
284
|
type: string;
|
|
228
285
|
tier: string;
|
|
286
|
+
description: string;
|
|
287
|
+
sdkPath: {
|
|
288
|
+
kotlin: string;
|
|
289
|
+
swift: string;
|
|
290
|
+
};
|
|
229
291
|
params: {
|
|
230
292
|
phrase?: undefined;
|
|
231
293
|
match_mode?: undefined;
|
|
@@ -294,11 +356,15 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
294
356
|
callerName?: undefined;
|
|
295
357
|
state?: undefined;
|
|
296
358
|
};
|
|
359
|
+
description?: undefined;
|
|
360
|
+
sdkPath?: undefined;
|
|
297
361
|
requires?: undefined;
|
|
298
362
|
constraints?: undefined;
|
|
299
363
|
} | {
|
|
300
364
|
type: string;
|
|
301
365
|
tier: string;
|
|
366
|
+
description?: undefined;
|
|
367
|
+
sdkPath?: undefined;
|
|
302
368
|
params?: undefined;
|
|
303
369
|
payload?: undefined;
|
|
304
370
|
requires?: undefined;
|
|
@@ -336,6 +402,8 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
336
402
|
callerName?: undefined;
|
|
337
403
|
state?: undefined;
|
|
338
404
|
};
|
|
405
|
+
description?: undefined;
|
|
406
|
+
sdkPath?: undefined;
|
|
339
407
|
requires?: undefined;
|
|
340
408
|
constraints?: undefined;
|
|
341
409
|
} | {
|
|
@@ -361,6 +429,8 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
361
429
|
callerName?: undefined;
|
|
362
430
|
state?: undefined;
|
|
363
431
|
};
|
|
432
|
+
description?: undefined;
|
|
433
|
+
sdkPath?: undefined;
|
|
364
434
|
params?: undefined;
|
|
365
435
|
requires?: undefined;
|
|
366
436
|
constraints?: undefined;
|
|
@@ -388,6 +458,8 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
388
458
|
state?: undefined;
|
|
389
459
|
};
|
|
390
460
|
requires: string[];
|
|
461
|
+
description?: undefined;
|
|
462
|
+
sdkPath?: undefined;
|
|
391
463
|
params?: undefined;
|
|
392
464
|
constraints?: undefined;
|
|
393
465
|
} | {
|
|
@@ -428,6 +500,8 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
428
500
|
state?: undefined;
|
|
429
501
|
};
|
|
430
502
|
requires: string[];
|
|
503
|
+
description?: undefined;
|
|
504
|
+
sdkPath?: undefined;
|
|
431
505
|
constraints?: undefined;
|
|
432
506
|
} | {
|
|
433
507
|
type: string;
|
|
@@ -453,6 +527,8 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
453
527
|
state?: undefined;
|
|
454
528
|
};
|
|
455
529
|
requires: string[];
|
|
530
|
+
description?: undefined;
|
|
531
|
+
sdkPath?: undefined;
|
|
456
532
|
params?: undefined;
|
|
457
533
|
constraints?: undefined;
|
|
458
534
|
} | {
|
|
@@ -478,6 +554,8 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
478
554
|
callerNumber?: undefined;
|
|
479
555
|
callerName?: undefined;
|
|
480
556
|
};
|
|
557
|
+
description?: undefined;
|
|
558
|
+
sdkPath?: undefined;
|
|
481
559
|
params?: undefined;
|
|
482
560
|
requires?: undefined;
|
|
483
561
|
constraints?: undefined;
|
|
@@ -505,16 +583,85 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
505
583
|
state?: undefined;
|
|
506
584
|
};
|
|
507
585
|
requires: string[];
|
|
586
|
+
description?: undefined;
|
|
587
|
+
sdkPath?: undefined;
|
|
508
588
|
params?: undefined;
|
|
509
589
|
constraints?: undefined;
|
|
510
590
|
} | {
|
|
511
591
|
type: string;
|
|
512
592
|
tier: string;
|
|
593
|
+
description: string;
|
|
594
|
+
sdkPath: {
|
|
595
|
+
kotlin: string;
|
|
596
|
+
swift: string;
|
|
597
|
+
};
|
|
513
598
|
constraints: string[];
|
|
514
599
|
params?: undefined;
|
|
515
600
|
payload?: undefined;
|
|
516
601
|
requires?: undefined;
|
|
517
602
|
})[];
|
|
603
|
+
sdkMethods: ({
|
|
604
|
+
type: string;
|
|
605
|
+
tier: string;
|
|
606
|
+
description: string;
|
|
607
|
+
sdkPath: {
|
|
608
|
+
kotlin: string;
|
|
609
|
+
swift: string;
|
|
610
|
+
};
|
|
611
|
+
params: {
|
|
612
|
+
text: string;
|
|
613
|
+
config: string;
|
|
614
|
+
sound?: undefined;
|
|
615
|
+
volume?: undefined;
|
|
616
|
+
};
|
|
617
|
+
returns: {
|
|
618
|
+
ok: string;
|
|
619
|
+
state?: undefined;
|
|
620
|
+
};
|
|
621
|
+
} | {
|
|
622
|
+
type: string;
|
|
623
|
+
tier: string;
|
|
624
|
+
description: string;
|
|
625
|
+
sdkPath: {
|
|
626
|
+
kotlin: string;
|
|
627
|
+
swift: string;
|
|
628
|
+
};
|
|
629
|
+
params: {
|
|
630
|
+
text?: undefined;
|
|
631
|
+
config?: undefined;
|
|
632
|
+
sound?: undefined;
|
|
633
|
+
volume?: undefined;
|
|
634
|
+
};
|
|
635
|
+
returns?: undefined;
|
|
636
|
+
} | {
|
|
637
|
+
type: string;
|
|
638
|
+
tier: string;
|
|
639
|
+
description: string;
|
|
640
|
+
sdkPath: {
|
|
641
|
+
kotlin: string;
|
|
642
|
+
swift: string;
|
|
643
|
+
};
|
|
644
|
+
params: {
|
|
645
|
+
sound: string[];
|
|
646
|
+
volume: string;
|
|
647
|
+
text?: undefined;
|
|
648
|
+
config?: undefined;
|
|
649
|
+
};
|
|
650
|
+
returns?: undefined;
|
|
651
|
+
} | {
|
|
652
|
+
type: string;
|
|
653
|
+
tier: string;
|
|
654
|
+
description: string;
|
|
655
|
+
sdkPath: {
|
|
656
|
+
kotlin: string;
|
|
657
|
+
swift: string;
|
|
658
|
+
};
|
|
659
|
+
returns: {
|
|
660
|
+
state: string;
|
|
661
|
+
ok?: undefined;
|
|
662
|
+
};
|
|
663
|
+
params?: undefined;
|
|
664
|
+
})[];
|
|
518
665
|
actions: ({
|
|
519
666
|
type: string;
|
|
520
667
|
constraints?: undefined;
|
|
@@ -553,10 +700,14 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
553
700
|
type: string;
|
|
554
701
|
default: string;
|
|
555
702
|
values: string[];
|
|
703
|
+
gates: string[];
|
|
704
|
+
description: string;
|
|
556
705
|
} | {
|
|
557
706
|
key: string;
|
|
558
707
|
type: string;
|
|
559
708
|
default: boolean;
|
|
709
|
+
gates: string[];
|
|
710
|
+
description: string;
|
|
560
711
|
values?: undefined;
|
|
561
712
|
})[];
|
|
562
713
|
globalConstraints: string[];
|
|
@@ -570,5 +721,6 @@ export declare const META_RAYBAN_CAPABILITIES: {
|
|
|
570
721
|
notes: string;
|
|
571
722
|
}[];
|
|
572
723
|
};
|
|
724
|
+
export declare const ALL_KNOWN_FEATURES: readonly string[];
|
|
573
725
|
export declare const BLOCK_RETURN_FIELDS: Record<string, ReadonlySet<string>>;
|
|
574
726
|
//# sourceMappingURL=capabilities.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"capabilities.d.ts","sourceRoot":"","sources":["../../../src/tools/data/capabilities.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"capabilities.d.ts","sourceRoot":"","sources":["../../../src/tools/data/capabilities.ts"],"names":[],"mappings":"AAoBA,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAOpD,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkXpC,CAAC;AAUF,eAAO,MAAM,kBAAkB,EAAE,SAAS,MAAM,EAiB5C,CAAC;AAqBL,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,MAAM,CAAC,CAOnE,CAAC"}
|
|
@@ -8,14 +8,32 @@
|
|
|
8
8
|
// names here that the runtime resolves at flow time. Drift between this
|
|
9
9
|
// catalog and the runtime serializer is enforced by the catalog↔runtime
|
|
10
10
|
// parity tests on each platform (see `BLOCK_RETURN_FIELDS` below).
|
|
11
|
+
// Human-readable tier descriptions. The bare tier name on each entry is
|
|
12
|
+
// not enough for an agent to make decisions — `phone_side_workaround` in
|
|
13
|
+
// particular has implications (latency, foreground service, phone permissions)
|
|
14
|
+
// that aren't surfaceable from the name alone. Surfaced verbatim by
|
|
15
|
+
// getPlatformInfo so consumers see definitions next to the entries.
|
|
16
|
+
//
|
|
17
|
+
// `sdk_method` is the new bucket for SDK-callable functions that aren't
|
|
18
|
+
// vendor-implemented hardware primitives — speak / cancelSpeak / earcon
|
|
19
|
+
// land here. The customer calls them on `glasses.audio.X`; under the hood
|
|
20
|
+
// they use the platform TTS / system sound engine, not the glasses.
|
|
21
|
+
export const TIER_DESCRIPTIONS = {
|
|
22
|
+
dat_native: "First-class capability provided directly by the Meta DAT SDK on real hardware. Lowest latency, highest fidelity. Subject to DAT-side quotas (camera/mic exclusivity, thermal throttling).",
|
|
23
|
+
phone_side_workaround: "Implemented on the phone rather than on the glasses (e.g. SpeechRecognizer for transcription, NotificationListenerService for notification mirroring). Higher latency than dat_native, may require additional phone-side permissions, but real on shipping hardware today.",
|
|
24
|
+
sdk_method: "SDK-side method exposed on `glasses.audio.X` / `glasses.camera.X` etc. that doesn't talk to the glasses hardware directly — TTS via platform engine, earcons via system sounds, etc. No vendor quota; cheap to call.",
|
|
25
|
+
};
|
|
11
26
|
export const META_RAYBAN_CAPABILITIES = {
|
|
12
27
|
model: "meta_rayban",
|
|
13
28
|
datVersion: { android: "0.5.0", ios: "0.6.0" },
|
|
29
|
+
tierDescriptions: TIER_DESCRIPTIONS,
|
|
14
30
|
blocks: [
|
|
15
31
|
{
|
|
16
32
|
type: "capture_photo",
|
|
17
33
|
tier: "dat_native",
|
|
18
34
|
confidence: "high",
|
|
35
|
+
description: "One-shot still photo from the glasses camera. Returns a Photo with uri / width / height / format. Canonical primitive for vision-LLM flows.",
|
|
36
|
+
sdkPath: { kotlin: "camera.capturePhoto", swift: "camera.capturePhoto" },
|
|
19
37
|
params: { resolution: ["LOW", "MEDIUM", "HIGH"], format: ["jpeg", "heic"] },
|
|
20
38
|
// No `exif` field — the runtime serializer doesn't emit one. The
|
|
21
39
|
// pre-pivot catalog claimed it; that was a documentation drift.
|
|
@@ -26,6 +44,8 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
26
44
|
type: "capture_video",
|
|
27
45
|
tier: "phone_side_workaround",
|
|
28
46
|
confidence: "degraded",
|
|
47
|
+
description: "Bounded video clip (max 60s) from the glasses camera. Returns a VideoClip with uri / duration_ms / width / height / format. Phone-side encoded.",
|
|
48
|
+
sdkPath: { kotlin: "camera.captureVideo", swift: "camera.captureVideo" },
|
|
29
49
|
params: {
|
|
30
50
|
resolution: ["LOW", "MEDIUM", "HIGH"],
|
|
31
51
|
max_duration_seconds: { max: 60, default: 10 },
|
|
@@ -48,6 +68,8 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
48
68
|
type: "record_audio",
|
|
49
69
|
tier: "phone_side_workaround",
|
|
50
70
|
confidence: "degraded",
|
|
71
|
+
description: "Bounded mic capture with built-in silence-VAD turn-detection + auto-transcription. The canonical free-form-question primitive for voice Q&A flows.",
|
|
72
|
+
sdkPath: { kotlin: "audio.recordDiscrete", swift: "audio.recordDiscrete" },
|
|
51
73
|
params: {
|
|
52
74
|
max_duration_seconds: { max: 60, default: 15 },
|
|
53
75
|
silence_timeout_seconds: { max: 10, default: 2 },
|
|
@@ -71,6 +93,8 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
71
93
|
{
|
|
72
94
|
type: "video_frames",
|
|
73
95
|
tier: "dat_native",
|
|
96
|
+
description: "Continuous Flow / AsyncStream of camera frames at the configured frame rate. For on-device ML, live preview UI, anything that needs >1 frame/second.",
|
|
97
|
+
sdkPath: { kotlin: "camera.videoFrames", swift: "camera.videoFrames" },
|
|
74
98
|
config: {
|
|
75
99
|
resolution: ["LOW", "MEDIUM", "HIGH"],
|
|
76
100
|
frame_rate: [2, 7, 15, 24, 30],
|
|
@@ -82,6 +106,8 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
82
106
|
{
|
|
83
107
|
type: "audio_chunks",
|
|
84
108
|
tier: "dat_native",
|
|
109
|
+
description: "Raw audio chunks from the glasses mic for custom on-device or cloud STT, audio analysis, custom keyword spotting. Bypass the platform recognizer.",
|
|
110
|
+
sdkPath: { kotlin: "audio.audioChunks", swift: "audio.audioChunks" },
|
|
85
111
|
config: {
|
|
86
112
|
chunk_millis: { default: 20 },
|
|
87
113
|
backpressure: ["drop_oldest", "drop_newest", "suspend"],
|
|
@@ -91,6 +117,8 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
91
117
|
{
|
|
92
118
|
type: "transcription_incremental",
|
|
93
119
|
tier: "phone_side_workaround",
|
|
120
|
+
description: "Continuous Flow / AsyncStream of partial + final transcripts. The wake-phrase matching primitive (subscribe + match strings) AND the live-captions primitive.",
|
|
121
|
+
sdkPath: { kotlin: "audio.transcriptions", swift: "audio.transcriptions" },
|
|
94
122
|
config: {
|
|
95
123
|
language: "BCP-47",
|
|
96
124
|
min_partial_confidence: { default: 0.4 },
|
|
@@ -103,6 +131,9 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
103
131
|
// bare-name forms (`outgoing_audio`) drifted out of sync; aligned 0.0.19.
|
|
104
132
|
type: "outgoing_audio_stream",
|
|
105
133
|
tier: "dat_native",
|
|
134
|
+
description: "Audio streamed FROM the phone TO the glasses speaker (e.g. a remote voice channel). Encoded chunks emitted from your app, decoded over HFP.",
|
|
135
|
+
direction: "to_glasses",
|
|
136
|
+
sdkPath: { kotlin: "audio.outgoingAudio", swift: "audio.outgoingAudio" },
|
|
106
137
|
config: {
|
|
107
138
|
chunk_millis: { default: 20 },
|
|
108
139
|
codec: ["opus", "pcm_s16le"],
|
|
@@ -112,6 +143,9 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
112
143
|
{
|
|
113
144
|
type: "outgoing_video_stream",
|
|
114
145
|
tier: "phone_side_workaround",
|
|
146
|
+
description: "Video streamed FROM the phone TO the glasses display surface (future — glasses display not yet exposed in DAT preview).",
|
|
147
|
+
direction: "to_glasses",
|
|
148
|
+
sdkPath: { kotlin: "camera.outgoingVideo", swift: "camera.outgoingVideo" },
|
|
115
149
|
config: {
|
|
116
150
|
resolution: ["LOW", "MEDIUM", "HIGH"],
|
|
117
151
|
frame_rate: [2, 7, 15, 24, 30],
|
|
@@ -124,6 +158,8 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
124
158
|
{
|
|
125
159
|
type: "voice_command",
|
|
126
160
|
tier: "dat_native",
|
|
161
|
+
description: "Matched against the continuous transcript Flow on the customer side. The library doesn't dispatch voice commands — the customer subscribes to transcriptions() and matches phrases themselves.",
|
|
162
|
+
sdkPath: { kotlin: "audio.transcriptions (then customer-side string match)", swift: "audio.transcriptions (then customer-side string match)" },
|
|
127
163
|
params: {
|
|
128
164
|
phrase: "string with {namedCaptures}",
|
|
129
165
|
match_mode: ["contains", "exact", "starts_with"],
|
|
@@ -136,6 +172,8 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
136
172
|
{
|
|
137
173
|
type: "wake_word",
|
|
138
174
|
tier: "phone_side_workaround",
|
|
175
|
+
description: "Always-on wake-phrase detection via Picovoice (custom models) or platform STT. NOT Meta's 'Hey Meta' — that's reserved for Meta AI; third-party apps must ship their own.",
|
|
176
|
+
sdkPath: { kotlin: "audio.transcriptions (with on-device matcher)", swift: "audio.transcriptions (with on-device matcher)" },
|
|
139
177
|
params: {
|
|
140
178
|
phrase: "built-in or custom Picovoice model path",
|
|
141
179
|
},
|
|
@@ -144,6 +182,8 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
144
182
|
{
|
|
145
183
|
type: "push_to_talk",
|
|
146
184
|
tier: "dat_native",
|
|
185
|
+
description: "Phone-UI button-driven turn capture. Surfaces the user's utterance as a one-shot Transcript / AudioRecording — no continuous listening required.",
|
|
186
|
+
sdkPath: { kotlin: "audio.recordDiscrete (invoked from button onClick)", swift: "audio.recordDiscrete (invoked from button onClick)" },
|
|
147
187
|
params: {},
|
|
148
188
|
payload: { transcript: "string", rawUtterance: "string" },
|
|
149
189
|
requires: ["phone UI button surface to invoke trigger"],
|
|
@@ -216,9 +256,48 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
216
256
|
{
|
|
217
257
|
type: "fallback",
|
|
218
258
|
tier: "dat_native",
|
|
259
|
+
description: "Receives any final transcript that didn't match a voice command. The customer's catch-all path — feed it to an LLM, log it as unknown intent, etc. Implemented customer-side via the transcripts Flow; the library does not dispatch.",
|
|
260
|
+
sdkPath: { kotlin: "audio.transcriptions (else-branch after string matching)", swift: "audio.transcriptions (else-branch after string matching)" },
|
|
219
261
|
constraints: ["max 1 per spec — fires when no voice_command matched a voice utterance"],
|
|
220
262
|
},
|
|
221
263
|
],
|
|
264
|
+
// SDK-callable functions that aren't vendor-implemented hardware primitives.
|
|
265
|
+
// speak / cancelSpeak / earcon are TTS + system-sound paths that go through
|
|
266
|
+
// the phone, not the glasses radio — they have no permissions and no DAT
|
|
267
|
+
// scope. Surfaced as features so getPlatformInfo answers "is speak
|
|
268
|
+
// available?" affirmatively (F3 dogfood finding: speak was missing from
|
|
269
|
+
// features[] which made it invisible to discovery agents).
|
|
270
|
+
sdkMethods: [
|
|
271
|
+
{
|
|
272
|
+
type: "speak",
|
|
273
|
+
tier: "sdk_method",
|
|
274
|
+
description: "TTS via the platform engine (Android TextToSpeech / iOS AVSpeechSynthesizer). Audio routes over HFP to the glasses speaker. Blocks the calling coroutine/Task until done by default; pass to a separate scope for parallel listen-and-speak.",
|
|
275
|
+
sdkPath: { kotlin: "audio.speak", swift: "audio.speak" },
|
|
276
|
+
params: { text: "string", config: "SpeakConfig (voice / rate / pitch / volume)" },
|
|
277
|
+
returns: { ok: "ExtentosResult<Unit, AudioError>" },
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
type: "cancel_speak",
|
|
281
|
+
tier: "sdk_method",
|
|
282
|
+
description: "Cancel any in-flight TTS started via speak. Idempotent — safe to call when nothing is speaking. Canonical use: barge-in (interrupt the AI mid-utterance when the user starts talking).",
|
|
283
|
+
sdkPath: { kotlin: "audio.cancelSpeak", swift: "audio.cancelSpeak" },
|
|
284
|
+
params: {},
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
type: "earcon",
|
|
288
|
+
tier: "sdk_method",
|
|
289
|
+
description: "Play a short system sound (confirmation / error / notification / start / stop) over the glasses speaker. Cheap, non-interrupting — use to acknowledge capture, mark turn boundaries, etc.",
|
|
290
|
+
sdkPath: { kotlin: "audio.earcon", swift: "audio.earcon" },
|
|
291
|
+
params: { sound: ["confirmation", "error", "notification", "start", "stop"], volume: "number 0-1" },
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
type: "connection_state",
|
|
295
|
+
tier: "sdk_method",
|
|
296
|
+
description: "StateFlow / AsyncStream of glasses connection lifecycle (NotRegistered → Connecting → Active → Disconnected). Use to gate UI affordances, show pairing prompts, react to disconnects.",
|
|
297
|
+
sdkPath: { kotlin: "connection.state", swift: "connection.state" },
|
|
298
|
+
returns: { state: "GlassesState sealed type" },
|
|
299
|
+
},
|
|
300
|
+
],
|
|
222
301
|
actions: [
|
|
223
302
|
// 8 core
|
|
224
303
|
{ type: "block_call" },
|
|
@@ -239,14 +318,64 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
239
318
|
{ type: "when_connected" },
|
|
240
319
|
],
|
|
241
320
|
toggles: [
|
|
242
|
-
{
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
321
|
+
{
|
|
322
|
+
key: "listening_mode",
|
|
323
|
+
type: "enum",
|
|
324
|
+
default: "wake_word",
|
|
325
|
+
values: ["off", "wake_word", "on_demand", "always_on"],
|
|
326
|
+
gates: ["transcription_incremental", "voice_command", "wake_word", "push_to_talk", "fallback"],
|
|
327
|
+
description: "User-facing voice kill-switch. 'off' silences every transcript subscription; other values currently all behave as listening-on.",
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
key: "camera_streaming_enabled",
|
|
331
|
+
type: "bool",
|
|
332
|
+
default: true,
|
|
333
|
+
gates: ["capture_photo", "capture_video", "video_frames", "outgoing_video_stream"],
|
|
334
|
+
description: "When false, capture / stream calls return CaptureError.DisabledByUser without contacting the camera.",
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
key: "audio_capture_enabled",
|
|
338
|
+
type: "bool",
|
|
339
|
+
default: true,
|
|
340
|
+
gates: ["record_audio", "audio_chunks", "transcription_incremental", "voice_command", "wake_word", "push_to_talk", "outgoing_audio_stream"],
|
|
341
|
+
description: "When false, mic-side calls return AudioError.DisabledByUser without contacting the mic.",
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
key: "transcription_enabled",
|
|
345
|
+
type: "bool",
|
|
346
|
+
default: false,
|
|
347
|
+
gates: ["transcription_incremental"],
|
|
348
|
+
description: "Independent of audio_capture_enabled — when false, mic capture still works but STT is suppressed. Useful for raw audio_chunks consumers that don't want platform STT running in parallel.",
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
key: "battery_save_mode",
|
|
352
|
+
type: "bool",
|
|
353
|
+
default: false,
|
|
354
|
+
gates: [],
|
|
355
|
+
description: "When true, video_frames clamps to LOW + 2fps regardless of config. Doesn't disable any capability outright; degrades.",
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
key: "voice_confirmations",
|
|
359
|
+
type: "bool",
|
|
360
|
+
default: true,
|
|
361
|
+
gates: [],
|
|
362
|
+
description: "Whether the SDK speaks earcon-equivalent confirmations on its own (capture taken, recording started). Doesn't affect customer-issued speak calls.",
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
key: "audio_video_coexistence_policy",
|
|
366
|
+
type: "enum",
|
|
367
|
+
default: "prefer_video",
|
|
368
|
+
values: ["prefer_audio", "prefer_video", "strict_reject"],
|
|
369
|
+
gates: [],
|
|
370
|
+
description: "Resolves the camera ↔ audio exclusivity on Meta DAT. prefer_video allows photo capture during video streaming at LOW resolution; strict_reject fails the second call.",
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
key: "privacy_mode",
|
|
374
|
+
type: "bool",
|
|
375
|
+
default: false,
|
|
376
|
+
gates: ["capture_photo", "capture_video", "video_frames", "outgoing_video_stream", "record_audio", "audio_chunks", "transcription_incremental", "voice_command", "wake_word", "push_to_talk", "outgoing_audio_stream"],
|
|
377
|
+
description: "Super-toggle. When true, EVERY camera / mic capability returns DisabledByUser. Pair with a UI flow that flips it back off.",
|
|
378
|
+
},
|
|
250
379
|
],
|
|
251
380
|
globalConstraints: [
|
|
252
381
|
"A2DP (high-quality audio playback) and HFP (glasses-as-mic) are mutually exclusive — activating transcription or audio_chunks drops playback to HFP mono 8 kHz until audio capture stops.",
|
|
@@ -265,6 +394,31 @@ export const META_RAYBAN_CAPABILITIES = {
|
|
|
265
394
|
{ name: "ambient_light_updated", status: "research", notes: "Sensor data exposure under review." },
|
|
266
395
|
],
|
|
267
396
|
};
|
|
397
|
+
// Canonical flat list of every feature name surfaced by
|
|
398
|
+
// getPlatformInfo.features[]. Drives validation for tools that accept
|
|
399
|
+
// `capabilities: [...]` lists (getPermissions, getProductionChecklist).
|
|
400
|
+
// Includes the sdkMethods entries (speak / cancel_speak / earcon /
|
|
401
|
+
// connection_state) which have no permission derivations but ARE valid
|
|
402
|
+
// features in the post-pivot vocabulary. Closes F-DOGFOOD-F27 (the
|
|
403
|
+
// strict pre-Fix-5 validator rejected speak as "unknown" even though
|
|
404
|
+
// getCapabilityGuide accepted it).
|
|
405
|
+
export const ALL_KNOWN_FEATURES = (() => {
|
|
406
|
+
const c = META_RAYBAN_CAPABILITIES;
|
|
407
|
+
const names = new Set();
|
|
408
|
+
for (const b of c.blocks)
|
|
409
|
+
names.add(b.type);
|
|
410
|
+
for (const s of c.streams)
|
|
411
|
+
names.add(s.type);
|
|
412
|
+
for (const t of c.triggers)
|
|
413
|
+
names.add(t.type);
|
|
414
|
+
for (const m of c.sdkMethods ?? [])
|
|
415
|
+
names.add(m.type);
|
|
416
|
+
// capture_video_with_audio is a pseudo-capability used by getPermissions
|
|
417
|
+
// to flag the include_audio=true configuration distinctly — surfaced
|
|
418
|
+
// here so the permissions tool accepts it.
|
|
419
|
+
names.add("capture_video_with_audio");
|
|
420
|
+
return Object.freeze([...names].sort());
|
|
421
|
+
})();
|
|
268
422
|
// Canonical per-block returns field set — DERIVED from `META_RAYBAN_CAPABILITIES.blocks[].returns`
|
|
269
423
|
// so this map can never drift from the `returns:` declarations above.
|
|
270
424
|
//
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"capabilities.js","sourceRoot":"","sources":["../../../src/tools/data/capabilities.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"capabilities.js","sourceRoot":"","sources":["../../../src/tools/data/capabilities.ts"],"names":[],"mappings":"AAAA,iFAAiF;AACjF,+EAA+E;AAC/E,EAAE;AACF,6EAA6E;AAC7E,0EAA0E;AAC1E,yEAAyE;AACzE,2EAA2E;AAC3E,wEAAwE;AACxE,wEAAwE;AACxE,mEAAmE;AACnE,wEAAwE;AACxE,yEAAyE;AACzE,+EAA+E;AAC/E,oEAAoE;AACpE,oEAAoE;AACpE,EAAE;AACF,wEAAwE;AACxE,wEAAwE;AACxE,0EAA0E;AAC1E,oEAAoE;AACpE,MAAM,CAAC,MAAM,iBAAiB,GAA2B;IACvD,UAAU,EACR,2LAA2L;IAC7L,qBAAqB,EACnB,4QAA4Q;IAC9Q,UAAU,EACR,sNAAsN;CACzN,CAAC;AAEF,MAAM,CAAC,MAAM,wBAAwB,GAAG;IACtC,KAAK,EAAE,aAAa;IACpB,UAAU,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,OAAO,EAAE;IAC9C,gBAAgB,EAAE,iBAAiB;IACnC,MAAM,EAAE;QACN;YACE,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,YAAY;YAClB,UAAU,EAAE,MAAM;YAClB,WAAW,EAAE,6IAA6I;YAC1J,OAAO,EAAE,EAAE,MAAM,EAAE,qBAAqB,EAAE,KAAK,EAAE,qBAAqB,EAAE;YACxE,MAAM,EAAE,EAAE,UAAU,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE;YAC3E,iEAAiE;YACjE,gEAAgE;YAChE,OAAO,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE;YACzE,WAAW,EAAE,CAAC,qCAAqC,EAAE,iEAAiE,CAAC;SACxH;QACD;YACE,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,uBAAuB;YAC7B,UAAU,EAAE,UAAU;YACtB,WAAW,EAAE,iJAAiJ;YAC9J,OAAO,EAAE,EAAE,MAAM,EAAE,qBAAqB,EAAE,KAAK,EAAE,qBAAqB,EAAE;YACxE,MAAM,EAAE;gBACN,UAAU,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC;gBACrC,oBAAoB,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;gBAC9C,MAAM,EAAE,CAAC,UAAU,EAAE,UAAU,CAAC;gBAChC,aAAa,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;gBACjC,eAAe,EAAE;oBACf,KAAK,EAAE,gCAAgC;oBACvC,SAAS,EAAE,CAAC,eAAe,EAAE,gBAAgB,EAAE,KAAK,EAAE,YAAY,EAAE,WAAW,CAAC;oBAChF,QAAQ,EAAE,CAAC,eAAe,CAAC;oBAC3B,IAAI,EAAE,8MAA8M;iBACrN;aACF;YACD,OAAO,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE;YAC7F,WAAW,EAAE;gBACX,iGAAiG;gBACjG,0FAA0F;aAC3F;SACF;QACD;YACE,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,uBAAuB;YAC7B,UAAU,EAAE,UAAU;YACtB,WAAW,EAAE,oJAAoJ;YACjK,OAAO,EAAE,EAAE,MAAM,EAAE,sBAAsB,EAAE,KAAK,EAAE,sBAAsB,EAAE;YAC1E,MAAM,EAAE;gBACN,oBAAoB,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;gBAC9C,uBAAuB,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE;gBAChD,OAAO,EAAE,CAAC,UAAU,EAAE,MAAM,CAAC;gBAC7B,eAAe,EAAE;oBACf,KAAK,EAAE,gCAAgC;oBACvC,SAAS,EAAE,CAAC,eAAe,EAAE,gBAAgB,EAAE,KAAK,EAAE,YAAY,EAAE,WAAW,CAAC;oBAChF,QAAQ,EAAE,CAAC,eAAe,CAAC;oBAC3B,IAAI,EAAE,8MAA8M;iBACrN;aACF;YACD,OAAO,EAAE,EAAE,UAAU,EAAE,QAAQ,EAAE,iBAAiB,EAAE,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE;YACpF,WAAW,EAAE;gBACX,oFAAoF;gBACpF,qDAAqD;gBACrD,qFAAqF;aACtF;SACF;KACF;IACD,OAAO,EAAE;QACP;YACE,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,sJAAsJ;YACnK,OAAO,EAAE,EAAE,MAAM,EAAE,oBAAoB,EAAE,KAAK,EAAE,oBAAoB,EAAE;YACtE,MAAM,EAAE;gBACN,UAAU,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC;gBACrC,UAAU,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC;gBAC9B,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC;gBACvB,YAAY,EAAE,CAAC,aAAa,EAAE,aAAa,EAAE,SAAS,CAAC;aACxD;YACD,eAAe,EAAE,2GAA2G;SAC7H;QACD;YACE,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,mJAAmJ;YAChK,OAAO,EAAE,EAAE,MAAM,EAAE,mBAAmB,EAAE,KAAK,EAAE,mBAAmB,EAAE;YACpE,MAAM,EAAE;gBACN,YAAY,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;gBAC7B,YAAY,EAAE,CAAC,aAAa,EAAE,aAAa,EAAE,SAAS,CAAC;aACxD;YACD,eAAe,EAAE,gDAAgD;SAClE;QACD;YACE,IAAI,EAAE,2BAA2B;YACjC,IAAI,EAAE,uBAAuB;YAC7B,WAAW,EAAE,+JAA+J;YAC5K,OAAO,EAAE,EAAE,MAAM,EAAE,sBAAsB,EAAE,KAAK,EAAE,sBAAsB,EAAE;YAC1E,MAAM,EAAE;gBACN,QAAQ,EAAE,QAAQ;gBAClB,sBAAsB,EAAE,EAAE,OAAO,EAAE,GAAG,EAAE;aACzC;YACD,eAAe,EAAE,wEAAwE;SAC1F;QACD;YACE,sEAAsE;YACtE,uEAAuE;YACvE,0EAA0E;YAC1E,IAAI,EAAE,uBAAuB;YAC7B,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,6IAA6I;YAC1J,SAAS,EAAE,YAAY;YACvB,OAAO,EAAE,EAAE,MAAM,EAAE,qBAAqB,EAAE,KAAK,EAAE,qBAAqB,EAAE;YACxE,MAAM,EAAE;gBACN,YAAY,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;gBAC7B,KAAK,EAAE,CAAC,MAAM,EAAE,WAAW,CAAC;aAC7B;YACD,eAAe,EAAE,2EAA2E;SAC7F;QACD;YACE,IAAI,EAAE,uBAAuB;YAC7B,IAAI,EAAE,uBAAuB;YAC7B,WAAW,EAAE,yHAAyH;YACtI,SAAS,EAAE,YAAY;YACvB,OAAO,EAAE,EAAE,MAAM,EAAE,sBAAsB,EAAE,KAAK,EAAE,sBAAsB,EAAE;YAC1E,MAAM,EAAE;gBACN,UAAU,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC;gBACrC,UAAU,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC;gBAC9B,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC;aACxB;YACD,eAAe,EAAE,qIAAqI;SACvJ;KACF;IACD,QAAQ,EAAE;QACR;YACE,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,gMAAgM;YAC7M,OAAO,EAAE,EAAE,MAAM,EAAE,wDAAwD,EAAE,KAAK,EAAE,wDAAwD,EAAE;YAC9I,MAAM,EAAE;gBACN,MAAM,EAAE,6BAA6B;gBACrC,UAAU,EAAE,CAAC,UAAU,EAAE,OAAO,EAAE,aAAa,CAAC;gBAChD,cAAc,EAAE,EAAE,OAAO,EAAE,GAAG,EAAE;gBAChC,IAAI,EAAE,CAAC,SAAS,EAAE,QAAQ,EAAE,QAAQ,CAAC;aACtC;YACD,OAAO,EAAE,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,EAAE,iBAAiB,EAAE,aAAa,EAAE;YAC3F,QAAQ,EAAE,CAAC,YAAY,EAAE,gDAAgD,CAAC;SAC3E;QACD;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,uBAAuB;YAC7B,WAAW,EAAE,2KAA2K;YACxL,OAAO,EAAE,EAAE,MAAM,EAAE,+CAA+C,EAAE,KAAK,EAAE,+CAA+C,EAAE;YAC5H,MAAM,EAAE;gBACN,MAAM,EAAE,yCAAyC;aAClD;YACD,QAAQ,EAAE,CAAC,YAAY,EAAE,wCAAwC,CAAC;SACnE;QACD;YACE,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,kJAAkJ;YAC/J,OAAO,EAAE,EAAE,MAAM,EAAE,oDAAoD,EAAE,KAAK,EAAE,oDAAoD,EAAE;YACtI,MAAM,EAAE,EAAE;YACV,OAAO,EAAE,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,QAAQ,EAAE;YACzD,QAAQ,EAAE,CAAC,2CAA2C,CAAC;SACxD;QACD;YACE,IAAI,EAAE,0BAA0B;YAChC,IAAI,EAAE,YAAY;YAClB,MAAM,EAAE;gBACN,aAAa,EAAE;oBACb,IAAI,EAAE,gCAAgC;oBACtC,EAAE,EAAE,gCAAgC;iBACrC;aACF;YACD,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;SAC3D;QACD;YACE,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,YAAY;SACnB;QACD;YACE,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,YAAY;YAClB,MAAM,EAAE,EAAE,QAAQ,EAAE,CAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,UAAU,CAAC,EAAE;YACjE,OAAO,EAAE,EAAE,QAAQ,EAAE,QAAQ,EAAE,kBAAkB,EAAE,QAAQ,EAAE;SAC9D;QACD;YACE,IAAI,EAAE,qBAAqB;YAC3B,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,QAAQ,EAAE;SAC1C;QACD;YACE,IAAI,EAAE,8BAA8B;YACpC,IAAI,EAAE,uBAAuB;YAC7B,OAAO,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE;YACnE,QAAQ,EAAE;gBACR,wDAAwD;gBACxD,oEAAoE;aACrE;SACF;QACD;YACE,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE,uBAAuB;YAC7B,MAAM,EAAE;gBACN,mBAAmB,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;gBACtC,uBAAuB,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;aACzC;YACD,OAAO,EAAE,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,cAAc,EAAE,QAAQ,EAAE;YAC9E,QAAQ,EAAE,CAAC,6EAA6E,CAAC;SAC1F;QACD;YACE,IAAI,EAAE,wBAAwB;YAC9B,IAAI,EAAE,uBAAuB;YAC7B,OAAO,EAAE,EAAE,YAAY,EAAE,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE;YACzD,QAAQ,EAAE;gBACR,sCAAsC;gBACtC,uBAAuB;aACxB;SACF;QACD;YACE,IAAI,EAAE,uBAAuB;YAC7B,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,YAAY,EAAE,YAAY,EAAE,WAAW,CAAC,EAAE;SAC9D;QACD;YACE,IAAI,EAAE,eAAe;YACrB,IAAI,EAAE,YAAY;YAClB,OAAO,EAAE,EAAE;YACX,QAAQ,EAAE,CAAC,uEAAuE,CAAC;SACpF;QACD;YACE,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uOAAuO;YACpP,OAAO,EAAE,EAAE,MAAM,EAAE,0DAA0D,EAAE,KAAK,EAAE,0DAA0D,EAAE;YAClJ,WAAW,EAAE,CAAC,wEAAwE,CAAC;SACxF;KACF;IACD,6EAA6E;IAC7E,4EAA4E;IAC5E,yEAAyE;IACzE,mEAAmE;IACnE,wEAAwE;IACxE,2DAA2D;IAC3D,UAAU,EAAE;QACV;YACE,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,8OAA8O;YAC3P,OAAO,EAAE,EAAE,MAAM,EAAE,aAAa,EAAE,KAAK,EAAE,aAAa,EAAE;YACxD,MAAM,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,6CAA6C,EAAE;YACjF,OAAO,EAAE,EAAE,EAAE,EAAE,kCAAkC,EAAE;SACpD;QACD;YACE,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,wLAAwL;YACrM,OAAO,EAAE,EAAE,MAAM,EAAE,mBAAmB,EAAE,KAAK,EAAE,mBAAmB,EAAE;YACpE,MAAM,EAAE,EAAE;SACX;QACD;YACE,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,2LAA2L;YACxM,OAAO,EAAE,EAAE,MAAM,EAAE,cAAc,EAAE,KAAK,EAAE,cAAc,EAAE;YAC1D,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,cAAc,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,MAAM,CAAC,EAAE,MAAM,EAAE,YAAY,EAAE;SACpG;QACD;YACE,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,uLAAuL;YACpM,OAAO,EAAE,EAAE,MAAM,EAAE,kBAAkB,EAAE,KAAK,EAAE,kBAAkB,EAAE;YAClE,OAAO,EAAE,EAAE,KAAK,EAAE,0BAA0B,EAAE;SAC/C;KACF;IACD,OAAO,EAAE;QACP,SAAS;QACT,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,cAAc,EAAE;QACxB,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,CAAC,oEAAoE,CAAC,EAAE;QACvG,EAAE,IAAI,EAAE,cAAc,EAAE;QACxB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,UAAU,EAAE,WAAW,EAAE,CAAC,8GAA8G,CAAC,EAAE;QACnJ,EAAE,IAAI,EAAE,OAAO,EAAE,WAAW,EAAE,CAAC,8CAA8C,CAAC,EAAE;QAChF,EAAE,IAAI,EAAE,OAAO,EAAE;QACjB,aAAa;QACb,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,cAAc,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,MAAM,CAAC,EAAE,EAAE;QACtG,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,EAAE;QACzE,EAAE,IAAI,EAAE,oBAAoB,EAAE,MAAM,EAAE,EAAE,eAAe,EAAE,QAAQ,EAAE,EAAE;QACrE,EAAE,IAAI,EAAE,oBAAoB,EAAE;QAC9B,EAAE,IAAI,EAAE,mBAAmB,EAAE;QAC7B,EAAE,IAAI,EAAE,gBAAgB,EAAE;KAC3B;IACD,OAAO,EAAE;QACP;YACE,GAAG,EAAE,gBAAgB;YACrB,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,WAAW;YACpB,MAAM,EAAE,CAAC,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,CAAC;YACtD,KAAK,EAAE,CAAC,2BAA2B,EAAE,eAAe,EAAE,WAAW,EAAE,cAAc,EAAE,UAAU,CAAC;YAC9F,WAAW,EAAE,iIAAiI;SAC/I;QACD;YACE,GAAG,EAAE,0BAA0B;YAC/B,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,IAAI;YACb,KAAK,EAAE,CAAC,eAAe,EAAE,eAAe,EAAE,cAAc,EAAE,uBAAuB,CAAC;YAClF,WAAW,EAAE,sGAAsG;SACpH;QACD;YACE,GAAG,EAAE,uBAAuB;YAC5B,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,IAAI;YACb,KAAK,EAAE,CAAC,cAAc,EAAE,cAAc,EAAE,2BAA2B,EAAE,eAAe,EAAE,WAAW,EAAE,cAAc,EAAE,uBAAuB,CAAC;YAC3I,WAAW,EAAE,yFAAyF;SACvG;QACD;YACE,GAAG,EAAE,uBAAuB;YAC5B,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,CAAC,2BAA2B,CAAC;YACpC,WAAW,EAAE,2LAA2L;SACzM;QACD;YACE,GAAG,EAAE,mBAAmB;YACxB,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,EAAE;YACT,WAAW,EAAE,uHAAuH;SACrI;QACD;YACE,GAAG,EAAE,qBAAqB;YAC1B,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,IAAI;YACb,KAAK,EAAE,EAAE;YACT,WAAW,EAAE,mJAAmJ;SACjK;QACD;YACE,GAAG,EAAE,gCAAgC;YACrC,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,cAAc;YACvB,MAAM,EAAE,CAAC,cAAc,EAAE,cAAc,EAAE,eAAe,CAAC;YACzD,KAAK,EAAE,EAAE;YACT,WAAW,EAAE,uKAAuK;SACrL;QACD;YACE,GAAG,EAAE,cAAc;YACnB,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,CAAC,eAAe,EAAE,eAAe,EAAE,cAAc,EAAE,uBAAuB,EAAE,cAAc,EAAE,cAAc,EAAE,2BAA2B,EAAE,eAAe,EAAE,WAAW,EAAE,cAAc,EAAE,uBAAuB,CAAC;YACtN,WAAW,EAAE,4HAA4H;SAC1I;KACF;IACD,iBAAiB,EAAE;QACjB,2LAA2L;QAC3L,wJAAwJ;QACxJ,qKAAqK;QACrK,8HAA8H;QAC9H,+GAA+G;KAChH;IACD,iBAAiB,EAAE;QACjB,EAAE,IAAI,EAAE,iBAAiB,EAAE,MAAM,EAAE,iDAAiD,EAAE;QACtF,EAAE,IAAI,EAAE,0BAA0B,EAAE,MAAM,EAAE,4CAA4C,EAAE;QAC1F,EAAE,IAAI,EAAE,oBAAoB,EAAE,MAAM,EAAE,wEAAwE,EAAE;KACjH;IACD,gBAAgB,EAAE;QAChB,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,WAAW,EAAE,KAAK,EAAE,uCAAuC,EAAE;QAC5F,EAAE,IAAI,EAAE,uBAAuB,EAAE,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,oCAAoC,EAAE;KACnG;CACF,CAAC;AAEF,wDAAwD;AACxD,sEAAsE;AACtE,wEAAwE;AACxE,mEAAmE;AACnE,uEAAuE;AACvE,mEAAmE;AACnE,qEAAqE;AACrE,mCAAmC;AACnC,MAAM,CAAC,MAAM,kBAAkB,GAAsB,CAAC,GAAG,EAAE;IACzD,MAAM,CAAC,GAAG,wBAKT,CAAC;IACF,MAAM,KAAK,GAAG,IAAI,GAAG,EAAU,CAAC;IAChC,KAAK,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM;QAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IAC5C,KAAK,MAAM,CAAC,IAAI,CAAC,CAAC,OAAO;QAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IAC7C,KAAK,MAAM,CAAC,IAAI,CAAC,CAAC,QAAQ;QAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IAC9C,KAAK,MAAM,CAAC,IAAI,CAAC,CAAC,UAAU,IAAI,EAAE;QAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IACtD,yEAAyE;IACzE,qEAAqE;IACrE,2CAA2C;IAC3C,KAAK,CAAC,GAAG,CAAC,0BAA0B,CAAC,CAAC;IACtC,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;AAC1C,CAAC,CAAC,EAAE,CAAC;AAEL,mGAAmG;AACnG,sEAAsE;AACtE,EAAE;AACF,aAAa;AACb,wEAAwE;AACxE,0EAA0E;AAC1E,2EAA2E;AAC3E,8EAA8E;AAC9E,kDAAkD;AAClD,mEAAmE;AACnE,sEAAsE;AACtE,gEAAgE;AAChE,EAAE;AACF,0EAA0E;AAC1E,0EAA0E;AAC1E,yEAAyE;AACzE,yEAAyE;AACzE,wEAAwE;AACxE,6BAA6B;AAC7B,MAAM,CAAC,MAAM,mBAAmB,GAAwC,MAAM,CAAC,MAAM,CACnF,MAAM,CAAC,WAAW,CAChB,wBAAwB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC;IACzC,CAAC,CAAC,IAAI;IACN,MAAM,CAAC,MAAM,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAwB;CACtE,CAAC,CACH,CACF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"definitions.d.ts","sourceRoot":"","sources":["../../src/tools/definitions.ts"],"names":[],"mappings":"AAcA,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IAMpB,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ,CAAC;QACf,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QACpC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;QACpB,oBAAoB,EAAE,KAAK,CAAC;KAC7B,CAAC;CACH;AAMD,eAAO,MAAM,eAAe,EAAE,OAAO,
|
|
1
|
+
{"version":3,"file":"definitions.d.ts","sourceRoot":"","sources":["../../src/tools/definitions.ts"],"names":[],"mappings":"AAcA,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IAMpB,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ,CAAC;QACf,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QACpC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;QACpB,oBAAoB,EAAE,KAAK,CAAC;KAC7B,CAAC;CACH;AAMD,eAAO,MAAM,eAAe,EAAE,OAAO,EAuXpC,CAAC;AAEF,eAAO,MAAM,SAAS,QAAyB,CAAC;AAShD,wBAAgB,iCAAiC,CAC/C,IAAI,GAAE,SAAS,OAAO,EAAoB,GACzC,IAAI,CAiBN"}
|