openlayer 0.0.1-alpha.0 → 0.0.1-alpha.1
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 +10 -6
- package/_shims/web-runtime.js +1 -1
- package/_shims/web-runtime.js.map +1 -1
- package/_shims/web-runtime.mjs +1 -1
- package/_shims/web-runtime.mjs.map +1 -1
- package/lib/core/cli.d.ts +15 -1
- package/lib/core/cli.d.ts.map +1 -1
- package/lib/core/cli.js +3 -4
- package/lib/core/cli.js.map +1 -1
- package/lib/core/cli.mjs +4 -3
- package/lib/core/cli.mjs.map +1 -1
- package/lib/core/openai-monitor.d.ts +54 -0
- package/lib/core/openai-monitor.d.ts.map +1 -0
- package/lib/core/openai-monitor.js +376 -0
- package/lib/core/openai-monitor.js.map +1 -0
- package/lib/core/openai-monitor.mjs +371 -0
- package/lib/core/openai-monitor.mjs.map +1 -0
- package/package.json +2 -2
- package/src/_shims/web-runtime.ts +1 -1
- package/src/lib/core/cli.ts +21 -5
- package/src/lib/core/index.d.ts +2 -0
- package/src/lib/core/openai-monitor.ts +470 -0
- package/src/lib/index.d.ts +1 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
- package/version.mjs +1 -1
- package/version.mjs.map +1 -1
- package/lib/core/index.d.ts +0 -237
- package/lib/core/index.d.ts.map +0 -1
- package/lib/core/index.js +0 -635
- package/lib/core/index.js.map +0 -1
- package/lib/core/index.mjs +0 -627
- package/lib/core/index.mjs.map +0 -1
- package/lib/core/run.d.ts +0 -14
- package/lib/core/run.d.ts.map +0 -1
- package/lib/core/run.js +0 -3
- package/lib/core/run.js.map +0 -1
- package/lib/core/run.mjs +0 -2
- package/lib/core/run.mjs.map +0 -1
- package/src/lib/core/index.ts +0 -1067
- package/src/lib/core/run.ts +0 -14
package/src/lib/core/run.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
// Define shared interfaces and utilities here
|
|
2
|
-
export interface RunReturn {
|
|
3
|
-
otherFields: { [key: string]: any };
|
|
4
|
-
output: any;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
// Define an interface for the configuration object
|
|
8
|
-
export interface Config {
|
|
9
|
-
inputVariableNames?: string[];
|
|
10
|
-
metadata: {
|
|
11
|
-
outputTimestamp: number;
|
|
12
|
-
};
|
|
13
|
-
outputColumnName: string;
|
|
14
|
-
}
|