@kitsy/cnos 1.6.1 → 1.8.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/build/index.cjs +1332 -156
- package/dist/build/index.d.cts +1 -1
- package/dist/build/index.d.ts +1 -1
- package/dist/build/index.js +36 -14
- package/dist/{chunk-JYWQFMW5.js → chunk-2DGT7N7E.js} +1 -1
- package/dist/{chunk-S7H2UULC.js → chunk-2TL42I6M.js} +1323 -139
- package/dist/{chunk-MW4OVAT3.js → chunk-5KIQCYFH.js} +1 -1
- package/dist/{chunk-6FAX2VKQ.js → chunk-CW7SNVIQ.js} +195 -28
- package/dist/{chunk-XSUP7JKH.js → chunk-GHGJFRDL.js} +6 -2
- package/dist/{chunk-BMAD24KC.js → chunk-OA7FQGAG.js} +1 -1
- package/dist/{chunk-VGZREX5D.js → chunk-RYIARE4M.js} +1 -1
- package/dist/{chunk-UR7CHHNN.js → chunk-TT4NV56Z.js} +3 -2
- package/dist/{chunk-UJBQS7CJ.js → chunk-UL63DFLS.js} +1 -1
- package/dist/{chunk-N32UN66E.js → chunk-ZD4YX6VC.js} +8 -8
- package/dist/configure/index.cjs +1309 -155
- package/dist/configure/index.d.cts +3 -3
- package/dist/configure/index.d.ts +3 -3
- package/dist/configure/index.js +8 -8
- package/dist/{plugin-CKrBlWGI.d.cts → core-BJ8xewez.d.cts} +142 -60
- package/dist/{plugin-CKrBlWGI.d.ts → core-BJ8xewez.d.ts} +142 -60
- package/dist/{envNaming-B7Mztkcf.d.ts → envNaming-BRyiuPoI.d.ts} +1 -1
- package/dist/{envNaming-gMVnPOfe.d.cts → envNaming-rx71gpi0.d.cts} +1 -1
- package/dist/index.cjs +1548 -227
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +10 -10
- package/dist/internal.cjs +831 -122
- package/dist/internal.d.cts +56 -3
- package/dist/internal.d.ts +56 -3
- package/dist/internal.js +30 -3
- package/dist/plugin/basic-schema.cjs +49 -23
- package/dist/plugin/basic-schema.d.cts +1 -1
- package/dist/plugin/basic-schema.d.ts +1 -1
- package/dist/plugin/basic-schema.js +2 -2
- package/dist/plugin/cli-args.cjs +38 -23
- package/dist/plugin/cli-args.d.cts +1 -1
- package/dist/plugin/cli-args.d.ts +1 -1
- package/dist/plugin/cli-args.js +2 -2
- package/dist/plugin/dotenv.cjs +46 -31
- package/dist/plugin/dotenv.d.cts +2 -2
- package/dist/plugin/dotenv.d.ts +2 -2
- package/dist/plugin/dotenv.js +2 -2
- package/dist/plugin/env-export.cjs +56 -27
- package/dist/plugin/env-export.d.cts +2 -2
- package/dist/plugin/env-export.d.ts +2 -2
- package/dist/plugin/env-export.js +2 -2
- package/dist/plugin/filesystem.cjs +61 -39
- package/dist/plugin/filesystem.d.cts +1 -1
- package/dist/plugin/filesystem.d.ts +1 -1
- package/dist/plugin/filesystem.js +2 -2
- package/dist/plugin/process-env.cjs +40 -25
- package/dist/plugin/process-env.d.cts +2 -2
- package/dist/plugin/process-env.d.ts +2 -2
- package/dist/plugin/process-env.js +2 -2
- package/dist/runtime/index.cjs +1548 -227
- package/dist/runtime/index.d.cts +3 -1
- package/dist/runtime/index.d.ts +3 -1
- package/dist/runtime/index.js +10 -10
- package/dist/toPublicEnv-CCSgdvI9.d.ts +13 -0
- package/dist/toPublicEnv-ivRtLjcw.d.cts +13 -0
- package/package.json +1 -1
- package/dist/toPublicEnv-CmBsy53P.d.cts +0 -7
- package/dist/toPublicEnv-q6VwWxXZ.d.ts +0 -7
package/dist/runtime/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as LogicalKey, g as CnosRuntime, I as InspectResult } from '../
|
|
1
|
+
import { b as LogicalKey, g as CnosRuntime, I as InspectResult } from '../core-BJ8xewez.cjs';
|
|
2
2
|
|
|
3
3
|
interface CnosSingleton {
|
|
4
4
|
<T = unknown>(key: LogicalKey): T | undefined;
|
|
@@ -15,6 +15,7 @@ interface CnosSingleton {
|
|
|
15
15
|
format(message: string): string;
|
|
16
16
|
log(message: string): string;
|
|
17
17
|
loadProjection(source: string): Promise<void>;
|
|
18
|
+
registerRuntimeProvider(namespace: string, provider: Parameters<CnosRuntime['registerRuntimeProvider']>[1]): void;
|
|
18
19
|
refreshSecrets(): Promise<void>;
|
|
19
20
|
refreshSecret(key: LogicalKey): Promise<void>;
|
|
20
21
|
ready(): Promise<void>;
|
|
@@ -33,6 +34,7 @@ declare const cnos: CnosSingleton & {
|
|
|
33
34
|
format(message: string): string;
|
|
34
35
|
log(message: string): string;
|
|
35
36
|
loadProjection(source: string): Promise<void>;
|
|
37
|
+
registerRuntimeProvider(namespace: string, provider: Parameters<CnosRuntime["registerRuntimeProvider"]>[1]): void;
|
|
36
38
|
refreshSecrets(): Promise<void>;
|
|
37
39
|
refreshSecret(key: LogicalKey): Promise<void>;
|
|
38
40
|
ready(): Promise<void>;
|
package/dist/runtime/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as LogicalKey, g as CnosRuntime, I as InspectResult } from '../
|
|
1
|
+
import { b as LogicalKey, g as CnosRuntime, I as InspectResult } from '../core-BJ8xewez.js';
|
|
2
2
|
|
|
3
3
|
interface CnosSingleton {
|
|
4
4
|
<T = unknown>(key: LogicalKey): T | undefined;
|
|
@@ -15,6 +15,7 @@ interface CnosSingleton {
|
|
|
15
15
|
format(message: string): string;
|
|
16
16
|
log(message: string): string;
|
|
17
17
|
loadProjection(source: string): Promise<void>;
|
|
18
|
+
registerRuntimeProvider(namespace: string, provider: Parameters<CnosRuntime['registerRuntimeProvider']>[1]): void;
|
|
18
19
|
refreshSecrets(): Promise<void>;
|
|
19
20
|
refreshSecret(key: LogicalKey): Promise<void>;
|
|
20
21
|
ready(): Promise<void>;
|
|
@@ -33,6 +34,7 @@ declare const cnos: CnosSingleton & {
|
|
|
33
34
|
format(message: string): string;
|
|
34
35
|
log(message: string): string;
|
|
35
36
|
loadProjection(source: string): Promise<void>;
|
|
37
|
+
registerRuntimeProvider(namespace: string, provider: Parameters<CnosRuntime["registerRuntimeProvider"]>[1]): void;
|
|
36
38
|
refreshSecrets(): Promise<void>;
|
|
37
39
|
refreshSecret(key: LogicalKey): Promise<void>;
|
|
38
40
|
ready(): Promise<void>;
|
package/dist/runtime/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runtime_default
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
12
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-CW7SNVIQ.js";
|
|
4
|
+
import "../chunk-GHGJFRDL.js";
|
|
5
|
+
import "../chunk-ZD4YX6VC.js";
|
|
6
|
+
import "../chunk-RYIARE4M.js";
|
|
7
|
+
import "../chunk-TT4NV56Z.js";
|
|
8
|
+
import "../chunk-UL63DFLS.js";
|
|
9
|
+
import "../chunk-5KIQCYFH.js";
|
|
10
|
+
import "../chunk-2DGT7N7E.js";
|
|
11
|
+
import "../chunk-OA7FQGAG.js";
|
|
12
|
+
import "../chunk-2TL42I6M.js";
|
|
13
13
|
export {
|
|
14
14
|
runtime_default as default
|
|
15
15
|
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { R as ResolvedGraph, N as NormalizedManifest, T as ToEnvOptions, c as ToPublicEnvOptions } from './core-BJ8xewez.js';
|
|
2
|
+
|
|
3
|
+
declare function toEnv(graph: ResolvedGraph, manifest: NormalizedManifest, options?: ToEnvOptions, helpers?: {
|
|
4
|
+
read?: (key: string) => unknown;
|
|
5
|
+
isRuntimeDependent?: (key: string) => boolean;
|
|
6
|
+
}): Record<string, string>;
|
|
7
|
+
|
|
8
|
+
declare function toPublicEnv(graph: ResolvedGraph, manifest: NormalizedManifest, options?: ToPublicEnvOptions, helpers?: {
|
|
9
|
+
read?: (key: string) => unknown;
|
|
10
|
+
isRuntimeDependent?: (key: string) => boolean;
|
|
11
|
+
}): Record<string, string>;
|
|
12
|
+
|
|
13
|
+
export { toPublicEnv as a, toEnv as t };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { R as ResolvedGraph, N as NormalizedManifest, T as ToEnvOptions, c as ToPublicEnvOptions } from './core-BJ8xewez.cjs';
|
|
2
|
+
|
|
3
|
+
declare function toEnv(graph: ResolvedGraph, manifest: NormalizedManifest, options?: ToEnvOptions, helpers?: {
|
|
4
|
+
read?: (key: string) => unknown;
|
|
5
|
+
isRuntimeDependent?: (key: string) => boolean;
|
|
6
|
+
}): Record<string, string>;
|
|
7
|
+
|
|
8
|
+
declare function toPublicEnv(graph: ResolvedGraph, manifest: NormalizedManifest, options?: ToPublicEnvOptions, helpers?: {
|
|
9
|
+
read?: (key: string) => unknown;
|
|
10
|
+
isRuntimeDependent?: (key: string) => boolean;
|
|
11
|
+
}): Record<string, string>;
|
|
12
|
+
|
|
13
|
+
export { toPublicEnv as a, toEnv as t };
|
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { R as ResolvedGraph, N as NormalizedManifest, T as ToEnvOptions, c as ToPublicEnvOptions } from './plugin-CKrBlWGI.cjs';
|
|
2
|
-
|
|
3
|
-
declare function toEnv(graph: ResolvedGraph, manifest: NormalizedManifest, options?: ToEnvOptions): Record<string, string>;
|
|
4
|
-
|
|
5
|
-
declare function toPublicEnv(graph: ResolvedGraph, manifest: NormalizedManifest, options?: ToPublicEnvOptions): Record<string, string>;
|
|
6
|
-
|
|
7
|
-
export { toPublicEnv as a, toEnv as t };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { R as ResolvedGraph, N as NormalizedManifest, T as ToEnvOptions, c as ToPublicEnvOptions } from './plugin-CKrBlWGI.js';
|
|
2
|
-
|
|
3
|
-
declare function toEnv(graph: ResolvedGraph, manifest: NormalizedManifest, options?: ToEnvOptions): Record<string, string>;
|
|
4
|
-
|
|
5
|
-
declare function toPublicEnv(graph: ResolvedGraph, manifest: NormalizedManifest, options?: ToPublicEnvOptions): Record<string, string>;
|
|
6
|
-
|
|
7
|
-
export { toPublicEnv as a, toEnv as t };
|