@chrryai/chrry 1.2.47 → 1.2.51
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/App.module.scss +1 -1
- package/dist/{App.module-3YUSESQW.scss → App.module-TIDZJOK6.scss} +1 -1
- package/dist/index.d.mts +8 -3
- package/dist/index.d.ts +8 -3
- package/dist/index.js +177 -154
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +177 -154
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/App.module.scss
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -485,7 +485,7 @@ type app = {
|
|
|
485
485
|
backgroundColor: string | null;
|
|
486
486
|
displayMode: "standalone" | "fullscreen" | "minimal-ui" | "browser" | null;
|
|
487
487
|
placeholder: string | null;
|
|
488
|
-
extend: Array<
|
|
488
|
+
extend: Array<string> | null;
|
|
489
489
|
onlyAgent: boolean | null;
|
|
490
490
|
capabilities: {
|
|
491
491
|
text: boolean;
|
|
@@ -778,6 +778,11 @@ declare const appSchema: z.ZodObject<{
|
|
|
778
778
|
requiresWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
779
779
|
appName: z.ZodOptional<z.ZodString>;
|
|
780
780
|
}, z.core.$strip>>>;
|
|
781
|
+
tips: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
782
|
+
id: z.ZodString;
|
|
783
|
+
content: z.ZodOptional<z.ZodString>;
|
|
784
|
+
emoji: z.ZodOptional<z.ZodString>;
|
|
785
|
+
}, z.core.$strip>>>;
|
|
781
786
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
782
787
|
tone: z.ZodOptional<z.ZodEnum<{
|
|
783
788
|
professional: "professional";
|
|
@@ -857,8 +862,8 @@ declare const appSchema: z.ZodObject<{
|
|
|
857
862
|
extends: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodEnum<{
|
|
858
863
|
Atlas: "Atlas";
|
|
859
864
|
Peach: "Peach";
|
|
860
|
-
Vault: "Vault";
|
|
861
865
|
Bloom: "Bloom";
|
|
866
|
+
Vault: "Vault";
|
|
862
867
|
Chrry: "Chrry";
|
|
863
868
|
Vex: "Vex";
|
|
864
869
|
}>, z.ZodString]>>>;
|
|
@@ -1407,7 +1412,7 @@ declare const isFirefox: boolean;
|
|
|
1407
1412
|
declare function getFlag({ code }: {
|
|
1408
1413
|
code?: string;
|
|
1409
1414
|
}): string;
|
|
1410
|
-
declare const VERSION = "1.2.
|
|
1415
|
+
declare const VERSION = "1.2.51";
|
|
1411
1416
|
type instructionBase = {
|
|
1412
1417
|
id: string;
|
|
1413
1418
|
title: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -485,7 +485,7 @@ type app = {
|
|
|
485
485
|
backgroundColor: string | null;
|
|
486
486
|
displayMode: "standalone" | "fullscreen" | "minimal-ui" | "browser" | null;
|
|
487
487
|
placeholder: string | null;
|
|
488
|
-
extend: Array<
|
|
488
|
+
extend: Array<string> | null;
|
|
489
489
|
onlyAgent: boolean | null;
|
|
490
490
|
capabilities: {
|
|
491
491
|
text: boolean;
|
|
@@ -778,6 +778,11 @@ declare const appSchema: z.ZodObject<{
|
|
|
778
778
|
requiresWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
779
779
|
appName: z.ZodOptional<z.ZodString>;
|
|
780
780
|
}, z.core.$strip>>>;
|
|
781
|
+
tips: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
782
|
+
id: z.ZodString;
|
|
783
|
+
content: z.ZodOptional<z.ZodString>;
|
|
784
|
+
emoji: z.ZodOptional<z.ZodString>;
|
|
785
|
+
}, z.core.$strip>>>;
|
|
781
786
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
782
787
|
tone: z.ZodOptional<z.ZodEnum<{
|
|
783
788
|
professional: "professional";
|
|
@@ -857,8 +862,8 @@ declare const appSchema: z.ZodObject<{
|
|
|
857
862
|
extends: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodEnum<{
|
|
858
863
|
Atlas: "Atlas";
|
|
859
864
|
Peach: "Peach";
|
|
860
|
-
Vault: "Vault";
|
|
861
865
|
Bloom: "Bloom";
|
|
866
|
+
Vault: "Vault";
|
|
862
867
|
Chrry: "Chrry";
|
|
863
868
|
Vex: "Vex";
|
|
864
869
|
}>, z.ZodString]>>>;
|
|
@@ -1407,7 +1412,7 @@ declare const isFirefox: boolean;
|
|
|
1407
1412
|
declare function getFlag({ code }: {
|
|
1408
1413
|
code?: string;
|
|
1409
1414
|
}): string;
|
|
1410
|
-
declare const VERSION = "1.2.
|
|
1415
|
+
declare const VERSION = "1.2.51";
|
|
1411
1416
|
type instructionBase = {
|
|
1412
1417
|
id: string;
|
|
1413
1418
|
title: string;
|