@absolutejs/absolute 0.19.0-beta.264 → 0.19.0-beta.266

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.
@@ -25,6 +25,9 @@ export declare const openaiResponses: (config: OpenAIResponsesConfig) => {
25
25
  inputTokens: number;
26
26
  outputTokens: number;
27
27
  } | undefined;
28
+ } | {
29
+ content: string;
30
+ type: "thinking";
28
31
  }, void, unknown>;
29
32
  };
30
33
  export {};
@@ -0,0 +1,3 @@
1
+ import { type TProperties } from '@sinclair/typebox';
2
+ import type { Static, TObject } from '@sinclair/typebox';
3
+ export declare const defineEnv: <T extends TProperties>(properties: T) => Readonly<Static<TObject<T>>>;
@@ -1,6 +1,7 @@
1
1
  export * from './defineConfig';
2
2
  export * from './generateHeadElement';
3
3
  export * from './jsonLd';
4
+ export * from './defineEnv';
4
5
  export * from './getEnv';
5
6
  export * from './networking';
6
7
  export * from './registerClientScript';
@@ -0,0 +1,2 @@
1
+ import type { Static, TObject, TProperties } from '@sinclair/typebox';
2
+ export type InferEnv<T extends TProperties> = Readonly<Static<TObject<T>>>;
@@ -3,6 +3,7 @@ export * from './angular';
3
3
  export * from './conventions';
4
4
  export * from './build';
5
5
  export * from './cli';
6
+ export * from './env';
6
7
  export * from './client';
7
8
  export * from './image';
8
9
  export * from './messages';
package/package.json CHANGED
@@ -265,5 +265,5 @@
265
265
  "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
266
266
  },
267
267
  "types": "./dist/src/index.d.ts",
268
- "version": "0.19.0-beta.264"
268
+ "version": "0.19.0-beta.266"
269
269
  }
package/types/env.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { Static, TObject, TProperties } from '@sinclair/typebox'
2
+
3
+ export type InferEnv<T extends TProperties> = Readonly<Static<TObject<T>>>
package/types/index.ts CHANGED
@@ -3,6 +3,7 @@ export * from './angular';
3
3
  export * from './conventions';
4
4
  export * from './build';
5
5
  export * from './cli';
6
+ export * from './env';
6
7
  export * from './client';
7
8
  export * from './image';
8
9
  export * from './messages';