@vibes.diy/api-types 2.5.19 → 2.5.26
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/chat.d.ts +13 -7
- package/chat.js +5 -1
- package/chat.js.map +1 -1
- package/invite.d.ts +45 -45
- package/invite.js +9 -9
- package/invite.js.map +1 -1
- package/package.json +4 -4
- package/settings.d.ts +221 -117
- package/settings.js +15 -13
- package/settings.js.map +1 -1
- package/tsconfig.json +3 -0
package/chat.d.ts
CHANGED
|
@@ -1,21 +1,27 @@
|
|
|
1
|
+
export declare const LEGACY_CAPABILITY_ALIASES: {
|
|
2
|
+
readonly chat: "codegen";
|
|
3
|
+
readonly app: "runtime";
|
|
4
|
+
};
|
|
1
5
|
export declare const PromptLLMStyle: import("arktype/internal/variants/string.ts").StringType<"app" | "chat" | "img", {}>;
|
|
2
6
|
export type PromptLLMStyle = typeof PromptLLMStyle.infer;
|
|
3
7
|
export declare function isPromptLLMStyle(obj: unknown): obj is PromptLLMStyle;
|
|
8
|
+
export type CanonicalModelUsage = "codegen" | "runtime" | "img";
|
|
9
|
+
export declare function canonicalModelUsage<T extends string>(usage: T): CanonicalModelUsage | T;
|
|
4
10
|
export declare const PromptFSStyle: import("arktype/internal/variants/string.ts").StringType<"fs-set" | "fs-update", {}>;
|
|
5
11
|
export type PromptFSStyle = typeof PromptFSStyle.infer;
|
|
6
12
|
export declare function isPromptFSStyle(obj: unknown): obj is PromptFSStyle;
|
|
7
13
|
export declare const PromptStyle: import("arktype/internal/variants/string.ts").StringType<"app" | "chat" | "fs-set" | "fs-update" | "img", {}>;
|
|
8
14
|
export type PromptStyle = typeof PromptStyle.infer;
|
|
9
|
-
export declare const ModelCapability: import("arktype/internal/variants/string.ts").StringType<"app" | "chat" | "img" | "img-edit", {}>;
|
|
15
|
+
export declare const ModelCapability: import("arktype/internal/variants/string.ts").StringType<"app" | "chat" | "codegen" | "img" | "img-edit" | "runtime", {}>;
|
|
10
16
|
export type ModelCapability = typeof ModelCapability.infer;
|
|
11
17
|
export declare const Model: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
12
18
|
id: string;
|
|
13
19
|
name: string;
|
|
14
20
|
description: string;
|
|
15
21
|
featured?: boolean | undefined;
|
|
16
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
17
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
18
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
22
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
23
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
24
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
19
25
|
imageInput?: boolean | undefined;
|
|
20
26
|
}, {}>;
|
|
21
27
|
export type Model = typeof Model.infer;
|
|
@@ -1643,9 +1649,9 @@ export declare const resListModels: import("arktype/internal/variants/object.ts"
|
|
|
1643
1649
|
name: string;
|
|
1644
1650
|
description: string;
|
|
1645
1651
|
featured?: boolean | undefined;
|
|
1646
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1647
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1648
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1652
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1653
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1654
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1649
1655
|
imageInput?: boolean | undefined;
|
|
1650
1656
|
}[];
|
|
1651
1657
|
}, {}>;
|
package/chat.js
CHANGED
|
@@ -2,16 +2,20 @@ import { type } from "arktype";
|
|
|
2
2
|
import { BlockMsgs, CoercedDate, LLMRequest } from "@vibes.diy/call-ai-v2";
|
|
3
3
|
import { dashAuthType, vibeFile } from "./common.js";
|
|
4
4
|
import { PromptMsgs } from "./prompt.js";
|
|
5
|
+
export const LEGACY_CAPABILITY_ALIASES = { chat: "codegen", app: "runtime" };
|
|
5
6
|
export const PromptLLMStyle = type("'chat' | 'app' | 'img'");
|
|
6
7
|
export function isPromptLLMStyle(obj) {
|
|
7
8
|
return !(PromptLLMStyle(obj) instanceof type.errors);
|
|
8
9
|
}
|
|
10
|
+
export function canonicalModelUsage(usage) {
|
|
11
|
+
return LEGACY_CAPABILITY_ALIASES[usage] ?? usage;
|
|
12
|
+
}
|
|
9
13
|
export const PromptFSStyle = type("'fs-update' | 'fs-set'");
|
|
10
14
|
export function isPromptFSStyle(obj) {
|
|
11
15
|
return !(PromptFSStyle(obj) instanceof type.errors);
|
|
12
16
|
}
|
|
13
17
|
export const PromptStyle = PromptLLMStyle.or(PromptFSStyle);
|
|
14
|
-
export const ModelCapability = type("'
|
|
18
|
+
export const ModelCapability = type("'codegen' | 'runtime' | 'img' | 'img-edit' | 'chat' | 'app'");
|
|
15
19
|
export const Model = type({
|
|
16
20
|
id: "string",
|
|
17
21
|
name: "string",
|
package/chat.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.js","sourceRoot":"","sources":["../jsr/chat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"chat.js","sourceRoot":"","sources":["../jsr/chat.ts"],"names":[],"mappings":"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"}
|
package/invite.d.ts
CHANGED
|
@@ -11,9 +11,9 @@ export declare const AIParams: import("arktype/internal/variants/object.ts").Obj
|
|
|
11
11
|
name: string;
|
|
12
12
|
description: string;
|
|
13
13
|
featured?: boolean | undefined;
|
|
14
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
15
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
16
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
14
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
15
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
16
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
17
17
|
imageInput?: boolean | undefined;
|
|
18
18
|
};
|
|
19
19
|
apiKey?: string | undefined;
|
|
@@ -639,15 +639,15 @@ export declare const ActiveModelSettingBase: import("arktype/internal/variants/o
|
|
|
639
639
|
name: string;
|
|
640
640
|
description: string;
|
|
641
641
|
featured?: boolean | undefined;
|
|
642
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
643
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
644
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
642
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
643
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
644
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
645
645
|
imageInput?: boolean | undefined;
|
|
646
646
|
};
|
|
647
647
|
apiKey?: string | undefined;
|
|
648
648
|
};
|
|
649
649
|
}, {}>;
|
|
650
|
-
export declare const
|
|
650
|
+
export declare const ActiveModelSettingCodegen: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
651
651
|
type: "active.model";
|
|
652
652
|
param: {
|
|
653
653
|
model: {
|
|
@@ -655,18 +655,18 @@ export declare const ActiveModelSettingChat: import("arktype/internal/variants/o
|
|
|
655
655
|
name: string;
|
|
656
656
|
description: string;
|
|
657
657
|
featured?: boolean | undefined;
|
|
658
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
659
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
660
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
658
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
659
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
660
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
661
661
|
imageInput?: boolean | undefined;
|
|
662
662
|
};
|
|
663
663
|
apiKey?: string | undefined;
|
|
664
664
|
};
|
|
665
|
-
usage: "chat";
|
|
665
|
+
usage: "chat" | "codegen";
|
|
666
666
|
}, {}>;
|
|
667
|
-
export type
|
|
668
|
-
export declare function
|
|
669
|
-
export declare const
|
|
667
|
+
export type ActiveModelSettingCodegen = typeof ActiveModelSettingCodegen.infer;
|
|
668
|
+
export declare function isActiveModelSettingCodegen(obj: unknown): obj is typeof ActiveModelSettingCodegen.infer;
|
|
669
|
+
export declare const ActiveModelSettingRuntime: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
670
670
|
type: "active.model";
|
|
671
671
|
param: {
|
|
672
672
|
model: {
|
|
@@ -674,17 +674,17 @@ export declare const ActiveModelSettingApp: import("arktype/internal/variants/ob
|
|
|
674
674
|
name: string;
|
|
675
675
|
description: string;
|
|
676
676
|
featured?: boolean | undefined;
|
|
677
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
678
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
679
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
677
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
678
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
679
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
680
680
|
imageInput?: boolean | undefined;
|
|
681
681
|
};
|
|
682
682
|
apiKey?: string | undefined;
|
|
683
683
|
};
|
|
684
|
-
usage: "app";
|
|
684
|
+
usage: "app" | "runtime";
|
|
685
685
|
}, {}>;
|
|
686
|
-
export type
|
|
687
|
-
export declare function
|
|
686
|
+
export type ActiveModelSettingRuntime = typeof ActiveModelSettingRuntime.infer;
|
|
687
|
+
export declare function isActiveModelSettingRuntime(obj: unknown): obj is typeof ActiveModelSettingRuntime.infer;
|
|
688
688
|
export declare const ActiveModelSettingImg: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
689
689
|
type: "active.model";
|
|
690
690
|
param: {
|
|
@@ -693,9 +693,9 @@ export declare const ActiveModelSettingImg: import("arktype/internal/variants/ob
|
|
|
693
693
|
name: string;
|
|
694
694
|
description: string;
|
|
695
695
|
featured?: boolean | undefined;
|
|
696
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
697
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
698
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
696
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
697
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
698
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
699
699
|
imageInput?: boolean | undefined;
|
|
700
700
|
};
|
|
701
701
|
apiKey?: string | undefined;
|
|
@@ -712,14 +712,14 @@ export declare const ActiveModelSetting: import("arktype/internal/variants/objec
|
|
|
712
712
|
name: string;
|
|
713
713
|
description: string;
|
|
714
714
|
featured?: boolean | undefined;
|
|
715
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
716
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
717
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
715
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
716
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
717
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
718
718
|
imageInput?: boolean | undefined;
|
|
719
719
|
};
|
|
720
720
|
apiKey?: string | undefined;
|
|
721
721
|
};
|
|
722
|
-
usage: "chat";
|
|
722
|
+
usage: "chat" | "codegen";
|
|
723
723
|
} | {
|
|
724
724
|
type: "active.model";
|
|
725
725
|
param: {
|
|
@@ -728,14 +728,14 @@ export declare const ActiveModelSetting: import("arktype/internal/variants/objec
|
|
|
728
728
|
name: string;
|
|
729
729
|
description: string;
|
|
730
730
|
featured?: boolean | undefined;
|
|
731
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
732
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
733
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
731
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
732
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
733
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
734
734
|
imageInput?: boolean | undefined;
|
|
735
735
|
};
|
|
736
736
|
apiKey?: string | undefined;
|
|
737
737
|
};
|
|
738
|
-
usage: "app";
|
|
738
|
+
usage: "app" | "runtime";
|
|
739
739
|
} | {
|
|
740
740
|
type: "active.model";
|
|
741
741
|
param: {
|
|
@@ -744,9 +744,9 @@ export declare const ActiveModelSetting: import("arktype/internal/variants/objec
|
|
|
744
744
|
name: string;
|
|
745
745
|
description: string;
|
|
746
746
|
featured?: boolean | undefined;
|
|
747
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
748
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
749
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
747
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
748
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
749
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
750
750
|
imageInput?: boolean | undefined;
|
|
751
751
|
};
|
|
752
752
|
apiKey?: string | undefined;
|
|
@@ -951,14 +951,14 @@ export declare const ActiveEntry: import("arktype/internal/variants/object.ts").
|
|
|
951
951
|
name: string;
|
|
952
952
|
description: string;
|
|
953
953
|
featured?: boolean | undefined;
|
|
954
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
955
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
956
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
954
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
955
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
956
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
957
957
|
imageInput?: boolean | undefined;
|
|
958
958
|
};
|
|
959
959
|
apiKey?: string | undefined;
|
|
960
960
|
};
|
|
961
|
-
usage: "chat";
|
|
961
|
+
usage: "chat" | "codegen";
|
|
962
962
|
} | {
|
|
963
963
|
type: "active.model";
|
|
964
964
|
param: {
|
|
@@ -967,14 +967,14 @@ export declare const ActiveEntry: import("arktype/internal/variants/object.ts").
|
|
|
967
967
|
name: string;
|
|
968
968
|
description: string;
|
|
969
969
|
featured?: boolean | undefined;
|
|
970
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
971
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
972
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
970
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
971
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
972
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
973
973
|
imageInput?: boolean | undefined;
|
|
974
974
|
};
|
|
975
975
|
apiKey?: string | undefined;
|
|
976
976
|
};
|
|
977
|
-
usage: "app";
|
|
977
|
+
usage: "app" | "runtime";
|
|
978
978
|
} | {
|
|
979
979
|
type: "active.model";
|
|
980
980
|
param: {
|
|
@@ -983,9 +983,9 @@ export declare const ActiveEntry: import("arktype/internal/variants/object.ts").
|
|
|
983
983
|
name: string;
|
|
984
984
|
description: string;
|
|
985
985
|
featured?: boolean | undefined;
|
|
986
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
987
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
988
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
986
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
987
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
988
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
989
989
|
imageInput?: boolean | undefined;
|
|
990
990
|
};
|
|
991
991
|
apiKey?: string | undefined;
|
package/invite.js
CHANGED
|
@@ -272,17 +272,17 @@ export const ActiveModelSettingBase = type({
|
|
|
272
272
|
type: "'active.model'",
|
|
273
273
|
param: AIParams,
|
|
274
274
|
});
|
|
275
|
-
export const
|
|
276
|
-
usage: "'chat'",
|
|
275
|
+
export const ActiveModelSettingCodegen = type({
|
|
276
|
+
usage: "'codegen' | 'chat'",
|
|
277
277
|
}).and(ActiveModelSettingBase);
|
|
278
|
-
export function
|
|
279
|
-
return !(
|
|
278
|
+
export function isActiveModelSettingCodegen(obj) {
|
|
279
|
+
return !(ActiveModelSettingCodegen(obj) instanceof type.errors);
|
|
280
280
|
}
|
|
281
|
-
export const
|
|
282
|
-
usage: "'app'",
|
|
281
|
+
export const ActiveModelSettingRuntime = type({
|
|
282
|
+
usage: "'runtime' | 'app'",
|
|
283
283
|
}).and(ActiveModelSettingBase);
|
|
284
|
-
export function
|
|
285
|
-
return !(
|
|
284
|
+
export function isActiveModelSettingRuntime(obj) {
|
|
285
|
+
return !(ActiveModelSettingRuntime(obj) instanceof type.errors);
|
|
286
286
|
}
|
|
287
287
|
export const ActiveModelSettingImg = type({
|
|
288
288
|
usage: "'img'",
|
|
@@ -290,7 +290,7 @@ export const ActiveModelSettingImg = type({
|
|
|
290
290
|
export function isActiveModelSettingImg(obj) {
|
|
291
291
|
return !(ActiveModelSettingImg(obj) instanceof type.errors);
|
|
292
292
|
}
|
|
293
|
-
export const ActiveModelSetting =
|
|
293
|
+
export const ActiveModelSetting = ActiveModelSettingCodegen.or(ActiveModelSettingRuntime).or(ActiveModelSettingImg);
|
|
294
294
|
export function isActiveModelSetting(obj) {
|
|
295
295
|
return !(ActiveModelSetting(obj) instanceof type.errors);
|
|
296
296
|
}
|
package/invite.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"invite.js","sourceRoot":"","sources":["../jsr/invite.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"invite.js","sourceRoot":"","sources":["../jsr/invite.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibes.diy/api-types",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.26",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"@fireproof/core-types-base": "~0.24.19",
|
|
15
15
|
"@fireproof/core-types-protocols-cloud": "~0.24.19",
|
|
16
16
|
"@fireproof/core-types-protocols-dashboard": "~0.24.19",
|
|
17
|
-
"@vibes.diy/call-ai-v2": "2.5.
|
|
18
|
-
"@vibes.diy/identity": "2.5.
|
|
19
|
-
"@vibes.diy/vibe-types": "2.5.
|
|
17
|
+
"@vibes.diy/call-ai-v2": "2.5.26",
|
|
18
|
+
"@vibes.diy/identity": "2.5.26",
|
|
19
|
+
"@vibes.diy/vibe-types": "2.5.26",
|
|
20
20
|
"arktype": "~2.2.1"
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
package/settings.d.ts
CHANGED
|
@@ -19,28 +19,28 @@ export type UserSettingSharing = typeof userSettingShareing.infer;
|
|
|
19
19
|
export declare function isUserSettingSharing(obj: unknown): obj is UserSettingSharing;
|
|
20
20
|
export declare const userSettingModelDefaults: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
21
21
|
type: "modelDefaults";
|
|
22
|
-
|
|
22
|
+
codegen?: {
|
|
23
23
|
model?: {
|
|
24
24
|
id: string;
|
|
25
25
|
name: string;
|
|
26
26
|
description: string;
|
|
27
27
|
featured?: boolean | undefined;
|
|
28
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
29
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
30
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
28
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
29
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
30
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
31
31
|
imageInput?: boolean | undefined;
|
|
32
32
|
} | undefined;
|
|
33
33
|
apiKey?: string | undefined;
|
|
34
34
|
} | undefined;
|
|
35
|
-
|
|
35
|
+
runtime?: {
|
|
36
36
|
model?: {
|
|
37
37
|
id: string;
|
|
38
38
|
name: string;
|
|
39
39
|
description: string;
|
|
40
40
|
featured?: boolean | undefined;
|
|
41
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
42
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
43
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
41
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
42
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
43
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
44
44
|
imageInput?: boolean | undefined;
|
|
45
45
|
} | undefined;
|
|
46
46
|
apiKey?: string | undefined;
|
|
@@ -51,9 +51,35 @@ export declare const userSettingModelDefaults: import("arktype/internal/variants
|
|
|
51
51
|
name: string;
|
|
52
52
|
description: string;
|
|
53
53
|
featured?: boolean | undefined;
|
|
54
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
55
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
56
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
54
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
55
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
56
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
57
|
+
imageInput?: boolean | undefined;
|
|
58
|
+
} | undefined;
|
|
59
|
+
apiKey?: string | undefined;
|
|
60
|
+
} | undefined;
|
|
61
|
+
chat?: {
|
|
62
|
+
model?: {
|
|
63
|
+
id: string;
|
|
64
|
+
name: string;
|
|
65
|
+
description: string;
|
|
66
|
+
featured?: boolean | undefined;
|
|
67
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
68
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
69
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
70
|
+
imageInput?: boolean | undefined;
|
|
71
|
+
} | undefined;
|
|
72
|
+
apiKey?: string | undefined;
|
|
73
|
+
} | undefined;
|
|
74
|
+
app?: {
|
|
75
|
+
model?: {
|
|
76
|
+
id: string;
|
|
77
|
+
name: string;
|
|
78
|
+
description: string;
|
|
79
|
+
featured?: boolean | undefined;
|
|
80
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
81
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
82
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
57
83
|
imageInput?: boolean | undefined;
|
|
58
84
|
} | undefined;
|
|
59
85
|
apiKey?: string | undefined;
|
|
@@ -95,28 +121,28 @@ export declare const userSettingItem: import("arktype/internal/variants/object.t
|
|
|
95
121
|
}[];
|
|
96
122
|
} | {
|
|
97
123
|
type: "modelDefaults";
|
|
98
|
-
|
|
124
|
+
codegen?: {
|
|
99
125
|
model?: {
|
|
100
126
|
id: string;
|
|
101
127
|
name: string;
|
|
102
128
|
description: string;
|
|
103
129
|
featured?: boolean | undefined;
|
|
104
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
105
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
106
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
130
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
131
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
132
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
107
133
|
imageInput?: boolean | undefined;
|
|
108
134
|
} | undefined;
|
|
109
135
|
apiKey?: string | undefined;
|
|
110
136
|
} | undefined;
|
|
111
|
-
|
|
137
|
+
runtime?: {
|
|
112
138
|
model?: {
|
|
113
139
|
id: string;
|
|
114
140
|
name: string;
|
|
115
141
|
description: string;
|
|
116
142
|
featured?: boolean | undefined;
|
|
117
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
118
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
119
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
143
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
144
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
145
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
120
146
|
imageInput?: boolean | undefined;
|
|
121
147
|
} | undefined;
|
|
122
148
|
apiKey?: string | undefined;
|
|
@@ -127,9 +153,35 @@ export declare const userSettingItem: import("arktype/internal/variants/object.t
|
|
|
127
153
|
name: string;
|
|
128
154
|
description: string;
|
|
129
155
|
featured?: boolean | undefined;
|
|
130
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
131
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
132
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
156
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
157
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
158
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
159
|
+
imageInput?: boolean | undefined;
|
|
160
|
+
} | undefined;
|
|
161
|
+
apiKey?: string | undefined;
|
|
162
|
+
} | undefined;
|
|
163
|
+
chat?: {
|
|
164
|
+
model?: {
|
|
165
|
+
id: string;
|
|
166
|
+
name: string;
|
|
167
|
+
description: string;
|
|
168
|
+
featured?: boolean | undefined;
|
|
169
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
170
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
171
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
172
|
+
imageInput?: boolean | undefined;
|
|
173
|
+
} | undefined;
|
|
174
|
+
apiKey?: string | undefined;
|
|
175
|
+
} | undefined;
|
|
176
|
+
app?: {
|
|
177
|
+
model?: {
|
|
178
|
+
id: string;
|
|
179
|
+
name: string;
|
|
180
|
+
description: string;
|
|
181
|
+
featured?: boolean | undefined;
|
|
182
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
183
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
184
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
133
185
|
imageInput?: boolean | undefined;
|
|
134
186
|
} | undefined;
|
|
135
187
|
apiKey?: string | undefined;
|
|
@@ -173,28 +225,28 @@ export declare const reqEnsureUserSettings: import("arktype/internal/variants/ob
|
|
|
173
225
|
}[];
|
|
174
226
|
} | {
|
|
175
227
|
type: "modelDefaults";
|
|
176
|
-
|
|
228
|
+
codegen?: {
|
|
177
229
|
model?: {
|
|
178
230
|
id: string;
|
|
179
231
|
name: string;
|
|
180
232
|
description: string;
|
|
181
233
|
featured?: boolean | undefined;
|
|
182
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
183
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
184
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
234
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
235
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
236
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
185
237
|
imageInput?: boolean | undefined;
|
|
186
238
|
} | undefined;
|
|
187
239
|
apiKey?: string | undefined;
|
|
188
240
|
} | undefined;
|
|
189
|
-
|
|
241
|
+
runtime?: {
|
|
190
242
|
model?: {
|
|
191
243
|
id: string;
|
|
192
244
|
name: string;
|
|
193
245
|
description: string;
|
|
194
246
|
featured?: boolean | undefined;
|
|
195
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
196
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
197
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
247
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
248
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
249
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
198
250
|
imageInput?: boolean | undefined;
|
|
199
251
|
} | undefined;
|
|
200
252
|
apiKey?: string | undefined;
|
|
@@ -205,9 +257,35 @@ export declare const reqEnsureUserSettings: import("arktype/internal/variants/ob
|
|
|
205
257
|
name: string;
|
|
206
258
|
description: string;
|
|
207
259
|
featured?: boolean | undefined;
|
|
208
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
209
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
210
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
260
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
261
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
262
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
263
|
+
imageInput?: boolean | undefined;
|
|
264
|
+
} | undefined;
|
|
265
|
+
apiKey?: string | undefined;
|
|
266
|
+
} | undefined;
|
|
267
|
+
chat?: {
|
|
268
|
+
model?: {
|
|
269
|
+
id: string;
|
|
270
|
+
name: string;
|
|
271
|
+
description: string;
|
|
272
|
+
featured?: boolean | undefined;
|
|
273
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
274
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
275
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
276
|
+
imageInput?: boolean | undefined;
|
|
277
|
+
} | undefined;
|
|
278
|
+
apiKey?: string | undefined;
|
|
279
|
+
} | undefined;
|
|
280
|
+
app?: {
|
|
281
|
+
model?: {
|
|
282
|
+
id: string;
|
|
283
|
+
name: string;
|
|
284
|
+
description: string;
|
|
285
|
+
featured?: boolean | undefined;
|
|
286
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
287
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
288
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
211
289
|
imageInput?: boolean | undefined;
|
|
212
290
|
} | undefined;
|
|
213
291
|
apiKey?: string | undefined;
|
|
@@ -249,28 +327,28 @@ export declare const resEnsureUserSettings: import("arktype/internal/variants/ob
|
|
|
249
327
|
}[];
|
|
250
328
|
} | {
|
|
251
329
|
type: "modelDefaults";
|
|
252
|
-
|
|
330
|
+
codegen?: {
|
|
253
331
|
model?: {
|
|
254
332
|
id: string;
|
|
255
333
|
name: string;
|
|
256
334
|
description: string;
|
|
257
335
|
featured?: boolean | undefined;
|
|
258
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
259
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
260
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
336
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
337
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
338
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
261
339
|
imageInput?: boolean | undefined;
|
|
262
340
|
} | undefined;
|
|
263
341
|
apiKey?: string | undefined;
|
|
264
342
|
} | undefined;
|
|
265
|
-
|
|
343
|
+
runtime?: {
|
|
266
344
|
model?: {
|
|
267
345
|
id: string;
|
|
268
346
|
name: string;
|
|
269
347
|
description: string;
|
|
270
348
|
featured?: boolean | undefined;
|
|
271
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
272
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
273
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
349
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
350
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
351
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
274
352
|
imageInput?: boolean | undefined;
|
|
275
353
|
} | undefined;
|
|
276
354
|
apiKey?: string | undefined;
|
|
@@ -281,9 +359,35 @@ export declare const resEnsureUserSettings: import("arktype/internal/variants/ob
|
|
|
281
359
|
name: string;
|
|
282
360
|
description: string;
|
|
283
361
|
featured?: boolean | undefined;
|
|
284
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
285
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
286
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
362
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
363
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
364
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
365
|
+
imageInput?: boolean | undefined;
|
|
366
|
+
} | undefined;
|
|
367
|
+
apiKey?: string | undefined;
|
|
368
|
+
} | undefined;
|
|
369
|
+
chat?: {
|
|
370
|
+
model?: {
|
|
371
|
+
id: string;
|
|
372
|
+
name: string;
|
|
373
|
+
description: string;
|
|
374
|
+
featured?: boolean | undefined;
|
|
375
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
376
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
377
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
378
|
+
imageInput?: boolean | undefined;
|
|
379
|
+
} | undefined;
|
|
380
|
+
apiKey?: string | undefined;
|
|
381
|
+
} | undefined;
|
|
382
|
+
app?: {
|
|
383
|
+
model?: {
|
|
384
|
+
id: string;
|
|
385
|
+
name: string;
|
|
386
|
+
description: string;
|
|
387
|
+
featured?: boolean | undefined;
|
|
388
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
389
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
390
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
287
391
|
imageInput?: boolean | undefined;
|
|
288
392
|
} | undefined;
|
|
289
393
|
apiKey?: string | undefined;
|
|
@@ -596,7 +700,7 @@ export declare const reqEnsureAppSettingsIconRegen: import("arktype/internal/var
|
|
|
596
700
|
}, {}>;
|
|
597
701
|
export type ReqEnsureAppSettingsIconRegen = typeof reqEnsureAppSettingsIconRegen.infer;
|
|
598
702
|
export declare function isReqEnsureAppSettingsIconRegen(obj: unknown): obj is ReqEnsureAppSettingsIconRegen;
|
|
599
|
-
export declare const
|
|
703
|
+
export declare const reqEnsureAppSettingsRuntime: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
600
704
|
type: "vibes.diy.req-ensure-app-settings";
|
|
601
705
|
auth?: {
|
|
602
706
|
type: "clerk" | "device-id" | "ucan";
|
|
@@ -604,23 +708,23 @@ export declare const reqEnsureAppSettingsApp: import("arktype/internal/variants/
|
|
|
604
708
|
} | undefined;
|
|
605
709
|
appSlug: string;
|
|
606
710
|
ownerHandle: string;
|
|
607
|
-
|
|
711
|
+
runtime: {
|
|
608
712
|
model?: {
|
|
609
713
|
id: string;
|
|
610
714
|
name: string;
|
|
611
715
|
description: string;
|
|
612
716
|
featured?: boolean | undefined;
|
|
613
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
614
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
615
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
717
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
718
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
719
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
616
720
|
imageInput?: boolean | undefined;
|
|
617
721
|
} | undefined;
|
|
618
722
|
apiKey?: string | undefined;
|
|
619
723
|
};
|
|
620
724
|
}, {}>;
|
|
621
|
-
export type
|
|
622
|
-
export declare function
|
|
623
|
-
export declare const
|
|
725
|
+
export type ReqEnsureAppSettingsRuntime = typeof reqEnsureAppSettingsRuntime.infer;
|
|
726
|
+
export declare function isReqEnsureAppSettingsRuntime(obj: unknown): obj is ReqEnsureAppSettingsRuntime;
|
|
727
|
+
export declare const reqEnsureAppSettingsCodegen: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
624
728
|
type: "vibes.diy.req-ensure-app-settings";
|
|
625
729
|
auth?: {
|
|
626
730
|
type: "clerk" | "device-id" | "ucan";
|
|
@@ -628,22 +732,22 @@ export declare const reqEnsureAppSettingsChat: import("arktype/internal/variants
|
|
|
628
732
|
} | undefined;
|
|
629
733
|
appSlug: string;
|
|
630
734
|
ownerHandle: string;
|
|
631
|
-
|
|
735
|
+
codegen: {
|
|
632
736
|
model?: {
|
|
633
737
|
id: string;
|
|
634
738
|
name: string;
|
|
635
739
|
description: string;
|
|
636
740
|
featured?: boolean | undefined;
|
|
637
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
638
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
639
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
741
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
742
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
743
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
640
744
|
imageInput?: boolean | undefined;
|
|
641
745
|
} | undefined;
|
|
642
746
|
apiKey?: string | undefined;
|
|
643
747
|
};
|
|
644
748
|
}, {}>;
|
|
645
|
-
export type
|
|
646
|
-
export declare function
|
|
749
|
+
export type ReqEnsureAppSettingsCodegen = typeof reqEnsureAppSettingsCodegen.infer;
|
|
750
|
+
export declare function isReqEnsureAppSettingsCodegen(obj: unknown): obj is ReqEnsureAppSettingsCodegen;
|
|
647
751
|
export declare const reqEnsureAppSettingsImg: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
648
752
|
type: "vibes.diy.req-ensure-app-settings";
|
|
649
753
|
auth?: {
|
|
@@ -658,9 +762,9 @@ export declare const reqEnsureAppSettingsImg: import("arktype/internal/variants/
|
|
|
658
762
|
name: string;
|
|
659
763
|
description: string;
|
|
660
764
|
featured?: boolean | undefined;
|
|
661
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
662
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
663
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
765
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
766
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
767
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
664
768
|
imageInput?: boolean | undefined;
|
|
665
769
|
} | undefined;
|
|
666
770
|
apiKey?: string | undefined;
|
|
@@ -716,7 +820,7 @@ export declare const reqEnsureAppSettingsDbAclRemove: import("arktype/internal/v
|
|
|
716
820
|
}, {}>;
|
|
717
821
|
export type ReqEnsureAppSettingsDbAclRemove = typeof reqEnsureAppSettingsDbAclRemove.infer;
|
|
718
822
|
export declare function isReqEnsureAppSettingsDbAclRemove(obj: unknown): obj is ReqEnsureAppSettingsDbAclRemove;
|
|
719
|
-
export type ReqEnsureAppSettings = ReqPublicAccess | ReqRequest | ReqEnsureAppSettingsTitle | ReqEnsureAppSettingsSkills | ReqEnsureAppSettingsTheme | ReqEnsureAppSettingsColorTheme | ReqEnsureAppSettingsIconDescription | ReqEnsureAppSettingsIconRegen |
|
|
823
|
+
export type ReqEnsureAppSettings = ReqPublicAccess | ReqRequest | ReqEnsureAppSettingsTitle | ReqEnsureAppSettingsSkills | ReqEnsureAppSettingsTheme | ReqEnsureAppSettingsColorTheme | ReqEnsureAppSettingsIconDescription | ReqEnsureAppSettingsIconRegen | ReqEnsureAppSettingsRuntime | ReqEnsureAppSettingsCodegen | ReqEnsureAppSettingsImg | ReqEnsureAppSettingsEnv | ReqEnsureAppSettingsDbAcl | ReqEnsureAppSettingsDbAclRemove | ReqEnsureAppSettingsBase;
|
|
720
824
|
export declare function isReqEnsureAppSettings(obj: unknown): obj is ReqEnsureAppSettings;
|
|
721
825
|
export declare const AppSettings: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
722
826
|
entries: ({
|
|
@@ -914,14 +1018,14 @@ export declare const AppSettings: import("arktype/internal/variants/object.ts").
|
|
|
914
1018
|
name: string;
|
|
915
1019
|
description: string;
|
|
916
1020
|
featured?: boolean | undefined;
|
|
917
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
918
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
919
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1021
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1022
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1023
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
920
1024
|
imageInput?: boolean | undefined;
|
|
921
1025
|
};
|
|
922
1026
|
apiKey?: string | undefined;
|
|
923
1027
|
};
|
|
924
|
-
usage: "chat";
|
|
1028
|
+
usage: "chat" | "codegen";
|
|
925
1029
|
} | {
|
|
926
1030
|
type: "active.model";
|
|
927
1031
|
param: {
|
|
@@ -930,14 +1034,14 @@ export declare const AppSettings: import("arktype/internal/variants/object.ts").
|
|
|
930
1034
|
name: string;
|
|
931
1035
|
description: string;
|
|
932
1036
|
featured?: boolean | undefined;
|
|
933
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
934
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
935
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1037
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1038
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1039
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
936
1040
|
imageInput?: boolean | undefined;
|
|
937
1041
|
};
|
|
938
1042
|
apiKey?: string | undefined;
|
|
939
1043
|
};
|
|
940
|
-
usage: "app";
|
|
1044
|
+
usage: "app" | "runtime";
|
|
941
1045
|
} | {
|
|
942
1046
|
type: "active.model";
|
|
943
1047
|
param: {
|
|
@@ -946,9 +1050,9 @@ export declare const AppSettings: import("arktype/internal/variants/object.ts").
|
|
|
946
1050
|
name: string;
|
|
947
1051
|
description: string;
|
|
948
1052
|
featured?: boolean | undefined;
|
|
949
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
950
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
951
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1053
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1054
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1055
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
952
1056
|
imageInput?: boolean | undefined;
|
|
953
1057
|
};
|
|
954
1058
|
apiKey?: string | undefined;
|
|
@@ -972,28 +1076,28 @@ export declare const AppSettings: import("arktype/internal/variants/object.ts").
|
|
|
972
1076
|
cid: string;
|
|
973
1077
|
mime: string;
|
|
974
1078
|
} | undefined;
|
|
975
|
-
|
|
1079
|
+
runtime?: {
|
|
976
1080
|
model?: {
|
|
977
1081
|
id: string;
|
|
978
1082
|
name: string;
|
|
979
1083
|
description: string;
|
|
980
1084
|
featured?: boolean | undefined;
|
|
981
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
982
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
983
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1085
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1086
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1087
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
984
1088
|
imageInput?: boolean | undefined;
|
|
985
1089
|
} | undefined;
|
|
986
1090
|
apiKey?: string | undefined;
|
|
987
1091
|
} | undefined;
|
|
988
|
-
|
|
1092
|
+
codegen?: {
|
|
989
1093
|
model?: {
|
|
990
1094
|
id: string;
|
|
991
1095
|
name: string;
|
|
992
1096
|
description: string;
|
|
993
1097
|
featured?: boolean | undefined;
|
|
994
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
995
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
996
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1098
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1099
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1100
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
997
1101
|
imageInput?: boolean | undefined;
|
|
998
1102
|
} | undefined;
|
|
999
1103
|
apiKey?: string | undefined;
|
|
@@ -1004,9 +1108,9 @@ export declare const AppSettings: import("arktype/internal/variants/object.ts").
|
|
|
1004
1108
|
name: string;
|
|
1005
1109
|
description: string;
|
|
1006
1110
|
featured?: boolean | undefined;
|
|
1007
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1008
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1009
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1111
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1112
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1113
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1010
1114
|
imageInput?: boolean | undefined;
|
|
1011
1115
|
} | undefined;
|
|
1012
1116
|
apiKey?: string | undefined;
|
|
@@ -1246,14 +1350,14 @@ export declare const resEnsureAppSettings: import("arktype/internal/variants/obj
|
|
|
1246
1350
|
name: string;
|
|
1247
1351
|
description: string;
|
|
1248
1352
|
featured?: boolean | undefined;
|
|
1249
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1250
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1251
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1353
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1354
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1355
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1252
1356
|
imageInput?: boolean | undefined;
|
|
1253
1357
|
};
|
|
1254
1358
|
apiKey?: string | undefined;
|
|
1255
1359
|
};
|
|
1256
|
-
usage: "chat";
|
|
1360
|
+
usage: "chat" | "codegen";
|
|
1257
1361
|
} | {
|
|
1258
1362
|
type: "active.model";
|
|
1259
1363
|
param: {
|
|
@@ -1262,14 +1366,14 @@ export declare const resEnsureAppSettings: import("arktype/internal/variants/obj
|
|
|
1262
1366
|
name: string;
|
|
1263
1367
|
description: string;
|
|
1264
1368
|
featured?: boolean | undefined;
|
|
1265
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1266
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1267
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1369
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1370
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1371
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1268
1372
|
imageInput?: boolean | undefined;
|
|
1269
1373
|
};
|
|
1270
1374
|
apiKey?: string | undefined;
|
|
1271
1375
|
};
|
|
1272
|
-
usage: "app";
|
|
1376
|
+
usage: "app" | "runtime";
|
|
1273
1377
|
} | {
|
|
1274
1378
|
type: "active.model";
|
|
1275
1379
|
param: {
|
|
@@ -1278,9 +1382,9 @@ export declare const resEnsureAppSettings: import("arktype/internal/variants/obj
|
|
|
1278
1382
|
name: string;
|
|
1279
1383
|
description: string;
|
|
1280
1384
|
featured?: boolean | undefined;
|
|
1281
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1282
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1283
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1385
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1386
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1387
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1284
1388
|
imageInput?: boolean | undefined;
|
|
1285
1389
|
};
|
|
1286
1390
|
apiKey?: string | undefined;
|
|
@@ -1304,28 +1408,28 @@ export declare const resEnsureAppSettings: import("arktype/internal/variants/obj
|
|
|
1304
1408
|
cid: string;
|
|
1305
1409
|
mime: string;
|
|
1306
1410
|
} | undefined;
|
|
1307
|
-
|
|
1411
|
+
runtime?: {
|
|
1308
1412
|
model?: {
|
|
1309
1413
|
id: string;
|
|
1310
1414
|
name: string;
|
|
1311
1415
|
description: string;
|
|
1312
1416
|
featured?: boolean | undefined;
|
|
1313
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1314
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1315
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1417
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1418
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1419
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1316
1420
|
imageInput?: boolean | undefined;
|
|
1317
1421
|
} | undefined;
|
|
1318
1422
|
apiKey?: string | undefined;
|
|
1319
1423
|
} | undefined;
|
|
1320
|
-
|
|
1424
|
+
codegen?: {
|
|
1321
1425
|
model?: {
|
|
1322
1426
|
id: string;
|
|
1323
1427
|
name: string;
|
|
1324
1428
|
description: string;
|
|
1325
1429
|
featured?: boolean | undefined;
|
|
1326
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1327
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1328
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1430
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1431
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1432
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1329
1433
|
imageInput?: boolean | undefined;
|
|
1330
1434
|
} | undefined;
|
|
1331
1435
|
apiKey?: string | undefined;
|
|
@@ -1336,9 +1440,9 @@ export declare const resEnsureAppSettings: import("arktype/internal/variants/obj
|
|
|
1336
1440
|
name: string;
|
|
1337
1441
|
description: string;
|
|
1338
1442
|
featured?: boolean | undefined;
|
|
1339
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1340
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1341
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1443
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1444
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1445
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1342
1446
|
imageInput?: boolean | undefined;
|
|
1343
1447
|
} | undefined;
|
|
1344
1448
|
apiKey?: string | undefined;
|
|
@@ -1605,14 +1709,14 @@ export declare const evtAppSetting: import("arktype/internal/variants/object.ts"
|
|
|
1605
1709
|
name: string;
|
|
1606
1710
|
description: string;
|
|
1607
1711
|
featured?: boolean | undefined;
|
|
1608
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1609
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1610
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1712
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1713
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1714
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1611
1715
|
imageInput?: boolean | undefined;
|
|
1612
1716
|
};
|
|
1613
1717
|
apiKey?: string | undefined;
|
|
1614
1718
|
};
|
|
1615
|
-
usage: "chat";
|
|
1719
|
+
usage: "chat" | "codegen";
|
|
1616
1720
|
} | {
|
|
1617
1721
|
type: "active.model";
|
|
1618
1722
|
param: {
|
|
@@ -1621,14 +1725,14 @@ export declare const evtAppSetting: import("arktype/internal/variants/object.ts"
|
|
|
1621
1725
|
name: string;
|
|
1622
1726
|
description: string;
|
|
1623
1727
|
featured?: boolean | undefined;
|
|
1624
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1625
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1626
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1728
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1729
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1730
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1627
1731
|
imageInput?: boolean | undefined;
|
|
1628
1732
|
};
|
|
1629
1733
|
apiKey?: string | undefined;
|
|
1630
1734
|
};
|
|
1631
|
-
usage: "app";
|
|
1735
|
+
usage: "app" | "runtime";
|
|
1632
1736
|
} | {
|
|
1633
1737
|
type: "active.model";
|
|
1634
1738
|
param: {
|
|
@@ -1637,9 +1741,9 @@ export declare const evtAppSetting: import("arktype/internal/variants/object.ts"
|
|
|
1637
1741
|
name: string;
|
|
1638
1742
|
description: string;
|
|
1639
1743
|
featured?: boolean | undefined;
|
|
1640
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1641
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1642
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
1744
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1745
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1746
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
1643
1747
|
imageInput?: boolean | undefined;
|
|
1644
1748
|
};
|
|
1645
1749
|
apiKey?: string | undefined;
|
package/settings.js
CHANGED
|
@@ -17,9 +17,11 @@ export function isUserSettingSharing(obj) {
|
|
|
17
17
|
}
|
|
18
18
|
export const userSettingModelDefaults = type({
|
|
19
19
|
type: "'modelDefaults'",
|
|
20
|
+
"codegen?": AIParams.partial(),
|
|
21
|
+
"runtime?": AIParams.partial(),
|
|
22
|
+
"img?": AIParams.partial(),
|
|
20
23
|
"chat?": AIParams.partial(),
|
|
21
24
|
"app?": AIParams.partial(),
|
|
22
|
-
"img?": AIParams.partial(),
|
|
23
25
|
});
|
|
24
26
|
export function isUserSettingModelDefaults(obj) {
|
|
25
27
|
return !(userSettingModelDefaults(obj) instanceof type.errors);
|
|
@@ -167,17 +169,17 @@ export const reqEnsureAppSettingsIconRegen = type({
|
|
|
167
169
|
export function isReqEnsureAppSettingsIconRegen(obj) {
|
|
168
170
|
return !(reqEnsureAppSettingsIconRegen(obj) instanceof type.errors);
|
|
169
171
|
}
|
|
170
|
-
export const
|
|
171
|
-
|
|
172
|
+
export const reqEnsureAppSettingsRuntime = type({
|
|
173
|
+
runtime: AIParams.partial(),
|
|
172
174
|
}).and(reqEnsureAppSettingsBase);
|
|
173
|
-
export function
|
|
174
|
-
return !(
|
|
175
|
+
export function isReqEnsureAppSettingsRuntime(obj) {
|
|
176
|
+
return !(reqEnsureAppSettingsRuntime(obj) instanceof type.errors);
|
|
175
177
|
}
|
|
176
|
-
export const
|
|
177
|
-
|
|
178
|
+
export const reqEnsureAppSettingsCodegen = type({
|
|
179
|
+
codegen: AIParams.partial(),
|
|
178
180
|
}).and(reqEnsureAppSettingsBase);
|
|
179
|
-
export function
|
|
180
|
-
return !(
|
|
181
|
+
export function isReqEnsureAppSettingsCodegen(obj) {
|
|
182
|
+
return !(reqEnsureAppSettingsCodegen(obj) instanceof type.errors);
|
|
181
183
|
}
|
|
182
184
|
export const reqEnsureAppSettingsImg = type({
|
|
183
185
|
img: AIParams.partial(),
|
|
@@ -215,8 +217,8 @@ export function isReqEnsureAppSettings(obj) {
|
|
|
215
217
|
isReqEnsureAppSettingsColorTheme(obj) ||
|
|
216
218
|
isReqEnsureAppSettingsIconDescription(obj) ||
|
|
217
219
|
isReqEnsureAppSettingsIconRegen(obj) ||
|
|
218
|
-
|
|
219
|
-
|
|
220
|
+
isReqEnsureAppSettingsRuntime(obj) ||
|
|
221
|
+
isReqEnsureAppSettingsCodegen(obj) ||
|
|
220
222
|
isReqEnsureAppSettingsImg(obj) ||
|
|
221
223
|
isReqEnsureAppSettingsEnv(obj) ||
|
|
222
224
|
isReqEnsureAppSettingsDbAcl(obj) ||
|
|
@@ -233,8 +235,8 @@ export const AppSettings = type({
|
|
|
233
235
|
"colorTheme?": "string",
|
|
234
236
|
"iconDescription?": "string",
|
|
235
237
|
"icon?": type({ cid: "string", mime: "string" }),
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
+
"runtime?": AIParams.partial(),
|
|
239
|
+
"codegen?": AIParams.partial(),
|
|
238
240
|
"img?": AIParams.partial(),
|
|
239
241
|
env: KVString.array(),
|
|
240
242
|
},
|
package/settings.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../jsr/settings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE,aAAa,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAC5G,OAAO,EAAE,KAAK,EAAS,MAAM,cAAc,CAAC;AAE5C,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,CAAC;IACnC,KAAK,EAAE,kBAAkB;IACzB,OAAO,EAAE,QAAQ;IACjB,WAAW,EAAE,QAAQ;IACrB,MAAM,EAAE,QAAQ;CACjB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,mBAAmB,GAAG,IAAI,CAAC;IACtC,IAAI,EAAE,WAAW;IACjB,MAAM,EAAE,gBAAgB,CAAC,KAAK,EAAE;CACjC,CAAC,CAAC;AAEH,MAAM,UAAU,oBAAoB,CAAC,GAAY;IAC/C,OAAO,CAAC,CAAC,mBAAmB,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AAC5D,CAAC;
|
|
1
|
+
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../jsr/settings.ts"],"names":[],"mappings":"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"}
|