@chrryai/chrry 1.5.8 → 1.5.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/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +333 -112
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +355 -135
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -671,7 +671,7 @@ declare const getHourlyLimit: ({ member, guest, app, }: {
|
|
|
671
671
|
app?: app;
|
|
672
672
|
member?: user;
|
|
673
673
|
guest?: guest;
|
|
674
|
-
}) => 30 | 100 | 5000 |
|
|
674
|
+
}) => 500 | 30 | 100 | 5000 | 200 | 10;
|
|
675
675
|
|
|
676
676
|
/**
|
|
677
677
|
* Generate dynamic metadata for an app page
|
|
@@ -760,7 +760,7 @@ declare const FREE_DAYS = 5;
|
|
|
760
760
|
declare const PLUS_PRICE = 9.99;
|
|
761
761
|
declare const PRO_PRICE = 19.99;
|
|
762
762
|
declare const CREDITS_PRICE = 5;
|
|
763
|
-
declare const ADDITIONAL_CREDITS =
|
|
763
|
+
declare const ADDITIONAL_CREDITS = 500;
|
|
764
764
|
declare function isValidUuidV4(uuid: string): boolean;
|
|
765
765
|
declare function getThreadId(pathname?: string): string | undefined;
|
|
766
766
|
declare const MAX_TOOL_CALLS_PER_MESSAGE = 7;
|
package/dist/index.d.ts
CHANGED
|
@@ -671,7 +671,7 @@ declare const getHourlyLimit: ({ member, guest, app, }: {
|
|
|
671
671
|
app?: app;
|
|
672
672
|
member?: user;
|
|
673
673
|
guest?: guest;
|
|
674
|
-
}) => 30 | 100 | 5000 |
|
|
674
|
+
}) => 500 | 30 | 100 | 5000 | 200 | 10;
|
|
675
675
|
|
|
676
676
|
/**
|
|
677
677
|
* Generate dynamic metadata for an app page
|
|
@@ -760,7 +760,7 @@ declare const FREE_DAYS = 5;
|
|
|
760
760
|
declare const PLUS_PRICE = 9.99;
|
|
761
761
|
declare const PRO_PRICE = 19.99;
|
|
762
762
|
declare const CREDITS_PRICE = 5;
|
|
763
|
-
declare const ADDITIONAL_CREDITS =
|
|
763
|
+
declare const ADDITIONAL_CREDITS = 500;
|
|
764
764
|
declare function isValidUuidV4(uuid: string): boolean;
|
|
765
765
|
declare function getThreadId(pathname?: string): string | undefined;
|
|
766
766
|
declare const MAX_TOOL_CALLS_PER_MESSAGE = 7;
|