@getpaseo/protocol 0.1.84
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/README.md +12 -0
- package/dist/agent-attention-notification.d.ts +41 -0
- package/dist/agent-attention-notification.js +140 -0
- package/dist/agent-labels.d.ts +2 -0
- package/dist/agent-labels.js +2 -0
- package/dist/agent-lifecycle.d.ts +3 -0
- package/dist/agent-lifecycle.js +8 -0
- package/dist/agent-state-bucket.d.ts +13 -0
- package/dist/agent-state-bucket.js +41 -0
- package/dist/agent-title-limits.d.ts +3 -0
- package/dist/agent-title-limits.js +3 -0
- package/dist/agent-types.d.ts +421 -0
- package/dist/agent-types.js +22 -0
- package/dist/binary-frames/file-transfer.d.ts +56 -0
- package/dist/binary-frames/file-transfer.js +108 -0
- package/dist/binary-frames/index.d.ts +3 -0
- package/dist/binary-frames/index.js +3 -0
- package/dist/binary-frames/terminal.d.ts +37 -0
- package/dist/binary-frames/terminal.js +101 -0
- package/dist/chat/rpc-schemas.d.ts +728 -0
- package/dist/chat/rpc-schemas.js +103 -0
- package/dist/chat/types.d.ts +75 -0
- package/dist/chat/types.js +22 -0
- package/dist/client-capabilities.d.ts +6 -0
- package/dist/client-capabilities.js +9 -0
- package/dist/connection-offer.d.ts +80 -0
- package/dist/connection-offer.js +53 -0
- package/dist/daemon-endpoints.d.ts +47 -0
- package/dist/daemon-endpoints.js +201 -0
- package/dist/error-utils.d.ts +11 -0
- package/dist/error-utils.js +27 -0
- package/dist/git-remote.d.ts +16 -0
- package/dist/git-remote.js +72 -0
- package/dist/host-connection-schema.d.ts +23 -0
- package/dist/host-connection-schema.js +9 -0
- package/dist/importable-providers.d.ts +7 -0
- package/dist/importable-providers.js +7 -0
- package/dist/literal-union.d.ts +2 -0
- package/dist/literal-union.js +2 -0
- package/dist/loop/rpc-schemas.d.ts +3005 -0
- package/dist/loop/rpc-schemas.js +163 -0
- package/dist/messages.d.ts +144995 -0
- package/dist/messages.js +3338 -0
- package/dist/paseo-config-schema.d.ts +915 -0
- package/dist/paseo-config-schema.js +77 -0
- package/dist/path-utils.d.ts +2 -0
- package/dist/path-utils.js +16 -0
- package/dist/provider-config.d.ts +602 -0
- package/dist/provider-config.js +123 -0
- package/dist/provider-manifest.d.ts +33 -0
- package/dist/provider-manifest.js +219 -0
- package/dist/schedule/rpc-schemas.d.ts +3993 -0
- package/dist/schedule/rpc-schemas.js +151 -0
- package/dist/schedule/types.d.ts +745 -0
- package/dist/schedule/types.js +74 -0
- package/dist/terminal-input-mode.d.ts +26 -0
- package/dist/terminal-input-mode.js +151 -0
- package/dist/terminal-key-input.d.ts +13 -0
- package/dist/terminal-key-input.js +201 -0
- package/dist/terminal-snapshot.d.ts +3 -0
- package/dist/terminal-snapshot.js +165 -0
- package/dist/terminal-stream-protocol.d.ts +2 -0
- package/dist/terminal-stream-protocol.js +2 -0
- package/dist/tool-call-display.d.ts +11 -0
- package/dist/tool-call-display.js +135 -0
- package/dist/tool-name-normalization.d.ts +9 -0
- package/dist/tool-name-normalization.js +82 -0
- package/package.json +34 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { AgentProviderSchema } from "./provider-manifest.js";
|
|
3
|
+
const ProviderCommandDefaultSchema = z
|
|
4
|
+
.object({
|
|
5
|
+
mode: z.literal("default"),
|
|
6
|
+
})
|
|
7
|
+
.strict();
|
|
8
|
+
const ProviderCommandAppendSchema = z
|
|
9
|
+
.object({
|
|
10
|
+
mode: z.literal("append"),
|
|
11
|
+
args: z.array(z.string()).optional(),
|
|
12
|
+
})
|
|
13
|
+
.strict();
|
|
14
|
+
const ProviderCommandReplaceSchema = z
|
|
15
|
+
.object({
|
|
16
|
+
mode: z.literal("replace"),
|
|
17
|
+
argv: z.array(z.string().min(1)).min(1),
|
|
18
|
+
})
|
|
19
|
+
.strict();
|
|
20
|
+
export const ProviderCommandSchema = z.discriminatedUnion("mode", [
|
|
21
|
+
ProviderCommandDefaultSchema,
|
|
22
|
+
ProviderCommandAppendSchema,
|
|
23
|
+
ProviderCommandReplaceSchema,
|
|
24
|
+
]);
|
|
25
|
+
export const ProviderRuntimeSettingsSchema = z
|
|
26
|
+
.object({
|
|
27
|
+
command: ProviderCommandSchema.optional(),
|
|
28
|
+
env: z.record(z.string()).optional(),
|
|
29
|
+
disallowedTools: z.array(z.string()).optional(),
|
|
30
|
+
})
|
|
31
|
+
.strict();
|
|
32
|
+
const ProviderProfileThinkingOptionSchema = z
|
|
33
|
+
.object({
|
|
34
|
+
id: z.string(),
|
|
35
|
+
label: z.string(),
|
|
36
|
+
description: z.string().optional(),
|
|
37
|
+
isDefault: z.boolean().optional(),
|
|
38
|
+
})
|
|
39
|
+
.strict();
|
|
40
|
+
export const ProviderProfileModelSchema = z
|
|
41
|
+
.object({
|
|
42
|
+
id: z.string().min(1),
|
|
43
|
+
label: z.string().min(1),
|
|
44
|
+
description: z.string().optional(),
|
|
45
|
+
isDefault: z.boolean().optional(),
|
|
46
|
+
thinkingOptions: z.array(ProviderProfileThinkingOptionSchema).optional(),
|
|
47
|
+
})
|
|
48
|
+
.strict();
|
|
49
|
+
export const ProviderOverrideSchema = z
|
|
50
|
+
.object({
|
|
51
|
+
extends: z.string().optional(),
|
|
52
|
+
label: z.string().optional(),
|
|
53
|
+
description: z.string().optional(),
|
|
54
|
+
command: z.array(z.string().min(1)).min(1).optional(),
|
|
55
|
+
env: z.record(z.string()).optional(),
|
|
56
|
+
models: z.array(ProviderProfileModelSchema).optional(),
|
|
57
|
+
additionalModels: z.array(ProviderProfileModelSchema).optional(),
|
|
58
|
+
disallowedTools: z.array(z.string()).optional(),
|
|
59
|
+
enabled: z.boolean().optional(),
|
|
60
|
+
order: z.number().optional(),
|
|
61
|
+
})
|
|
62
|
+
.strict();
|
|
63
|
+
const BUILTIN_PROVIDER_IDS = ["claude", "codex", "copilot", "opencode", "pi"];
|
|
64
|
+
const PROVIDER_ID_PATTERN = /^[a-z][a-z0-9-]*$/;
|
|
65
|
+
export const ProviderOverridesSchema = z
|
|
66
|
+
.record(ProviderOverrideSchema)
|
|
67
|
+
.superRefine((providers, ctx) => {
|
|
68
|
+
const builtinProviderIdSet = new Set(BUILTIN_PROVIDER_IDS);
|
|
69
|
+
const validExtendsValues = new Set([...BUILTIN_PROVIDER_IDS, "acp"]);
|
|
70
|
+
for (const [providerId, provider] of Object.entries(providers)) {
|
|
71
|
+
if (!PROVIDER_ID_PATTERN.test(providerId)) {
|
|
72
|
+
ctx.addIssue({
|
|
73
|
+
code: z.ZodIssueCode.custom,
|
|
74
|
+
path: [providerId],
|
|
75
|
+
message: `Provider ID "${providerId}" must match ${PROVIDER_ID_PATTERN}.`,
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
const isBuiltinProvider = builtinProviderIdSet.has(providerId);
|
|
79
|
+
if (!isBuiltinProvider && !provider.extends) {
|
|
80
|
+
ctx.addIssue({
|
|
81
|
+
code: z.ZodIssueCode.custom,
|
|
82
|
+
path: [providerId, "extends"],
|
|
83
|
+
message: `Custom provider "${providerId}" must declare extends.`,
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
if (!isBuiltinProvider && !provider.label) {
|
|
87
|
+
ctx.addIssue({
|
|
88
|
+
code: z.ZodIssueCode.custom,
|
|
89
|
+
path: [providerId, "label"],
|
|
90
|
+
message: `Custom provider "${providerId}" must declare label.`,
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
if (provider.extends && !validExtendsValues.has(provider.extends)) {
|
|
94
|
+
ctx.addIssue({
|
|
95
|
+
code: z.ZodIssueCode.custom,
|
|
96
|
+
path: [providerId, "extends"],
|
|
97
|
+
message: `Provider "${providerId}" extends unknown provider "${provider.extends}".`,
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
if (provider.extends === "acp" && !provider.command) {
|
|
101
|
+
ctx.addIssue({
|
|
102
|
+
code: z.ZodIssueCode.custom,
|
|
103
|
+
path: [providerId, "command"],
|
|
104
|
+
message: `Provider "${providerId}" extending "acp" must declare command.`,
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
});
|
|
109
|
+
export const AgentProviderRuntimeSettingsMapSchema = z
|
|
110
|
+
.record(ProviderRuntimeSettingsSchema)
|
|
111
|
+
.superRefine((providers, ctx) => {
|
|
112
|
+
for (const providerId of Object.keys(providers)) {
|
|
113
|
+
const parsedProviderId = AgentProviderSchema.safeParse(providerId);
|
|
114
|
+
if (!parsedProviderId.success) {
|
|
115
|
+
ctx.addIssue({
|
|
116
|
+
code: z.ZodIssueCode.custom,
|
|
117
|
+
path: [providerId],
|
|
118
|
+
message: `Invalid agent provider "${providerId}".`,
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
});
|
|
123
|
+
//# sourceMappingURL=provider-config.js.map
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import type { AgentMode } from "./agent-types.js";
|
|
3
|
+
export type AgentModeColorTier = "safe" | "moderate" | "dangerous" | "planning" | `#${string}`;
|
|
4
|
+
export type AgentModeIcon = string;
|
|
5
|
+
export interface AgentModeVisuals {
|
|
6
|
+
icon: AgentModeIcon;
|
|
7
|
+
colorTier: AgentModeColorTier;
|
|
8
|
+
}
|
|
9
|
+
export type AgentProviderModeDefinition = Omit<AgentMode, "icon" | "colorTier"> & AgentModeVisuals & {
|
|
10
|
+
isUnattended?: boolean;
|
|
11
|
+
};
|
|
12
|
+
export interface AgentProviderDefinition {
|
|
13
|
+
id: string;
|
|
14
|
+
label: string;
|
|
15
|
+
description: string;
|
|
16
|
+
defaultModeId: string | null;
|
|
17
|
+
modes: AgentProviderModeDefinition[];
|
|
18
|
+
voice?: {
|
|
19
|
+
enabled: boolean;
|
|
20
|
+
defaultModeId: string;
|
|
21
|
+
defaultModel?: string;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
export declare const AGENT_PROVIDER_DEFINITIONS: AgentProviderDefinition[];
|
|
25
|
+
export declare const DEV_AGENT_PROVIDER_DEFINITIONS: AgentProviderDefinition[];
|
|
26
|
+
export declare function getAgentProviderDefinition(provider: string, definitions?: AgentProviderDefinition[]): AgentProviderDefinition;
|
|
27
|
+
export declare const BUILTIN_PROVIDER_IDS: string[];
|
|
28
|
+
export declare const AGENT_PROVIDER_IDS: string[];
|
|
29
|
+
export declare const AgentProviderSchema: z.ZodString;
|
|
30
|
+
export declare function isValidAgentProvider(value: string, validIds?: Iterable<string>): boolean;
|
|
31
|
+
export declare function getUnattendedModeId(provider: string, definitions?: AgentProviderDefinition[]): string | undefined;
|
|
32
|
+
export declare function getModeVisuals(provider: string, modeId: string, definitions: AgentProviderDefinition[]): AgentModeVisuals | undefined;
|
|
33
|
+
//# sourceMappingURL=provider-manifest.d.ts.map
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
const CLAUDE_MODES = [
|
|
3
|
+
{
|
|
4
|
+
id: "default",
|
|
5
|
+
label: "Always Ask",
|
|
6
|
+
description: "Prompts for permission the first time a tool is used",
|
|
7
|
+
icon: "ShieldCheck",
|
|
8
|
+
colorTier: "safe",
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
id: "auto",
|
|
12
|
+
label: "Auto mode",
|
|
13
|
+
description: "Uses a model classifier to review permission prompts automatically",
|
|
14
|
+
icon: "ShieldQuestionMark",
|
|
15
|
+
colorTier: "moderate",
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
id: "acceptEdits",
|
|
19
|
+
label: "Accept File Edits",
|
|
20
|
+
description: "Automatically approves edit-focused tools without prompting",
|
|
21
|
+
icon: "ShieldAlert",
|
|
22
|
+
colorTier: "moderate",
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: "plan",
|
|
26
|
+
label: "Plan Mode",
|
|
27
|
+
description: "Analyze the codebase without executing tools or edits",
|
|
28
|
+
icon: "ShieldCheck",
|
|
29
|
+
colorTier: "planning",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
id: "bypassPermissions",
|
|
33
|
+
label: "Bypass",
|
|
34
|
+
description: "Skip all permission prompts (use with caution)",
|
|
35
|
+
icon: "ShieldAlert",
|
|
36
|
+
colorTier: "dangerous",
|
|
37
|
+
isUnattended: true,
|
|
38
|
+
},
|
|
39
|
+
];
|
|
40
|
+
const CODEX_MODES = [
|
|
41
|
+
{
|
|
42
|
+
id: "auto",
|
|
43
|
+
label: "Default Permissions",
|
|
44
|
+
description: "Edit files and run commands with Codex's default approval flow.",
|
|
45
|
+
icon: "ShieldAlert",
|
|
46
|
+
colorTier: "moderate",
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
id: "auto-review",
|
|
50
|
+
label: "Auto-review",
|
|
51
|
+
description: "Same workspace-write permissions as Default, but eligible `on-request` approvals are routed through the auto-reviewer subagent.",
|
|
52
|
+
icon: "ShieldQuestionMark",
|
|
53
|
+
colorTier: "moderate",
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
id: "full-access",
|
|
57
|
+
label: "Full Access",
|
|
58
|
+
description: "Edit files, run commands, and access the network without additional prompts.",
|
|
59
|
+
icon: "ShieldAlert",
|
|
60
|
+
colorTier: "dangerous",
|
|
61
|
+
isUnattended: true,
|
|
62
|
+
},
|
|
63
|
+
];
|
|
64
|
+
const COPILOT_MODES = [
|
|
65
|
+
{
|
|
66
|
+
id: "https://agentclientprotocol.com/protocol/session-modes#agent",
|
|
67
|
+
label: "Agent",
|
|
68
|
+
description: "Default agent mode for conversational interactions",
|
|
69
|
+
icon: "ShieldAlert",
|
|
70
|
+
colorTier: "moderate",
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
id: "https://agentclientprotocol.com/protocol/session-modes#plan",
|
|
74
|
+
label: "Plan",
|
|
75
|
+
description: "Plan mode for creating and executing multi-step plans",
|
|
76
|
+
icon: "ShieldCheck",
|
|
77
|
+
colorTier: "planning",
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
id: "allow-all",
|
|
81
|
+
label: "Allow All",
|
|
82
|
+
description: "Automatically approves all Copilot tool, path, and URL requests.",
|
|
83
|
+
icon: "ShieldOff",
|
|
84
|
+
colorTier: "dangerous",
|
|
85
|
+
isUnattended: true,
|
|
86
|
+
},
|
|
87
|
+
];
|
|
88
|
+
const OPENCODE_MODES = [
|
|
89
|
+
{
|
|
90
|
+
id: "build",
|
|
91
|
+
label: "Build",
|
|
92
|
+
description: "Allows edits and tool execution for implementation work",
|
|
93
|
+
icon: "Bot",
|
|
94
|
+
colorTier: "moderate",
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
id: "plan",
|
|
98
|
+
label: "Plan",
|
|
99
|
+
description: "Read-only planning mode that avoids file edits",
|
|
100
|
+
icon: "Bot",
|
|
101
|
+
colorTier: "planning",
|
|
102
|
+
},
|
|
103
|
+
];
|
|
104
|
+
const MOCK_LOAD_TEST_MODES = [
|
|
105
|
+
{
|
|
106
|
+
id: "load-test",
|
|
107
|
+
label: "Load Test",
|
|
108
|
+
description: "Streams repeated markdown, reasoning, and tool calls for app stress testing",
|
|
109
|
+
icon: "ShieldOff",
|
|
110
|
+
colorTier: "dangerous",
|
|
111
|
+
},
|
|
112
|
+
];
|
|
113
|
+
const MOCK_SLOW_MODES = [
|
|
114
|
+
{
|
|
115
|
+
id: "default",
|
|
116
|
+
label: "Default",
|
|
117
|
+
description: "Dev-only mode for the mock slow provider",
|
|
118
|
+
icon: "ShieldOff",
|
|
119
|
+
colorTier: "dangerous",
|
|
120
|
+
},
|
|
121
|
+
];
|
|
122
|
+
export const AGENT_PROVIDER_DEFINITIONS = [
|
|
123
|
+
{
|
|
124
|
+
id: "claude",
|
|
125
|
+
label: "Claude",
|
|
126
|
+
description: "Anthropic's multi-tool assistant with MCP support, streaming, and deep reasoning",
|
|
127
|
+
defaultModeId: "default",
|
|
128
|
+
modes: CLAUDE_MODES,
|
|
129
|
+
voice: {
|
|
130
|
+
enabled: true,
|
|
131
|
+
defaultModeId: "default",
|
|
132
|
+
defaultModel: "haiku",
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
id: "codex",
|
|
137
|
+
label: "Codex",
|
|
138
|
+
description: "OpenAI's Codex workspace agent with sandbox controls and optional network access",
|
|
139
|
+
defaultModeId: "auto",
|
|
140
|
+
modes: CODEX_MODES,
|
|
141
|
+
voice: {
|
|
142
|
+
enabled: true,
|
|
143
|
+
defaultModeId: "auto",
|
|
144
|
+
defaultModel: "gpt-5.4-mini",
|
|
145
|
+
},
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
id: "copilot",
|
|
149
|
+
label: "Copilot",
|
|
150
|
+
description: "GitHub Copilot via Agent Client Protocol with dynamic modes and session support",
|
|
151
|
+
defaultModeId: "https://agentclientprotocol.com/protocol/session-modes#agent",
|
|
152
|
+
modes: COPILOT_MODES,
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
id: "opencode",
|
|
156
|
+
label: "OpenCode",
|
|
157
|
+
description: "Open-source coding assistant with multi-provider model support",
|
|
158
|
+
defaultModeId: "build",
|
|
159
|
+
modes: OPENCODE_MODES,
|
|
160
|
+
voice: {
|
|
161
|
+
enabled: true,
|
|
162
|
+
defaultModeId: "build",
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
id: "pi",
|
|
167
|
+
label: "Pi",
|
|
168
|
+
description: "Minimal terminal-based coding agent with multi-provider LLM support",
|
|
169
|
+
defaultModeId: null,
|
|
170
|
+
modes: [],
|
|
171
|
+
},
|
|
172
|
+
];
|
|
173
|
+
export const DEV_AGENT_PROVIDER_DEFINITIONS = [
|
|
174
|
+
{
|
|
175
|
+
id: "mock",
|
|
176
|
+
label: "Mock Load Test",
|
|
177
|
+
description: "Development-only provider that emits synthetic agent traffic for performance tests",
|
|
178
|
+
defaultModeId: "load-test",
|
|
179
|
+
modes: MOCK_LOAD_TEST_MODES,
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
id: "mock-slow",
|
|
183
|
+
label: "Mock Slow Provider",
|
|
184
|
+
description: "Dev-only: hangs during model discovery to test loading and timeout UI",
|
|
185
|
+
defaultModeId: "default",
|
|
186
|
+
modes: MOCK_SLOW_MODES,
|
|
187
|
+
},
|
|
188
|
+
];
|
|
189
|
+
export function getAgentProviderDefinition(provider, definitions = [
|
|
190
|
+
...AGENT_PROVIDER_DEFINITIONS,
|
|
191
|
+
...DEV_AGENT_PROVIDER_DEFINITIONS,
|
|
192
|
+
]) {
|
|
193
|
+
const definition = definitions.find((entry) => entry.id === provider);
|
|
194
|
+
if (!definition) {
|
|
195
|
+
throw new Error(`Unknown agent provider: ${provider}`);
|
|
196
|
+
}
|
|
197
|
+
return definition;
|
|
198
|
+
}
|
|
199
|
+
export const BUILTIN_PROVIDER_IDS = AGENT_PROVIDER_DEFINITIONS.map((d) => d.id);
|
|
200
|
+
export const AGENT_PROVIDER_IDS = BUILTIN_PROVIDER_IDS;
|
|
201
|
+
export const AgentProviderSchema = z.string();
|
|
202
|
+
export function isValidAgentProvider(value, validIds = BUILTIN_PROVIDER_IDS) {
|
|
203
|
+
return Array.isArray(validIds) ? validIds.includes(value) : new Set(validIds).has(value);
|
|
204
|
+
}
|
|
205
|
+
export function getUnattendedModeId(provider, definitions = [
|
|
206
|
+
...AGENT_PROVIDER_DEFINITIONS,
|
|
207
|
+
...DEV_AGENT_PROVIDER_DEFINITIONS,
|
|
208
|
+
]) {
|
|
209
|
+
const definition = definitions.find((entry) => entry.id === provider);
|
|
210
|
+
return definition?.modes.find((mode) => mode.isUnattended)?.id;
|
|
211
|
+
}
|
|
212
|
+
export function getModeVisuals(provider, modeId, definitions) {
|
|
213
|
+
const definition = definitions.find((entry) => entry.id === provider);
|
|
214
|
+
const mode = definition?.modes.find((m) => m.id === modeId);
|
|
215
|
+
if (!mode)
|
|
216
|
+
return undefined;
|
|
217
|
+
return { icon: mode.icon, colorTier: mode.colorTier };
|
|
218
|
+
}
|
|
219
|
+
//# sourceMappingURL=provider-manifest.js.map
|