@chrryai/chrry 1.2.31 → 1.2.33
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/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1467 -95
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1467 -95
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -453,6 +453,12 @@ type app = {
|
|
|
453
453
|
description: string | null;
|
|
454
454
|
featureList: string[] | null;
|
|
455
455
|
icon: string | null;
|
|
456
|
+
tips: Array<{
|
|
457
|
+
id: string;
|
|
458
|
+
content?: string;
|
|
459
|
+
emoji?: string;
|
|
460
|
+
}> | null;
|
|
461
|
+
tipsTitle: string | null;
|
|
456
462
|
images: Array<{
|
|
457
463
|
url: string;
|
|
458
464
|
width?: number;
|
|
@@ -1401,7 +1407,7 @@ declare const isFirefox: boolean;
|
|
|
1401
1407
|
declare function getFlag({ code }: {
|
|
1402
1408
|
code?: string;
|
|
1403
1409
|
}): string;
|
|
1404
|
-
declare const VERSION = "1.2.
|
|
1410
|
+
declare const VERSION = "1.2.33";
|
|
1405
1411
|
type instructionBase = {
|
|
1406
1412
|
id: string;
|
|
1407
1413
|
title: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -453,6 +453,12 @@ type app = {
|
|
|
453
453
|
description: string | null;
|
|
454
454
|
featureList: string[] | null;
|
|
455
455
|
icon: string | null;
|
|
456
|
+
tips: Array<{
|
|
457
|
+
id: string;
|
|
458
|
+
content?: string;
|
|
459
|
+
emoji?: string;
|
|
460
|
+
}> | null;
|
|
461
|
+
tipsTitle: string | null;
|
|
456
462
|
images: Array<{
|
|
457
463
|
url: string;
|
|
458
464
|
width?: number;
|
|
@@ -1401,7 +1407,7 @@ declare const isFirefox: boolean;
|
|
|
1401
1407
|
declare function getFlag({ code }: {
|
|
1402
1408
|
code?: string;
|
|
1403
1409
|
}): string;
|
|
1404
|
-
declare const VERSION = "1.2.
|
|
1410
|
+
declare const VERSION = "1.2.33";
|
|
1405
1411
|
type instructionBase = {
|
|
1406
1412
|
id: string;
|
|
1407
1413
|
title: string;
|