@sctg/cline-shared 3.84.0-beta.20260524130712
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 +47 -0
- package/dist/agent.d.ts +388 -0
- package/dist/agents/index.d.ts +1 -0
- package/dist/agents/types.d.ts +967 -0
- package/dist/automation/index.d.ts +3 -0
- package/dist/automation/index.js +65 -0
- package/dist/automation/schemas.d.ts +89 -0
- package/dist/automation/types.d.ts +151 -0
- package/dist/connectors/events.d.ts +93 -0
- package/dist/connectors/options.d.ts +174 -0
- package/dist/cron/cron-spec-types.d.ts +94 -0
- package/dist/cron/index.d.ts +1 -0
- package/dist/db/index.d.ts +2 -0
- package/dist/db/index.js +80 -0
- package/dist/db/sqlite-db.d.ts +24 -0
- package/dist/dispose.d.ts +13 -0
- package/dist/extensions/context.d.ts +76 -0
- package/dist/extensions/contribution-registry.d.ts +195 -0
- package/dist/extensions/plugin.d.ts +1 -0
- package/dist/hooks/contracts.d.ts +9 -0
- package/dist/hooks/events.d.ts +194 -0
- package/dist/hub.d.ts +470 -0
- package/dist/index.browser.d.ts +61 -0
- package/dist/index.browser.js +76 -0
- package/dist/index.d.ts +69 -0
- package/dist/index.js +163 -0
- package/dist/llms/ai-sdk-format.d.ts +55 -0
- package/dist/llms/gateway.d.ts +145 -0
- package/dist/llms/messages.d.ts +149 -0
- package/dist/llms/model-info.d.ts +120 -0
- package/dist/llms/reasoning-effort.d.ts +21 -0
- package/dist/llms/requests.d.ts +2 -0
- package/dist/llms/tokens.d.ts +7 -0
- package/dist/llms/tools.d.ts +86 -0
- package/dist/logging/logger.d.ts +37 -0
- package/dist/parse/error.d.ts +2 -0
- package/dist/parse/headers/utils.d.ts +1 -0
- package/dist/parse/json.d.ts +3 -0
- package/dist/parse/shell.d.ts +2 -0
- package/dist/parse/string.d.ts +4 -0
- package/dist/parse/time.d.ts +9 -0
- package/dist/parse/zod.d.ts +12 -0
- package/dist/prompt/cline.d.ts +24 -0
- package/dist/prompt/format.d.ts +11 -0
- package/dist/prompt/system.d.ts +2 -0
- package/dist/remote-config/artifact-store.d.ts +13 -0
- package/dist/remote-config/blob-storage.d.ts +47 -0
- package/dist/remote-config/bundle.d.ts +136 -0
- package/dist/remote-config/constants.d.ts +5 -0
- package/dist/remote-config/index.d.ts +9 -0
- package/dist/remote-config/index.js +76 -0
- package/dist/remote-config/materializer.d.ts +4 -0
- package/dist/remote-config/paths.d.ts +10 -0
- package/dist/remote-config/runtime.d.ts +20 -0
- package/dist/remote-config/schema.d.ts +408 -0
- package/dist/remote-config/telemetry.d.ts +9 -0
- package/dist/rpc/index.d.ts +5 -0
- package/dist/rpc/runtime.d.ts +322 -0
- package/dist/rpc/team-progress.d.ts +53 -0
- package/dist/runtime/build-env.d.ts +13 -0
- package/dist/runtime/cline-environment.d.ts +17 -0
- package/dist/runtime/hub-daemon-env.d.ts +2 -0
- package/dist/services/telemetry-config.d.ts +6 -0
- package/dist/services/telemetry.d.ts +133 -0
- package/dist/session/hook-context.d.ts +12 -0
- package/dist/session/index.d.ts +1 -0
- package/dist/session/records.d.ts +31 -0
- package/dist/session/runtime-config.d.ts +26 -0
- package/dist/session/runtime-env.d.ts +8 -0
- package/dist/session/workspace.d.ts +28 -0
- package/dist/storage/index.d.ts +2 -0
- package/dist/storage/index.js +1 -0
- package/dist/storage/path-resolution.d.ts +11 -0
- package/dist/storage/paths.d.ts +86 -0
- package/dist/team/index.d.ts +2 -0
- package/dist/team/schema.d.ts +411 -0
- package/dist/team/types.d.ts +196 -0
- package/dist/tools/create.d.ts +22 -0
- package/dist/types/auth.d.ts +20 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/vcr.d.ts +14 -0
- package/dist/vcr.d.ts +41 -0
- package/package.json +63 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { WorkspaceContext } from "../extensions/context";
|
|
2
|
+
import type { WorkspaceInfo } from "../session/workspace";
|
|
3
|
+
export declare function processWorkspaceInfo(info: WorkspaceInfo): string;
|
|
4
|
+
/**
|
|
5
|
+
* Options for building the Cline system prompt.
|
|
6
|
+
*
|
|
7
|
+
* Extends WorkspaceContext so callers can spread an ExtensionContext.workspace
|
|
8
|
+
* directly. `workspaceRoot` is accepted as an alias for `rootPath` to support
|
|
9
|
+
* existing call sites that set it explicitly.
|
|
10
|
+
*/
|
|
11
|
+
export interface ClineSystemPromptOptions extends Omit<WorkspaceContext, "rootPath"> {
|
|
12
|
+
/**
|
|
13
|
+
* Workspace root path. Accepts either `rootPath` (from WorkspaceContext/WorkspaceInfo)
|
|
14
|
+
* or `workspaceRoot` (legacy alias) — whichever is provided will be used.
|
|
15
|
+
*/
|
|
16
|
+
rootPath?: string;
|
|
17
|
+
/** Alias for rootPath — kept for backwards compatibility with existing call sites */
|
|
18
|
+
workspaceRoot?: string;
|
|
19
|
+
/** Per-request system prompt override */
|
|
20
|
+
overridePrompt?: string;
|
|
21
|
+
/** Provider ID — used to gate Cline-specific metadata injection */
|
|
22
|
+
providerId?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare function buildClineSystemPrompt(options: ClineSystemPromptOptions): string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare function formatFileContentBlock(path: string, content: string): string;
|
|
2
|
+
export declare function formatUserInputBlock(input: string, mode?: "act" | "plan" | "yolo"): string;
|
|
3
|
+
export declare function formatUserCommandBlock(input: string, slash: string): string;
|
|
4
|
+
export type UserCommandEnvelope = {
|
|
5
|
+
slash: string;
|
|
6
|
+
content: string;
|
|
7
|
+
};
|
|
8
|
+
export declare function parseUserCommandEnvelope(input?: string): UserCommandEnvelope | undefined;
|
|
9
|
+
export declare function normalizeUserInput(input?: string): string;
|
|
10
|
+
export declare function formatDisplayUserInput(input?: string): string;
|
|
11
|
+
export declare function xmlTagsRemoval(input?: string, tag?: string): string;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const DEFAULT_CLINE_SYSTEM_PROMPT = "You are Cline, an AI coding agent. Your primary goal is to assist users with various coding tasks by leveraging your knowledge and the tools at your disposal. Given the user's prompt, you should use the tools available to you to answer user's question.\n\nAlways gather all the necessary context before starting to work on a task. For example, if you are generating a unit test or new code, make sure you understand the requirement, the naming conventions, frameworks and libraries used and aligned in the current codebase, and the environment and commands used to run and test the code etc. Always validate the new unit test at the end including running the code if possible for live feedback.\nReview each question carefully and answer it with detailed, accurate information.\nIf you need more information, use one of the available tools or ask for clarification instead of making assumptions or lies.\n\nEnvironment you are running in:\n<env>\n1. Platform: {{PLATFORM_NAME}}\n2. Date: {{CURRENT_DATE}}\n3. IDE: {{IDE_NAME}}\n4. Working Directory: {{CWD}}\n</env>\n\nRemember:\n- Always adhere to existing code conventions and patterns.\n- Use only libraries and frameworks that are confirmed to be in use in the current codebase.\n- Provide complete and functional code without omissions or placeholders.\n- Be explicit about any assumptions or limitations in your solution.\n- Always show your planning process before executing any task. This will help ensure that you have a clear understanding of the requirements and that your approach aligns with the user's needs.\n- Always use absolute paths when referring to files.\n- Always verify the files you have edited or created at the end of the task to ensure they are completed and working as expected.\n\nBegin by analyzing the user's input and gathering any necessary additional context. Then, present your plan at the start of your response along with tool calls before proceeding with the task. It's OK for this section to be quite long.\n\nREMEMBER, be helpful and proactive! Don't ask for permission to do something when you can do it! Do not indicates you will be using a tool unless you are actually going to use it.\n\nIMPORTANT: Always includes tool calls in your response until the task is completed. Response without tool calls will considered as completed with final answer.\n\nWhen you have completed the task, please provide a summary of what you did and any relevant information that the user should know. This will help ensure that the user understands the changes made and can easily follow up if they have any questions or need further assistance. Do not indicate that you will perform an action without actually doing it. Always provide the final result in your response. Always validate your answer with checking the code and running it if possible. \n\nIf user asked a simple question without any coding context, answer it directly without using any tools.\n{{CLINE_RULES}}\n{{CLINE_METADATA}}";
|
|
2
|
+
export declare const YOLO_CLINE_SYSTEM_PROMPT = "You are Cline, a careful and helpful coding agent that works in the background.\nYou are tasked to solve an issue reported by the user who you cannot communicate with directly.\nYour goal is to utilize the tools at your disposal to investigate and answer the question according to user's instructions with the aim to verify that the issue is resolved.\n\nRULES:\n- Always match output format exactly as shown in examples or existing files.\n- Use only libraries and frameworks that are confirmed and compatible to be in use in the current codebase.\n- Provide complete and functional code without omissions or placeholders.\n- Always show your planning process without repeating yourself before executing any task. This will help ensure that you have a clear understanding of the requirements and that your approach aligns with the user's request.\n- Always use absolute paths when referring to files.\n- Always verify the files you have edited or created at the end of the task to ensure they are completed and working as expected.\n\nEnvironment you are running in:\n<env>\n1. Platform: {{PLATFORM_NAME}}\n2. Date: {{CURRENT_DATE}}\n3. IDE: {{IDE_NAME}}\n4. Working Directory: {{CWD}}\n</env>\n\nIMPORTANT: \n- When the user describes a bug, unexpected behavior, or provides a bug report, your primary goal is to produce a correct fix in the source code that resolves the issue. \n- A correct fix means the underlying behavior is fixed \u2014 not just the symptoms addressed superficially. \n- After applying your fix, you must run the relevant test suite to confirm your changes actually resolve the problem. If tests fail, analyze the failures, revise your fix, and re-run until tests pass. \n- Do not consider the task complete until the test suite related to the files you have touched passes.\n- Always includes tool calls in your response until the task is completed. You should only end the task when all the requirements are met by calling the 'submit_and_exit' tool.\n- Response without the submit_and_exit tool call will considered not completed and the task will continue.\n{{CLINE_RULES}}\n{{CLINE_METADATA}}";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { RemoteConfigBundle, RemoteConfigBundleStore, RemoteConfigManagedArtifactStore } from "./bundle";
|
|
2
|
+
export declare class FileRemoteConfigBundleStore implements RemoteConfigBundleStore {
|
|
3
|
+
private readonly filePath;
|
|
4
|
+
constructor(filePath: string);
|
|
5
|
+
read(): Promise<RemoteConfigBundle | undefined>;
|
|
6
|
+
write(bundle: RemoteConfigBundle): Promise<void>;
|
|
7
|
+
clear(): Promise<void>;
|
|
8
|
+
}
|
|
9
|
+
export declare class FileSystemRemoteConfigManagedArtifactStore implements RemoteConfigManagedArtifactStore {
|
|
10
|
+
writeText(filePath: string, contents: string): Promise<void>;
|
|
11
|
+
remove(targetPath: string): Promise<void>;
|
|
12
|
+
removeChildren(directoryPath: string): Promise<void>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { PromptUploading, RemoteConfig } from "./schema";
|
|
2
|
+
export interface RemoteConfigBlobStoreSettings {
|
|
3
|
+
bucket: string;
|
|
4
|
+
adapterType: "s3" | "r2" | "azure";
|
|
5
|
+
accessKeyId: string;
|
|
6
|
+
secretAccessKey: string;
|
|
7
|
+
region?: string;
|
|
8
|
+
endpoint?: string;
|
|
9
|
+
accountId?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface RemoteConfigBlobStoreTarget {
|
|
12
|
+
bucket: string;
|
|
13
|
+
adapterType: "s3" | "r2" | "azure";
|
|
14
|
+
region?: string;
|
|
15
|
+
endpoint?: string;
|
|
16
|
+
accountId?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface RemoteConfigBlobStorageAdapter {
|
|
19
|
+
write(path: string, value: string): Promise<void>;
|
|
20
|
+
}
|
|
21
|
+
export interface RemoteConfigSessionBlobUploadMetadata {
|
|
22
|
+
version: 1;
|
|
23
|
+
storage: RemoteConfigBlobStoreTarget;
|
|
24
|
+
keyPrefix?: string;
|
|
25
|
+
userDistinctId?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface RemoteConfigSessionMetadataRow {
|
|
28
|
+
metadata?: Record<string, unknown> | null;
|
|
29
|
+
}
|
|
30
|
+
export interface RemoteConfigSessionMessagesUploadInput {
|
|
31
|
+
sessionId: string;
|
|
32
|
+
path: string;
|
|
33
|
+
contents: string;
|
|
34
|
+
row?: RemoteConfigSessionMetadataRow;
|
|
35
|
+
}
|
|
36
|
+
export interface RemoteConfigSessionMessagesArtifactUploader {
|
|
37
|
+
uploadMessagesFile(input: RemoteConfigSessionMessagesUploadInput): Promise<void>;
|
|
38
|
+
}
|
|
39
|
+
export declare const REMOTE_CONFIG_SESSION_BLOB_UPLOAD_METADATA_KEY = "enterprise.blobUpload";
|
|
40
|
+
export declare function resolveBlobStoreSettingsFromPromptUploading(promptUploading: PromptUploading | undefined): RemoteConfigBlobStoreSettings | undefined;
|
|
41
|
+
export declare function resolveBlobStoreSettingsFromRemoteConfig(remoteConfig: RemoteConfig | undefined): RemoteConfigBlobStoreSettings | undefined;
|
|
42
|
+
export declare function buildRemoteConfigSessionBlobUploadMetadata(remoteConfig: RemoteConfig | undefined, userDistinctId?: string): RemoteConfigSessionBlobUploadMetadata | undefined;
|
|
43
|
+
export declare function registerRemoteConfigSessionBlobUpload(sessionId: string, remoteConfig: RemoteConfig | undefined, userDistinctId?: string): RemoteConfigSessionBlobUploadMetadata | undefined;
|
|
44
|
+
export declare function clearRemoteConfigSessionBlobUpload(sessionId: string): void;
|
|
45
|
+
export declare function createRemoteConfigBlobStorageAdapter(settings: RemoteConfigBlobStoreSettings): RemoteConfigBlobStorageAdapter | undefined;
|
|
46
|
+
export declare function readRemoteConfigSessionBlobUploadMetadata(row: RemoteConfigSessionMetadataRow | undefined): RemoteConfigSessionBlobUploadMetadata | undefined;
|
|
47
|
+
export declare function createRemoteConfigSessionMessagesArtifactUploader(): RemoteConfigSessionMessagesArtifactUploader;
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import type { AgentExtension } from "../agents/types";
|
|
2
|
+
import type { BasicLogger } from "../logging/logger";
|
|
3
|
+
import type { OpenTelemetryClientConfig } from "../services/telemetry";
|
|
4
|
+
import type { GlobalInstructionsFile, RemoteConfig } from "./schema";
|
|
5
|
+
export interface RemoteConfigIdentityClaims {
|
|
6
|
+
subject: string;
|
|
7
|
+
email?: string;
|
|
8
|
+
roles?: string[];
|
|
9
|
+
groups?: string[];
|
|
10
|
+
organizationId?: string;
|
|
11
|
+
projectIds?: string[];
|
|
12
|
+
rawClaims?: Record<string, unknown>;
|
|
13
|
+
}
|
|
14
|
+
export type RemoteConfigManagedInstructionKind = "rule" | "workflow" | "skill";
|
|
15
|
+
export interface RemoteConfigManagedInstructionFile {
|
|
16
|
+
id: string;
|
|
17
|
+
name: string;
|
|
18
|
+
kind: RemoteConfigManagedInstructionKind;
|
|
19
|
+
contents: string;
|
|
20
|
+
alwaysEnabled?: boolean;
|
|
21
|
+
description?: string;
|
|
22
|
+
metadata?: Record<string, unknown>;
|
|
23
|
+
}
|
|
24
|
+
export interface RemoteConfigBundle {
|
|
25
|
+
source: string;
|
|
26
|
+
version: string;
|
|
27
|
+
remoteConfig?: RemoteConfig;
|
|
28
|
+
managedInstructions?: RemoteConfigManagedInstructionFile[];
|
|
29
|
+
telemetry?: Record<string, unknown>;
|
|
30
|
+
claims?: RemoteConfigIdentityClaims;
|
|
31
|
+
metadata?: Record<string, unknown>;
|
|
32
|
+
}
|
|
33
|
+
export interface RemoteConfigProjectContext {
|
|
34
|
+
projectId?: string;
|
|
35
|
+
workspaceId?: string;
|
|
36
|
+
organizationId?: string;
|
|
37
|
+
}
|
|
38
|
+
export interface RemoteConfigSyncContext {
|
|
39
|
+
workspacePath: string;
|
|
40
|
+
rootPath?: string;
|
|
41
|
+
context?: RemoteConfigProjectContext;
|
|
42
|
+
logger?: BasicLogger;
|
|
43
|
+
signal?: AbortSignal;
|
|
44
|
+
now?: number;
|
|
45
|
+
}
|
|
46
|
+
export interface RemoteConfigControlPlaneFetchInput extends RemoteConfigSyncContext {
|
|
47
|
+
}
|
|
48
|
+
export interface RemoteConfigControlPlane {
|
|
49
|
+
name: string;
|
|
50
|
+
fetchBundle(input: RemoteConfigControlPlaneFetchInput): Promise<RemoteConfigBundle | undefined>;
|
|
51
|
+
}
|
|
52
|
+
export interface RemoteConfigBundleStore {
|
|
53
|
+
read(): Promise<RemoteConfigBundle | undefined>;
|
|
54
|
+
write(bundle: RemoteConfigBundle): Promise<void>;
|
|
55
|
+
clear(): Promise<void>;
|
|
56
|
+
}
|
|
57
|
+
export interface RemoteConfigManagedArtifactStore {
|
|
58
|
+
writeText(filePath: string, contents: string): Promise<void>;
|
|
59
|
+
remove(targetPath: string): Promise<void>;
|
|
60
|
+
removeChildren(directoryPath: string): Promise<void>;
|
|
61
|
+
}
|
|
62
|
+
export interface RemoteConfigManagedPaths {
|
|
63
|
+
pluginName: string;
|
|
64
|
+
pluginPath: string;
|
|
65
|
+
workflowsPath: string;
|
|
66
|
+
skillsPath: string;
|
|
67
|
+
bundleCachePath: string;
|
|
68
|
+
manifestPath: string;
|
|
69
|
+
rulesFilePath: string;
|
|
70
|
+
}
|
|
71
|
+
export interface RemoteConfigMaterializationInput {
|
|
72
|
+
bundle: RemoteConfigBundle;
|
|
73
|
+
paths: RemoteConfigManagedPaths;
|
|
74
|
+
artifactStore: RemoteConfigManagedArtifactStore;
|
|
75
|
+
}
|
|
76
|
+
export interface RemoteConfigMaterializedInstructionFile {
|
|
77
|
+
kind: RemoteConfigManagedInstructionKind;
|
|
78
|
+
filePath: string;
|
|
79
|
+
id: string;
|
|
80
|
+
name: string;
|
|
81
|
+
}
|
|
82
|
+
export interface RemoteConfigMaterializationResult {
|
|
83
|
+
paths: RemoteConfigManagedPaths;
|
|
84
|
+
rulesFilePath?: string;
|
|
85
|
+
files: RemoteConfigMaterializedInstructionFile[];
|
|
86
|
+
}
|
|
87
|
+
export interface RemoteConfigPolicyMaterializer {
|
|
88
|
+
materialize(input: RemoteConfigMaterializationInput): Promise<RemoteConfigMaterializationResult>;
|
|
89
|
+
}
|
|
90
|
+
export interface RemoteConfigTelemetryAdapter {
|
|
91
|
+
name: string;
|
|
92
|
+
resolveTelemetry(bundle: RemoteConfigBundle, context: RemoteConfigSyncContext): Promise<Partial<OpenTelemetryClientConfig> | undefined> | Partial<OpenTelemetryClientConfig> | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface RemoteConfigClaimsMapper<TRole extends string = string> {
|
|
95
|
+
mapClaimsToRoles(claims: RemoteConfigIdentityClaims): TRole[];
|
|
96
|
+
}
|
|
97
|
+
export interface RemoteConfigSyncServiceOptions {
|
|
98
|
+
controlPlane: RemoteConfigControlPlane;
|
|
99
|
+
bundleStore: RemoteConfigBundleStore;
|
|
100
|
+
materializer: RemoteConfigPolicyMaterializer;
|
|
101
|
+
artifactStore: RemoteConfigManagedArtifactStore;
|
|
102
|
+
telemetryAdapter?: RemoteConfigTelemetryAdapter;
|
|
103
|
+
claimsMapper?: RemoteConfigClaimsMapper;
|
|
104
|
+
logger?: BasicLogger;
|
|
105
|
+
}
|
|
106
|
+
export interface RemoteConfigSyncResult {
|
|
107
|
+
bundle: RemoteConfigBundle;
|
|
108
|
+
materialized: RemoteConfigMaterializationResult;
|
|
109
|
+
telemetry?: Partial<OpenTelemetryClientConfig>;
|
|
110
|
+
roles: string[];
|
|
111
|
+
claims?: RemoteConfigIdentityClaims;
|
|
112
|
+
}
|
|
113
|
+
export interface PrepareRemoteConfigRuntimeOptions extends RemoteConfigSyncContext {
|
|
114
|
+
pluginName?: string;
|
|
115
|
+
controlPlane?: RemoteConfigControlPlane;
|
|
116
|
+
bundleStore?: RemoteConfigBundleStore;
|
|
117
|
+
artifactStore?: RemoteConfigManagedArtifactStore;
|
|
118
|
+
materializer?: RemoteConfigPolicyMaterializer;
|
|
119
|
+
telemetryAdapter?: RemoteConfigTelemetryAdapter;
|
|
120
|
+
claimsMapper?: RemoteConfigClaimsMapper;
|
|
121
|
+
useCachedBundle?: boolean;
|
|
122
|
+
requireBundle?: boolean;
|
|
123
|
+
}
|
|
124
|
+
export interface PreparedRemoteConfigRuntime {
|
|
125
|
+
pluginName: string;
|
|
126
|
+
pluginDefinition: AgentExtension;
|
|
127
|
+
paths: RemoteConfigManagedPaths;
|
|
128
|
+
bundle?: RemoteConfigBundle;
|
|
129
|
+
telemetry?: Partial<OpenTelemetryClientConfig>;
|
|
130
|
+
roles: string[];
|
|
131
|
+
claims?: RemoteConfigIdentityClaims;
|
|
132
|
+
usedCachedBundle: boolean;
|
|
133
|
+
workflowsDirectories: readonly string[];
|
|
134
|
+
skillsDirectories: readonly string[];
|
|
135
|
+
}
|
|
136
|
+
export declare function remoteConfigInstructionToManagedFile(kind: Extract<RemoteConfigManagedInstructionKind, "rule" | "workflow">, file: GlobalInstructionsFile, suffix: string): RemoteConfigManagedInstructionFile;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./artifact-store";
|
|
2
|
+
export * from "./blob-storage";
|
|
3
|
+
export * from "./bundle";
|
|
4
|
+
export * from "./constants";
|
|
5
|
+
export * from "./materializer";
|
|
6
|
+
export * from "./paths";
|
|
7
|
+
export * from "./runtime";
|
|
8
|
+
export * from "./schema";
|
|
9
|
+
export * from "./telemetry";
|