@coreframe/config 0.1.13 → 0.1.15-next.0
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/index.d.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,8 @@ type CoreframeConfig = {
|
|
|
7
7
|
database?: DatabaseConfig; /** Deployment hooks, environments, checks, and release settings. */
|
|
8
8
|
deploy?: DeployConfig; /** Local development settings. */
|
|
9
9
|
dev?: DevConfig; /** Translation catalog and locale settings. */
|
|
10
|
-
i18n?: I18nConfig; /**
|
|
10
|
+
i18n?: I18nConfig; /** Local development job inspection and reset settings. */
|
|
11
|
+
jobs?: JobsConfig; /** Flutter host integration settings. */
|
|
11
12
|
flutter?: FlutterConfig; /** Local preview server and tunnel settings. */
|
|
12
13
|
preview?: PreviewConfig; /** Worker build and runtime settings. */
|
|
13
14
|
worker?: WorkerConfig;
|
|
@@ -51,6 +52,9 @@ type DatabaseConfig = {
|
|
|
51
52
|
/** Database engine used by project workflows. */dialect: DatabaseDialect; /** Project-relative module that seeds the database. */
|
|
52
53
|
seed?: string;
|
|
53
54
|
};
|
|
55
|
+
type JobsConfig = {
|
|
56
|
+
/** Project-relative module exporting the local development job administration contract. */entry: string;
|
|
57
|
+
};
|
|
54
58
|
type DevPlatform = "android" | "ios" | "linux" | "macos" | "web" | "webext" | "windows";
|
|
55
59
|
type DevConfig = {
|
|
56
60
|
/** Platforms started by the development command. */platforms?: DevPlatform[];
|
|
@@ -205,4 +209,4 @@ declare function readProjectConfig({
|
|
|
205
209
|
declare function importProjectModule<T>(path: string, cwd?: string): Promise<T>;
|
|
206
210
|
declare function importProjectDependency<T>(specifier: string, cwd?: string): Promise<T>;
|
|
207
211
|
//#endregion
|
|
208
|
-
export { AssetsConfig, BreakpointsConfig, CoreframeConfig, DatabaseConfig, DatabaseDialect, DeployConfig, DeployContext, DeployEnvironment, DeployEnvironmentConfig, DeployMode, DeploySmokeCheck, DevConfig, DevPlatform, FlutterConfig, FlutterDeepLinkConfig, I18nConfig, JsonObject, JsonValue, PreviewAccessBypassConfig, PreviewAccessConfig, PreviewAccessIpContext, PreviewAccessIpResolver, PreviewConfig, PreviewTunnelConfig, PreviewWorkerConfig, PrimaryWorkerContributions, PrimaryWorkerEnvironment, StagingHostnameConfig, WorkerConfig, WorkerDeployEnvironment, WorkerEnvironmentDeclaration, WorkerEnvironmentKind, WorkerEnvironmentVariableConfig, WranglerConfig, breakpointNames, coreframeGeneratedWorkerVariables, coreframeLocalWorkerVariables, coreframeManagedWorkerSecrets, defineConfig, derivePrimaryWorkerConfig, importProjectDependency, importProjectModule, normalizeWorkerEnvironment, primaryWorkerConfigPath, primaryWorkerEnvironments, readProjectBreakpoints, readProjectConfig, validateBreakpoints, validateWorkerInventoryOwnership, workerBindingNames, wranglerEnvironmentNames };
|
|
212
|
+
export { AssetsConfig, BreakpointsConfig, CoreframeConfig, DatabaseConfig, DatabaseDialect, DeployConfig, DeployContext, DeployEnvironment, DeployEnvironmentConfig, DeployMode, DeploySmokeCheck, DevConfig, DevPlatform, FlutterConfig, FlutterDeepLinkConfig, I18nConfig, JobsConfig, JsonObject, JsonValue, PreviewAccessBypassConfig, PreviewAccessConfig, PreviewAccessIpContext, PreviewAccessIpResolver, PreviewConfig, PreviewTunnelConfig, PreviewWorkerConfig, PrimaryWorkerContributions, PrimaryWorkerEnvironment, StagingHostnameConfig, WorkerConfig, WorkerDeployEnvironment, WorkerEnvironmentDeclaration, WorkerEnvironmentKind, WorkerEnvironmentVariableConfig, WranglerConfig, breakpointNames, coreframeGeneratedWorkerVariables, coreframeLocalWorkerVariables, coreframeManagedWorkerSecrets, defineConfig, derivePrimaryWorkerConfig, importProjectDependency, importProjectModule, normalizeWorkerEnvironment, primaryWorkerConfigPath, primaryWorkerEnvironments, readProjectBreakpoints, readProjectConfig, validateBreakpoints, validateWorkerInventoryOwnership, workerBindingNames, wranglerEnvironmentNames };
|