@asaidimu/utils-workspace 6.6.9 → 6.6.10
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/index.d.mts +2 -2
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -493,7 +493,7 @@ interface SubscribeOptions {
|
|
|
493
493
|
*/
|
|
494
494
|
type DeepPartial<T> = T extends object ? T extends readonly (infer U)[] ? readonly (DeepPartial<U> | undefined)[] | undefined | T : T extends (infer U)[] ? (DeepPartial<U> | undefined)[] | undefined | T : {
|
|
495
495
|
[K in keyof T]?: T[K] extends object ? DeepPartial<T[K]> | undefined : T[K] | undefined;
|
|
496
|
-
} | undefined | T : T | undefined;
|
|
496
|
+
} | undefined | T : T | undefined | symbol;
|
|
497
497
|
|
|
498
498
|
/**
|
|
499
499
|
* Canonical conversational continuity artifact.
|
|
@@ -2641,7 +2641,7 @@ interface LLMAdapter<TRequestParams extends Record<string, any> = {}> {
|
|
|
2641
2641
|
interface LLMAdapterStatic<TRequestParams extends Record<string, any> = {}> {
|
|
2642
2642
|
/** Lists all model profiles that can be used with this adapter. */
|
|
2643
2643
|
models(): ModelProfile[];
|
|
2644
|
-
new (...args: any
|
|
2644
|
+
new (...args: any): LLMAdapter<TRequestParams>;
|
|
2645
2645
|
}
|
|
2646
2646
|
interface ModelProfile {
|
|
2647
2647
|
/** Provider identifier, e.g. "google". */
|
package/index.d.ts
CHANGED
|
@@ -493,7 +493,7 @@ interface SubscribeOptions {
|
|
|
493
493
|
*/
|
|
494
494
|
type DeepPartial<T> = T extends object ? T extends readonly (infer U)[] ? readonly (DeepPartial<U> | undefined)[] | undefined | T : T extends (infer U)[] ? (DeepPartial<U> | undefined)[] | undefined | T : {
|
|
495
495
|
[K in keyof T]?: T[K] extends object ? DeepPartial<T[K]> | undefined : T[K] | undefined;
|
|
496
|
-
} | undefined | T : T | undefined;
|
|
496
|
+
} | undefined | T : T | undefined | symbol;
|
|
497
497
|
|
|
498
498
|
/**
|
|
499
499
|
* Canonical conversational continuity artifact.
|
|
@@ -2641,7 +2641,7 @@ interface LLMAdapter<TRequestParams extends Record<string, any> = {}> {
|
|
|
2641
2641
|
interface LLMAdapterStatic<TRequestParams extends Record<string, any> = {}> {
|
|
2642
2642
|
/** Lists all model profiles that can be used with this adapter. */
|
|
2643
2643
|
models(): ModelProfile[];
|
|
2644
|
-
new (...args: any
|
|
2644
|
+
new (...args: any): LLMAdapter<TRequestParams>;
|
|
2645
2645
|
}
|
|
2646
2646
|
interface ModelProfile {
|
|
2647
2647
|
/** Provider identifier, e.g. "google". */
|